:root {
  --navy: #05325d;
  --navy-soft: #084c84;
  --beige: #f5c518;
  --beige-light: #fff9df;
  --teal: #075aa3;
  --teal-light: #2c83c5;
  --red: #f5c518;
  --green: #1f9d55;
  --white: #ffffff;
  --ink: #10272f;
  --muted: #5f7076;
  --line: #d8e0df;
  --shadow: 0 20px 60px rgba(1, 24, 32, 0.12);
}

.is-hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.announcement {
  background: #042a4f;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-phones {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement a {
  color: #ffd942;
  font-weight: 800;
}

.announcement i {
  color: var(--teal-light);
  font-style: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 4px solid var(--beige);
  background: rgba(7, 90, 163, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: 106px;
  height: 86px;
  display: block;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--beige);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px 3px 10px 3px;
  cursor: pointer;
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(6, 111, 130, 0.34);
  outline-offset: 3px;
}

.button-header {
  min-height: 44px;
  background: var(--beige);
  color: var(--navy);
  padding: 0 17px;
  font-size: 0.78rem;
}

.button-primary {
  background: var(--beige);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd943;
  box-shadow: 0 16px 34px rgba(245, 197, 24, 0.32);
}

.button-secondary {
  border: 1px solid rgba(1, 24, 32, 0.18);
  background: white;
  color: var(--navy);
}

.whatsapp-cta-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.button-whatsapp-pulse {
  position: relative;
  overflow: visible;
  border: 0;
  background: var(--green);
  color: white;
  box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.42);
  animation: whatsapp-pulse 1.8s ease-out infinite;
  width: 100%;
  min-height: 58px;
  font-size: 0.96rem;
}

.button-whatsapp-pulse:hover,
.button-whatsapp-pulse:focus-visible {
  background: #198548;
  box-shadow: 0 0 0 9px rgba(31, 157, 85, 0.1);
}

.whatsapp-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: white;
}

.response-time {
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.42);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(31, 157, 85, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 157, 85, 0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 92px;
  background:
    radial-gradient(circle at 83% 15%, rgba(245, 197, 24, 0.3), transparent 31%),
    linear-gradient(115deg, #ffffff 0%, #eef7ff 58%, #fff9df 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 120px;
  background: var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--red);
}

.eyebrow-light {
  color: var(--beige);
}

.hero h1 {
  max-width: 690px;
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #52686f;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin-top: 30px;
}

.hero-actions > .button {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #3f565e;
  font-size: 0.83rem;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 111, 130, 0.12);
  color: var(--teal);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 18px;
  width: 80%;
  height: 82%;
  border-radius: 36px 8px 36px 8px;
  background: var(--teal);
  transform: rotate(3deg);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 7px solid white;
  background: white;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border-radius: 7px 2px 7px 2px;
  background: rgba(1, 24, 32, 0.92);
  color: white;
  padding: 9px 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-photo-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 410px;
  border-radius: 28px 7px 28px 7px;
}

.hero-photo-small {
  bottom: 4px;
  left: 0;
  width: 55%;
  height: 215px;
  border-radius: 20px 5px 20px 5px;
}

.hero-photo-small img {
  object-fit: cover;
  background: #eaf4fb;
}

.route-card {
  position: absolute;
  right: -12px;
  bottom: 6px;
  z-index: 2;
  width: 210px;
  border-left: 4px solid var(--red);
  background: var(--beige);
  padding: 17px 18px;
  box-shadow: 0 12px 30px rgba(1, 24, 32, 0.17);
}

.route-card strong,
.route-card span {
  display: block;
}

.route-card strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.route-card span {
  margin-top: 4px;
  color: #5d594a;
  font-size: 0.68rem;
}

.quote-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
  padding: 84px 0;
}

.quote-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(6, 111, 130, 0.34);
  border-radius: 50%;
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(570px, 1.2fr);
  align-items: start;
  gap: 70px;
}

.quote-intro {
  padding-top: 24px;
}

.quote-intro h2,
.fleet-copy h2,
.faq-heading h2 {
  margin: 18px 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.quote-intro > p,
.fleet-copy > p,
.faq-heading > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.quote-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.quote-callout > span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  font-weight: 900;
}

.quote-callout strong {
  font-size: 0.92rem;
}

.quote-callout p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}

