:root {
  --bg: #050708;
  --bg-soft: #080b0d;
  --card: rgba(10, 12, 14, 0.78);
  --card-strong: rgba(8, 10, 12, 0.9);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: #b8b8b8;
  --red: #ef241c;
  --red-hot: #ff2b20;
  --shadow: rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 58% 0%, rgba(239, 36, 28, 0.09), transparent 32rem),
    linear-gradient(180deg, #101517 0%, var(--bg) 32%, #030405 100%);
  font-family: "Arial Narrow", Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

html[lang="zh"] body {
  font-family: "Arial Narrow", "Arial Black", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

img,
svg {
  display: block;
}

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

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

.page-shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 4px 0 18px;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  padding: 48px 60px 54px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
  background: #080b0d;
  box-shadow: 0 24px 80px var(--shadow);
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  filter: saturate(0.68) contrast(1.12) brightness(0.78);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.88) 28%, rgba(5, 7, 8, 0.28) 68%, rgba(5, 7, 8, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.12) 0%, rgba(5, 7, 8, 0.38) 55%, rgba(5, 7, 8, 0.98) 100%);
}

.brand,
.hero__content,
.benefits {
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 58px;
}

.brand__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand__mark {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  color: var(--red-hot);
}

.brand__mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand__mark path:nth-of-type(2),
.brand__mark circle {
  fill: none;
  stroke: #050708;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name,
.brand__tagline {
  display: block;
}

.brand__name {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.brand__name span {
  color: var(--red-hot);
}

.brand__tagline {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.3;
  text-transform: uppercase;
}

.language-switcher {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 7, 8, 0.68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.language-switcher__button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible {
  border-color: rgba(255, 43, 32, 0.62);
  background: rgba(239, 36, 28, 0.13);
  outline: none;
}

.language-switcher__button:active {
  transform: translateY(1px);
}

.language-switcher__button.is-active {
  border-color: var(--red-hot);
  background: rgba(239, 36, 28, 0.18);
  box-shadow: 0 0 0 3px rgba(239, 36, 28, 0.16);
}

.hero__content {
  max-width: 640px;
}

.hero h1 {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 60px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--red-hot);
}

.hero__content p {
  margin: 34px 0 0;
  font-size: 28px;
  line-height: 1.3;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 82px;
}

.benefit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  min-width: 0;
}

.benefit__icon,
.contact-card__icon,
.service__icon,
.bottom-cta__icon,
.map-pin__icon,
.field__icon {
  display: block;
}

.benefit__icon,
.contact-card__icon,
.service__icon,
.bottom-cta__icon {
  color: var(--red-hot);
}

.benefit__icon svg,
.contact-card__icon svg,
.service__icon svg,
.bottom-cta__icon svg,
.field__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit__icon {
  width: 48px;
  height: 48px;
}

.benefit h2,
.service h3,
.booking-card h2,
.bottom-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit h2 {
  font-size: 20px;
  line-height: 1.18;
}

.benefit p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.contact-panel,
.booking-card,
.map-services,
.bottom-cta {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  margin: 32px 0;
  border-radius: 10px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 128px;
  padding: 28px 32px;
}

.contact-card + .contact-card {
  border-left: 1px solid var(--line);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.24;
}

.phone-list a {
  display: block;
  width: fit-content;
  transition: color 0.2s ease;
}

.phone-list a:hover,
.phone-list a:focus-visible {
  color: var(--red-hot);
  outline: none;
}

.contact-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.contact-card--route {
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-card--route:hover,
.contact-card--route:focus-visible {
  background: rgba(239, 36, 28, 0.12);
  outline: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
}

.booking-card,
.map-services {
  overflow: hidden;
  border-radius: 10px;
}

.booking-card {
  padding: 30px 28px 24px;
}

.booking-card h2 {
  font-size: 40px;
  line-height: 1.05;
}

.booking-card h2 span {
  color: var(--red-hot);
}

.booking-card > p {
  margin: 22px 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.42;
}

.field {
  position: relative;
  display: block;
  margin-top: 12px;
}

.field__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  min-height: 54px;
  padding: 0 16px 0 52px;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
  padding: 16px 16px 16px 52px;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #d9d9d9 50%),
    linear-gradient(135deg, #d9d9d9 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 24px,
    calc(100% - 15px) 24px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  color: #111;
}

.field input::placeholder,
.field textarea::placeholder,
.field select:invalid {
  color: rgba(255, 255, 255, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 43, 32, 0.78);
  background: rgba(255, 255, 255, 0.055);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--red-hot);
}

.field-error {
  display: block;
  min-height: 17px;
  margin: 4px 0 0 2px;
  color: #ff7c75;
  font-size: 14px;
}

.button {
  width: 100%;
  min-height: 62px;
  margin-top: 10px;
  color: var(--text);
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--red-hot), #dc1712);
  box-shadow: 0 14px 34px rgba(239, 36, 28, 0.3);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

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

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 16px;
}

