@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #0b0c10;
  --color-panel: #151822;
  --color-panel-soft: rgba(21, 24, 34, 0.85);
  --color-accent: #f14843;
  --color-accent-dark: #c13a38;
  --color-text: #f5f7fa;
  --color-text-secondary: rgba(245, 247, 250, 0.75);
  --color-text-muted: rgba(245, 247, 250, 0.62);
  --color-text-contrast: #1a2130;
  --color-text-contrast-muted: rgba(26, 33, 48, 0.65);
  --color-border: rgba(245, 247, 250, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 45px rgba(8, 9, 13, 0.4);
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

body.modal-open,
body.gallery-open { overflow: hidden; }

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

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

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

.hero-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f8f8f8;
  color: #ffffff;
  overflow: hidden;
  padding: 20px 0 120px;
}

.hero-v2__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v2__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-v2__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 28px 0 0;
  width: min(1120px, 92vw);
  max-width: 1120px;
  margin: 0 auto;
}

.hero-v2__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-v2__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-v2__logo {
  width: 105px;
  height: 61px;
  object-fit: contain;
}

.hero-v2__nav {
  display: none;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.hero-v2__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-v2__nav-list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-v2__nav-list a:hover,
.hero-v2__nav-list a:focus-visible {
  color: #ffffff;
}

.hero-v2__top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hero-v2__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 2px solid #cd161a;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(14, 14, 18, 0.92);
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.hero-v2__phone:hover,
.hero-v2__phone:focus-visible {
  background: rgba(18, 18, 24, 0.98);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.hero-v2__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.hero-v2__menu {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-v2__mobile-menu[hidden] {
  display: none;
}

.hero-v2__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 64px 24px 24px;
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}

.hero-v2__mobile-menu-panel {
  width: min(320px, 100%);
  background: rgba(21, 22, 28, 0.95);
  border-radius: 24px;
  padding: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.hero-v2__mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-v2__mobile-menu-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-v2__mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-v2__mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-v2__mobile-nav a:hover,
.hero-v2__mobile-nav a:focus-visible {
  color: #ffffff;
}

.hero-v2__mobile-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hero-v2__mobile-phone:hover,
.hero-v2__mobile-phone:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .hero-v2__phone {
    padding: 8px 16px;
    font-size: 16px;
  }

  .hero-v2__menu {
    width: 44px;
    height: 44px;
  }

  .hero-v2__card {
    margin-top: 56px;
    padding: 22px 20px 28px;
    border-radius: 28px;
  }

  .hero-v2__title {
    font-size: 22px;
    line-height: 1.22;
  }
}

.hero-v2__card {
  width: 100%;
  max-width: 420px;
  background: #2b2b2b;
  border-radius: 32px;
  padding: 26px 26px 32px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  margin-top: 20%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-v2__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-v2__tagline {
  display: none;
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-v2__title {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-v2__visual {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.hero-v2__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  margin: 0 0 6px;
}

.hero-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.hero-v2__description {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}

.hero-v2__description--mobile {
  display: none;
}

.contact-anchor {
  position: absolute;
  top: 0;
  height: 0;
}

.contact-sheet {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  --keyboard-offset: 0px;
  --sheet-viewport-height: 100vh;
}

.contact-sheet.is-open {
  pointer-events: auto;
}

.contact-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.contact-sheet.is-open .contact-sheet__overlay {
  opacity: 1;
  visibility: visible;
}

.contact-sheet__panel {
  position: relative;
  width: min(430px, 100%);
  max-height: calc(var(--sheet-viewport-height, 100vh) - 32px);
  background: #393939;
  color: #ffffff;
  border-radius: 28px 28px 0 0;
  padding: 28px 24px 36px;
  box-shadow: 0 -32px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(calc(120% + var(--keyboard-offset, 0px)));
  transition: transform 0.35s cubic-bezier(0.25, 0.9, 0.3, 1.2), opacity 0.25s ease;
  pointer-events: none;
  overflow-y: auto;
  scrollbar-width: thin;
  opacity: 0;
  visibility: hidden;
}

.contact-sheet.is-open .contact-sheet__panel {
  transform: translateY(calc(0px - var(--keyboard-offset, 0px)));
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-sheet__panel::-webkit-scrollbar {
  width: 6px;
}

.contact-sheet__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.contact-sheet__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-sheet__step {
  display: none;
}

.contact-sheet__step.is-active {
  display: block;
}

@media (min-width: 768px) {
  .contact-sheet {
    align-items: center;
    padding: 32px 0;
  }

  .contact-sheet__panel {
    width: min(560px, calc(100% - 80px));
    max-height: calc(100vh - 80px);
    border-radius: 32px;
  }
}

@media (min-width: 1024px) {
  .contact-sheet__panel {
    width: min(640px, calc(100% - 120px));
    padding: 36px 36px 40px;
  }
}

.contact-sheet__step-title {
  margin: 0 0 18px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.contact-sheet__vehicle-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 6px;
  margin: 0 -6px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding: 6px;
}

.contact-sheet__vehicle-grid--compact {
  margin-bottom: 18px;
}

.contact-sheet__vehicle-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  width: 120px;
  min-width: 120px;
  height: 118px;
  padding: 16px 10px 14px 14px;
  border-radius: 18px;
  border: 1.5px solid rgba(26, 33, 48, 0.08);
  background: #ffffff;
  color: #1a2130;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  scroll-snap-align: start;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.contact-sheet__vehicle-option:hover {
  transform: translateY(-3px);
  border-color: #cd161a;
  box-shadow: 0 12px 28px rgba(205, 22, 26, 0.18);
}

.contact-sheet__vehicle-option.is-selected {
  border-color: #cd161a;
  border-radius: 25px;
  color: #1a2130;
  box-shadow: 0 14px 32px rgba(205, 22, 26, 0.24);
}

.contact-sheet__vehicle-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 72px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  align-self: flex-end;
  margin: -16px -10px 0 auto;
}

.contact-sheet__vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.contact-sheet__vehicle-label {
  white-space: nowrap;
  margin-top: auto;
}

.contact-sheet__notice {
  min-height: 18px;
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 13px;
  text-align: center;
  color: #ffc9c9;
  visibility: hidden;
}

.contact-sheet__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(43, 43, 49, 0.88) 0%, rgba(18, 18, 22, 0.94) 100%);
  color: #ffffff;
  transition: border 0.2s ease, transform 0.2s ease;
}

.contact-card:focus-within {
  border-color: #cd161a;
  transform: translateY(-2px);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card__icon svg {
  width: 10px;
  height: 10px;
  color: #ffffff;
}

.contact-card input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.contact-card input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.success-modal.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.success-modal.is-visible .success-modal__overlay {
  opacity: 1;
}

.success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  border-radius: 24px;
  background: rgba(15, 21, 18, 0.98);
  border: 1px solid rgba(82, 201, 126, 0.5);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  padding: 32px 32px 36px;
  color: #f5f7fa;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.success-modal.is-visible .success-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(18, 24, 20, 0.92);
  color: rgba(245, 247, 250, 0.85);
  font-size: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.success-modal__close:hover,
.success-modal__close:focus-visible {
  background: rgba(24, 34, 28, 0.96);
  color: #ffffff;
}

.success-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-modal__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(82, 201, 126, 0.18);
  color: #52c97e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-modal__icon svg {
  width: 32px;
  height: 32px;
}

.success-modal__title {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.success-modal__message {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(186, 226, 196, 0.92);
}

.success-modal__dialog:focus {
  outline: 2px solid rgba(82, 201, 126, 0.6);
  outline-offset: 4px;
}

.site-footer {
  background: #0e1016;
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 16px 32px;
  margin-top: 120px;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.site-footer__column h3 {
  margin: 0 0 12px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer__column a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #ffffff;
}

.site-footer__column--brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: 148px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

.site-footer__note {
  margin: 0;
  text-align: center;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .site-footer__inner {
    text-align: left;
    justify-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__column,
  .site-footer__column--brand {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(0, 1fr));
  }
}


.contact-sheet__handle {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.contact-sheet__handle span {
  display: inline-flex;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.contact-sheet__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-sheet__header {
  text-align: center;
  margin-bottom: 24px;
  padding: 0 16px;
}

.contact-sheet__eyebrow {
  margin: 0 0 8px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.contact-sheet__title {
  margin: 0 0 10px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #ffffff;
}

.contact-sheet__subtitle {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.contact-sheet__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-sheet__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-sheet__label {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.contact-sheet__input {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(21, 21, 24, 0.65);
  padding: 8px 15px;
  min-height: 44px;
}

.contact-sheet__input--icon {
  padding: 6px 13px;
  gap: 8px;
  border-radius: 10px;
}

.contact-sheet__input input,
.contact-sheet__input select,
.contact-sheet__input textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.contact-sheet__input--icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-sheet__form .contact-sheet__field:first-of-type .contact-sheet__input--icon svg {
  width: 24px;
  height: 24px;
}

.contact-sheet__input input:focus,
.contact-sheet__input select:focus,
.contact-sheet__input textarea:focus {
  outline: none;
}

.contact-sheet__input input::placeholder,
.contact-sheet__input textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-sheet__input select {
  color: #ffffff;
  appearance: none;
}

.contact-sheet__input--textarea textarea {
  resize: vertical;
  min-height: 88px;
}

.contact-sheet__alert {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -8px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(18, 18, 24, 0.85);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-sheet__alert[hidden] {
  display: none;
}

.contact-sheet__alert-message {
  flex: 1;
}

.contact-sheet__alert-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-sheet__alert-close:hover,
.contact-sheet__alert-close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  outline: none;
}

.contact-sheet__alert-close:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.32);
}

.contact-sheet__alert--success {
  border-color: rgba(88, 214, 128, 0.45);
  background: rgba(54, 166, 97, 0.14);
  color: #c6f7d1;
  box-shadow: 0 18px 34px rgba(58, 190, 104, 0.28);
}

.contact-sheet__alert--error {
  border-color: rgba(229, 96, 117, 0.5);
  background: rgba(162, 44, 59, 0.18);
  color: #ffd2d7;
  box-shadow: 0 18px 34px rgba(196, 54, 73, 0.28);
}

.contact-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.contact-sheet__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #cd161a;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-sheet__submit:hover:not(:disabled) {
  background: #a91128;
  transform: translateY(-1px);
}

.contact-sheet__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-sheet__submit .contact-sheet__spinner {
  visibility: hidden;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  animation: contact-spin 1s linear infinite;
}

.contact-sheet__submit.is-loading .contact-sheet__spinner {
  visibility: visible;
}

.contact-sheet__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.contact-sheet__link:hover {
  color: #ffffff;
}

@keyframes contact-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-v2__sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--cta-bottom, 0px) + env(safe-area-inset-bottom, 0px));
  z-index: 10;
  background: rgba(20, 20, 24, 0.96);
  border-radius: 0;
  padding: 18px 20px 22px;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.45);
  margin-top: auto;
  transition: bottom 0.2s ease;
  width: 100%;
  max-width: 100%;
}

body.modal-open .hero-v2__sticky {
  display: none;
}

body.menu-open .hero-v2__sticky {
  display: none;
}

.hero-v2__sticky-inner {
  display: flex;
  gap: 16px;
  width: 100%;
}

.hero-v2__cta {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.hero-v2__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(6, 6, 10, 0.78);
}

.hero-v2__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.hero-v2__cta--outline {
  border-color: #cd161a;
  background: rgba(23, 23, 27, 0.9);
  box-shadow: inset 0 0 0 1px rgba(205, 22, 26, 0.2);
}

.hero-v2__cta--filled {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 12, 0.92);
}

.hero-v2__cta--outline:hover {
  border-color: #f73232;
}

.hero-v2__cta--filled:hover {
  background: rgba(18, 18, 24, 0.96);
}

@media (max-width: 767px) {
  body {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  body.modal-open,
  body.menu-open {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  main {
    padding-bottom: calc(var(--sticky-height, 64px) + 12px);
  }

  .hero-v2__sticky {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(var(--cta-bottom, 0px) + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 16px calc(env(safe-area-inset-right, 0px)) calc(env(safe-area-inset-bottom, 0px) + 16px)
      calc(env(safe-area-inset-left, 0px));
    border-radius: 15px 15px 0 0;
    background: #393939;
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.45);
    z-index: 120;
    overflow: visible;
    min-height: 96px;
  }

  .hero-v2__sticky-inner {
    width: 100%;
    display: flex;
    gap: 12px;
    padding: 0 3px;
    align-items: center;
  }

  .hero-v2__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 12px;
    min-width: 0;
  }

  .hero-v2__cta-icon {
    width: 16px;
    height: 16px;
  }

  .hero-v2__description--desktop {
    display: none;
  }

  .hero-v2__description--mobile {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero-v2 {
    padding: 40px 0 48px;
  }

  .hero-v2__inner {
    padding: 36px 0 0;
    gap: 52px;
    width: min(1120px, 92vw);
    max-width: 1120px;
  }

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

  .hero-v2__phone {
    font-size: 22px;
    padding: 14px 28px;
  }

  .hero-v2__menu {
    width: 54px;
    height: 54px;
  }

  .hero-v2__card {
    max-width: 640px;
    border-radius: 44px;
    padding: 40px 42px 46px;
    gap: 32px;
    background: linear-gradient(140deg, rgba(20, 20, 26, 0.96) 0%, rgba(42, 42, 56, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: min(18vh, 140px);
  }

  .hero-v2__content {
    gap: 20px;
  }

  .hero-v2__tagline {
    display: block;
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .hero-v2__title {
    font-size: 36px;
  }

  .hero-v2__description {
    font-size: 18px;
  }

  .hero-v2__visual {
    padding: 24px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .hero-v2__sticky {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(1120px, 92vw);
    max-width: 1120px;
    padding: 20px 32px;
    border-radius: 999px;
    background: rgba(18, 18, 22, 0.94);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  }

  .hero-v2__sticky-inner {
    max-width: none;
    width: 100%;
    gap: 24px;
  }

  .hero-v2__cta {
    padding: 18px 28px;
    font-size: 18px;
  }

  .hero-v2__mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hero-v2__inner {
    width: min(1120px, 92vw);
    max-width: 1120px;
    align-items: stretch;
    gap: 68px;
  }

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

  .hero-v2__card {
    max-width: none;
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 56px;
    padding: 56px 60px;
    border-radius: 60px;
    background: linear-gradient(130deg, rgba(20, 20, 28, 0.95) 0%, rgba(31, 33, 47, 0.9) 52%, rgba(8, 8, 14, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 48px 120px rgba(0, 0, 0, 0.35);
  }

  .hero-v2__content {
    gap: 24px;
  }

  .hero-v2__tagline {
    font-size: 14px;
    letter-spacing: 0.2em;
  }

  .hero-v2__title {
    font-size: 46px;
    line-height: 1.08;
  }

  .hero-v2__description {
    font-size: 18px;
    max-width: 32ch;
  }

  .hero-v2__visual {
    padding: 30px;
    border-radius: 44px;
    background: linear-gradient(140deg, rgba(20, 24, 32, 0.94) 0%, rgba(12, 14, 20, 0.88) 48%, rgba(9, 10, 14, 0.92) 100%);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  }

  .hero-v2__image {
    aspect-ratio: 16 / 8.2;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
  }

  .hero-v2__image { overflow: visible; }
  .hero-v2__image img {
    width: auto;
    max-width: none;
    transform: translateX(-120px) scale(2.1875) !important; /* +25% peste ~1.75 */
    transform-origin: left center;
    margin-left: 0 !important;
    outline: 2px solid transparent; /* doar ca să verifici că se aplică */
  }

  .hero-v2__nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
  }

  .hero-v2__menu {
    display: none;
  }

  .hero-v2__top-actions {
    gap: 20px;
  }

  .hero-v2__cta {
    font-size: 20px;
    padding: 20px 36px;
  }

  .hero-v2__sticky {
    width: min(1120px, 92vw);
    max-width: 1120px;
    padding: 22px 40px;
  }

  .hero-v2__nav-list {
    gap: 34px;
    font-size: 15px;
    justify-content: center;
  }

  .hero-v2__nav-list a {
    position: relative;
    padding-bottom: 6px;
    transition: color 0.2s ease;
  }

  .hero-v2__nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease, transform 0.2s ease;
    transform: scaleX(0.2);
    transform-origin: center;
  }

  .hero-v2__nav-list a:hover::after,
  .hero-v2__nav-list a:focus-visible::after {
    background: #f14843;
    transform: scaleX(1);
  }

  .hero-v2__cta-icon {
    width: 24px;
    height: 24px;
  }
}


.order-flow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

.order-flow--open {
  pointer-events: auto;
}

.order-flow__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.order-flow--open .order-flow__backdrop {
  opacity: 1;
  visibility: visible;
}

.order-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: min(430px, 100%);
  max-height: calc(100vh - 32px);
  transform: translate(-50%, 120%);
  transition: transform 0.35s ease;
  background: #393939;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.55);
  color: #ffffff;
  padding: 24px 24px 32px;
  pointer-events: none;
  overflow-y: auto;
  scrollbar-width: none;
}

.order-sheet::-webkit-scrollbar { display: none; }

.order-sheet.is-active {
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.order-sheet__handle {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.order-sheet__grabber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.order-sheet__grabber svg {
  width: 30px;
  height: 12px;
}

.order-sheet__header {
  text-align: center;
  padding: 0 12px;
  margin-bottom: 20px;
}

.order-sheet__step {
  margin: 0 0 8px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.order-sheet__title {
  margin: 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #ffffff;
}

.order-sheet__helper {
  margin: 0 12px 20px;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.order-vehicles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 12px;
  margin-bottom: 12px;
}

.order-vehicles__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.order-vehicles__option.is-selected {
  border-color: #cd161a;
  background: #ffffff;
  color: #1f1f1f;
}

.order-vehicles__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 72px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.order-vehicles__thumb img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.order-vehicles__notice {
  min-height: 18px;
  margin: 4px 12px 0;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 13px;
  color: #ffbaba;
}

.order-sheet__actions,
.order-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 0 12px;
}

.order-sheet__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #cd161a;
  background: #cd161a;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.order-sheet__primary:hover:not(:disabled) {
  background: #a91128;
}

.order-sheet__primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.order-sheet__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.order-sheet__link:hover {
  color: #ffffff;
}

.order-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 12px;
}

.order-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-form__caption {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.order-form__input-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(205, 22, 26, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.order-form__input-wrapper svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.order-form__input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.order-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.order-sheet__primary--submit {
  position: relative;
}

.order-sheet__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  animation: order-spin 1s linear infinite;
  display: none;
}

.order-sheet__primary.is-loading .order-sheet__spinner {
  display: inline-flex;
}

.order-sheet__primary.is-loading [data-submit-label] {
  opacity: 0.7;
}

@keyframes order-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.button--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.button--primary:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #f5f7fa;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(245, 247, 250, 0.72);
}

.button--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.button--block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 4rem;
}

.hero__gradient,
.hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(241, 72, 67, 0.45), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(217, 84, 55, 0.35), transparent 62%),
    radial-gradient(circle at 90% 90%, rgba(124, 45, 18, 0.25), transparent 70%),
    linear-gradient(160deg, #1a0b0f 10%, #090a11 55%, #05050a 100%);
  z-index: 0;
}

.top-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

.brand img { width: 150px; height: auto; }

.top-nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex: 1;
}

.top-nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.68);
  font-family: 'Montserrat', system-ui, sans-serif;
}

.top-nav__links a:hover { color: var(--color-accent); }

.top-nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 24, 61, 0.55);
  background: rgba(212, 24, 61, 0.18);
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  color: #f8fafc;
  transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.top-nav__cta:hover {
  background: rgba(212, 24, 61, 0.28);
  color: #fff;
}

