:root {
  --ink: #121212;
  --ink-soft: #2b2b2b;
  --gold: #c19a3d;
  --gold-dark: #9c7a2c;
  --cream: #f5f4ef;
  --paper: #ffffff;
  --muted: #667085;
  --line: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 18px 20px 0;
}

.site-header {
  width: min(1100px, 100%);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 34px rgba(18, 18, 18, 0.12);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header-wrap.scrolled .site-header {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 38px rgba(18, 18, 18, 0.16);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-inline: 22px;
}

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

.brand-logo-img {
  display: block;
  height: 54px;
  width: auto;
}

.footer-brand .brand-logo-img {
  height: 64px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.1em;
  transform: skew(-5deg);
}

.brand-mark span {
  color: var(--gold);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.07em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #000;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.phone-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5ecd4;
  color: var(--gold);
}

.header-phone > span:last-child {
  display: flex;
  flex-direction: column;
}

.header-phone small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.header-phone strong {
  font-size: 13px;
  line-height: 1.4;
}

.menu-toggle {
  display: none;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-menu {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  height: 100%;
  width: min(320px, 84%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 100px 26px 32px;
  background: white;
  box-shadow: -20px 0 50px rgba(18, 18, 18, 0.18);
  transform: translateX(100%);
  transition: transform 260ms ease;
  overflow-y: auto;
}

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

.mobile-nav a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.button-whatsapp-solid {
  background: #20b65a;
  color: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #0a0a0a 0%, #171717 55%, #202020 100%);
}

.hero-diagonal {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-diagonal::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -12%;
  width: 72%;
  height: 130%;
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
  clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 4% 100%);
  opacity: 0.95;
}

.hero-diagonal::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -12%;
  width: 72%;
  height: 130%;
  background: linear-gradient(160deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 4% 100%);
}

.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-photo-img {
  width: 100%;
  max-width: 760px;
  height: auto;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.45));
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(108px, 18vw, 148px) clamp(48px, 6vw, 64px);
  background:
    radial-gradient(circle at 85% 15%, rgba(193, 154, 61, 0.18), transparent 45%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
}

.page-banner-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.page-banner-crumbs a:hover {
  color: var(--gold);
}

.page-banner h1 {
  max-width: 620px;
  margin: 10px 0 0;
  color: white;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.page-banner > .container > p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  padding: 26px 22px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.06);
}

.info-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #f5ecd4;
  color: var(--gold);
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

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

.info-card p + p {
  margin-top: 4px;
}

.info-card p a {
  color: var(--muted);
  transition: color 150ms ease;
}

.info-card p a:hover {
  color: var(--gold-dark);
}

.map-placeholder {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  margin-top: 40px;
  border: 1px dashed rgba(18, 18, 18, 0.18);
  border-radius: 20px;
  background: #eef1f4;
  color: rgba(18, 18, 18, 0.4);
}

.map-placeholder > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 52%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-block: clamp(130px, 18vw, 160px) 110px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.eyebrow > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: white;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: white;
  font-size: clamp(52px, 5.3vw, 78px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 span {
  position: relative;
  display: block;
  color: var(--gold);
  font-weight: 750;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 5px;
  left: 3px;
  bottom: -15px;
  border-radius: 99px;
  background: var(--gold);
}

.hero-copy > p {
  max-width: 560px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 14px 30px rgba(193, 154, 61, 0.22);
}

.button-primary:hover {
  background: var(--gold-dark);
}

.button-secondary {
  background: white;
  border: 1px solid #dcdfe5;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #c3c8d1;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.07);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
}

.trust-row span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.35;
}

.trust-row strong {
  color: white;
  font-size: 12px;
}

.service-strip {
  position: relative;
  z-index: 4;
  padding-block: clamp(48px, 7vw, 72px) 8px;
}

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

.service-item {
  display: flex;
  gap: 16px;
  padding: 26px 24px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.06);
}

.service-icon {
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f5ecd4;
  color: var(--gold);
}

.service-item h2 {
  margin: 2px 0 7px;
  font-size: 15px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.content-panel {
  width: min(1320px, calc(100% - 40px));
  margin: 16px auto;
  border-radius: 32px;
  background: white;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 18, 18, 0.06);
}

.section {
  padding-block: clamp(64px, 9vw, 105px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-heading h2,
.about-copy h2,
.faq-intro h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 400px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.filter-tab:hover {
  border-color: #c3c8d1;
}

.filter-tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

.vehicles-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

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

.vehicle-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(18, 18, 18, 0.1);
}

.vehicle-card.is-hidden {
  display: none;
}

.vehicle-visual {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: white;
  border-bottom: 1px solid var(--line);
}

.vehicle-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -160px;
  border: 30px solid rgba(18, 18, 18, 0.04);
  border-radius: 50%;
}

.vehicle-visual.has-photo {
  height: 340px;
}

.vehicle-visual.has-photo::before {
  display: none;
}

.vehicle-visual.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.vehicle-visual.orange,
.vehicle-visual.lime,
.vehicle-visual.blue {
  background: white;
}

