:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #efefef;
  --text: #1c1c1e;
  --text-muted: #5e5e5e;
  --border: #e5e5e5;
  --border-strong: #4b4b4b;
  --accent: #f5c518;
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.12);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html[data-text-scale="sm"] {
  font-size: 15px;
}

html[data-text-scale="md"] {
  font-size: 16px;
}

html[data-text-scale="lg"] {
  font-size: 18px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-scale-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: #f3f3f4;
}

.text-scale-controls-profile {
  width: auto;
  justify-content: flex-start;
}

.text-scale-button {
  min-width: 2.6rem;
  min-height: 2.4rem;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms var(--ease-out),
    color 160ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.text-scale-button.is-active {
  background: #000000;
  color: #ffffff;
}

.text-scale-button:active {
  transform: scale(0.97);
}

.nav-links a,
.nav-link-button {
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.55rem 0.2rem;
  border-radius: 0;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}

.nav-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--surface-muted);
}

.nav-pill-button-dark {
  background: #000000;
  color: #ffffff;
  padding: 0 1.1rem;
}

.nav-link-button:active,
.button:active,
.button-light:active,
.text-link:active {
  transform: scale(0.97);
}

.nav-toggle,
.nav-burger {
  display: none;
}

.main-content {
  padding: 2.5rem 0 5rem;
}

.site-footer {
  border-top: 0;
  background: #000000;
  color: #ffffff;
}

.pwa-install-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(28, 28, 30, 0.96);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms var(--ease-out),
    opacity 220ms var(--ease-out);
}

.pwa-install-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pwa-install-banner__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 18px;
}

.pwa-install-banner__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.pwa-install-banner__copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.pwa-install-banner__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pwa-install-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pwa-install-banner .button {
  min-height: 42px;
  padding: 0 1rem;
  background: #ffffff;
  color: #1c1c1e;
  border-color: #ffffff;
}

.pwa-install-banner .button:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
}

.pwa-install-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.pwa-install-close:active {
  transform: scale(0.97);
}

@media (hover: hover) {
  .pwa-install-close:hover {
    background: rgba(255, 255, 255, 0.14);
  }
}

.pwa-install-close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.footer {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.hero-copy {
  background: #ffffff;
  color: var(--text);
  border-radius: 0;
  padding: 1.25rem 0 0;
  box-shadow: none;
}

.hero-copy-dark {
  background: #000000;
  color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
}

.hero-meta {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
}

.hero-copy:not(.hero-copy-dark) .hero-meta {
  color: var(--text-muted);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  max-width: 9ch;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-copy-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions,
.history-meta,
.status-layout,
.profile-layout,
.order-layout,
.form-grid,
.cards-grid,
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 0.92rem;
}

.hero-copy-dark .hero-points span {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.button:hover {
  background: #323236;
  border-color: #323236;
}

.button-light {
  background: #ffffff;
  color: var(--text);
  border-color: #ffffff;
  box-shadow: inset 0 0 0 1px #d9d9d9;
}

.button-light:hover {
  background: #f3f3f4;
  border-color: #f3f3f4;
}

.button-full {
  width: 100%;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: none;
  transition:
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    transform 200ms var(--ease-out);
}

.offline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.offline-card-mark {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 197, 24, 0.26), transparent 55%),
    #f4f4f5;
  border: 1px solid #e5e5e5;
}

.offline-card-copy h2 {
  margin-bottom: 0.6rem;
}

.offline-card-copy p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  max-width: 48ch;
}

.offline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card,
.summary-card {
  background: #ffffff;
}

.hero-card:hover,
.tariff-card:hover,
.step-card:hover {
  border-color: #d8d8d8;
  box-shadow: none;
  transform: none;
}

.hero-card h2,
.card h2,
.card h3,
.section-header h1,
.section-header h2 {
  margin-top: 0;
}

.hero-card-header,
.summary-card-header,
.order-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rating-chip {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: #fff6d6;
  color: #846600;
  font-size: 0.9rem;
  font-weight: 600;
}