.quote-form {
  border-radius: 24px 6px 24px 6px;
  background: white;
  color: var(--ink);
  padding: 34px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading span,
.form-heading strong {
  display: block;
}

.form-heading span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 7px;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.quote-form label,
.distance-fieldset legend {
  color: #29424a;
  font-size: 0.76rem;
  font-weight: 800;
}

.quote-form label > small {
  color: #7f8d91;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #ccd8d8;
  border-radius: 8px 2px 8px 2px;
  background: #fbfdfc;
  color: var(--ink);
  padding: 13px 14px;
  font-size: 0.86rem;
  outline: 0;
}

.quote-form input,
.quote-form select {
  height: 48px;
}

.quote-form textarea {
  resize: vertical;
  line-height: 1.45;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(6, 111, 130, 0.11);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 17px;
}

.quote-form > label {
  display: block;
  margin-bottom: 17px;
}

.distance-fieldset {
  margin: 0 0 17px;
  border: 0;
  padding: 0;
}

.distance-fieldset legend {
  margin-bottom: 9px;
}

.mode-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mode-option {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d2dcdb;
  border-radius: 8px 2px 8px 2px;
  cursor: pointer;
  padding: 10px 12px;
  color: #5a6b70 !important;
  font-size: 0.72rem !important;
}

.mode-option.active {
  border-color: var(--teal);
  background: rgba(6, 111, 130, 0.07);
  color: var(--teal) !important;
}

.mode-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--teal);
}

.input-suffix {
  position: relative;
  display: block;
}

.input-suffix input {
  padding-right: 50px;
}

.input-suffix b {
  position: absolute;
  top: 50%;
  right: 15px;
  color: var(--muted);
  transform: translateY(-27%);
  font-size: 0.78rem;
}

.button-form {
  width: 100%;
  min-height: 55px;
  justify-content: space-between;
  background: var(--green);
  color: white;
  padding: 0 20px;
  box-shadow: 0 12px 25px rgba(31, 157, 85, 0.22);
}

.button-form:hover,
.button-form:focus-visible {
  background: #198548;
}

.button-form span {
  font-size: 1.25rem;
}

.form-disclaimer {
  margin: 10px 0 0;
  color: #7a8a8f;
  font-size: 0.67rem;
  line-height: 1.5;
  text-align: center;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.locations-copy h2 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading p,
.locations-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services-section {
  background: var(--beige-light);
}

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

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(1, 24, 32, 0.11);
  border-radius: 18px 5px 18px 5px;
  background: white;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(1, 24, 32, 0.05);
}

.service-card.featured {
  background: var(--teal);
  color: white;
  transform: translateY(-10px);
}

.service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 111, 130, 0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.featured .service-number {
  background: var(--beige);
  color: var(--navy);
}

.service-card h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.featured h3 {
  color: white;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(1, 24, 32, 0.1);
  padding-top: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.featured a {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--beige);
}

.fleet-section {
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 70px;
}

.fleet-copy ul {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.fleet-copy li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 18px 0;
}

.fleet-copy li > span {
  color: var(--beige);
  font-size: 0.72rem;
  font-weight: 900;
}

.fleet-copy li strong,
.fleet-copy li small {
  display: block;
}

.fleet-copy li strong {
  font-size: 0.92rem;
}

.fleet-copy li small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  line-height: 1.5;
}

.button-beige {
  background: var(--beige);
  color: var(--navy);
}

.fleet-gallery {
  position: relative;
  min-height: 570px;
}

.fleet-gallery::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 11%;
  width: 70%;
  height: 83%;
  border: 1px solid rgba(249, 224, 168, 0.25);
  border-radius: 50%;
}

.fleet-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 6px solid white;
  background: white;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
}

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

.fleet-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  background: rgba(1, 24, 32, 0.92);
  padding: 12px 14px;
}

.fleet-image figcaption strong,
.fleet-image figcaption span {
  display: block;
}

.fleet-image figcaption strong {
  font-size: 0.84rem;
}

.fleet-image figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
}

.fleet-image-truck {
  top: 0;
  right: 0;
  width: 73%;
  height: 430px;
  border-radius: 24px 6px 24px 6px;
}

.fleet-image-strada {
  bottom: 0;
  left: 0;
  width: 58%;
  height: 250px;
  border-radius: 20px 5px 20px 5px;
}

.fleet-image-strada img {
  object-fit: contain;
}

