:root {
  color-scheme: dark;
  --panel: #12100e;
  --panel-strong: #181512;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f0e8;
  --muted: #bdb5aa;
  --muted-2: #8e887f;
  --orange: #ff7417;
  --orange-soft: #ff9b45;
  --champagne: #e4cfa9;
  --header-height: 76px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--safe-top) + 18px);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100vw;
  background: transparent;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  opacity: 0.76;
  pointer-events: auto;
}

.site-video-bg {
  --site-video-scale: 1.045;
  --site-video-shift: 0px;
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}

.site-video-bg__video,
.site-video-bg__shade,
.site-video-bg__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-video-bg__video {
  object-fit: cover;
  object-position: center;
  transform: scale(var(--site-video-scale)) translate3d(0, var(--site-video-shift), 0);
  filter: saturate(1.08) contrast(1.08) brightness(0.82);
}

.site-video-bg__video[data-pingpong-video-panel] {
  opacity: 0;
  visibility: hidden;
}

.site-video-bg__video[data-pingpong-video-panel].is-active {
  opacity: 1;
  visibility: visible;
}

.site-video-bg__shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.24) 68%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18) 46%, rgba(5, 5, 5, 0.96));
}

.site-video-bg__grid {
  display: none;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

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

[hidden] {
  display: none !important;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + var(--safe-top) + 18px);
}

body::before {
  content: "";
  position: fixed;
  z-index: 24;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

::selection {
  background: rgba(255, 116, 23, 0.35);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-color: rgba(255, 116, 23, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 116, 23, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.24), rgba(255, 255, 255, 0.03)),
    #080706;
  color: var(--orange-soft);
  font-size: 0.82rem;
  line-height: 1;
}

.brand__text {
  font-size: 1.05rem;
}

.nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nav__indicator {
  position: absolute;
  top: 7px;
  left: 0;
  height: calc(100% - 14px);
  width: 0;
  border-radius: 7px;
  border: 1px solid rgba(255, 116, 23, 0.4);
  background: rgba(255, 116, 23, 0.16);
  box-shadow: 0 0 18px rgba(255, 116, 23, 0.18) inset;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 320ms cubic-bezier(0.32, 0.72, 0.24, 1),
    width 320ms cubic-bezier(0.32, 0.72, 0.24, 1),
    opacity 220ms ease;
  will-change: transform, width;
}

.nav__indicator.is-visible {
  opacity: 1;
}

.nav a {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 116, 23, 0.09);
  outline: none;
}

.nav a.is-current,
.nav a[aria-current="page"] {
  color: var(--text);
  background: transparent;
}

.nav a.nav__book {
  overflow: hidden;
  margin-left: 4px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.nav a.nav__book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 210, 160, 0.28) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  pointer-events: none;
}

.nav a.nav__book[aria-current="page"]::before {
  animation: nav-book-shine 4.2s ease-in-out infinite;
}

@keyframes nav-book-shine {
  0%,
  62% {
    transform: translateX(-110%);
  }
  84%,
  100% {
    transform: translateX(110%);
  }
}

.nav a.nav__book:hover,
.nav a.nav__book:focus-visible {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(255, 155, 69, 0.55);
  background: rgba(255, 116, 23, 0.12);
  box-shadow: 0 6px 22px rgba(255, 116, 23, 0.16);
}

.nav a.nav__book[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 116, 23, 0.26);
  border-color: rgba(255, 155, 69, 0.9);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 116, 23, 0.46);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 116, 23, 0.18);
  border-color: rgba(255, 155, 69, 0.86);
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: block;
}

.lucide {
  width: 1.08em;
  height: 1.08em;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.hero {
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.hero--scroll {
  height: auto;
  min-height: 100svh;
  overflow: visible;
}

.hero__sticky {
  position: relative;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  overflow: clip;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 54px 0 118px;
  opacity: var(--hero-copy-opacity);
  transform: translateY(var(--hero-copy-y));
  transition:
    opacity 120ms linear,
    transform 120ms linear;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.7rem;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #ddd6cb;
  font-size: 1.24rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

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

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #120905;
  box-shadow: 0 18px 44px rgba(255, 116, 23, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 24px 56px rgba(255, 116, 23, 0.34);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 116, 23, 0.58);
  background: rgba(255, 116, 23, 0.12);
}

.hero__dock {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  width: min(1160px, calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.hero__dock > div {
  min-width: 0;
  padding: 22px 24px;
  background: rgba(8, 7, 6, 0.82);
}

.hero__dock span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero__dock strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.marquee {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100px;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.72), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.72), transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.marquee__track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 42px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 116, 23, 0.8);
}

.section {
  padding: 110px 0;
}

.section__head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section__head h2,
.standard__content h2,
.booking__copy h2,
.contacts__panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.section__head p:not(.eyebrow),
.standard__content > p,
.booking__copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.services {
  background: transparent;
}

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

.service-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.1), transparent 38%),
    var(--panel);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 116, 23, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.17), transparent 42%),
    var(--panel-strong);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card .lucide {
  width: 34px;
  height: 34px;
  color: var(--orange-soft);
}

.service-card h3,
.work-card h3,
.step h3 {
  margin: 24px 0 12px;
  font-size: 1.2rem;
}

.service-card p,
.work-card p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.standard {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.standard__layout {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 56px;
  align-items: center;
}

.standard__visual {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.12), transparent 42%),
    url("assets/zonarabot.jpg"),
    rgba(255, 255, 255, 0.045);
  background-position: center, center, center;
  background-size: cover;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.standard__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent);
}

.standard__badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.74);
  backdrop-filter: blur(16px);
}

.standard__badge span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.standard__badge strong {
  font-size: 1.28rem;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.step > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.12);
  color: var(--orange-soft);
  font-weight: 900;
}

.step h3 {
  margin-top: 0;
}

.works {
  background: transparent;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 14px;
}