.top-nav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.top-nav__cta-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.top-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.top-nav__toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: stretch;
}

.hero__layout--split {
  grid-template-columns: minmax(0, 1fr);
}

.hero__main {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 640px;
}

.hero-card {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 20, 30, 0.96) 0%, rgba(9, 11, 19, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: #f8fafc;
  overflow: hidden;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.45);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -45% -25% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 24, 61, 0.32), transparent 68%);
  z-index: 0;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto auto -40% -30%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  z-index: 0;
}

.hero-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.hero-card__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: rgba(212, 24, 61, 0.75);
}

.hero-card__headline {
  margin: 0;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem);
  line-height: 1.1;
  color: #fff;
}

.hero-card__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(241, 245, 249, 0.78);
  max-width: 32rem;
}

.hero-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-inline: auto;
}

.hero-card__media img {
  width: min(320px, 100%);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.35));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.hero__cta {
  min-width: 200px;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 2.4rem;
}

.hero__cta--secondary {
  border-color: rgba(248, 250, 252, 0.35);
  color: #f8fafc;
}

.hero__cta--secondary:hover {
  border-color: rgba(241, 72, 67, 0.6);
  color: var(--color-accent);
}

.hero__subtext {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.7);
  max-width: 28rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 260px);
    align-items: center;
  }

  .hero-card__media {
    justify-content: flex-end;
    margin-inline: 0;
  }

  .order-banner--hero .order-banner__grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-banner--hero .order-banner__actions .button {
    min-width: 240px;
  }
}