.form-status.is-success {
  color: #ffffff;
}

.form-status.is-error {
  color: #ff7c75;
}

.route-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 18px;
  color: var(--text);
  border: 1px solid rgba(255, 43, 32, 0.72);
  border-radius: 7px;
  background: rgba(239, 36, 28, 0.16);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.route-fallback[hidden] {
  display: none;
}

.route-fallback:hover,
.route-fallback:focus-visible {
  border-color: var(--red-hot);
  background: rgba(239, 36, 28, 0.26);
  outline: none;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 7px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.privacy-consent input {
  width: 13px;
  height: 13px;
  margin: 1px 0 0;
  accent-color: var(--red-hot);
}

.privacy-consent input[aria-invalid="true"] {
  outline: 2px solid rgba(255, 43, 32, 0.72);
  outline-offset: 2px;
}

.privacy-link {
  display: inline;
  padding: 0;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(255, 43, 32, 0.76);
  text-underline-offset: 3px;
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: var(--red-hot);
  outline: none;
}

.map-services {
  display: grid;
  grid-template-rows: 400px auto;
}

.map-services.has-embed {
  grid-template-rows: 400px auto;
}

.map-frame {
  width: 100%;
  height: 400px;
  min-height: 380px;
  max-height: 400px;
  border: 0;
  border-radius: 10px 10px 0 0;
  background: #080b0d;
}

.map-frame[hidden] {
  display: none;
}

.map-services.has-embed .map-placeholder {
  display: none;
}

.map-services.has-embed .map-frame {
  display: block;
}

.map-placeholder {
  position: relative;
  height: 400px;
  min-height: 380px;
  max-height: 400px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 76%, rgba(64, 124, 174, 0.17), transparent 4rem),
    linear-gradient(135deg, #141a1d, #080a0c);
}

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

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.policy-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 80vh;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 10, 12, 0.97);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
}

.policy-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.policy-modal__close:hover,
.policy-modal__close:focus-visible {
  border-color: var(--red-hot);
  background: rgba(239, 36, 28, 0.16);
  outline: none;
}

.policy-modal h2 {
  margin: 0 42px 20px 0;
  color: var(--text);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.12;
  text-transform: uppercase;
}

.policy-modal__content {
  max-height: calc(80vh - 116px);
  overflow: auto;
  padding-right: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.policy-modal__content p {
  margin: 0 0 14px;
}

.map-placeholder::before,
.map-placeholder::after {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.62;
  background:
    linear-gradient(30deg, transparent 44%, rgba(255, 255, 255, 0.09) 45%, rgba(255, 255, 255, 0.09) 46%, transparent 47%),
    linear-gradient(118deg, transparent 54%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.06) 57%, transparent 58%);
}

.map-placeholder::after {
  transform: rotate(8deg) scale(1.2);
  opacity: 0.36;
}

.map-placeholder__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.42;
}

.map-placeholder__road {
  position: absolute;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.map-placeholder__road--main {
  left: -12%;
  bottom: 35%;
  width: 130%;
  transform: rotate(19deg);
}

.map-placeholder__road--side {
  right: -16%;
  bottom: 18%;
  width: 88%;
  transform: rotate(124deg);
}

.map-pin {
  position: absolute;
  right: 19%;
  top: 45%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: min(330px, 60%);
  padding: 16px 22px 16px 16px;
  border-radius: 10px;
  background: rgba(8, 10, 12, 0.86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.map-pin__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--red-hot);
}

.map-pin__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.map-pin__icon circle {
  fill: #080b0d;
}

.map-pin strong,
.map-pin small {
  display: block;
}

.map-pin strong {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 20px;
}

.map-pin small {
  margin-top: 4px;
  font-size: 15px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 8, 0.76);
}

