:root {
  --bg: #080a0d;
  --panel: #11161c;
  --panel-soft: #171d24;
  --text: #f7f8f8;
  --muted: #aeb8c2;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d7b46a;
  --accent-strong: #f0cc7a;
  --green: #66d6b2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 10, 13, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-tools,
.language-switch,
.hero-actions,
.hero-stats,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 180, 106, 0.5);
  border-radius: 50%;
  color: var(--accent-strong);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(247, 248, 248, 0.78);
  font-size: 14px;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.header-tools {
  gap: 12px;
}

.language-switch {
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.lang-btn {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  color: #101010;
}

.header-call {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--accent-strong);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 84px) 56px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.96) 0%, rgba(8, 10, 13, 0.72) 38%, rgba(8, 10, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.86) 0%, rgba(8, 10, 13, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy,
.section-text p,
.booking-copy p,
.car-band p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: var(--accent);
  color: #101010;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.hero-stats strong {
  color: var(--text);
}

.trust-strip,
.section,
.car-band,
.footer {
  padding-left: clamp(20px, 6vw, 84px);
  padding-right: clamp(20px, 6vw, 84px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 28px;
  background: #0d1116;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.section-text {
  position: sticky;
  top: 110px;
}

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

.service-card,
.reviews article,
.booking-form,
.price-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 220px;
  padding: 26px;
}

.service-card p,
.reviews p,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.14);
  color: var(--accent-strong);
  font-weight: 800;
}

.car-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
  background: linear-gradient(135deg, #151b21, #080a0d 58%, #14110a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.car-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.car-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce2e8;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: 110px;
}

.pricing-copy p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.price-table {
  overflow: hidden;
  border: 1px solid rgba(215, 180, 106, 0.48);
  border-radius: 8px;
  background: #050608;
  box-shadow: var(--shadow);
}

.price-table-head,
.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
}

.price-table-head {
  background: linear-gradient(135deg, #c49c42, #e4c16f);
  color: #11100d;
  font-weight: 800;
}

.price-table-head span,
.price-table-head strong,
.price-row span,
.price-row strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 18px 22px;
  text-align: center;
}

.price-table-head strong,
.price-row strong {
  border-left: 1px solid rgba(215, 180, 106, 0.56);
}

.price-row {
  border-top: 1px solid rgba(215, 180, 106, 0.34);
}

.price-row span {
  color: #eef2f4;
}

.price-row strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.price-box {
  display: inline-grid;
  gap: 6px;
  min-width: 220px;
  margin-top: 24px;
  padding: 22px;
}

.price-box span {
  color: var(--muted);
  font-size: 14px;
}

.price-box strong {
  color: var(--green);
  font-size: 34px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

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

label {
  display: grid;
  gap: 8px;
  color: #dce2e8;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 13px;
  background: #0b0f14;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(215, 180, 106, 0.42);
  border-color: var(--accent);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.reviews article {
  padding: 24px;
}

.reviews strong {
  color: var(--accent-strong);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  background: #0d1116;
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  margin-top: 6px;
  color: var(--muted);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: #dce2e8;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 10, 13, 0.97), rgba(8, 10, 13, 0.54)),
      linear-gradient(0deg, rgba(8, 10, 13, 0.9), rgba(8, 10, 13, 0.05));
  }

  .trust-strip,
  .two-column,
  .car-band,
  .pricing-section,
  .booking-section,
  .reviews {
    grid-template-columns: 1fr;
  }

  .section-text,
  .pricing-copy,
  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 13px;
  }

  .header-tools {
    gap: 8px;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 30px;
    min-height: 28px;
    font-size: 11px;
  }

  .hero {
    min-height: 820px;
    padding-top: 106px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-stats span,
  .hero-actions .btn {
    width: 100%;
  }

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

  .price-table-head,
  .price-row {
    grid-template-columns: 1fr;
  }

  .price-table-head strong,
  .price-row strong {
    border-left: 0;
    border-top: 1px solid rgba(215, 180, 106, 0.36);
  }

  .price-table-head span,
  .price-table-head strong,
  .price-row span,
  .price-row strong {
    min-height: 58px;
    padding: 14px 16px;
  }

  .trust-strip div,
  .service-card,
  .reviews article {
    padding: 22px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