@media (min-width: 1024px) {
  .hero__layout--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 1fr);
  }

  .hero__main {
    gap: clamp(1.8rem, 3vw, 2.8rem);
    padding-right: clamp(1rem, 3vw, 2rem);
  }
}

.order-section {
  position: relative;
  display: grid;
  width: 100%;
  gap: 1.2rem;
  max-width: 480px;
}

.order-banner {
  background: rgba(8, 9, 14, 0.85);
  border-radius: 14px;
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 22px 45px rgba(5, 6, 10, 0.55);
  display: grid;
  gap: 1rem;
  color: #f1f5f9;
  width: 100%;
}

.order-banner--modal {
  background: rgba(11, 12, 18, 0.95);
  box-shadow: none;
}

.order-banner--hero {
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: linear-gradient(160deg, rgba(12, 15, 24, 0.94), rgba(7, 8, 14, 0.88));
  box-shadow: 0 36px 75px rgba(4, 5, 10, 0.55);
  gap: 1.4rem;
}

.order-banner--hero .order-banner__intro {
  margin-bottom: 0;
  gap: 0.5rem;
}

.order-banner--hero .order-banner__title {
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.9rem);
}

.order-banner--hero .order-banner__description {
  color: rgba(226, 232, 240, 0.78);
}

.order-banner__intro {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.order-banner__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.62rem;
  color: rgba(241, 72, 67, 0.8);
}