.work-card {
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto;
  align-content: stretch;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.work-card--wide {
  grid-row: span 2;
  grid-template-rows: minmax(340px, 1fr) auto;
  min-height: 454px;
}

.work-card__image {
  display: block;
  min-height: 190px;
  background-color: #0d0b09;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.45)),
    var(--work-image);
  background-position: center;
  background-size: cover;
}

.work-card--wide .work-card__image {
  min-height: 340px;
}

.work-card__image--one {
  --work-image: url("assets/zonarabot1.jpg");
  background-position: center;
}

.work-card__image--two {
  --work-image: url("assets/wash.jpg");
  background-position: center;
}

.work-card__image--three {
  --work-image: url("assets/street.jpg");
  background-position: center;
}

.work-card > div:last-child {
  padding: 24px;
}

.work-card h3 {
  margin-top: 0;
}

.booking {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.booking__layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.booking__facts {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.booking__facts div,
.contact-list div,
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.booking__facts .lucide,
.contact-list .lucide,
.contact-link .lucide {
  color: var(--orange-soft);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(18, 16, 14, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.booking-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #080706;
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-form input,
.booking-form select {
  height: 50px;
  padding: 0 14px;
}

.booking-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 14px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 116, 23, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.12);
}

.booking-form ::placeholder {
  color: #736d66;
}

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

.booking-form .btn {
  width: 100%;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--champagne);
  line-height: 1.45;
}

.booking-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.booking-teaser__panel {
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(18, 16, 14, 0.86);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.booking-teaser__panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.booking-teaser__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 48%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px 18px
    ),
    linear-gradient(90deg, transparent, rgba(255, 116, 23, 0.13));
  opacity: 0.56;
  pointer-events: none;
}

.booking-teaser__panel:hover,
.booking-teaser__panel:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 116, 23, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.26), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(18, 16, 14, 0.94);
  outline: none;
}

.booking-teaser__panel > * {
  position: relative;
  z-index: 1;
}

.booking-teaser__kicker {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 116, 23, 0.34);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-teaser__panel strong {
  max-width: 390px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1.06;
}

.booking-teaser__panel span:last-of-type {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.62;
}

.booking-teaser__panel .lucide {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  color: var(--orange-soft);
}

.booking-body .site-video-bg__video {
  filter: saturate(0.96) contrast(1.12) brightness(0.68);
}

.booking-body .site-video-bg__shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.76) 46%, rgba(5, 5, 5, 0.54)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.88));
}

.booking-page {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + var(--safe-top));
}

.booking-workspace {
  position: relative;
  padding: 54px 0 98px;
}

.booking-workspace::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 116, 23, 0.34), transparent);
}

.booking-workspace__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
}

.booking-workspace__main {
  min-width: 0;
}

.booking-page__intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.booking-page__intro h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.booking-page__intro p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.booking-wizard {
  display: grid;
  gap: 16px;
}

.booking-progress {
  position: sticky;
  z-index: 3;
  top: calc(var(--header-height) + var(--safe-top) + 10px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.booking-progress__item {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.72);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.booking-progress__item:hover,
.booking-progress__item:focus-visible {
  color: var(--text);
  border-color: rgba(255, 116, 23, 0.46);
  background: rgba(255, 116, 23, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.booking-progress__item .lucide {
  color: var(--orange-soft);
}

.booking-progress__item.is-active {
  color: var(--text);
  border-color: rgba(255, 116, 23, 0.24);
}

.booking-progress__item.is-active {
  color: #120905;
  border-color: rgba(255, 155, 69, 0.95);
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  box-shadow: 0 14px 34px rgba(255, 116, 23, 0.22);
}

.booking-progress__item.is-active .lucide {
  color: #120905;
}

.booking-step {
  scroll-margin-top: calc(var(--header-height) + var(--safe-top) + 92px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.08), transparent 30%),
    rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.booking-step__head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.booking-step__head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 116, 23, 0.26);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.11);
  color: var(--orange-soft);
  font-weight: 900;
}

.booking-step__head h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.booking-step__head p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.booking-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.booking-location-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.58);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.booking-location-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.booking-location-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-location-card:hover,
.booking-location-card:focus-within,
.booking-location-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(255, 116, 23, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.16), transparent 46%),
    rgba(10, 8, 7, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.booking-location-card.is-selected::after {
  transform: scaleX(1);
}

.booking-location-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
}

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

.booking-location-card strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.booking-location-card small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.42;
}

.booking-service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  min-height: 134px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.58);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.booking-service-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.booking-service-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 4px rgba(8, 7, 6, 0.82);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-service-card:hover,
.booking-service-card:focus-within,
.booking-service-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(255, 116, 23, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.16), transparent 46%),
    rgba(10, 8, 7, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.booking-service-card.is-selected::after {
  transform: scaleX(1);
}

.booking-service-card.is-selected::before {
  border-color: rgba(255, 155, 69, 0.96);
  background: var(--orange);
  box-shadow: inset 0 0 0 4px rgba(18, 9, 5, 0.82), 0 0 24px rgba(255, 116, 23, 0.36);
}

.booking-service-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
}

.booking-service-card strong,
.booking-service-card small,
.booking-service-card em {
  display: block;
}

.booking-service-card strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.booking-service-card small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.42;
}

.booking-service-card em {
  grid-column: 2;
  align-self: end;
  color: var(--champagne);
  font-size: 0.83rem;
  font-style: normal;
  font-weight: 800;
}

.booking-date-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.date-chip,
.time-chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.66);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.date-chip {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 12px 10px;
  text-align: left;
}

.date-chip span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-chip strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.time-chip {
  min-height: 54px;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 900;
}

.date-chip:hover,
.date-chip:focus-visible,
.time-chip:hover,
.time-chip:focus-visible,
.date-chip.is-active,
.time-chip.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 116, 23, 0.58);
  background: rgba(255, 116, 23, 0.14);
  color: var(--text);
  outline: none;
}

