.home-page {
  padding-bottom: 42px;
}

.hero {
  position: relative;
  padding: 26px 0 22px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(0, 76, 255, 0.18), transparent 30%), radial-gradient(circle at 82% 0%, rgba(255, 192, 2, 0.12), transparent 26%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.hero-main {
  min-height: 426px;
  display: grid;
  align-content: end;
  padding: 34px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #06102f;
}

.hero-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 3, 21, 0.95), rgba(1, 3, 21, 0.3) 52%, rgba(1, 3, 21, 0.88));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-copy h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 39px;
  line-height: 1.25;
  font-weight: 800;
}

.hero-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.deal-tile {
  position: relative;
  min-height: 130px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 14px;
  padding: 16px;
  background: #080d22;
}

.deal-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.deal-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 72%);
}

.deal-tile > div {
  position: relative;
  z-index: 2;
}

.deal-tile small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.deal-tile h2 {
  margin: 4px 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.35;
}

.deal-tile p {
  margin: 0;
  direction: ltr;
  color: var(--gold);
  font-weight: 800;
}

.home-section {
  padding: 34px 0;
}

.home-products {
  grid-template-columns: repeat(5, 1fr);
}

.category-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.category-banner {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  align-content: end;
  background: #0b1028;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 0.28s cubic-bezier(.2, .7, .2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.category-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  transition: transform 0.55s cubic-bezier(.2, .7, .2, 1), opacity 0.28s ease, filter 0.28s ease;
}

.category-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 3, 21, 0.92), rgba(1, 3, 21, 0.18) 64%);
}

.category-banner:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 142, 255, 0.32);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}

.category-banner:hover img {
  opacity: 0.62;
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.category-banner div {
  position: relative;
  z-index: 2;
}

.category-banner span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.category-banner h2 {
  margin: 5px 0;
  color: var(--white);
  font-size: 28px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.platform-card {
  min-height: 126px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 20, 48, 0.78), rgba(6, 9, 25, 0.92));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-align: center;
  transition: transform 0.24s cubic-bezier(.2, .7, .2, 1), border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.platform-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.platform-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.platform-card small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 800;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 142, 255, 0.3);
  background: linear-gradient(180deg, rgba(20, 29, 64, 0.88), rgba(6, 9, 25, 0.98));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

.platform-card:hover img {
  transform: translateY(-2px) scale(1.06);
  filter: saturate(1.12);
}

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

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