.order-banner__title {
  margin: 0;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.9rem);
  color: #f8fafc;
  line-height: 1.3;
}

.order-banner__description {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.72);
  max-width: 520px;
}

.order-banner__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.order-banner__grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.order-banner--hero .order-banner__grid--compact {
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1fr);
}

.order-banner__group {
  position: relative;
  background: rgba(15, 18, 26, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 10px;
  padding: 0.7rem 0.85rem 0.6rem 2.6rem;
  display: grid;
  gap: 0.25rem;
  min-height: 62px;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.order-banner__group:focus-within {
  border-color: rgba(241, 72, 67, 0.6);
  box-shadow: 0 0 0 3px rgba(241, 72, 67, 0.18);
  transform: translateY(-2px);
}

.order-banner__step {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.14);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(226, 232, 240, 0.8);
}

.order-banner__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.75);
}

.order-banner--hero .order-banner__group {
  position: static;
  border-radius: 20px;
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.55);
  padding: 1.05rem 1.2rem;
  gap: 0.75rem;
  min-height: auto;
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.order-banner--hero .order-banner__group:focus-within {
  border-color: rgba(241, 72, 67, 0.7);
  box-shadow: 0 0 0 3px rgba(241, 72, 67, 0.18);
  transform: translateY(-2px);
}