.date-chip.is-active,
.time-chip.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #120905;
}

.date-chip.is-active span {
  color: rgba(18, 9, 5, 0.74);
}

.time-chip:disabled,
.time-chip.is-disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

/* Pricing Page */
.pricing-page {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + var(--safe-top));
  overflow-x: hidden;
  max-width: 100vw;
}

.pricing-hero {
  position: relative;
  padding: 84px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 116, 23, 0.34), transparent);
}

.pricing-hero__content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-hero__lead {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.68;
}

/* Переключатель услуг */
.service-toggle {
  position: relative;
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  margin: 28px 0;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.service-toggle__indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 100%);
  box-shadow: 0 4px 14px rgba(255, 116, 23, 0.32);
  transition: 
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.28s ease;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: transform, width;
}

.service-toggle__indicator.is-visible {
  opacity: 1;
}

.service-toggle__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--muted-2);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  z-index: 1;
}

.service-toggle__btn i {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.28s;
}

.service-toggle__btn:hover {
  color: var(--text);
}

.service-toggle__btn:hover i {
  opacity: 1;
}

.service-toggle__btn--active {
  color: #fff;
}

.service-toggle__btn--active i {
  opacity: 1;
}

.service-toggle__btn:active {
  transform: scale(0.96);
}

@keyframes toggle-ripple {
  0% {
    box-shadow: 0 4px 14px rgba(255, 116, 23, 0.32);
  }
  50% {
    box-shadow: 0 6px 24px rgba(255, 116, 23, 0.5);
  }
  100% {
    box-shadow: 0 4px 14px rgba(255, 116, 23, 0.32);
  }
}

.service-toggle__indicator.is-switching {
  animation: toggle-ripple 0.6s ease;
}

/* Анимация переключения контента */
[data-service-content] {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-section {
  padding: 68px 0 110px;
}

.pricing-block {
  margin-bottom: 78px;
}

.pricing-block__header {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 116, 23, 0.4);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.12);
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-block__badge--premium {
  border-color: rgba(255, 155, 69, 0.5);
  background: rgba(255, 116, 23, 0.18);
}

.pricing-block__badge--luxury {
  border-color: rgba(228, 207, 169, 0.4);
  background: rgba(228, 207, 169, 0.12);
  color: var(--champagne);
}

.pricing-block__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
}

.pricing-block__header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

/* Pricing Table */
.pricing-table {
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.pricing-table__header {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 116, 23, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-table__header > div:first-child {
  text-align: left;
}

.pricing-table__header > div:not(:first-child) {
  text-align: center;
}

.pricing-table__section {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 116, 23, 0.05);
  color: var(--orange-soft);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-table__row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 180ms ease;
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.pricing-table__row:hover {
  background: rgba(255, 116, 23, 0.06);
}

.pricing-table__row--featured {
  background: rgba(255, 116, 23, 0.08);
  font-weight: 700;
}

.pricing-table__row--featured:hover {
  background: rgba(255, 116, 23, 0.12);
}

.pricing-table__row > div:first-child {
  color: var(--text);
  text-align: left;
}

.pricing-table__row > div:not(:first-child) {
  color: var(--champagne);
  font-weight: 700;
  text-align: center;
}

/* Pricing Table with 2 columns */
.pricing-table--two-col .pricing-table__header {
  grid-template-columns: 1.8fr 1fr;
}

.pricing-table--two-col .pricing-table__row {
  grid-template-columns: 1.8fr 1fr;
}

.pricing-table--two-col .pricing-table__row > div:not(:first-child) {
  text-align: center;
}

/* Pricing Table with 5 columns */
.pricing-table--five-col .pricing-table__header {
  grid-template-columns: 1.5fr repeat(4, 1fr);
}

.pricing-table--five-col .pricing-table__row {
  grid-template-columns: 1.5fr repeat(4, 1fr);
}

/* Pricing Complex Cards */
.pricing-complex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pricing-complex__card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.1), transparent 42%),
    rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.pricing-complex__card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 220ms ease;
}

.pricing-complex__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 116, 23, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.16), transparent 46%),
    rgba(18, 16, 14, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-complex__card:hover::after {
  transform: scaleX(1);
}

.pricing-complex__card--premium {
  background:
    linear-gradient(145deg, rgba(255, 155, 69, 0.14), transparent 42%),
    rgba(18, 16, 14, 0.88);
}

.pricing-complex__card--premium:hover {
  background:
    linear-gradient(145deg, rgba(255, 155, 69, 0.2), transparent 46%),
    rgba(18, 16, 14, 0.96);
}

.pricing-complex__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 116, 23, 0.4);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.12);
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-complex__card-header h3 {
  margin: 20px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
}

.pricing-complex__card-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.pricing-complex__prices {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pricing-complex__prices > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-complex__prices span {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-complex__prices strong {
  color: var(--champagne);
  font-size: 1.35rem;
  font-weight: 900;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-page .pricing-block > .pricing-table,
.pricing-page .pricing-block > .pricing-grid {
  width: 100%;
  max-width: 1160px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

.pricing-block > .pricing-table + .pricing-grid,
.pricing-block > .pricing-grid + .pricing-table,
.pricing-block > .pricing-table + .pricing-table {
  margin-top: 24px;
}

[data-service-content="carwash"] .pricing-grid__price {
  white-space: normal;
}

.pricing-grid__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.pricing-grid__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 116, 23, 0.38);
  background: rgba(255, 116, 23, 0.08);
}

.pricing-grid__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
}

.pricing-grid__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.pricing-grid__item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-grid__price {
  color: var(--champagne);
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

/* Pricing Rules */
.pricing-rules {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  padding: 42px;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.08), transparent 48%),
    rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(16px);
}

.pricing-rules__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-rules__header .lucide {
  width: 32px;
  height: 32px;
  color: var(--orange-soft);
}