.vehicle-visual svg {
  width: 48%;
  height: 48%;
  color: rgba(18, 18, 18, 0.76);
}

.vehicle-visual small {
  position: absolute;
  bottom: 20px;
  color: rgba(18, 18, 18, 0.37);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.vehicle-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 7px;
  background: white;
  border: 1px solid var(--line);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(18, 18, 18, 0.08);
}

.vehicle-content {
  padding: 23px;
}

.vehicle-content h3 {
  margin: 0;
  font-size: 19px;
}

.vehicle-content p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.vehicle-features {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.vehicle-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #f4f5f7;
  color: #586273;
  font-size: 10px;
  font-weight: 700;
}

.vehicle-features svg {
  color: var(--gold);
}

.vehicle-content > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.vehicle-content > a svg {
  color: var(--gold);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--ink);
  box-shadow: 0 30px 60px rgba(18, 18, 18, 0.16);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(193, 154, 61, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 46%);
}

.about-road {
  position: absolute;
  width: 850px;
  height: 260px;
  left: -160px;
  bottom: -80px;
  border: 70px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.about-road::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.about-symbol {
  position: absolute;
  top: 60px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  transform: translateX(-50%);
}

.about-symbol img {
  width: 240px;
  max-width: 70%;
  height: auto;
}

.about-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(10px);
}

.about-note strong {
  font-size: 12px;
}

.about-note span {
  margin-top: 4px;
  color: #aab3c2;
  font-size: 10px;
}

.about-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 26px;
}

.about-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #435066;
  font-size: 12px;
  font-weight: 700;
}

.about-points svg {
  padding: 3px;
  border-radius: 50%;
  background: #f5ecd4;
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.text-link svg {
  color: var(--gold);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-intro p {
  max-width: 390px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.faq-list {
  padding: 4px 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 45px rgba(18, 18, 18, 0.06);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: white;
}

.contact-section .contact-grid {
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  mask-image: linear-gradient(to left, black, transparent 74%);
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  top: -210px;
  border: 65px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  z-index: 2;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 80px;
  padding-block: 64px;
}

.contact-kicker {
  display: block;
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.contact-layout h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(37px, 4.2vw, 57px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.contact-layout p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.button-contact {
  background: white;
  color: var(--ink);
}

.button-whatsapp {
  background: #20b65a;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

footer {
  background: #0a0a0a;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.85fr;
  gap: 70px;
  padding-block: 68px 55px;
}

.brand-light .brand-mark {
  background: white;
  color: var(--ink);
}

.footer-brand > p {
  max-width: 300px;
  margin: 20px 0 0;
  color: #8792a3;
  font-size: 12px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-main h3 {
  margin: 0 0 8px;
  font-size: 12px;
}

.footer-main a,
.footer-main > div:not(.footer-brand) > span {
  color: #8792a3;
  font-size: 11px;
}

.footer-main a:hover {
  color: var(--gold);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #667184;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: #20b65a;
  color: white;
  box-shadow: 0 12px 30px rgba(20, 117, 60, 0.3);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-phone {
    display: none;
  }

  .about-layout {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-diagonal::before,
  .hero-diagonal::after {
    right: -30%;
    width: 95%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 100px 36px;
  }

  .hero-photo-img {
    max-width: 320px;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(50px, 10vw, 72px);
  }

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

  .vehicle-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 100%;
  }

  .vehicle-grid-2 .vehicle-visual.has-photo {
    height: 220px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .vehicle-grid {
    max-width: 610px;
    margin-inline: auto;
  }

  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .faq-layout {
    gap: 55px;
  }

  .about-visual {
    min-height: 450px;
  }

  .contact-layout {
    gap: 36px;
  }

  .contact-actions {
    max-width: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header-wrap {
    padding: 12px 14px 0;
  }

  .site-header {
    border-radius: 16px;
  }

  .header-inner {
    min-height: 62px;
    padding-inline: 16px;
  }

  .brand-logo-img {
    height: 42px;
  }

  .hero-layout {
    gap: 18px;
    padding-block: 90px 24px;
  }

  .hero-photo-img {
    max-width: 220px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-copy > p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 18px;
    gap: 8px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .trust-row {
    margin-top: 20px;
    align-items: flex-start;
    gap: 13px;
  }

  .trust-row > div {
    align-items: flex-start;
    gap: 6px;
  }

  .mobile-nav {
    width: 100%;
    padding: 90px 22px 28px;
  }

  .service-strip {
    padding-top: 28px;
  }

  .service-item {
    padding: 22px 20px;
  }

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

  .section-heading h2,
  .about-copy h2,
  .faq-intro h2 {
    font-size: 38px;
  }

  .vehicle-content {
    padding: 20px;
  }

  .vehicle-features {
    flex-wrap: wrap;
  }

  .about-layout,
  .faq-layout {
    gap: 42px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-symbol img {
    width: 190px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    min-height: 400px;
    padding-block: 60px;
  }

  .contact-layout h2 {
    font-size: 39px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
}

@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;
  }
}