.order-banner--hero .order-banner__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}

.order-banner--hero .order-banner__label-text {
  display: inline-block;
  font-weight: 600;
}

.order-banner--hero .order-banner__step {
  position: static;
  transform: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 72, 67, 0.55);
  background: rgba(241, 72, 67, 0.18);
  font-size: 0.75rem;
  color: #f8fafc;
}

.order-banner__group input {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #f8fafc;
  padding: 0;
}

.order-banner__group input::placeholder { color: rgba(148, 163, 184, 0.6); }
.order-banner__group input:focus { outline: none; }

.order-banner--hero .order-banner__group input {
  font-size: 1rem;
  font-weight: 500;
  color: #f8fafc;
}

.order-banner--hero .order-banner__group input::placeholder {
  color: rgba(203, 213, 225, 0.55);
}

.order-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.order-banner__actions .button {
  width: 120%;
  min-width: 220px;
  border-radius: 999px;
  padding: 0.82rem 2.2rem;
  font-size: 0.75rem;
}

.order-banner--hero .order-banner__actions {
  margin-top: 1rem;
}

.order-banner--hero .order-banner__actions .button {
  width: 100%;
  min-width: 100%;
  padding: 1rem 2.4rem;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
}

.order-banner__vehicles {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.order-banner__vehicles legend {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
}

.order-banner--hero .order-banner__vehicles {
  gap: 1rem;
  margin-top: 0.8rem;
}

.order-banner--hero .order-banner__vehicles legend {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: rgba(226, 232, 240, 0.72);
}

.vehicle-options {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.vehicle-option {
  position: relative;
  cursor: pointer;
}

.vehicle-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.vehicle-option__content {
  border-radius: 14px;
  border: 1.5px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 18, 26, 0.9);
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  text-align: center;
  min-height: 136px;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vehicle-option__badge {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(241, 245, 249, 0.75);
}

.vehicle-option__icon svg {
  width: 56px;
  height: 28px;
}

.vehicle-option__text {
  font-size: 0.9rem;
  color: rgba(203, 213, 225, 0.75);
}

.vehicle-option input:checked + .vehicle-option__content {
  border-color: var(--color-accent);
  box-shadow: 0 18px 32px rgba(241, 72, 67, 0.22);
  transform: translateY(-4px);
}

.vehicle-option input:checked + .vehicle-option__content .vehicle-option__badge,
.vehicle-option input:checked + .vehicle-option__content .vehicle-option__text {
  color: var(--color-accent-dark);
}

.order-banner--hero .vehicle-options {
  gap: 1rem;
}

.order-banner--hero .vehicle-option__content {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  border: 1.5px solid rgba(148, 163, 184, 0.24);
  min-height: 142px;
}

.order-banner--hero .vehicle-option input:checked + .vehicle-option__content {
  border-color: var(--color-accent);
  box-shadow: 0 20px 38px rgba(241, 72, 67, 0.24);
}

.order-banner__notes {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.order-banner__notes label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
}

.order-banner__notes textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 18, 26, 0.92);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #f8fafc;
  min-height: 120px;
  resize: vertical;
}