.pricing-rules__header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.pricing-rules__list {
  display: grid;
  gap: 20px;
}

.pricing-rules__item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.pricing-rules__item > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 116, 23, 0.3);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
  font-weight: 900;
}

.pricing-rules__item p {
  margin: 0;
  padding-top: 6px;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-rules__item strong {
  color: var(--text);
}

/* Pricing CTA */
.pricing-cta {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 116, 23, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.14), transparent 52%),
    rgba(18, 16, 14, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.pricing-cta__content h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 700;
}

.pricing-cta__content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.pricing-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.time-chip:disabled,
.time-chip.is-disabled {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
}

.time-chip:disabled:hover,
.time-chip.is-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
}

.time-chip.is-busy {
  text-decoration: line-through;
}

.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-busy-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.58);
}

.booking-busy-list strong {
  color: var(--champagne);
  font-size: 0.9rem;
}

.booking-busy-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-busy-list__tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.booking-contact-grid label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-contact-grid input,
.booking-contact-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #080706;
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-contact-grid input {
  height: 52px;
  padding: 0 14px;
}

.booking-contact-grid textarea {
  min-height: 106px;
  resize: vertical;
  padding: 14px;
}

.booking-contact-grid input:focus,
.booking-contact-grid textarea:focus {
  border-color: rgba(255, 116, 23, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.12);
}

.booking-contact-grid ::placeholder {
  color: #736d66;
}

.booking-submit {
  width: 100%;
  margin-top: 18px;
}

.booking-summary {
  position: sticky;
  top: calc(var(--header-height) + var(--safe-top) + 22px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.13), transparent 35%),
    rgba(12, 10, 9, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.booking-summary::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.booking-summary h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.summary-block {
  display: grid;
  gap: 9px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-block > span,
.summary-metrics span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-block strong {
  color: var(--text);
  line-height: 1.38;
}

.summary-block .summary-time {
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.12);
  color: #6ee7a0;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.summary-block .summary-hint {
  color: var(--muted-2);
  font-size: 0.82rem;
  line-height: 1.45;
}

.summary-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.summary-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px 0 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.summary-metrics div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.summary-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-metrics strong {
  color: var(--text);
  font-size: 1.02rem;
}

.booking-confirmation {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 116, 23, 0.36);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.12);
  animation: confirmationIn 420ms ease both;
}

.booking-confirmation[hidden] {
  display: none;
}

.booking-confirmation .lucide {
  width: 32px;
  height: 32px;
  color: var(--orange-soft);
}

.booking-confirmation strong {
  display: block;
  margin-bottom: 5px;
}

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

.booking-summary.is-pulsing {
  animation: summaryPulse 560ms ease;
}

.contacts {
  background: transparent;
}

.contacts__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.contacts__panel,
.map-card {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--panel);
}

.contacts__panel {
  padding: 34px;
}

.contacts__panel h2 {
  font-size: 2.4rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.contacts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-card {
  position: relative;
  overflow: hidden;
  background: #0d0b09;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(0.65) contrast(1.08) brightness(0.78);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.28)),
    linear-gradient(135deg, rgba(255, 116, 23, 0.18), transparent 38%);
}

.map-card__routes {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-card__route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 116, 23, 0.48);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.map-card__route .lucide {
  color: var(--orange-soft);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.68);
}

.footer__inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__brand {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
}

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

.footer__location span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer__phone {
  width: fit-content;
  color: var(--orange-soft);
  font-size: 1.02rem;
  font-weight: 800;
}

.mobile-actionbar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-prepared {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-prepared.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes summaryPulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.13);
  }

  45% {
    border-color: rgba(255, 116, 23, 0.64);
    box-shadow: 0 28px 90px rgba(255, 116, 23, 0.18);
  }
}

