:root {
  --bg: #f4f6f8;
  --ink: #111827;
  --muted: #657080;
  --panel: #ffffff;
  --line: #dde3ea;
  --accent: #e6332a;
  --accent-dark: #bd241d;
  --steel: #25313f;
  --amber: #f5a524;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  padding-bottom: 78px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 16, 24, 0.78), rgba(10, 16, 24, 0));
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.form-row,
.header-actions,
.lang-switch,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent);
  font-size: 13px;
}

.nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.nav a:hover,
.header-phone:hover,
.footer a:hover {
  color: var(--amber);
}

.header-phone {
  font-weight: 800;
}

.header-actions {
  gap: 14px;
}

.lang-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.lang-switch button,
.lang-switch a {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.lang-switch button.active,
.lang-switch a.active {
  color: #fff;
  background: var(--accent);
}

.inner-page .site-header,
.service-page .site-header {
  color: #fff;
  background: rgba(10, 16, 24, 0.96);
  box-shadow: 0 18px 38px rgba(10, 16, 24, 0.14);
}

.inner-page main {
  padding-top: 96px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 118px clamp(20px, 6vw, 78px) 84px;
  overflow: hidden;
  color: #fff;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 10, 16, 0.92) 0%, rgba(6, 10, 16, 0.68) 44%, rgba(6, 10, 16, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 10, 16, 0.66), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.booking-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(44px, 7vw, 86px);
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

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

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

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

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.dark {
  color: #fff;
  background: var(--steel);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: 12px;
  margin-top: 42px;
  width: min(820px, 100%);
}

.hero-stat {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 154px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.hero-stat span {
  display: block;
  min-width: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px;
  background: #fff;
}

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

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 34px;
}

.section-heading h2,
.booking-copy h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}

.section-heading p:last-child,
.booking-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

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

.price-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.price-group summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 22px 24px;
  color: #fff;
  background: var(--steel);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.price-group summary::-webkit-details-marker {
  display: none;
}

.price-group summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.price-group[open] summary::after {
  content: "-";
}

.price-group summary small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.price-table {
  display: grid;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.price-row span {
  min-width: 0;
  color: #25313f;
}

.price-row strong {
  white-space: nowrap;
  color: var(--accent);
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 18px 18px;
  min-height: 44px;
  width: calc(100% - 36px);
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.category-explanation {
  margin: 0 18px 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.category-explanation h2 {
  margin: 0 0 8px;
  color: var(--steel);
  font-size: 20px;
}

.category-explanation h2:not(:first-child) {
  margin-top: 18px;
}

.category-explanation p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.fleet-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  margin-top: 24px;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background: #101820;
}

.fleet-card h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.fleet-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.fleet-card ul {
  columns: 2;
  margin: 0;
  padding-left: 20px;
}

.fleet-card li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.important-note {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(230, 51, 42, 0.24);
  border-radius: var(--radius);
  background: #fff;
}

.important-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 18px;
}

.important-note p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card.featured {
  color: #fff;
  background: var(--steel);
  border-color: var(--steel);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  border-radius: 8px;
  background: rgba(230, 51, 42, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.featured .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--amber);
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card strong {
  display: block;
  margin-top: auto;
  color: var(--accent);
  font-size: 22px;
}

.featured strong {
  color: var(--amber);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.booking-form {
  order: -1;
}

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

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff;
}

.contact-panel a {
  font-weight: 850;
}

.form,
.contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form label {
  display: grid;
  gap: 8px;
  color: #394454;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(230, 51, 42, 0.18);
  border-color: var(--accent);
}

.form-row {
  gap: 14px;
}

.form-row label {
  flex: 1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #157347;
  font-weight: 800;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contacts {
  padding-top: 60px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.contact-details-wrap,
.map-card {
  min-height: 520px;
}

.contact-details-wrap {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-details-wrap h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

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

.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.contact-list a:hover strong {
  color: var(--accent);
}

.map-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #dce4ec;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrap {
  padding: 28px;
}

.contact-form-wrap h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.contact-form-wrap p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-form-wrap .form {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.question-section {
  padding-top: 34px;
}

.question-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.question-layout h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.question-layout p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.reviews-section {
  padding-top: 36px;
}

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

.review-card,
.advice-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.review-score span {
  color: var(--steel);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.review-score strong {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0;
}

.review-card p,
.advice-grid p {
  margin: 0;
  color: var(--muted);
}

.review-card small {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 850;
}

.service-advice {
  padding-top: 44px;
}

.advice-grid h3 {
  margin: 0 0 10px;
  color: var(--steel);
  font-size: 22px;
}

.legal-card {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.legal-card strong {
  color: var(--ink);
  font-size: 16px;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #101820;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 8px;
  width: min(520px, calc(100% - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.sticky-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  text-align: center;
}

.sticky-actions a:nth-child(2) {
  background: #168a45;
}

.sticky-actions a:nth-child(3) {
  background: var(--accent);
}

.service-page {
  background: var(--bg);
}

.service-detail {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 110px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 850;
}

.back-link:hover,
.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: #a7b0bd;
}

.static-page {
  margin-top: 24px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.static-page h2 {
  margin: 28px 0 10px;
  color: var(--steel);
  font-size: 26px;
}

.static-page h2:first-child {
  margin-top: 0;
}

.static-page p {
  max-width: 850px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-hero-detail {
  padding: clamp(34px, 7vw, 70px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.76)),
    url("assets/hero-workshop.png") center / cover;
}

.service-hero-detail h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
}

.service-hero-detail p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 24px;
}

.service-detail-prices h2,
.service-detail-info h2 {
  margin: 0;
  padding: 22px 24px;
  font-size: 24px;
}

.service-detail-info {
  padding: 0 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-detail-info h2 {
  padding: 22px 0 8px;
  color: var(--steel);
}

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

.decision-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.decision-card {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.decision-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--steel);
  font-size: 16px;
}

.decision-card.ok {
  border-color: rgba(21, 115, 71, 0.24);
  background: rgba(21, 115, 71, 0.06);
}

.decision-card.danger {
  border-color: rgba(230, 51, 42, 0.26);
  background: rgba(230, 51, 42, 0.06);
}

.decision-card.danger strong {
  color: var(--accent);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 860px;
    padding-top: 150px;
  }

  .trust-strip,
  .price-groups,
  .reviews-grid,
  .advice-grid,
  .services-grid,
  .split,
  .contacts-layout,
  .question-layout,
  .service-detail-grid,
  .fleet-card {
    grid-template-columns: 1fr;
  }

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

  .fleet-card ul {
    columns: 1;
  }

  .booking-copy {
    position: static;
  }

  .map-card {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .header-phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 820px;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .hero-stat,
  .button,
  .form-row {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-row,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .sticky-actions {
    bottom: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 20px);
  }

  .sticky-actions a {
    min-height: 42px;
    font-size: 14px;
  }
}