.locations-section {
  background: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  border: 0;
  border-bottom: 2px solid var(--red);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 0 0 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-list article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 14px 4px 14px 4px;
  background: #f9fbfa;
  padding: 22px;
}

.location-list article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 0.64rem;
  font-weight: 900;
}

.location-list strong,
.location-list small {
  display: block;
}

.location-list strong {
  margin-top: 18px;
  color: var(--navy);
  font-size: 0.92rem;
}

.location-list small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.steps-section {
  border-top: 1px solid #e7eceb;
  background: #f6f9f8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-grid li {
  position: relative;
  border-top: 3px solid var(--teal);
  background: white;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(1, 24, 32, 0.05);
}

.steps-grid li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.steps-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.steps-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.faq-section {
  background: var(--teal);
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 80px;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 0;
}

.faq-list details:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding-right: 35px;
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: -5px;
  right: 0;
  color: var(--beige);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 620px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.65;
}

.final-cta {
  background: var(--beige);
  padding: 62px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta span {
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.button-outline-light {
  border: 1px solid rgba(1, 24, 32, 0.25);
  background: transparent;
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: white;
  padding: 65px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 0.8fr;
  gap: 42px;
}

.brand-footer strong {
  color: white;
}

.brand-logo-footer {
  width: 150px;
  height: 135px;
}

.footer-grid > div > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--beige);
  font-size: 0.78rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid address {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-grid > div:first-child p {
  max-width: 300px;
  margin-top: 18px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.mobile-whatsapp {
  display: none;
}

.simulation-example {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 85;
  width: min(390px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(7, 90, 163, 0.14);
  border-top: 4px solid var(--beige);
  border-radius: 15px 4px 15px 4px;
  background: rgba(255, 255, 255, 0.98);
  padding: 16px 44px 16px 16px;
  box-shadow: 0 18px 50px rgba(5, 50, 93, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.simulation-example.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.simulation-example-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(7, 90, 163, 0.22);
}

.simulation-example-label {
  display: block;
  color: var(--teal);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.simulation-example p {
  margin: 5px 0 3px;
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.4;
}

.simulation-example small {
  color: var(--muted);
  font-size: 0.68rem;
}

.simulation-example-close {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6d7f85;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

.simulation-example-close:hover,
.simulation-example-close:focus-visible {
  background: #edf4f8;
  color: var(--navy);
}

@media (max-width: 1040px) {
  nav {
    display: none;
  }

  .hero-grid,
  .quote-grid,
  .fleet-grid,
  .locations-grid,
  .faq-grid {
    gap: 45px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.88fr);
  }

  .quote-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  }

  .fleet-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(450px, 1.2fr);
  }

  .locations-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement-inner > span:first-child {
    display: none;
  }

  .header-inner {
    min-height: 88px;
    justify-content: center;
  }

  .button-header {
    display: none;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero-grid,
  .quote-grid,
  .fleet-grid,
  .locations-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-actions {
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

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

  .quote-intro {
    max-width: 610px;
    padding-top: 0;
    margin: 0 auto;
    text-align: center;
  }

  .quote-intro .eyebrow,
  .fleet-copy .eyebrow,
  .locations-copy .eyebrow,
  .faq-heading .eyebrow {
    justify-content: center;
  }

  .quote-callout {
    justify-content: center;
    text-align: center;
  }

  .quote-form {
    text-align: center;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .service-card.featured {
    transform: none;
  }

  .service-card {
    min-height: 280px;
    align-items: center;
    text-align: center;
  }

  .service-card a {
    width: 100%;
  }

  .fleet-copy,
  .locations-copy,
  .faq-heading {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .fleet-copy li {
    justify-content: center;
    text-align: center;
  }

  .fleet-gallery {
    min-height: 590px;
  }

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

  .steps-grid li {
    text-align: center;
  }

  .steps-grid li > span {
    margin-right: auto;
    margin-left: auto;
  }

  .location-list article {
    text-align: center;
  }

  .location-list article > span {
    margin: 0 auto;
  }

  .faq-list,
  .faq-list p {
    text-align: center;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
  }

  .brand-footer {
    justify-content: center;
  }

  .footer-grid > div:first-child p {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 112px;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 24px, 520px);
  }

  .announcement {
    font-size: 0.65rem;
  }

  .announcement-inner {
    min-height: 34px;
    padding: 5px 0;
  }

  .announcement-phones {
    gap: 6px;
  }

  .announcement-phones a,
  .announcement-phones i {
    font-size: 0.66rem;
  }

  .site-header {
    backdrop-filter: blur(8px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 80px;
    height: 66px;
  }

  .hero {
    padding: 36px 0 50px;
  }

  .hero::before {
    width: 5px;
    height: 85px;
  }

  .hero h1 {
    max-width: 18ch;
    margin: 13px auto 17px;
    font-size: clamp(1.95rem, 8.9vw, 2.45rem);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    max-width: 38ch;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .eyebrow {
    gap: 7px;
    font-size: 0.67rem;
    line-height: 1.45;
    letter-spacing: 0.11em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .whatsapp-cta-wrap {
    width: 100%;
  }

  .button {
    min-height: 54px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 0.9rem;
  }

  .button-whatsapp-pulse {
    min-height: 58px;
    font-size: 0.98rem;
  }

  .response-time {
    font-size: 0.7rem;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 280px;
    gap: 12px;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-visual {
    min-height: 355px;
    margin-top: 4px;
  }

  .hero-photo-main {
    width: 91%;
    height: 275px;
  }

  .hero-photo-small {
    width: 60%;
    height: 138px;
  }

  .hero-photo {
    border-width: 5px;
  }

  .hero-photo span {
    right: 8px;
    bottom: 8px;
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .route-card {
    right: 0;
    width: 158px;
    padding: 11px 12px;
  }

  .route-card strong {
    font-size: 0.78rem;
  }

  .quote-section,
  .section {
    padding: 58px 0;
  }

  .quote-grid,
  .fleet-grid,
  .locations-grid,
  .faq-grid {
    gap: 36px;
  }

  .quote-intro h2,
  .fleet-copy h2,
  .faq-heading h2,
  .section-heading h2,
  .locations-copy h2 {
    margin-top: 14px;
    font-size: clamp(1.85rem, 8.5vw, 2.15rem);
    line-height: 1.05;
  }

  .quote-intro > p,
  .fleet-copy > p,
  .faq-heading > p,
  .section-heading p,
  .locations-copy > p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .quote-callout {
    margin-top: 25px;
    padding-top: 20px;
  }

  .quote-form {
    margin-right: 0;
    margin-left: 0;
    border-radius: 18px 4px 18px 4px;
    padding: 24px 16px;
    text-align: left;
  }

  .form-heading {
    margin-bottom: 22px;
    text-align: center;
  }

  .form-heading strong {
    font-size: 1.5rem;
  }

  .form-row,
  .mode-options {
    grid-template-columns: 1fr;
  }

  .form-row {
    gap: 17px;
  }

  .quote-form input,
  .quote-form select {
    min-height: 52px;
  }

  .quote-form textarea {
    min-height: 108px;
  }

  .mode-option {
    min-height: 50px;
    text-align: left;
  }

  .text-button {
    min-height: 44px;
  }

  .button-form {
    min-height: 58px;
    gap: 14px;
    text-align: left;
  }

  .service-card {
    min-height: 260px;
    padding: 24px 22px;
  }

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

  .fleet-gallery {
    min-height: 370px;
  }

  .fleet-image-truck {
    width: 90%;
    height: 280px;
  }

  .fleet-image-strada {
    width: 66%;
    height: 155px;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

  .location-list article {
    min-height: 130px;
  }

  .steps-grid li {
    padding: 25px;
  }

  .faq-list,
  .faq-list p {
    text-align: left;
  }

  .faq-list summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .final-cta {
    padding: 50px 0;
  }

  .final-cta-inner {
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .final-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 90;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 12px 4px 12px 4px;
    background: var(--green);
    color: white;
    cursor: pointer;
    padding: 0 16px;
    box-shadow: 0 12px 36px rgba(1, 24, 32, 0.3);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .mobile-whatsapp span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }

  .simulation-example {
    right: 12px;
    bottom: 78px;
    left: 12px;
    width: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 13px 40px 13px 13px;
    text-align: left;
  }

  .simulation-example-icon {
    width: 40px;
    height: 40px;
  }

  .simulation-example-close {
    top: 2px;
    right: 2px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 380px) {
  .announcement-phones {
    gap: 5px;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

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

  .hero-photo-main {
    height: 255px;
  }

  .hero-photo-small {
    height: 125px;
  }

  .route-card {
    width: 148px;
  }

  .quote-form {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