.order-banner--hero .order-banner__notes label {
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  color: rgba(226, 232, 240, 0.72);
}

.order-banner--hero .order-banner__notes textarea {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.order-banner__notes textarea:focus {
  outline: none;
  border-color: rgba(241, 72, 67, 0.6);
  box-shadow: 0 0 0 3px rgba(241, 72, 67, 0.2);
}

.order-banner__alert {
  min-height: 0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-top: 0.35rem;
}

.order-banner__alert:empty { display: none; }

.order-banner__notice {
  margin: 0;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.45);
}

.order-banner--hero .order-banner__notice {
  margin-top: 0.6rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: rgba(226, 232, 240, 0.48);
}

.order-banner .alert {
  color: rgba(226, 232, 240, 0.85);
  border-color: rgba(51, 65, 85, 0.6);
  background: rgba(15, 23, 42, 0.55);
}

.order-banner .alert-success {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.22);
  color: #bbf7d0;
}

.order-banner .alert-error {
  border-color: rgba(239, 68, 68, 0.55);
  background: rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  isolation: isolate;
}

.modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 13, 0.75);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.modal__content {
  position: relative;
  width: min(760px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(11, 12, 16, 0.95);
  box-shadow: 0 45px 90px rgba(8, 9, 13, 0.6);
  display: grid;
  gap: 1.5rem;
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(15, 23, 42, 0.45);
  color: #f8fafc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal__close:hover {
  background: rgba(241, 72, 67, 0.75);
  transform: translateY(-2px);
}

.modal__close span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.alert {
  min-height: 0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  background: transparent;
  color: #1f2937;
}

.alert-success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(187, 247, 208, 0.4);
  color: #166534;
}