.blog-grid--related {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.why-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.blog-card a {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.blog-card__media {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card__body {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
}

.blog-card small {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(77, 142, 255, 0.22);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(0, 76, 255, 0.1);
  font-weight: 800;
  font-size: 12px;
}

.blog-card h3,
.why-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

.blog-card p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card__read {
  margin-top: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 76, 255, 0.38);
  background: linear-gradient(180deg, rgba(0, 76, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.blog-card:hover img {
  transform: scale(1.055);
}

.catalog-page {
  min-height: 100vh;
  padding: 24px 0 40px;
}

.cat-head {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.cat-title h1 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
  line-height: 1.5;
  font-weight: 800;
}

.cat-title p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.cat-head__controls {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.filter-mobile-btn {
  display: none;
}

.catalog-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.catalog-sidebar {
  width: 260px;
  flex: 0 0 260px;
  position: sticky;
  top: 172px;
  max-height: calc(100vh - 190px);
}

.catalog-content {
  flex: 1 1 auto;
  min-width: 0;
}

.about-box {
  margin-bottom: 56px;
  padding: 28px 28px 30px;
  border-radius: 14px;
  background: rgba(17, 17, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.about-box h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.about-box h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 800;
}

.about-box p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 14px;
  line-height: 1.9;
}

.product-page {
  padding: 24px 0 48px;
}

.product-hero-media {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #090d22;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-trailer {
  position: absolute;
  top: 18px;
  right: 18px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.product-main h1 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.35;
  word-break: break-word;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 700;
}

.tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0 22px;
  border-bottom: 1px solid var(--line);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs button {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.tabs button.active {
  color: var(--white);
  border-color: var(--blue);
}

.description-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.description-panel h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
}

.description-panel p,
.description-panel li {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.buy-box {
  position: sticky;
  top: 172px;
  padding: 20px;
}

.seller-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.seller-lines li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.rating-row,
.region-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  direction: ltr;
  margin: 16px 0;
}

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

.price-box s {
  color: rgba(255, 255, 255, 0.32);
}

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

.qty-controls {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.qty-controls button,
.qty-controls input {
  width: 42px;
  height: 40px;
  border: 0;
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.buy-actions {
  display: grid;
  gap: 10px;
}

.activation-note {
  margin-top: 16px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.related-section {
  margin-top: 38px;
}

.cart-page,
.checkout-page,
.auth-page,
.content-page {
  padding: 30px 0 60px;
}

.checkout-ajax-feedback {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.checkout-inline-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
}

.checkout-inline-alert.is-success {
  color: #d9ffe6;
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.1);
}

.checkout-inline-alert.is-error {
  color: #ffe2e2;
  border-color: rgba(255, 71, 126, 0.26);
  background: rgba(255, 71, 126, 0.1);
}

.checkout-inline-alert .btn {
  min-height: 36px;
  padding: 0 14px;
  white-space: nowrap;
}

[data-balance-checkout].is-submitting .btn,
[data-balance-checkout] .btn.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

[data-balance-checkout] .btn.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-inline-start: 8px;
  display: inline-block;
  vertical-align: middle;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: checkoutButtonSpin 0.75s linear infinite;
}

@keyframes checkoutButtonSpin {
  to { transform: rotate(360deg); }
}

.account-page {
  padding-top: 26px;
}

.account-page > .wrap {
  display: grid;
  gap: 18px;
}

.account-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-color: rgba(77, 142, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 76, 255, 0.18), rgba(255, 192, 2, 0.05) 52%, rgba(34, 197, 94, 0.08)),
    rgba(17, 17, 24, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.account-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent);
}

.account-hero > * {
  position: relative;
}

.account-hero__main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(0, 76, 255, 0.95), rgba(77, 142, 255, 0.72));
  box-shadow: 0 16px 35px rgba(0, 76, 255, 0.28);
  font-size: 30px;
  font-weight: 800;
}

.account-avatar img,
.account-avatar-preview img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.account-avatar__initial {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

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

.account-hero h1 {
  margin: 4px 0 2px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.25;
}

.account-hero p,
.account-wallet p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.account-hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.account-hero__actions .btn {
  white-space: nowrap;
}

.account-hero__actions .btn span {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.account-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.account-metric {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.account-metric:hover,
.account-card:hover,
.account-orders:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 142, 255, 0.18);
  background: rgba(17, 17, 24, 0.72);
}

.account-metric__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
}

.account-metric__icon svg {
  width: 22px;
  height: 22px;
}

.account-metric__icon--blue {
  background: linear-gradient(145deg, #0b64ff, #31a8ff);
  box-shadow: 0 12px 24px rgba(0, 76, 255, 0.24);
}

.account-metric__icon--gold {
  color: #141414;
  background: linear-gradient(145deg, var(--gold), #ff9f1a);
  box-shadow: 0 12px 24px rgba(255, 192, 2, 0.18);
}

.account-metric__icon--green {
  background: linear-gradient(145deg, #16a34a, #4ade80);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
}

.account-metric__icon--pink {
  background: linear-gradient(145deg, #ff477e, #b936ff);
  box-shadow: 0 12px 24px rgba(255, 71, 126, 0.16);
}

.account-metric small,
.account-info-item span,
.account-wallet__meta span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.account-metric strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.25;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.account-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) minmax(280px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.account-settings-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-wallet-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

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

.account-shortcut {
  min-height: 108px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.account-shortcut:hover {
  color: var(--white);
  transform: translateY(-2px);
  border-color: rgba(77, 142, 255, 0.2);
  background: rgba(17, 17, 24, 0.72);
}

.account-shortcut__icon,
.account-subpage-icon {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
}

.account-shortcut__icon {
  width: 54px;
  height: 54px;
}

.account-shortcut__icon svg,
.account-subpage-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

.account-shortcut__icon.is-blue,
.account-subpage-icon.is-blue {
  background: linear-gradient(145deg, #0b64ff, #31a8ff);
  box-shadow: 0 14px 28px rgba(0, 76, 255, 0.24);
}

.account-shortcut__icon.is-green,
.account-subpage-icon.is-green {
  background: linear-gradient(145deg, #16a34a, #4ade80);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.18);
}

.account-shortcut__icon.is-gold {
  color: #141414;
  background: linear-gradient(145deg, var(--gold), #ff9f1a);
  box-shadow: 0 14px 28px rgba(255, 192, 2, 0.18);
}

.account-shortcut__icon.is-pink {
  background: linear-gradient(145deg, #ff477e, #b936ff);
  box-shadow: 0 14px 28px rgba(255, 71, 126, 0.16);
}

.account-shortcut strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.account-shortcut small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.account-card,
.account-orders {
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.account-card__head h2 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.3;
}

.account-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(77, 142, 255, 0.18);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(77, 142, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.account-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-info-item {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.account-info-item strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 15px;
}

.account-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.8;
}

.account-note--info {
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(77, 142, 255, 0.18);
  background: rgba(77, 142, 255, 0.08);
}

.account-alert {
  padding: 14px 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  animation: accountNoticeIn 0.22s ease both;
}

.account-alert.is-success {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.account-alert.is-error {
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-form label:not(.account-check) {
  display: grid;
  gap: 7px;
}

.account-form label > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="number"],
.account-form input[type="file"],
.account-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.account-form textarea {
  min-height: 126px;
  resize: vertical;
  line-height: 1.8;
}

.account-form input[type="file"] {
  padding: 11px;
  color: rgba(255, 255, 255, 0.68);
}

.account-form input:focus,
.account-form textarea:focus {
  border-color: rgba(77, 142, 255, 0.55);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(0, 76, 255, 0.12);
}

.account-form .btn {
  justify-self: start;
  margin-top: 2px;
}

.account-avatar-form {
  align-content: start;
}

.account-avatar-preview {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(0, 76, 255, 0.95), rgba(77, 142, 255, 0.72));
  box-shadow: 0 16px 35px rgba(0, 76, 255, 0.2);
  font-size: 36px;
  font-weight: 900;
}

.account-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.account-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.account-wallet {
  display: grid;
  align-content: start;
}

.account-wallet__value {
  display: block;
  margin: 4px 0 8px;
  color: var(--gold);
  font-size: 40px;
  line-height: 1.15;
}

.account-wallet__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.account-wallet__meta strong {
  color: var(--white);
  font-size: 13px;
  text-align: left;
}

.account-table-wrap {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.account-table th {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.account-table td {
  vertical-align: middle;
}

.account-table td strong:not(.account-order-id) {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.account-table td small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.account-order-id {
  color: var(--blue-soft);
  font-weight: 800;
}

.account-order-id + small,
.account-table td > small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 800;
}

.account-inline-action {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 3px 8px;
  color: var(--blue-soft);
  border: 1px solid rgba(77, 142, 255, 0.24);
  border-radius: 999px;
  background: rgba(77, 142, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.account-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.account-status.is-pending {
  color: #ffd985;
  background: rgba(255, 192, 2, 0.12);
}

.account-status.is-processing {
  color: #8fc2ff;
  background: rgba(77, 142, 255, 0.12);
}

.account-status.is-complete {
  color: #8df0af;
  background: rgba(34, 197, 94, 0.12);
}

.account-status.is-rejected {
  color: #ff9c9c;
  background: rgba(239, 68, 68, 0.12);
}

.account-status.is-muted {
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.08);
}

.account-empty-row td {
  padding: 0;
}

.account-empty-state {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
}

.account-empty-state strong {
  color: var(--white);
  font-size: 20px;
}

.account-empty-state span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.account-subpage-hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.account-subpage-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.account-subpage-hero h1 {
  margin: 4px 0 4px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.25;
}

.account-subpage-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.account-amount {
  display: inline-flex;
  color: var(--white);
  font-weight: 900;
}

.account-amount.is-positive {
  color: #8df0af;
}

.account-amount.is-negative {
  color: #ff9c9c;
}

.account-amount.is-muted {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes accountNoticeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .account-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-hero__actions {
    width: 100%;
    justify-content: flex-start;
  }

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

  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-settings-grid {
    grid-template-columns: 1fr;
  }

  .account-wallet-grid {
    grid-template-columns: 1fr;
  }

  .account-shortcuts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .account-page {
    padding-top: 18px;
  }

  .account-page > .wrap {
    gap: 14px;
  }

  .account-hero,
  .account-card,
  .account-orders {
    padding: 18px;
    border-radius: 16px;
  }

  .account-hero__main {
    align-items: flex-start;
  }

  .account-avatar {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 24px;
  }

  .account-hero h1 {
    font-size: 24px;
  }

  .account-hero__actions .btn {
    flex: 1 1 160px;
  }

  .account-metric {
    min-height: 98px;
    padding: 14px;
  }

  .account-metric__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .account-metric strong {
    font-size: 20px;
  }

  .account-info-list {
    grid-template-columns: 1fr;
  }

  .account-card__head {
    align-items: stretch;
    flex-direction: column;
  }

  .account-card__head .btn,
  .account-chip {
    align-self: flex-start;
  }

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

  .checkout-inline-alert {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-inline-alert .btn {
    width: 100%;
  }

  .account-wallet__value {
    font-size: 32px;
  }

  .account-table {
    min-width: 760px;
  }

  .account-table--orders {
    min-width: 1080px;
  }

  .account-table--wallet {
    min-width: 820px;
  }

  .account-subpage-hero {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 18px;
  }

  .account-subpage-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .account-subpage-hero .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .account-subpage-hero h1 {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .account-metrics {
    grid-template-columns: 1fr;
  }

  .account-hero__main {
    flex-direction: column;
  }

  .account-hero__actions .btn {
    width: 100%;
    flex-basis: 100%;
  }

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.step.is-active {
  border-color: rgba(255, 192, 2, 0.4);
  background: rgba(255, 192, 2, 0.08);
}

.step.is-complete {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.06);
}

.step b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.step.is-active b {
  color: #111;
  background: var(--gold);
}

.step.is-complete b {
  background: var(--green);
}

.empty-state {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
}

.empty-state h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 28px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 24px;
  align-items: stretch;
}

.auth-form {
  padding: 30px;
}

.eyebrow {
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.auth-form h1,
.content-hero h1 {
  margin: 6px 0 8px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.32;
}

.social-login {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.social-login button {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.auth-links {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.auth-links a {
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.auth-links a:hover {
  color: var(--white);
}

.auth-aside {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(0, 76, 255, 0.35), rgba(255, 192, 2, 0.08)), #090d22;
}

.auth-aside h2 {
  color: var(--white);
  font-size: 30px;
  line-height: 1.25;
}

.auth-aside ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.auth-aside li {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.content-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.content-tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
}

.content-tabs a.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.content-hero {
  padding: 28px;
  margin-bottom: 22px;
}

.content-body {
  padding: 28px;
}

.content-body h2 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: 22px;
}

.content-body p,
.content-body li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.about-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.about-stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
}

.contact-page {
  overflow: hidden;
  padding-bottom: 48px;
}

.contact-hero {
  position: relative;
  padding: 28px 0 12px;
  background:
    linear-gradient(135deg, rgba(0, 76, 255, 0.18), transparent 44%),
    linear-gradient(225deg, rgba(255, 192, 2, 0.09), transparent 38%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 20px);
  opacity: 0.55;
}

.contact-hero__inner {
  position: relative;
  display: block;
}

.contact-hero__copy {
  max-width: 680px;
}

.contact-hero h1 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(22px, 3.2vw, 25px);
  line-height: 1.35;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.95;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-presence {
  padding: 22px;
  border: 1px solid rgba(77, 142, 255, 0.16);
  border-radius: 22px;
  background: rgba(7, 11, 34, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: contactFadeUp 0.55s ease both;
}

.contact-presence__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.contact-presence__status span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12);
}

.contact-presence__status.is-limited span {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(255, 192, 2, 0.12);
}

.contact-presence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.contact-presence__grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-presence__grid b {
  color: var(--gold);
  font-size: 21px;
  line-height: 1.2;
}

.contact-presence__grid span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.contact-side {
  display: grid;
  gap: 14px;
}

.contact-panel,
.contact-form-panel {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(17, 17, 24, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-panel {
  padding: 18px;
}

.contact-form-panel {
  padding: clamp(18px, 2.6vw, 24px);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel h2,
.contact-form-head h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.35;
}

.contact-form-head p,
.contact-panel p,
.contact-service p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.85;
}

.contact-channel-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 142, 255, 0.22);
  background: rgba(77, 142, 255, 0.075);
}

.contact-channel > svg,
.contact-service__icon,
.contact-help-strip svg {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 9px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(0, 76, 255, 0.9), rgba(77, 142, 255, 0.72));
  box-shadow: 0 12px 28px rgba(0, 76, 255, 0.2);
}

.contact-channel.is-muted > svg {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-channel strong,
.contact-service strong,
.contact-help-strip strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.contact-channel span,
.contact-help-strip span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.65;
}

.contact-help-strip div > span {
  grid-column: 2;
}

.contact-service {
  display: grid;
  gap: 14px;
}

.contact-service__row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-service__icon svg {
  width: 22px;
  height: 22px;
}

.contact-form {
  margin-top: 18px;
}

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

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(77, 142, 255, 0.55);
  background: rgba(77, 142, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(77, 142, 255, 0.11);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.contact-field select:disabled,
.contact-field input:disabled,
.contact-field textarea:disabled,
.contact-form-actions .btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-form-actions span {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.7;
}

.contact-captcha-panel {
  margin-top: 22px;
}

.contact-captcha-panel form {
  display: grid;
  gap: 12px;
}

.contact-captcha-panel .form-caption,
.contact-captcha-panel .form-unit {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.contact-captcha-panel .form-caption {
  padding: 14px;
  font-weight: 800;
}

.contact-captcha-panel .form-unit {
  padding: 14px;
}

.contact-captcha-panel input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.contact-captcha-panel button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.contact-form-head,
.complaint-form-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-form-icon,
.complaint-form-icon,
.complaint-info-item > svg {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 11px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(0, 76, 255, 0.96), rgba(77, 142, 255, 0.72));
  box-shadow: 0 12px 28px rgba(0, 76, 255, 0.18);
}

.support-form {
  margin-top: 18px;
}

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

.support-field {
  display: grid;
  gap: 6px;
}

.support-field--full {
  grid-column: 1 / -1;
}

.support-field span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.support-field input,
.support-field select,
.support-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.support-field textarea {
  min-height: 136px;
  padding-top: 12px;
  resize: vertical;
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  border-color: rgba(77, 142, 255, 0.55);
  background: rgba(77, 142, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(77, 142, 255, 0.11);
}

.support-field input::placeholder,
.support-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.support-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.support-form-actions span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.7;
}

.complaint-submit-page {
  overflow: hidden;
  padding-bottom: 48px;
}

.complaint-submit-hero {
  padding: 28px 0 12px;
  background:
    linear-gradient(135deg, rgba(0, 76, 255, 0.16), transparent 46%),
    linear-gradient(225deg, rgba(255, 192, 2, 0.08), transparent 42%);
}

.complaint-submit-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.complaint-submit-hero h1 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(22px, 3.2vw, 25px);
  line-height: 1.35;
}

.complaint-submit-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.85;
}

.complaint-submit-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.complaint-submit-panel,
.complaint-submit-side {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(17, 17, 24, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.complaint-submit-panel {
  padding: clamp(18px, 2.6vw, 24px);
}

.complaint-form-head h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.35;
}

.complaint-form-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.complaint-submit-side {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.complaint-info-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.complaint-info-item strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.complaint-info-item span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.65;
}

.contact-help-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contact-help-strip div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-help-strip svg {
  width: 42px;
  height: 42px;
  padding: 10px;
}

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .contact-presence,
  .contact-channel,
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    animation: none;
    transition: none;
  }
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: right;
  font-weight: 800;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.58);
}

.faq-item.is-open p {
  display: block;
}

@media (max-width: 1200px) {
  .home-products {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {
  .hero__inner,
  .product-detail-grid,
  .auth-grid,
  .contact-grid,
  .contact-hero__inner,
  .contact-workspace,
  .complaint-submit-shell {
    grid-template-columns: 1fr;
  }

  .hero__inner > *,
  .product-detail-grid > *,
  .auth-grid > *,
  .contact-grid > *,
  .contact-hero__inner > *,
  .contact-workspace > *,
  .complaint-submit-shell > *,
  .catalog-content,
  .product-main,
  .auth-form,
  .content-body {
    min-width: 0;
  }

  .home-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-sidebar {
    display: none;
  }

  .cat-head {
    flex-direction: column;
    align-items: stretch;
  }

  .cat-head__controls {
    width: 100%;
  }

  .buy-box {
    position: static;
  }

  .blog-grid,
  .why-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding-bottom: 42px;
  }

  .complaint-submit-page {
    padding-bottom: 42px;
  }

  .contact-hero,
  .complaint-submit-hero {
    padding: 34px 0 18px;
  }

  .contact-hero h1,
  .complaint-submit-hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .contact-hero__actions .btn,
  .complaint-submit-hero__inner .btn {
    flex: 1 1 160px;
  }

  .complaint-submit-hero__inner {
    flex-direction: column;
  }

  .contact-presence,
  .contact-panel,
  .contact-form-panel,
  .complaint-submit-panel,
  .complaint-submit-side {
    border-radius: 16px;
  }

  .contact-presence {
    padding: 16px;
  }

  .contact-presence__grid,
  .contact-form-grid,
  .contact-help-strip,
  .support-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-presence__grid div {
    min-height: 78px;
  }

  .contact-workspace,
  .complaint-submit-shell {
    gap: 14px;
    margin-top: 16px;
  }

  .contact-panel,
  .contact-form-panel,
  .complaint-submit-panel,
  .complaint-submit-side {
    padding: 18px;
  }

  .contact-channel,
  .contact-service__row,
  .contact-help-strip div,
  .complaint-info-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .contact-channel > svg,
  .contact-service__icon,
  .contact-help-strip svg,
  .contact-form-icon,
  .complaint-form-icon,
  .complaint-info-item > svg {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .contact-form-head,
  .complaint-form-head {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .contact-form-actions,
  .support-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .btn,
  .support-form-actions .btn {
    width: 100%;
  }

  .hero-main {
    min-height: 350px;
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .home-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-banners,
  .steps,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .platform-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .product-hero-media {
    height: 240px;
  }

  .product-main h1,
  .auth-form h1,
  .content-hero h1,
  .contact-hero h1 {
    font-size: 24px;
  }

  .auth-form,
  .content-hero,
  .content-body {
    padding: 20px;
  }

  .social-login {
    grid-template-columns: repeat(2, 1fr);
  }
}