@keyframes confirmationIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 20px;
    right: 20px;
    z-index: 36;
    display: grid;
    padding: 12px;
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    pointer-events: none;
    background: rgba(8, 7, 6, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__indicator {
    display: none;
  }

  .nav a {
    padding: 15px 16px;
  }

  .nav a.is-current {
    background: rgba(255, 116, 23, 0.12);
  }

  .nav a.nav__book {
    margin-left: 0;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    justify-self: end;
  }

  .service-grid,
  .standard__layout,
  .booking__layout,
  .contacts__layout {
    grid-template-columns: 1fr;
  }

  .yandex-reviews-frame {
    height: 600px;
  }

  .yandex-reviews-frame iframe {
    height: 600px;
  }

  .booking-workspace__grid {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: relative;
    top: auto;
  }

  .standard__visual {
    min-height: 470px;
  }

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

  .work-card--wide {
    grid-row: auto;
    min-height: 420px;
  }

  .work-card--wide .work-card__image {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 56px;
  }

  body {
    padding-bottom: calc(90px + var(--safe-bottom));
    background: transparent;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    height: calc(var(--header-height) + var(--safe-top));
    gap: 10px;
    padding: var(--safe-top) 14px 0;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(20px);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    font-size: 0.74rem;
  }

  .brand__text {
    font-size: 0.94rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.075);
  }

  .nav {
    top: calc(var(--header-height) + var(--safe-top) + 10px);
    left: 10px;
    right: 10px;
    bottom: auto;
    gap: 8px;
    padding: 10px;
    border-color: rgba(255, 116, 23, 0.26);
    background:
      linear-gradient(145deg, rgba(255, 116, 23, 0.12), rgba(255, 255, 255, 0.035)),
      #0a0807;
    backdrop-filter: blur(22px);
    transform: translateY(-14px) scale(0.98);
    transform-origin: top center;
  }

  .nav.is-open {
    transform: translateY(0) scale(1);
  }

  .nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 800;
  }

  .nav a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(255, 155, 69, 0.82);
    border-right: 2px solid rgba(255, 155, 69, 0.82);
    transform: rotate(45deg);
  }

  .nav a.nav__book {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 0;
    --hero-copy-opacity: 1;
    --hero-copy-y: 0px;
  }

  .site-video-bg {
    --site-video-scale: 1.02;
    --site-video-shift: 0px;
  }

  .hero--scroll {
  height: auto;
  min-height: auto;
  }
  
  .hero__sticky {
  position: relative;
    height: auto;
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--safe-top));
    padding-bottom: 0;
    align-items: end;
  }

  .site-video-bg__video {
    object-position: 68% top;
  }

  .site-video-bg__grid {
    display: none;
  }

  .site-video-bg__shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.62) 62%, rgba(5, 5, 5, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(5, 5, 5, 0.64) 48%, rgba(5, 5, 5, 0.99));
  }

  .hero__content {
    padding: 40px 0 32px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: 2.42rem;
    line-height: 1;
  }

  .hero__lead {
    max-width: 34rem;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
    padding: 0 18px;
    gap: 7px;
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .hero__dock {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 24px 14px 40px;
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(8, 7, 6, 0.78);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    overflow: hidden;
  }

  .hero__dock > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
    min-height: auto;
    padding: 11px 12px;
    border: 0;
    background: transparent;
  }

  .hero__dock span {
    margin: 0;
    font-size: 0.64rem;
  }

  .hero__dock strong {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .marquee {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .section__head {
    margin-bottom: 18px;
  }

  .section__head h2,
  .standard__content h2,
  .booking__copy h2 {
    font-size: 1.62rem;
    line-height: 1.08;
  }

  .section__head p:not(.eyebrow),
  .standard__content > p,
  .booking__copy > p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .contacts__panel h2 {
    font-size: 1.45rem;
    line-height: 1.08;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto;
    gap: 10px;
    align-items: center;
    min-height: 64px;
    padding: 12px;
    background:
      linear-gradient(145deg, rgba(255, 116, 23, 0.11), transparent 44%),
      rgba(18, 16, 14, 0.88);
  }

  .service-card .lucide {
    grid-row: auto;
    width: 34px;
    height: 34px;
    padding: 7px;
    border: 1px solid rgba(255, 116, 23, 0.22);
    border-radius: 8px;
    background: rgba(255, 116, 23, 0.1);
  }

  .service-card h3,
  .work-card h3,
  .step h3 {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .work-card h3 {
    margin: 0 0 6px;
    font-size: 0.98rem;
  }

  .service-card p,
  .work-card p,
  .step p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .service-card p {
    display: none;
  }

  .standard__visual {
    min-height: 0;
    height: 210px;
  }

  .standard__layout,
  .booking__layout {
    gap: 18px;
  }

  .standard__badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }

  .standard__badge strong {
    font-size: 1rem;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .step > span {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .step p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .work-grid {
    display: flex;
    gap: 12px;
    margin: 0 -14px;
    padding: 0 14px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .work-grid::-webkit-scrollbar {
    display: none;
  }

  .work-card,
  .work-card--wide {
    flex: 0 0 min(320px, 85vw);
    min-height: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .work-card__image,
  .work-card--wide .work-card__image {
    min-height: 150px;
  }

  .work-card > div:last-child {
    padding: 14px;
  }

  .booking__facts {
    gap: 8px;
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .booking-teaser__actions {
    margin-top: 18px;
  }

  .booking-teaser__actions .btn {
    width: 100%;
  }

  .booking-teaser__panel {
    min-height: 240px;
    padding: 20px;
  }

  .booking-teaser__panel::before {
    inset: 12px;
  }

  .booking-teaser__panel strong {
    font-size: 1.46rem;
  }

  .booking-teaser__panel .lucide {
    top: 18px;
    right: 18px;
    width: 26px;
    height: 26px;
  }

  .booking-workspace {
    padding: 28px 0 calc(44px + 90px + var(--safe-bottom));
  }

  .booking-workspace__grid {
    gap: 14px;
  }

  .booking-page__intro {
    margin-bottom: 16px;
  }

  .booking-page__intro h1 {
    font-size: 2rem;
    line-height: 1.03;
  }

  .booking-page__intro p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .booking-wizard {
    gap: 12px;
  }

  .booking-progress {
    top: calc(var(--header-height) + var(--safe-top) + 8px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 6px;
  }

  .booking-progress__item {
    min-height: 42px;
    gap: 4px;
    font-size: 0.7rem;
  }

  .booking-progress__item .lucide {
    width: 17px;
    height: 17px;
  }

  .booking-step,
  .booking-summary {
    padding: 16px;
  }

  .booking-step__head {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .booking-step__head > span {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .booking-step__head h2 {
    font-size: 1.02rem;
  }

  .booking-step__head p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .booking-service-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-location-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .booking-location-card {
    min-height: 82px;
    padding: 14px;
  }

  .booking-location-card__icon {
    width: 38px;
    height: 38px;
  }

  .booking-service-card {
    min-height: 112px;
    padding: 14px;
  }

  .booking-service-card__icon {
    width: 38px;
    height: 38px;
  }

  .booking-date-strip {
    display: flex;
    gap: 10px;
    margin: 0 -16px 12px;
    padding: 0 16px 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .booking-date-strip::-webkit-scrollbar {
    display: none;
  }

  .date-chip {
    flex: 0 0 min(108px, 28vw);
    min-height: 74px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .booking-time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-chip {
    min-height: 50px;
  }

  .booking-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-contact-grid label {
    font-size: 0.82rem;
  }

  .booking-contact-grid input,
  .booking-contact-grid textarea {
    font-size: 16px;
  }

  .booking-submit {
    margin-top: 14px;
  }

  .booking-summary h2 {
    font-size: 1.52rem;
  }

  .summary-metrics {
    grid-template-columns: 1fr;
  }

  .summary-metrics div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .booking-form,
  .contacts__panel {
    padding: 16px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
    background: rgba(13, 11, 9, 0.94);
  }

  .booking-form label {
    gap: 8px;
    font-size: 0.82rem;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 16px;
  }

  .booking-form input,
  .booking-form select {
    height: 52px;
    padding: 0 12px;
  }

  .booking-form textarea {
    min-height: 104px;
    padding: 12px;
  }

  .map-card,
  .contacts__panel {
    min-height: 270px;
  }

  .contact-list {
    gap: 9px;
    margin: 16px 0;
    font-size: 0.9rem;
  }

  .contacts__actions .btn {
    width: 100%;
  }

  .map-card__routes {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .map-card__route {
    justify-content: center;
    min-height: 44px;
    width: 100%;
    font-size: 0.9rem;
  }

  .mobile-actionbar {
    position: fixed !important;
    z-index: 9999;
    left: 10px;
    right: 10px;
    bottom: max(8px, var(--safe-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 6, 5, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.52);
    opacity: 1;
    pointer-events: auto;
    transform: translateZ(0) !important;
    backface-visibility: hidden;
    perspective: 1000px;
    transition:
      opacity 180ms ease;
  }

  body.nav-open .mobile-actionbar {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-actionbar a {
    display: inline-flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-radius: 8px;
    color: var(--muted-2);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    transition:
      background 400ms cubic-bezier(0.32, 0.72, 0.24, 1),
      color 400ms cubic-bezier(0.32, 0.72, 0.24, 1),
      transform 280ms cubic-bezier(0.32, 0.72, 0.24, 1);
  }

  .mobile-actionbar .lucide {
    width: 20px;
    height: 20px;
  }

  .mobile-actionbar a:hover,
  .mobile-actionbar a:focus-visible,
  .mobile-actionbar a.is-active {
    outline: none;
    background: rgba(255, 116, 23, 0.2);
    color: var(--orange);
    transform: translateY(-1px);
  }

  .mobile-actionbar a.is-active {
    background: rgba(255, 116, 23, 0.24);
    box-shadow: 0 0 12px rgba(255, 116, 23, 0.3);
  }

  .mobile-actionbar__primary {
    background: transparent;
    color: var(--muted-2);
  }

  .mobile-actionbar__primary.is-active {
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: #120905;
  }

  .reveal.is-prepared {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .yandex-reviews-frame {
    height: 500px;
  }

  .yandex-reviews-frame iframe {
    height: 500px;
  }

  .footer__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .footer__section {
    text-align: center;
    align-items: center;
  }

  .footer__location {
    align-items: center;
  }
}

@media (max-width: 420px) {
  .brand__text {
    max-width: 118px;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .btn {
    min-height: 44px;
    padding: 0 10px;
  }

  .hero__dock strong {
    font-size: 0.82rem;
  }

  .booking-page__intro h1 {
    font-size: 1.82rem;
  }

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

.admin-body {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(255, 116, 23, 0.11), transparent 34%),
    #080706;
}

.admin-page {
  min-height: 100svh;
  padding: 42px 0;
}

.admin-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.admin-head p:not(.eyebrow),
.admin-list-head p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-form,
.admin-list-panel,
.admin-location-picker {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(18, 16, 14, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-location-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-location-button {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 14px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.62);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.admin-location-button .lucide {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--orange-soft);
}

.admin-location-button span,
.admin-location-button strong {
  display: block;
}

.admin-location-button span {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-location-button strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.admin-location-button:hover,
.admin-location-button:focus-visible,
.admin-location-button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 116, 23, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.15), transparent 46%),
    rgba(10, 8, 7, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  outline: none;
}

.admin-location-button.is-active {
  border-color: rgba(255, 155, 69, 0.9);
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-form input,
.admin-form select {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #080706;
  color: var(--text);
  outline: none;
}

.admin-form input:focus,
.admin-form select:focus {
  border-color: rgba(255, 116, 23, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.12);
}

.admin-form .form-status {
  grid-column: 1 / -1;
}

.admin-list-panel {
  margin-top: 18px;
}

.admin-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.admin-export-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 116, 23, 0.5);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #120905;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 116, 23, 0.35);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.admin-export-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 116, 23, 0.5);
}

.admin-export-fab:active {
  transform: translateY(-2px) scale(1.02);
}

.admin-export-fab .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
  color: #120905;
}

.admin-list-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.62);
}

.admin-list-item strong,
.admin-list-item span,
.admin-list-item p {
  display: block;
}

.admin-list-item strong {
  margin-bottom: 5px;
  color: var(--text);
}

.admin-list-item span {
  color: var(--champagne);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-list-item p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.admin-icon-button:hover,
.admin-icon-button:focus-visible {
  border-color: rgba(255, 116, 23, 0.58);
  background: rgba(255, 116, 23, 0.12);
  outline: none;
}

@media (max-width: 760px) {
  .admin-page {
    padding: 24px 0;
  }

  .admin-head,
  .admin-list-head {
    display: grid;
  }

  .admin-head h1 {
    font-size: 2.2rem;
  }

  .admin-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .admin-location-picker {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .admin-export-fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .admin-export-fab .lucide {
    width: 22px;
    height: 22px;
  }

  .admin-list-panel {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Schedule view (booking by phone) */

.schedule-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 16px 0 12px;
}

.schedule-counter {
  margin: 0;
  color: var(--champagne);
  font-size: 0.9rem;
  font-weight: 800;
}

.schedule-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.schedule-slot {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(74, 222, 128, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.13), transparent 55%),
    rgba(8, 7, 6, 0.6);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.schedule-slot:hover,
.schedule-slot:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.62);
  box-shadow: 0 10px 28px rgba(74, 222, 128, 0.12);
  outline: none;
}

.schedule-slot strong {
  color: var(--text);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.schedule-slot span {
  color: #6ee7a0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.schedule-slot.is-selected {
  border-color: rgba(74, 222, 128, 0.9);
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.26), transparent 60%),
    rgba(8, 7, 6, 0.72);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
}

.schedule-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

.schedule-busy-note {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}

/* Price list */

.price-list {
  display: grid;
  gap: 8px;
}

.price-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.58);
  transition: border-color 180ms ease, background 180ms ease;
}

.price-item:hover {
  border-color: rgba(255, 116, 23, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.1), transparent 55%),
    rgba(10, 8, 7, 0.8);
}

.price-item__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
}

.price-item__body strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.price-item__body small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.4;
}

.price-item__meta {
  text-align: right;
}

.price-item__meta strong {
  display: block;
  color: var(--champagne);
  font-size: 1rem;
  white-space: nowrap;
}

.price-item__meta small {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-weight: 800;
  white-space: nowrap;
}

/* Call to book card */

.call-steps {
  display: grid;
  gap: 12px;
  margin: 0 0 8px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.call-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  line-height: 1.45;
}

.call-steps li span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 8px;
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange-soft);
  font-size: 0.85rem;
  font-weight: 900;
}

.call-button {
  width: 100%;
  margin-top: 18px;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.call-note {
  margin: 12px 0 4px;
  color: var(--muted-2);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1040px) {
  .schedule-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .schedule-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-item {
    grid-template-columns: auto 1fr;
  }

  .price-item__meta {
    grid-column: 2;
    text-align: left;
  }
}


/* Reviews section */
.reviews {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.reviews-widget {
  margin-bottom: 12px;
}

.yandex-reviews-frame {
  position: relative;
  width: 100%;
  height: 720px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 116, 23, 0.08), transparent 36%),
    var(--panel);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.yandex-reviews-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.yandex-reviews-frame iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* ===========================
   Authentication Modal Styles
   =========================== */

.auth-modal {
  position: fixed !important;
  z-index: 9999;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(24px);
  margin: 0 !important;
  padding: 0 !important;
}

.auth-modal.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.auth-content {
  position: relative;
  max-width: 420px;
  width: calc(100% - 40px);
  padding: 36px 32px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 8px;
  background: 
    linear-gradient(145deg, rgba(255, 116, 23, 0.12), transparent 40%),
    rgba(18, 16, 14, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.64);
  margin: auto;
}

.auth-content h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  text-align: center;
}

.auth-content > p {
  margin: 0 0 28px;
  color: var(--muted);
  text-align: center;
}

#auth-form {
  display: grid;
  gap: 18px;
}

#auth-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

#auth-form input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #080706;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

#auth-form input:focus {
  border-color: rgba(255, 116, 23, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.12);
}

.auth-error {
  min-height: 22px;
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  font-size: 0.88rem;
  text-align: center;
}

.auth-error:empty {
  display: none;
}


/* Pricing Page Responsive Styles */
@media (max-width: 1040px) {
  .pricing-hero h1 {
    font-size: 3.5rem;
    line-height: 1.05;
  }

  .pricing-hero__lead {
    font-size: 1.1rem;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 12px;
    padding: 16px 20px;
  }

  .pricing-table--five-col .pricing-table__header,
  .pricing-table--five-col .pricing-table__row {
    grid-template-columns: 1.2fr repeat(4, 0.95fr);
    gap: 10px;
    padding: 16px 18px;
  }

  .pricing-table--five-col .pricing-table__header > div {
    font-size: 0.78rem;
  }

  .pricing-table__header > div,
  .pricing-table__row > div {
    font-size: 0.92rem;
  }

  .pricing-complex {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-complex__card {
    min-height: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-cta__content {
    text-align: left;
  }

  .pricing-cta__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .pricing-cta__actions .btn {
    flex: 0 1 auto;
    min-width: 200px;
  }
}

@media (max-width: 880px) {
  .pricing-hero__content {
    text-align: left;
  }

  .pricing-hero h1 {
    font-size: 3.2rem;
  }

  .pricing-block__header {
    gap: 16px;
    padding: 0 8px;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 14px;
  }

  .pricing-hero {
    padding: 54px 0 48px;
  }

  .pricing-hero__content {
    text-align: left;
  }

  .pricing-hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .pricing-hero__lead {
    font-size: 1rem;
    margin: 18px auto 0;
    line-height: 1.6;
  }

  .pricing-section {
    padding: 48px 0 calc(78px + var(--safe-bottom));
  }

  .pricing-block {
    margin-bottom: 54px;
  }

  .pricing-block__header h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .pricing-block__header p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .pricing-table {
    border-radius: 0;
    margin-left: calc(-14px + -1px);
    margin-right: calc(-14px + -1px);
    border-left: none;
    border-right: none;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .pricing-table--two-col,
  [data-service-content="carwash"] .pricing-table,
  [data-service-content="autoservice"] .pricing-table {
    margin-left: 0;
    margin-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .pricing-table__header {
    display: none;
  }

  .pricing-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pricing-table__mobile-hint {
    display: block;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 116, 23, 0.3);
    border-radius: 8px;
    background: rgba(255, 116, 23, 0.12);
    color: var(--orange-soft);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
  }

  .pricing-table__row > div:first-child {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.96rem;
    line-height: 1.4;
    text-align: left;
    padding-left: 4px;
  }

  .pricing-table--two-col .pricing-table__row > div:first-child {
    text-align: left;
  }

  .pricing-table__row > div:not(:first-child) {
    display: none !important;
  }

  .pricing-table__row::after {
    content: attr(data-prices);
    display: block;
    padding: 10px 14px;
    border: 1px solid rgba(255, 116, 23, 0.2);
    border-radius: 8px;
    background: rgba(255, 116, 23, 0.08);
    color: var(--champagne);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
  }

  .pricing-table--two-col .pricing-table__row::after,
  [data-service-content="autoservice"] .pricing-table__row::after {
    content: attr(data-prices);
    display: block;
  }

  .pricing-table__row:not([data-prices])::after {
    display: none;
  }

  .pricing-table__section {
    padding: 16px 16px;
    font-size: 0.92rem;
  }

  .pricing-complex__card {
    min-height: auto;
    padding: 24px 20px;
  }

  .pricing-complex__card::after {
    left: 20px;
    right: 20px;
  }

  .pricing-complex__badge {
    font-size: 0.73rem;
    padding: 7px 11px;
    gap: 6px;
  }

  .pricing-complex__card-header h3 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .pricing-complex__card-header p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .pricing-complex__prices {
    gap: 12px;
    margin-top: 18px;
  }

  .pricing-complex__prices > div {
    padding: 14px 16px;
  }

  .pricing-complex__prices span {
    font-size: 0.88rem;
  }

  .pricing-complex__prices strong {
    font-size: 1.15rem;
  }

  .pricing-grid {
    gap: 12px;
  }

  .pricing-grid__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 14px;
    padding: 18px;
  }

  .pricing-grid__icon {
    width: 42px;
    height: 42px;
    grid-row: 1 / 3;
  }

  .pricing-grid__price {
    text-align: left;
    grid-column: 2;
    grid-row: 2;
    font-size: 1.1rem;
  }

  .pricing-grid__item > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .pricing-grid__item strong {
    font-size: 0.96rem;
    margin-bottom: 4px;
  }

  .pricing-grid__item span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .pricing-rules {
    padding: 28px 18px;
  }

  .pricing-rules__header {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .pricing-rules__header .lucide {
    width: 28px;
    height: 28px;
  }

  .pricing-rules__header h3 {
    font-size: 1.45rem;
  }

  .pricing-rules__list {
    gap: 18px;
  }

  .pricing-rules__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-rules__item > span {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .pricing-rules__item p {
    font-size: 0.93rem;
    line-height: 1.6;
    padding-top: 0;
  }

  .pricing-cta {
    padding: 28px 20px;
    gap: 24px;
  }

  .pricing-cta__content h3 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .pricing-cta__content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .pricing-cta__actions {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 12px;
  }

  .pricing-hero {
    padding: 48px 0 42px;
  }

  .pricing-hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .pricing-hero__lead {
    font-size: 0.95rem;
    margin: 16px auto 0;
  }

  .service-toggle {
    padding: 5px;
    gap: 6px;
    margin: 22px 0;
  }

  .service-toggle__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }

  .service-toggle__btn i {
    width: 18px;
    height: 18px;
  }

  .pricing-section {
    padding: 42px 0 calc(74px + var(--safe-bottom));
  }

  .pricing-block {
    margin-bottom: 48px;
  }

  .pricing-block__badge {
    font-size: 0.7rem;
    padding: 6px 10px;
    gap: 5px;
  }

  .pricing-block__badge .lucide {
    width: 0.95em;
    height: 0.95em;
  }

  .pricing-block__header {
    padding: 0 6px;
  }

  .pricing-block__header h2 {
    font-size: 1.65rem;
    line-height: 1.18;
  }

  .pricing-block__header p {
    font-size: 0.9rem;
  }

  .pricing-table {
    margin-left: calc(-10px + -1px);
    margin-right: calc(-10px + -1px);
  }

  .pricing-table--two-col,
  [data-service-content="carwash"] .pricing-table,
  [data-service-content="autoservice"] .pricing-table {
    margin-left: 0;
    margin-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .pricing-table__mobile-hint {
    font-size: 0.8rem;
    padding: 10px 14px;
    margin-bottom: 8px;
  }

  .pricing-table__row {
    padding: 14px 12px;
  }

  .pricing-table__row > div:first-child {
    font-size: 0.94rem;
    padding-left: 4px;
  }

  .pricing-table__row::after {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .pricing-table__section {
    padding: 14px 12px;
    font-size: 0.88rem;
  }

  .pricing-complex {
    gap: 12px;
  }

  .pricing-complex__card {
    padding: 20px 16px;
  }

  .pricing-complex__card::after {
    left: 16px;
    right: 16px;
  }

  .pricing-complex__badge {
    font-size: 0.68rem;
    padding: 6px 10px;
    gap: 5px;
  }

  .pricing-complex__badge .lucide {
    width: 0.95em;
    height: 0.95em;
  }

  .pricing-complex__card-header h3 {
    font-size: 1.35rem;
    margin: 16px 0 10px;
    line-height: 1.22;
  }

  .pricing-complex__card-header p {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .pricing-complex__prices {
    gap: 10px;
    margin-top: 16px;
  }

  .pricing-complex__prices > div {
    padding: 12px 14px;
  }

  .pricing-complex__prices span {
    font-size: 0.85rem;
  }

  .pricing-complex__prices strong {
    font-size: 1.05rem;
  }

  .pricing-grid {
    gap: 10px;
  }

  .pricing-grid__item {
    padding: 16px 14px;
    gap: 10px 12px;
  }

  .pricing-grid__icon {
    width: 38px;
    height: 38px;
  }

  .pricing-grid__icon .lucide {
    width: 1em;
    height: 1em;
  }

  .pricing-grid__item strong {
    font-size: 0.92rem;
  }

  .pricing-grid__item span {
    font-size: 0.8rem;
  }

  .pricing-grid__price {
    font-size: 1.05rem;
  }

  .pricing-rules {
    padding: 24px 14px;
  }

  .pricing-rules__header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    gap: 10px;
  }

  .pricing-rules__header .lucide {
    width: 26px;
    height: 26px;
  }

  .pricing-rules__header h3 {
    font-size: 1.3rem;
  }

  .pricing-rules__list {
    gap: 16px;
  }

  .pricing-rules__item {
    gap: 10px;
  }

  .pricing-rules__item > span {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .pricing-rules__item p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .pricing-cta {
    padding: 24px 16px;
    gap: 20px;
  }

  .pricing-cta__content h3 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .pricing-cta__content p {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .pricing-cta__actions {
    gap: 8px;
  }

  .pricing-cta__actions .btn {
    min-height: 48px;
    font-size: 0.92rem;
    padding: 0 18px;
  }
}