.alert-error {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(254, 226, 226, 0.45);
  color: #b91c1c;
}

@media (min-width: 640px) {
  .order-banner__grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

@media (min-width: 768px) {
  .order-banner__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .order-banner { padding: 1.6rem 1.8rem; }
  .order-banner__grid { gap: 1rem; }
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section--light {
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.94), rgba(241, 72, 67, 0.18));
}

.section--muted {
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.9), rgba(241, 72, 67, 0.14));
}

.section--cta {
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.32), rgba(11, 12, 16, 0.95));
}

.section--cta .section__header p,
.section--cta .section__header h2 { color: #fff; }

.section--contrast {
  background: #ffffff;
  color: #1a2130;
}

.section--contrast .section__eyebrow {
  color: var(--color-accent-dark);
}

.section--contrast .section__header p,
.section--contrast .section__header h2,
.section--contrast .section__header h3 {
  color: #1a2130;
}

.section--contrast .cards-grid > *,
.section--contrast .pricing-grid > *,
.section--contrast .coverage-grid ul,
.section--contrast .gallery-grid > *,
.section--contrast .gallery-layout__stories > *,
.section--contrast .gallery-photo,
.section--contrast .testimonial {
  background: #ffffff;
  color: #1a2130;
  border: 1px solid rgba(26, 33, 48, 0.12);
  box-shadow: 0 18px 35px rgba(26, 33, 48, 0.08);
}

.section--contrast .gallery-card--light {
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.18), rgba(255, 255, 255, 0.95));
}

.section--contrast .coverage-cta {
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.92), rgba(193, 58, 56, 0.92));
  color: #ffffff;
  border: none;
  box-shadow: 0 24px 45px rgba(241, 72, 67, 0.25);
}

.section--contrast .coverage-cta p { color: rgba(255, 255, 255, 0.85); }

.section--contrast .testimonial__author { color: rgba(26, 33, 48, 0.55); }

.section__header {
  text-align: center;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: rgba(241, 72, 67, 0.8);
}

.section__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 1.2rem + 1vw, 2.4rem);
}

.section__header p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(245, 247, 250, 0.68);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid--three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.service-card {
  background: var(--color-panel-soft);
  border-radius: var(--radius-md);
  padding: 2.3rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(241, 72, 67, 0.18);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.breadcrumbs {
  background: linear-gradient(135deg, rgba(15, 19, 28, 0.88), rgba(26, 31, 45, 0.72));
  border-bottom: 1px solid rgba(245, 247, 250, 0.08);
  backdrop-filter: blur(12px);
  margin: 0 0 2.2rem;
}

.breadcrumbs__list {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 0;
  margin: 0;
  list-style: none;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(245, 247, 250, 0.72);
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: '›';
  opacity: 0.6;
  font-size: 0.9rem;
}

.breadcrumbs__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__item a:hover,
.breadcrumbs__item a:focus-visible {
  color: #ffffff;
}

.breadcrumbs__item[aria-current='page'] {
  color: #ffffff;
  font-weight: 600;
}

.longform {
  display: grid;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(245, 247, 250, 0.78);
}

.longform p {
  margin: 0;
  line-height: 1.7;
}

.longform ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.6rem;
}

.longform li::marker {
  color: var(--color-accent);
}

.longform strong {
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: var(--color-panel-soft);
  border-radius: var(--radius-md);
  padding: 2.3rem;
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.pricing-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.pricing-card__price { color: var(--color-accent); font-weight: 700; font-size: 1.25rem; }
.pricing-card__note { color: rgba(1, 1, 2, 0.68); font-size: 0.92rem; }

.pricing-grid--detailed {
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-card--detailed {
  position: relative;
  display: grid;
  gap: 0.8rem;
  text-align: left;
  align-content: start;
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(26, 33, 48, 0.1);
  border-radius: 18px;
  box-shadow: 0 15px 32px rgba(10, 12, 18, 0.16);
  color: #0f172a;
}

.pricing-card__badge {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(241, 72, 67, 0.12);
  color: var(--color-accent);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(241, 72, 67, 0.18);
}

.pricing-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.9rem, 1.8vw, 1.4rem);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.06), rgba(26, 33, 48, 0.04));
  border: 1px solid rgba(26, 33, 48, 0.07);
  overflow: hidden;
  min-height: clamp(160px, 26vw, 230px);
}

.pricing-card__media img {
  width: auto;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  transform: scale(1.15);
  transform-origin: center;
  filter: drop-shadow(0 24px 36px rgba(26, 33, 48, 0.2));
}