.request-card {
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.hero-request-card {
  align-self: end;
}

.hero-request-footnote {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.quick-order-form,
.ride-order-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 0;
  background: var(--surface-muted);
  transition:
    border-color 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.form-control:focus {
  outline: none;
  box-shadow: inset 0 -2px 0 #000000;
}

textarea.form-control {
  min-height: 112px;
  resize: vertical;
}

.form-control-soft {
  background: #f3f3f3;
}

.field-error {
  color: #b3261e;
  font-size: 0.9rem;
}

.section {
  margin-top: 3rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h1,
.section-header h2 {
  margin-bottom: 0.65rem;
  letter-spacing: -0.045em;
}

.section-header p,
.muted {
  color: var(--text-muted);
}

.cards-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-strip-item {
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: #f3f3f3;
}

.service-strip-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.service-strip-item span {
  color: var(--text-muted);
}

.tariff-card {
  display: grid;
  gap: 0.9rem;
  background: #f3f3f3;
  border-color: #f3f3f3;
}

.tariff-card-featured {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.tariff-card-featured .muted,
.tariff-card-featured .tariff-index,
.tariff-card-featured p,
.tariff-card-featured .text-link {
  color: rgba(255, 255, 255, 0.72);
}

.tariff-card-featured .text-link {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.tariff-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.tariff-index {
  color: #9a9a9a;
  font-size: 0.95rem;
}

.tariff-price {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 0.4rem;
}

.text-link {
  width: fit-content;
  color: var(--text);
  font-weight: 500;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(28, 28, 30, 0.18);
  transition: border-color 160ms var(--ease-out), color 160ms var(--ease-out), transform 120ms var(--ease-out);
}

.text-link:hover {
  border-color: rgba(28, 28, 30, 0.5);
}

.tariff-details-toggle {
  width: fit-content;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.tariff-cars {
  display: grid;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.tariff-card-featured .tariff-cars {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.tariff-cars strong {
  font-size: 0.95rem;
}

.tariff-cars-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.step-card {
  padding-top: 1.35rem;
}

.step-icon {
  width: fit-content;
  margin-bottom: 1rem;
  color: #9a9a9a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.messages {
  margin-bottom: 1rem;
  display: grid;
  gap: 0.75rem;
}

.message {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fafafa;
}

.message.success {
  border-color: #d8e7c3;
  background: #f7faef;
}

.message.error {
  border-color: #efc2be;
  background: #fff4f2;
}

.order-layout,
.profile-layout,
.status-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.account-sidebar {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
}

.account-sidebar-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 1.25rem;
  font-size: 1.05rem;
  border-left: 4px solid transparent;
  color: var(--text);
}

.account-sidebar-link.is-active {
  background: #f3f3f4;
  border-left-color: var(--text);
}

.account-sidebar-link.is-muted {
  color: var(--text);
}

.account-main {
  min-width: 0;
}

.account-header {
  margin-bottom: 2rem;
}

.account-header h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.account-header p {
  margin: 0.75rem 0 0;
  max-width: 42rem;
}

.account-profile-form,
.account-history {
  max-width: 860px;
}

.account-hero {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.account-avatar-wrap {
  position: relative;
  width: 176px;
  height: 176px;
  flex: 0 0 176px;
}

.account-avatar-image,
.account-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  background: linear-gradient(180deg, #f3f3f4 0%, #e9e9ea 100%);
}

.account-avatar-placeholder {
  display: grid;
  place-items: center;
  color: #8d8d92;
  font-size: 4rem;
  font-weight: 600;
}

.account-avatar-edit {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 1.45rem;
}

.account-hero-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.account-hero-copy p {
  margin: 0;
  max-width: 38rem;
}

.account-avatar-upload {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.account-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.account-settings-list {
  border-top: 1px solid #ececec;
}

.account-setting-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ececec;
}

.account-setting-meta {
  margin-bottom: 0.85rem;
}

.account-setting-meta label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.account-setting-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.account-setting-control .form-control {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1.15rem;
  color: #56565b;
}

.account-setting-control .form-control:focus {
  box-shadow: none;
  color: var(--text);
}

.visually-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.account-row-arrow {
  margin-left: auto;
  color: #b4b4b8;
  font-size: 2.25rem;
  line-height: 1;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.account-badge-warning {
  background: #fff6d6;
  color: #846600;
}

.account-badge-success {
  background: #e6f4e7;
  color: #24743a;
}

.account-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 1.5rem;
}

.account-security-wrap {
  max-width: 860px;
}

.account-security-intro {
  border-top: 1px solid #ececec;
  margin-bottom: 2rem;
}

.account-security-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ececec;
}

.account-security-item h2 {
  margin: 0 0 0.45rem;
}

.account-security-item p {
  margin: 0;
  max-width: 36rem;
}

.account-security-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.account-history {
  margin-top: 3rem;
}

.account-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.account-history-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #ececec;
}

.order-layout {
  align-items: start;
  grid-template-columns: 360px minmax(0, 1fr);
}

.order-card {
  padding: 1.6rem;
}

.order-summary-main {
  top: 104px;
}

.order-request-main {
  min-width: 0;
}

.map-order-shell {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.map-toolbar,
.map-mode {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.map-mode-button,
.map-clear-button {
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 0;
  background: var(--surface-muted);
  color: var(--text);
  cursor: pointer;
  transition:
    background-color 160ms var(--ease-out),
    border-color 160ms var(--ease-out),
    transform 120ms var(--ease-out);
}

.map-mode-button.is-active {
  background: var(--text);
  border-color: var(--text);
  color: #ffffff;
}

.map-mode-button:active,
.map-clear-button:active {
  transform: scale(0.97);
}

.ride-map {
  width: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f3f3f4;
}

.map-helper {
  display: grid;
  gap: 0.35rem;
}

.ride-checkout-form {
  gap: 0;
}

.checkout-section {
  padding: 1.6rem 0;
  border-top: 1px solid var(--border);
}

.checkout-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.checkout-section-heading h3,
.checkout-section-heading p {
  margin: 0;
}

.checkout-section-heading h3 {
  font-size: 1.3rem;
}

.checkout-section-heading p {
  margin-top: 0.3rem;
  color: var(--text-muted);
}

.checkout-step-number {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #ffffff;
  font-weight: 700;
}

.checkout-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.payment-method-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.payment-method-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 94px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.payment-method-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.payment-method-option:has(input:checked) {
  border-color: var(--text);
  background: #f8f8f8;
  box-shadow: inset 0 0 0 1px var(--text);
}

.payment-method-option:has(input:focus-visible) {
  outline: 3px solid rgba(245, 197, 24, 0.55);
  outline-offset: 2px;
}

.payment-method-option:active {
  transform: scale(0.98);
}

.payment-method-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #ededee;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 750;
}

.payment-method-icon-card {
  position: relative;
}

.payment-method-icon-card::before {
  width: 24px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid #1c1c1e;
  content: "";
}

.payment-method-icon-card::after {
  position: absolute;
  top: 18px;
  width: 24px;
  height: 4px;
  background: #1c1c1e;
  content: "";
}

.payment-method-copy {
  display: grid;
  gap: 0.25rem;
}

.payment-method-copy small {
  color: var(--text-muted);
  line-height: 1.35;
}

.payment-method-check {
  width: 22px;
  height: 22px;
  border: 2px solid #b8b8ba;
  border-radius: 50%;
}

.payment-method-option:has(input:checked) .payment-method-check {
  border: 6px solid var(--text);
  background: var(--accent);
}

.checkout-card-panel {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: #f3f3f4;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.checkout-card-panel[hidden] {
  display: none;
}

@starting-style {
  .checkout-card-panel:not([hidden]) {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.bank-card-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1.58;
  min-height: 204px;
  padding: 1.25rem;
  border-radius: 22px;
  background: #101113;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.bank-card-topline,
.bank-card-bottomline,
.field-label-row,
.checkout-submit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bank-card-chip {
  width: 38px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.bank-card-demo {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
}

.bank-card-number {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  white-space: nowrap;
}

.bank-card-bottomline > div {
  display: grid;
  gap: 0.2rem;
}

.bank-card-bottomline small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.bank-card-bottomline span {
  font-size: 0.8rem;
  font-weight: 650;
}

.card-details-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: start;
}

.card-number-field,
.card-holder-field {
  grid-column: 1 / -1;
}

.card-digit-count {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.card-digit-count.is-complete {
  color: #176b34;
  font-weight: 700;
}

.card-digit-count.is-invalid {
  color: #b3261e;
  font-weight: 700;
}

.field-help {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.field-help-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.mini-inline-button {
  border: 0;
  background: transparent;
  color: #1c1c1e;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  cursor: pointer;
  transition: color 160ms ease;
}

@media (hover: hover) {
  .mini-inline-button:hover {
    color: #5c5c60;
  }
}

.mini-inline-button:focus-visible {
  outline: 2px solid #1c1c1e;
  outline-offset: 4px;
  border-radius: 0.2rem;
}

.form-control.is-invalid {
  box-shadow: inset 0 -2px 0 #b3261e;
}

.form-control.is-valid {
  box-shadow: inset 0 -2px 0 #287a45;
}

.card-security-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid #dcdcdf;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.card-security-note strong {
  flex: 0 0 auto;
  color: var(--text);
}

.checkout-submit-bar {
  position: sticky;
  bottom: 0;
  z-index: 4;
  margin: 0 -1.6rem -1.6rem;
  padding: 1rem 1.6rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.checkout-submit-bar > div {
  display: grid;
  gap: 0.15rem;
}

.checkout-submit-bar span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.checkout-submit-bar strong {
  font-size: 1.3rem;
}

.checkout-submit-button {
  min-width: 210px;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fbe6e4;
  color: #8a1c15;
}

.summary-card,
.review-card {
  align-self: start;
  position: sticky;
  top: 96px;
}

.uber-summary-card {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.uber-summary-card .muted,
.uber-summary-card .summary-item span,
.uber-summary-card .summary-note p {
  color: rgba(255, 255, 255, 0.72);
}

.uber-summary-card .summary-divider {
  background: rgba(255, 255, 255, 0.14);
}

.summary-item {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.summary-total strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0 1rem;
}

.summary-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #f3f3f3;
}

.status-searching {
  background: #fff8dc;
}

.status-active {
  background: #f5c518;
}

.status-completed {
  background: #e5f3e2;
}

.status-cancelled {
  background: #fbe6e4;
}

.route-block {
  display: grid;
  gap: 1rem;
}

.driver-card p {
  margin: 0 0 0.75rem;
}

.tracking-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tracking-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.tracking-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #fff6d6;
  color: #846600;
  font-size: 0.9rem;
  font-weight: 600;
}

.tracking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tracking-summary > div {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #f7f7f8;
}

.tracking-summary span {
  display: block;
  margin-bottom: 0.35rem;
}

.ride-status-header p {
  max-width: 48rem;
}

.ride-status-top-layout {
  align-items: stretch;
}

.ride-status-main-card {
  background:
    radial-gradient(circle at top right, rgba(245, 197, 24, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.ride-driver-card {
  background: #0f0f10;
  color: #ffffff;
}

.ride-driver-card .muted,
.ride-driver-card .driver-card p:not(:first-child) {
  color: rgba(255, 255, 255, 0.72);
}

.ride-driver-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ride-payment-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  scroll-margin-top: 7rem;
}

.ride-payment-head {
  margin-bottom: 1.25rem;
}

.payment-hero {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: #101113;
  color: #ffffff;
}

.payment-hero p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.tracking-lock {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 210px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 20px;
  background: #f3f3f4;
}

.tracking-lock-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 48px;
  border-radius: 14px;
  background: #1c1c1e;
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.tracking-lock p {
  max-width: 42rem;
  margin: 0.35rem 0 0;
  color: #666668;
}

.payment-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.15rem 0.65rem;
  padding: 0.9rem;
  border: 1px solid #e4e4e5;
  border-radius: 14px;
  color: #77777a;
}

.payment-flow-step > span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ececee;
  color: #1c1c1e;
  font-weight: 700;
}

.payment-flow-step small {
  color: inherit;
}

.payment-flow-step.is-current {
  border-color: #1c1c1e;
  color: #1c1c1e;
  box-shadow: inset 0 0 0 1px #1c1c1e;
}

.payment-flow-step.is-complete {
  background: #1c1c1e;
  border-color: #1c1c1e;
  color: #ffffff;
}

.payment-flow-step.is-complete > span {
  background: #f5c518;
}

.payment-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.payment-form-wide {
  grid-column: span 3;
}

.payment-actions {
  grid-column: span 3;
  display: flex;
  justify-content: flex-start;
  padding-top: 0.5rem;
}

.payment-success-box {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f3f3f4;
}

.payment-success-box-authorized {
  background: #eef4ff;
}

.payment-success-box-paid {
  background: #edf7ef;
}

.cash-payment-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 16px;
  background: #fff7da;
}

.cash-payment-symbol {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #1c1c1e;
  font-size: 1.35rem;
  font-weight: 800;
}

.cash-payment-box p {
  margin: 0.25rem 0 0;
}

.payment-success-box p {
  margin: 0;
}

.support-chat-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.support-chat-message {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #f3f3f4;
}

.support-chat-message-dispatcher {
  background: #eef4ff;
}

.support-chat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-chat-message p {
  margin: 0;
}

.support-chat-form {
  display: grid;
  gap: 1rem;
}

.support-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.history-list {
  display: grid;
  gap: 1rem;
}

.history-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.history-list-uber {
  gap: 1.25rem;
}

.history-item-uber {
  align-items: stretch;
  padding: 1.75rem;
}

.history-item-flat {
  border-radius: 20px;
}

.history-item-copy {
  min-width: 0;
}

.history-item-copy h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.history-meta {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 1rem;
}

.promo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: #000000;
  color: #ffffff;
}

.promo-band-copy {
  max-width: 42rem;
}

.promo-band-copy h2 {
  margin-bottom: 0.7rem;
}

.promo-band-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.promo-band-action {
  flex: 0 0 auto;
}

.account-sidebar-link {
  min-height: 52px;
  padding: 0 1rem;
}

.account-sidebar-link.is-active {
  background: #efefef;
}

.account-setting-control .form-control {
  background: transparent;
}

.compact-history-item {
  padding: 0;
  border: 0;
}

.stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars span {
  font-size: 2rem;
  color: #d0d0d0;
  cursor: pointer;
  transition: color 120ms var(--ease-out), transform 120ms var(--ease-out);
}

.stars span:hover {
  transform: scale(1.05);
}

.stars span.active {
  color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover,
  .nav-link-button:hover {
    background: transparent;
  }

  .nav-pill-button:hover {
    background: #e2e2e2;
  }

  .nav-pill-button-dark:hover,
  .promo-band-action:hover {
    background: #282828;
    border-color: #282828;
  }

  .text-scale-button:hover {
    background: rgba(0, 0, 0, 0.08);
  }

  .text-scale-button.is-active:hover {
    background: #000000;
  }

  .payment-method-option:hover {
    border-color: #aaa;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .main-content {
    padding: 1.1rem 0 3.5rem;
  }

  .hero,
  .cards-grid,
  .service-strip,
  .steps-grid,
  .account-shell,
  .order-layout,
  .status-layout,
  .tracking-summary,
  .profile-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .account-shell {
    gap: 1.5rem;
  }

  .hero {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-copy-dark,
  .hero-card,
  .card,
  .order-card,
  .request-card,
  .history-item-uber,
  .promo-band {
    border-radius: 18px;
  }

  .hero-copy-dark {
    padding: 1.35rem;
  }

  .hero-card,
  .request-card,
  .order-card,
  .card {
    padding: 1.1rem;
  }

  .hero-card-header,
  .summary-card-header,
  .order-card-header,
  .checkout-section-heading,
  .tracking-card-header,
  .ride-driver-card-head,
  .status-row,
  .support-chat-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem;
  }

  .account-sidebar {
    display: flex;
    gap: 0.75rem;
    padding-top: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 0.35rem;
  }

  .account-sidebar::-webkit-scrollbar {
    display: none;
  }

  .account-sidebar-link {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 1rem;
    border-left: 0;
    border-radius: 999px;
    background: #f3f3f4;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .account-sidebar-link.is-active {
    background: #1c1c1e;
    border-left-color: transparent;
    color: #ffffff;
  }

  .account-hero {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .account-avatar-wrap {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
  }

  .account-setting-control {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .account-setting-row {
    padding: 1rem 0;
  }

  .account-setting-control .form-control {
    width: 100%;
    font-size: 1rem;
  }

  .account-row-arrow {
    display: none;
  }

  .account-history-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .nav-link-button {
    min-height: 50px;
  }

  .button,
  .hero-actions .button,
  .promo-band-action {
    width: 100%;
  }

  .pwa-install-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .pwa-install-banner__actions {
    width: 100%;
    justify-content: space-between;
  }

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

  .checkout-fields-grid,
  .payment-method-picker,
  .checkout-card-panel,
  .card-details-fields {
    grid-template-columns: 1fr;
  }

  .offline-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .checkout-field-wide,
  .card-number-field,
  .card-holder-field,
  .card-security-note {
    grid-column: auto;
  }

  .checkout-card-panel {
    padding: 1rem;
  }

  .card-security-note,
  .checkout-submit-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-submit-button {
    width: 100%;
  }

  .tracking-lock,
  .payment-flow {
    grid-template-columns: 1fr;
  }

  .tracking-lock {
    justify-items: start;
  }

  .payment-form-wide,
  .payment-actions {
    grid-column: auto;
  }

  .ride-map {
    min-height: 320px;
    border-radius: 18px;
  }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a,
  .nav-link-button,
  .nav-pill-button,
  .text-scale-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .text-scale-controls {
    padding: 0;
    gap: 0.5rem;
    background: transparent;
  }

  .text-scale-button {
    flex: 1 1 0;
    min-height: 44px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero-copy {
    padding: 1.5rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 13vw, 3.6rem);
    line-height: 1;
    margin-bottom: 0.85rem;
  }

  .hero-meta {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
  }

  .hero-copy p {
    font-size: 0.98rem;
    margin-bottom: 1.15rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.25rem;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .service-strip {
    gap: 0.75rem;
  }

  .service-strip-item {
    padding: 1rem 1.1rem;
  }

  .tariff-card {
    gap: 0.8rem;
  }

  .tariff-top {
    align-items: flex-start;
  }

  .tariff-price {
    font-size: 1.9rem;
  }

  .order-page-header h1,
  .ride-status-header h1,
  .section-header h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .order-layout {
    gap: 1rem;
  }

  .order-summary-main {
    order: 2;
  }

  .order-request-main {
    order: 1;
  }

  .summary-card,
  .review-card {
    position: static;
  }

  .map-toolbar {
    display: grid;
    gap: 0.75rem;
  }

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

  .map-mode-button,
  .map-clear-button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .checkout-section {
    padding: 1.2rem 0;
  }

  .checkout-fields-grid {
    gap: 0.85rem;
  }

  .payment-method-option {
    min-height: 82px;
    padding: 0.95rem;
  }

  .checkout-card-panel {
    margin-top: 0.85rem;
    padding: 0.95rem;
    gap: 1rem;
  }

  .bank-card-preview {
    min-height: 188px;
    padding: 1rem;
  }

  .bank-card-number {
    white-space: normal;
    line-height: 1.1;
  }

  .field-help-row {
    align-items: flex-start;
  }

  .checkout-submit-bar {
    margin: 0 -1.1rem -1.1rem;
    padding: 0.9rem 1.1rem calc(0.9rem + env(safe-area-inset-bottom));
    border-radius: 0 0 18px 18px;
  }

  .checkout-submit-bar strong {
    font-size: 1.1rem;
  }

  .status-row {
    margin-bottom: 0.85rem;
  }

  .route-block h2 {
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .tracking-summary > div {
    padding: 0.9rem 1rem;
  }

  .tracking-lock {
    min-height: auto;
    gap: 1rem;
    padding: 1.1rem;
  }

  .payment-flow-step,
  .support-chat-message,
  .payment-success-box,
  .cash-payment-box {
    border-radius: 14px;
  }

  .cash-payment-box {
    align-items: flex-start;
  }

  .history-item,
  .history-item-uber {
    flex-direction: column;
    align-items: flex-start;
  }

  .history-item-uber {
    padding: 1.15rem;
  }

  .history-item-copy h2 {
    font-size: 1.45rem;
    line-height: 1.02;
    margin-bottom: 0.65rem;
  }

  .history-meta {
    width: 100%;
    justify-items: stretch;
    align-content: start;
    gap: 0.75rem;
  }

  .history-meta .button {
    width: 100%;
  }

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

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    top: 64px;
    padding: 0.9rem 1rem 1rem;
  }

  .logo {
    font-size: 1.35rem;
    gap: 0.6rem;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .hero-copy,
  .hero-copy-dark,
  .hero-card,
  .request-card,
  .order-card,
  .card,
  .history-item-uber {
    padding: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-card-header h2,
  .tracking-card-header h2,
  .order-card-header h2,
  .summary-card-header h2 {
    font-size: 1.55rem;
  }

  .tariff-price,
  .summary-total strong {
    font-size: 1.75rem;
  }

  .ride-map {
    min-height: 280px;
  }

  .checkout-section-heading {
    gap: 0.7rem;
  }

  .checkout-step-number {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 0.9rem;
  }

  .payment-method-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .payment-method-check {
    display: none;
  }

  .account-header h1 {
    font-size: clamp(2.15rem, 13vw, 3rem);
  }

  .account-hero-copy h2 {
    font-size: 1.5rem;
  }

  .account-avatar-upload {
    width: 100%;
  }

  .tracking-lock-icon {
    width: 56px;
    height: 42px;
  }
}
