:root {
  --dark: #111827;
  --dark-soft: #1f2937;
  --text: #111827;
  --muted: #5f6673;
  --line: #e5e7eb;
  --white: #ffffff;
  --soft: #f5f6f8;
  --green: #22a663;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 78px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.96);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  color: var(--dark);
}

.site-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-brand img {
  display: block;
  width: 170px;
  height: auto;
}

.site-nav {
  position: absolute;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
}

.site-nav a {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--dark-soft);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.58;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.36), rgba(17, 24, 39, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  padding-top: 74px;
  color: #fff;
  text-align: center;
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.hero-meta a {
  text-decoration: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.tagline {
  margin: 18px 0 0;
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.light {
  background: #fff;
  color: #111827;
}

.button.dark {
  background: #111827;
  color: #fff;
}

.button.outline {
  border-color: #fff;
  color: #fff;
}

.button.outline:hover {
  background: #fff;
  color: #111827;
}

.button.outline-dark {
  border-color: #111827;
  color: #111827;
}

.button.outline-dark:hover {
  background: #111827;
  color: #fff;
}

.button.whatsapp {
  background: var(--green);
  color: #fff;
}

.section {
  padding: 84px 0;
}

.section.white {
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading.compact-heading {
  margin-bottom: 0;
}

.compact-heading .button {
  margin-top: 18px;
}

.section-heading h2,
.split h2,
.request-content h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.lead,
.request-content p {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.split.reverse > div {
  order: 2;
}

.split.reverse > img {
  order: 1;
}

.section-image {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.16);
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-row span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-weight: 900;
}

.feature-row strong {
  display: block;
  margin-bottom: 6px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  font-size: 0.82rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.check-list span {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.reviews-section {
  overflow: hidden;
}

.reviews-section .compact-heading {
  width: min(780px, calc(100% - 32px));
  margin-bottom: 34px;
}

.reviews-section .button {
  margin-top: 12px;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding: 10px 0 18px;
  animation: review-scroll 34s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: min(330px, calc(100vw - 48px));
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.review-stars {
  color: #f5a400;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  font-size: 1rem;
}

.review-card strong {
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}

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

.car-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
}

.car-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e5e7eb;
}

.car-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.car-title-row {
  display: grid;
  gap: 8px;
  align-items: start;
}

.car-title-row h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  min-height: 2.94rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.car-price {
  min-height: 32px;
  display: flex;
  align-items: center;
  font-size: 1.28rem;
  font-weight: 950;
  white-space: nowrap;
}

.car-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.car-specs li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  display: inline-block;
  background: #9ca3af;
}

.car-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.car-actions {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.loading,
.empty-cars {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
  padding: 24px;
}

.centered {
  text-align: center;
  margin-top: 34px;
}

.recent-sold-section[hidden] {
  display: none;
}

.recent-sold-section {
  overflow: hidden;
}

.recent-sold-section .compact-heading {
  width: min(760px, calc(100% - 32px));
  margin-bottom: 34px;
}

.sold-marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.sold-marquee::-webkit-scrollbar {
  display: none;
}

.sold-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding: 10px 0 18px;
}

.sold-track.is-static {
  width: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.sold-card {
  flex: 0 0 min(320px, calc(100vw - 48px));
  width: min(320px, calc(100vw - 48px));
  scroll-snap-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
}

.sold-image-wrap {
  position: relative;
  background: #e5e7eb;
}

.sold-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sold-image-wrap span {
  position: absolute;
  left: 12px;
  top: 12px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sold-body {
  min-height: 206px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sold-body h3 {
  min-height: 2.7rem;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sold-highlights {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sold-highlights div {
  min-width: 0;
  min-height: 64px;
  padding: 10px 9px;
  border-radius: var(--radius);
  display: grid;
  align-content: center;
  gap: 4px;
  background: #f3f4f6;
}

.sold-highlights dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sold-highlights dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.sold-link {
  margin-top: auto;
  min-height: 42px;
  border: 1px solid var(--dark);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sold-link:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

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

.request-band {
  background: #111827;
  color: #fff;
  padding: 58px 0;
}

.request-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.request-content p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.sell-layout {
  width: min(900px, calc(100% - 32px));
}

.sell-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.sell-form label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-weight: 850;
}

.sell-form input,
.sell-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.sell-form input:focus,
.sell-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 166, 99, 0.14);
}

.sell-form textarea {
  min-height: 112px;
  resize: vertical;
}

.sell-form .wide {
  grid-column: 1 / -1;
}

.sell-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px;
  color: var(--muted) !important;
  font-weight: 750 !important;
}

.sell-check input {
  width: auto;
  min-height: 0;
}

.sell-message {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #eaf8ef;
  color: #135d38;
  font-weight: 850;
}

.sell-message.error {
  background: #fdeeee;
  color: #8b2d28;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-layout {
  width: min(760px, calc(100% - 32px));
}

.contact-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-actions {
  justify-content: center;
  margin-top: 6px;
}

.site-footer {
  background: #fff;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.footer-content p {
  margin: 6px 0 0;
  color: var(--muted);
  font-style: italic;
}

.footer-brand {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer-logo {
  display: block;
  width: 170px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-links a,
.footer-link-button {
  text-decoration: none;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  background: #111827;
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.footer-links .social-link {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  justify-content: center;
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease;
}

.footer-links .social-link svg {
  width: 23px;
  height: 23px;
  display: block;
}

.footer-links .social-link.instagram svg,
.footer-links .social-link.whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links .social-link.facebook svg {
  fill: currentColor;
}

.footer-links .social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #515bd4);
}

.footer-links .social-link.facebook {
  background: #1877f2;
}

.footer-links .social-link.whatsapp {
  background: #25d366;
}

.footer-links .social-link:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.24);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cookie-banner[hidden],
.privacy-modal[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-actions,
.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 20px;
  background: rgba(17, 24, 39, 0.62);
  display: grid;
  place-items: center;
}

.privacy-panel {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.28);
}

.privacy-header {
  min-height: 66px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.privacy-header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.privacy-header button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.privacy-content {
  padding: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-content p {
  margin: 0 0 14px;
}

.privacy-actions {
  padding: 0 20px 20px;
}

.seo-header {
  position: sticky;
}

.seo-body {
  background: var(--soft);
}

.seo-hero,
.seo-vehicle-hero {
  padding: 136px 0 76px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(31, 41, 55, 0.9)),
    url("/static/site-images/optimized/fotopiazzale-1600.jpg") center / cover no-repeat;
  color: #fff;
}

.seo-hero-inner {
  width: min(860px, calc(100% - 32px));
  text-align: center;
}

.seo-hero h1,
.seo-vehicle-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 0.96;
}

.seo-hero p,
.seo-vehicle-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.seo-section {
  padding: 72px 0;
}

.seo-two-columns,
.seo-vehicle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.seo-checks {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.seo-checks li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--dark-soft);
  font-weight: 750;
}

.seo-contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.seo-contact-card strong {
  font-size: 1.35rem;
}

.seo-contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.seo-area-tags,
.seo-related div,
.seo-local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-area-tags span,
.seo-related a,
.seo-local-links a {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--dark-soft);
  text-decoration: none;
  font-weight: 800;
}

.seo-local-note {
  max-width: 760px;
  margin: -6px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.seo-mini-grid,
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-mini-car a,
.seo-link-grid a {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-mini-car a:hover,
.seo-link-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.11);
}

.seo-mini-car img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.seo-mini-car strong,
.seo-mini-car span {
  padding: 0 18px;
}

.seo-mini-car span {
  padding-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.seo-link-grid a {
  padding: 22px;
}

.seo-link-grid span {
  color: var(--green);
  font-weight: 950;
}

.seo-link-grid strong {
  font-size: 1.15rem;
}

.seo-link-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.seo-vehicle-layout {
  align-items: center;
}

.seo-vehicle-layout > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.seo-price {
  display: block;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.seo-specs {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.seo-specs li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.seo-footer-links {
  gap: 12px;
}

.seo-footer-links a {
  color: var(--dark-soft);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
    padding: 10px 14px;
  }

  .site-brand img {
    width: 142px;
  }

  .site-nav {
    right: 14px;
    gap: 7px;
    font-size: 0.9rem;
  }

  .footer-logo {
    width: 142px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88vh;
  }

  .section {
    padding: 62px 0;
  }

  .split,
  .split.reverse,
  .request-content {
    grid-template-columns: 1fr;
  }

  .sell-form {
    grid-template-columns: 1fr;
  }

  .split.reverse > div,
  .split.reverse > img {
    order: initial;
  }

  .section-image {
    height: 300px;
  }

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

  .request-content .button {
    width: 100%;
  }

  .seo-two-columns,
  .seo-vehicle-layout {
    grid-template-columns: 1fr;
  }

  .seo-mini-grid,
  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .privacy-actions {
    justify-content: stretch;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-brand {
    position: static;
    transform: none;
  }

  .site-nav {
    position: static;
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .seo-mini-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .car-title-row,
  .footer-content {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
