:root {
  --accent: #d71920;
  --accent-deep: #a80f16;
  --yellow: #ffd23f;
  --ink: #111827;
  --muted: #667085;
  --line: #e6e9ef;
  --surface: #f6f8fb;
  --panel: #ffffff;
  --shadow: 0 20px 54px rgba(17, 24, 39, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.025) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  background-size: 84px 84px, auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  font-variant-numeric: lining-nums;
}

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

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

.page {
  min-height: 100vh;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  transform: rotate(-4deg);
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.23);
}

.logo-mark svg {
  transform: rotate(4deg);
}

.logo-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.logo-text strong,
.logo strong {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.logo-text span,
.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 3px;
}

.star {
  fill: var(--yellow);
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.support-link {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
}

.support-link:hover {
  background: var(--accent-deep);
}

.request-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu summary {
  min-width: 62px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 40;
  min-width: 112px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.16);
}

.language-options a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.language-options a:hover,
.language-options a[aria-current="page"] {
  color: var(--accent-deep);
  background: rgba(215, 25, 32, 0.07);
}

.order-page {
  width: min(980px, calc(100% - 40px));
  margin: 26px auto 64px;
}

.order-summary,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  padding: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.order-summary p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.airport-photo-card {
  width: min(320px, 32vw);
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.11);
}

.airport-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-data[hidden] {
  display: none !important;
}

.form-card {
  padding: 22px;
}

.progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}

.progress-step {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.progress-step span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(215, 25, 32, 0.08);
  font-size: 12px;
}

.progress-step.is-active {
  color: var(--ink);
  border-color: rgba(215, 25, 32, 0.32);
}

.progress-step.is-active span {
  color: #fff;
  background: var(--accent);
}

.progress-step.is-complete {
  color: var(--ink);
}

.progress-step.is-complete span {
  color: #fff;
  background: var(--ink);
}

.progress-line {
  flex: 1 1 40px;
  height: 1px;
  background: var(--line);
}

.order-form {
  display: block;
}

.details-step {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 18px;
}

.details-step[hidden],
.payment-step[hidden] {
  display: none;
}