.service {
  min-width: 0;
  padding: 30px 24px 28px;
  text-align: center;
}

.service + .service {
  border-left: 1px solid var(--line);
}

.service__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.service h3 {
  min-height: 46px;
  font-size: 20px;
  line-height: 1.15;
}

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

.bottom-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 170px;
  margin-top: 32px;
  overflow: hidden;
  padding: 32px 48px;
  border-radius: 10px;
}

.bottom-cta img,
.bottom-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bottom-cta img {
  object-fit: cover;
  object-position: right center;
  filter: saturate(0.72) brightness(0.78);
}

.bottom-cta__shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.82) 48%, rgba(5, 7, 8, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.32), rgba(5, 7, 8, 0.78));
}

.bottom-cta__icon,
.bottom-cta div {
  position: relative;
  z-index: 2;
}

.bottom-cta__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.bottom-cta h2 {
  font-size: 34px;
  line-height: 1.1;
}

.bottom-cta p {
  margin: 16px 0 0;
  font-size: 23px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 24px, 760px);
  }

  .hero {
    min-height: auto;
    padding: 34px 28px 36px;
  }

  .hero__image {
    width: 100%;
    object-position: center top;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.95), rgba(5, 7, 8, 0.68)),
      linear-gradient(180deg, rgba(5, 7, 8, 0.28), rgba(5, 7, 8, 0.98));
  }

  .brand {
    margin-bottom: 48px;
  }

  .language-switcher {
    margin-top: 4px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__content p {
    font-size: 24px;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
  }

  .contact-panel,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .contact-card + .contact-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .hero,
  .contact-panel,
  .booking-card,
  .map-services,
  .bottom-cta {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero {
    padding: 28px 18px 30px;
  }

  .brand {
    align-items: center;
    gap: 14px;
  }

  .brand__link {
    gap: 12px;
  }

  .brand__mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .brand__name {
    font-size: 32px;
  }

  .brand__tagline {
    font-size: 15px;
  }

  .language-switcher {
    flex: 0 0 auto;
    gap: 7px;
    padding: 5px;
    border-radius: 12px;
  }

  .language-switcher__button {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero__content p {
    margin-top: 26px;
    font-size: 21px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 50px;
  }

  .contact-panel {
    margin: 18px 0;
  }

  .contact-card {
    min-height: 112px;
    padding: 22px 20px;
  }

  .contact-card strong {
    font-size: 22px;
  }

  .booking-grid {
    gap: 18px;
  }

  .booking-card {
    padding: 26px 18px 22px;
  }

  .booking-card h2 {
    font-size: 35px;
  }

  .booking-card > p {
    font-size: 18px;
  }

  .map-services,
  .map-services.has-embed {
    grid-template-rows: 340px auto;
  }

  .map-frame,
  .map-placeholder {
    height: 340px;
    min-height: 320px;
    max-height: 400px;
  }

  .map-frame {
    pointer-events: auto;
  }

  .map-pin {
    right: 16px;
    left: 16px;
    top: 42%;
    max-width: none;
  }

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

  .service + .service {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service h3 {
    min-height: 0;
  }

  .bottom-cta {
    align-items: flex-start;
    min-height: 190px;
    padding: 30px 20px;
  }

  .bottom-cta__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .bottom-cta h2 {
    font-size: 28px;
  }

  .bottom-cta p {
    font-size: 19px;
  }

  .policy-modal {
    padding: 18px;
  }

  .policy-modal__dialog {
    width: min(94vw, 720px);
    padding: 26px 18px;
  }

  .policy-modal h2 {
    font-size: 24px;
  }

  .policy-modal__content {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .brand {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 34px;
  }

  .brand__name {
    font-size: 28px;
  }

  .contact-card {
    gap: 16px;
  }

  .contact-card__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .contact-card strong {
    font-size: 20px;
  }

  .button {
    font-size: 18px;
  }
}