.pricing-card__category {
  margin: 0;
  color: #0f172a;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pricing-card__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #11131f;
}

.pricing-card--detailed .pricing-card__amount {
  color: #0f172a;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}

.pricing-card--detailed .pricing-card__note {
  color: rgba(15, 23, 42, 0.55);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-right: 0.4rem;
}

.pricing-card__cta {
  margin-top: auto;
  box-shadow: 0 18px 30px rgba(241, 72, 67, 0.22);
}

.pricing-card__amount--alt {
  color: #11131f;
  font-weight: 600;
  font-size: clamp(0.98rem, 1.8vw, 1.1rem);
  display: inline-block;
}

.pricing-card--detailed .button {
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--color-accent);
}

@media (max-width: 640px) {
  .breadcrumbs { margin-bottom: 1.4rem; }
  .pricing-card--detailed { padding: 1.5rem; }
  .pricing-card__media { min-height: 190px; }
}

.coverage-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.coverage-grid ul {
  background: var(--color-panel-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(245, 247, 250, 0.68);
  font-family: 'Montserrat', system-ui, sans-serif;
}

.coverage-grid li::before {
  content: '•';
  color: var(--color-accent);
  margin-right: 0.55rem;
}

.coverage-cta {
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.9), rgba(193, 58, 56, 0.9));
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #fff;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-layout {
  display: grid;
  gap: 1.75rem;
}

.gallery-layout__stories {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.gallery-layout__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-panel-soft);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.gallery-photo__button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.gallery-photo__button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-photo:hover img { transform: scale(1.05); }

.testimonial,
.gallery-card {
  background: var(--color-panel-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.testimonial__quote { font-size: 1.05rem; font-weight: 600; }
.testimonial__author {
  font-size: 0.9rem;
  color: rgba(245, 247, 250, 0.68);
  font-family: 'Montserrat', system-ui, sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.gallery-card--light {
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.3), rgba(17, 20, 30, 0.92));
}

.section--contrast .gallery-photo {
  background: #ffffff;
  border-color: rgba(26, 33, 48, 0.12);
  box-shadow: 0 18px 35px rgba(26, 33, 48, 0.08);
}

.section--contrast .gallery-layout__stories > .gallery-card {
  background: linear-gradient(135deg, rgba(241, 72, 67, 0.18), rgba(255, 255, 255, 0.98));
  color: #1a2130;
  border-color: rgba(26, 33, 48, 0.12);
  box-shadow: 0 18px 35px rgba(26, 33, 48, 0.08);
}

.section--contrast .gallery-layout__stories > .gallery-card span {
  color: var(--color-accent-dark);
}

.section--contrast .gallery-layout__stories > .gallery-card p {
  color: rgba(26, 33, 48, 0.7);
}

.gallery-modal[hidden] { display: none; }

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 18, 0.85);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  max-height: 88vh;
  padding: 24px 28px 52px;
  border-radius: 24px;
  background: rgba(15, 18, 26, 0.98);
  border: 1px solid rgba(245, 247, 250, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-modal__image {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 16px;
  background: #0b0c10;
}

.gallery-modal__caption {
  margin: 0;
  color: rgba(245, 247, 250, 0.75);
  font-size: 0.95rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  background: rgba(0, 0, 0, 0.85);
}

.gallery-modal__actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 8px;
}

.gallery-modal__nav {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal__nav:hover,
.gallery-modal__nav:focus-visible {
  background: rgba(0, 0, 0, 0.85);
}

.section--cta .container { max-width: 960px; }

.cta-banner {
  background: var(--color-panel-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-banner { grid-template-columns: 2fr 1fr; align-items: center; }
}

.cta-banner__text p { margin: 0.4rem 0 0; color: rgba(245, 247, 250, 0.68); }

.cta-banner__actions { display: grid; gap: 0.8rem; }

@media (max-width: 720px) {
  .order-banner { padding: 1rem; }
  .order-banner__grid { grid-template-columns: 1fr; }
  .cta-banner { text-align: center; }
  .cta-banner__actions { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  .gallery-layout__grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (min-width: 1024px) {
  .vehicle-options { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .gallery-layout {
    grid-template-columns: minmax(260px, 320px) 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .cards-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .cards-grid--three,
  .pricing-grid { gap: 1.75rem; }
  .service-card,
  .pricing-card { padding: 2.6rem; }
}
@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    align-items: start;
  }
}
.contact-sheet__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(40, 40, 46, 0.9) 0%, rgba(17, 17, 20, 0.95) 100%);
  color: #ffffff;
  transition: border 0.2s ease, transform 0.2s ease;
}

.contact-card:focus-within {
  border-color: #cd161a;
  transform: translateY(-2px);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card__icon svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
}

.contact-card input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.contact-card input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-card--detailed .pricing-card__price {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