.details-step > section,
.payment-step {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.order-form h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.form-subtitle {
  margin: -6px 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.counter-row,
.check-row {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.counter-row strong,
.counter-row span {
  display: block;
}

.counter-row strong {
  font-size: 15px;
  line-height: 1.25;
}

.counter-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.counter-side {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.counter {
  width: 110px;
  min-width: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  font-weight: 900;
}

.line-price {
  min-width: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.counter button {
  min-height: 38px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.counter button:hover {
  background: var(--surface);
}

.check-row {
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.check-row span {
  flex: 1;
}

.check-row em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.addon-note {
  margin: -4px 2px 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.service-includes {
  position: relative;
  margin: auto 0 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 14px 16px 14px 14px;
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.22), rgba(215, 25, 32, 0.045) 58%),
    #fffaf0;
  color: #344054;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.06);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.service-includes::before {
  content: "!";
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(215, 25, 32, 0.28);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.service-includes[hidden] {
  display: none;
}

.service-includes strong {
  grid-column: 2;
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.service-includes ul {
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-includes li {
  position: relative;
  padding-left: 18px;
}

.service-includes li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.service-includes li + li {
  margin-top: 5px;
}

.conditional-field {
  margin-top: -4px;
  padding: 0 2px;
}

.field-label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.field-label input,
.field-label select,
.field-label textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
  font-weight: 600;
}

.field-label input:focus,
.field-label select:focus,
.field-label textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.09);
}

.field-label textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.36fr);
  align-items: end;
  gap: 12px;
}

.contact-grid-phone {
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.36fr);
}

.contact-input-field,
.contact-channel-field {
  white-space: nowrap;
}

.contact-input-field input,
.contact-channel-field select {
  white-space: normal;
}

[data-country-code-picker] {
  font-variant-numeric: tabular-nums;
}

.contact-note {
  margin: -2px 2px 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.total-card,
.payment-total-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(215, 25, 32, 0.05);
}

.total-card div,
.payment-total-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.total-card span,
.payment-total-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.total-card strong,
.payment-total-card strong {
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.total-card p,
.payment-total-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.22);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.submit-button:hover {
  background: var(--accent-deep);
}

.payment-step {
  max-width: 720px;
  margin: 0 auto;
}

.payment-head {
  display: grid;
  gap: 8px;
}

.payment-head .eyebrow {
  margin-bottom: 0;
}

.payment-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--surface);
}

.payment-methods-ru {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.payment-method {
  position: relative;
  min-height: 104px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 8px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.payment-method input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.payment-method:has(input:checked),
.payment-method:focus-within {
  border-color: rgba(215, 25, 32, 0.75);
  color: var(--ink);
  box-shadow: inset 0 3px 0 var(--accent), 0 10px 22px rgba(17, 24, 39, 0.08);
}

.payment-method strong {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.payment-brand {
  position: relative;
  z-index: 1;
  min-width: 44px;
  max-width: 100%;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.payment-method:has(input:checked) .payment-brand {
  background: var(--accent);
}

.payment-brand-icons {
  width: min(100%, 120px);
  height: 36px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 8px;
}

.payment-brand-icons img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 22px;
  object-fit: contain;
}

.payment-brand-icons > img {
  max-width: 78px;
}

.payment-method:has(input:checked) .payment-brand-icons {
  background: #fff;
  border-color: rgba(215, 25, 32, 0.45);
}

.payment-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.payment-logo-row img {
  flex: 0 1 auto;
  max-width: 30px;
  max-height: 18px;
}

.payment-logo {
  display: block;
  max-width: 30px;
  max-height: 18px;
  object-fit: contain;
}

.payment-logo-wide {
  max-width: 78px;
  max-height: 22px;
}

.payment-text-badge {
  display: inline-grid;
  min-width: 42px;
  height: 24px;
  place-items: center;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
}

.payment-method:has(input:checked) .payment-text-badge {
  background: var(--accent);
}

.payment-fields {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.payment-fields .field-label {
  gap: 4px;
  padding: 14px;
}

.payment-fields .field-label + .field-label,
.payment-field-grid,
.payment-field-grid + .field-label {
  border-top: 1px solid var(--line);
}

.payment-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.payment-field-grid .field-label + .field-label {
  border-left: 1px solid var(--line);
}

.payment-fields input,
.payment-fields select {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  box-shadow: none;
}

.payment-fields input:focus,
.payment-fields select:focus {
  box-shadow: none;
}

.payment-actions {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 12px;
}

.request-success {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(19, 137, 95, 0.28);
  border-radius: 8px;
  padding: 16px;
  background: rgba(19, 137, 95, 0.08);
  color: var(--ink);
}

.request-success[hidden] {
  display: none;
}

.request-success strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.request-success p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.footer {
  background: var(--ink);
  color: #fff;
  padding: 44px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer .logo {
  color: #fff;
}

.footer .logo-text span {
  color: rgba(255, 255, 255, 0.72);
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 8px 0 0;
}

.payment-icon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  margin-top: 14px;
}

.payment-icon {
  width: auto;
  height: 24px;
  display: inline-grid;
  place-items: center;
}

.payment-icon img {
  width: auto;
  height: 24px;
  max-width: 78px;
  object-fit: contain;
  display: block;
}

.footer .payment-icon img[src*="apple-pay"] {
  filter: brightness(0) invert(1);
}

.footer-contacts {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.messenger-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.messenger-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 9px 12px 9px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.messenger-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.messenger-link svg,
.messenger-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.messenger-link svg {
  fill: currentColor;
}

.messenger-whatsapp {
  color: #4ade80;
}

.messenger-telegram {
  color: #38bdf8;
}

.messenger-link span {
  color: #fff;
}

.secondary-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.secondary-button:hover {
  border-color: rgba(215, 25, 32, 0.4);
  background: rgba(215, 25, 32, 0.04);
}

@media (max-width: 900px) {
  .order-summary,
  .details-step {
    grid-template-columns: 1fr;
  }

  .airport-photo-card {
    width: 100%;
    max-height: 220px;
  }
}

@media (max-width: 640px) {
  .nav,
  .order-page {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .back-link {
    padding-inline: 12px;
  }

  .request-nav-actions {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .language-menu summary {
    min-width: 58px;
    padding-inline: 10px;
  }

  .order-page {
    margin-top: 18px;
    margin-bottom: 42px;
  }

  .order-summary,
  .form-card {
    padding: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .progress {
    display: grid;
    grid-template-columns: 1fr;
  }

  .progress-line {
    display: none;
  }

  .details-step > section,
  .payment-step {
    padding: 14px;
  }

  .counter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .counter-side {
    width: 100%;
    justify-content: flex-start;
  }

  .counter {
    width: min(220px, 100%);
    min-width: 0;
  }

  .counter-row .line-price,
  .check-row .line-price {
    display: none;
  }

  .check-row {
    align-items: flex-start;
  }

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

  .payment-methods,
  .payment-methods-ru {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-method {
    min-height: 78px;
    padding: 10px 6px;
  }

  .payment-method strong {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .payment-brand {
    height: 28px;
    padding-inline: 7px;
    font-size: 11px;
  }

  .payment-brand-icons {
    width: min(100%, 112px);
    height: 34px;
    padding: 5px 7px;
  }

  .payment-logo {
    max-width: 28px;
    max-height: 17px;
  }

  .payment-logo-wide {
    max-width: 72px;
    max-height: 21px;
  }

  .payment-field-grid {
    grid-template-columns: 1fr;
  }

  .payment-field-grid .field-label + .field-label {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .payment-actions {
    grid-template-columns: 1fr;
  }

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

  .footer-contacts {
    justify-items: start;
  }

  .messenger-row {
    justify-content: flex-start;
  }
}

/* International form kit refresh. */
:root {
  --ui-bg: #f7f8fb;
  --ui-panel: #ffffff;
  --ui-ink: #172033;
  --ui-muted: #617085;
  --ui-line: #dfe5ee;
  --ui-line-strong: #cdd6e3;
  --ui-primary: #d71920;
  --ui-primary-deep: #a80f16;
  --ui-blue: #2563eb;
  --ui-green: #078060;
  --ui-radius: 8px;
  --ui-shadow: 0 18px 50px rgba(23, 32, 51, 0.11);
}

body {
  color: var(--ui-ink);
  background:
    radial-gradient(circle at 86% 6%, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0, var(--ui-bg) 420px),
    var(--ui-bg);
}

.nav {
  min-height: 72px;
}

.logo-mark,
.back-link,
.order-summary,
.form-card,
.airport-photo-card,
.counter,
.counter button,
.field-label input,
.field-label select,
.field-label textarea,
.total-card,
.payment-total-card,
.payment-method,
.submit-button,
.secondary-button,
.request-success {
  border-radius: var(--ui-radius);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--ui-primary);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.18);
}

.logo-text strong {
  color: var(--ui-ink);
  font-weight: 800;
}

.logo-text span {
  color: var(--ui-muted);
  font-weight: 650;
}

.back-link {
  border-color: var(--ui-line);
  color: #334155;
  font-weight: 800;
}

.support-link,
.submit-button {
  border-color: var(--ui-primary);
  background: var(--ui-primary);
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.18);
}

.support-link:hover,
.submit-button:hover {
  background: var(--ui-primary-deep);
}

.order-page {
  width: min(1060px, calc(100% - 40px));
}

.order-summary,
.form-card {
  border-color: var(--ui-line);
  box-shadow: var(--ui-shadow);
}

.order-summary {
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  padding: 24px;
}

.eyebrow {
  color: var(--ui-primary);
  font-weight: 850;
}

.eyebrow::before {
  background: #f6c343;
}

h1,
h2 {
  color: var(--ui-ink);
  font-weight: 760;
}

.airport-photo-card {
  overflow: hidden;
  border: 1px solid var(--ui-line);
  background: #eef2f7;
}

.form-card {
  overflow: hidden;
}

.progress {
  border-bottom: 1px solid var(--ui-line);
  background: #fff;
  padding: 20px 24px;
}

.progress-step {
  color: var(--ui-muted);
}

.progress-step span {
  background: #eef4ff;
  color: var(--ui-blue);
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--ui-ink);
}

.progress-step.is-active span,
.progress-step.is-complete span {
  background: var(--ui-blue);
  color: #fff;
}

.progress-line {
  background: var(--ui-line);
}

.order-form {
  padding: 24px;
}

.details-step {
  gap: 20px;
}

.details-step > section,
.payment-step {
  border: 1px solid var(--ui-line);
  background: #fff;
  box-shadow: none;
}

.order-form h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.counter-row,
.check-row {
  border-color: var(--ui-line);
  background: #fff;
}

.counter-row strong,
.check-row span {
  color: var(--ui-ink);
}

.counter-row span {
  color: var(--ui-muted);
}

.counter {
  border-color: var(--ui-line-strong);
  background: #f8fafc;
}

.counter button {
  background: #fff;
  color: var(--ui-blue);
}

.line-price {
  color: var(--ui-ink);
}

.check-row input {
  accent-color: var(--ui-blue);
}

.field-label {
  color: #46566f;
  font-size: 13px;
  font-weight: 850;
}

.field-label input,
.field-label select,
.field-label textarea {
  border-color: var(--ui-line-strong);
  background: #fff;
  color: var(--ui-ink);
}

.field-label input:focus,
.field-label select:focus,
.field-label textarea:focus {
  border-color: rgba(37, 99, 235, 0.62);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-grid,
.contact-grid-phone {
  gap: 12px;
}

.total-card,
.payment-total-card {
  border-color: var(--ui-line);
  background: #f8fafc;
  box-shadow: none;
}

.total-card span,
.payment-total-card span {
  color: var(--ui-muted);
}

.total-card strong,
.payment-total-card strong {
  color: var(--ui-ink);
}

.payment-head p {
  color: var(--ui-muted);
}

.payment-methods,
.payment-methods-ru {
  gap: 10px;
}

.payment-method {
  border-color: var(--ui-line);
  background: #fff;
  box-shadow: none;
}

.payment-method:hover {
  border-color: var(--ui-line-strong);
  background: #f8fafc;
}

.payment-method:has(input:checked),
.payment-method:focus-within {
  border-color: rgba(37, 99, 235, 0.62);
  background: #f8fbff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.payment-brand,
.payment-brand-icons,
.payment-text-badge {
  border-color: var(--ui-line);
  background: #fff;
}

.payment-method:has(input:checked) .payment-brand,
.payment-method:has(input:checked) .payment-brand-icons {
  border-color: rgba(37, 99, 235, 0.38);
  background: #eef4ff;
}

.secondary-button {
  border-color: var(--ui-line-strong);
  background: #fff;
  color: #334155;
}

.request-success {
  border-color: rgba(7, 128, 96, 0.24);
  background: #effaf6;
}

.request-success strong {
  color: var(--ui-green);
}

.footer {
  border-top: 1px solid var(--ui-line);
  background: #fff;
}

@media (max-width: 760px) {
  .order-page {
    width: min(100% - 28px, 1060px);
    margin-top: 18px;
  }

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

  .airport-photo-card {
    width: 100%;
  }

  .progress {
    padding: 16px;
  }

  .order-form {
    padding: 16px;
  }

  .details-step > section,
  .payment-step {
    padding: 16px;
  }
}
