:root {
  --ink: #252a31;
  --muted: #656871;
  --line: #e5e5e8;
  --soft: #f6f6f8;
  --cyan: #00a9ce;
  --blue: #2468b2;
  --purple: #753bbd;
  --pink: #c724b1;
  --lavender: #f5eafa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.top-strip {
  height: 28px;
  display: flex;
  justify-content: space-between;
  padding: 0 max(10px, calc((100vw - 1360px) / 2));
  color: #fff;
  background: linear-gradient(100deg, var(--cyan), var(--purple) 72%);
}

.segment-tabs,
.top-actions,
.primary-links,
.utility-links,
.main-nav {
  display: flex;
  align-items: center;
}

.segment-tabs a {
  height: 28px;
  min-width: 96px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.segment-tabs a:not(.active) {
  opacity: 0.72;
}

.segment-tabs .active {
  background: rgba(0, 32, 91, 0.28);
}

.top-actions {
  gap: 20px;
  font-weight: 700;
  font-size: 14px;
}

.top-actions span {
  font-size: 18px;
}

.icon-link {
  font-size: 23px;
  line-height: 1;
}

.main-nav {
  max-width: 1360px;
  height: 64px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 24px;
}

.logo-card {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
  background: #fff;
}

.logo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.primary-links {
  gap: 22px;
  white-space: nowrap;
  font-size: 13px;
}

.utility-links {
  gap: 22px;
  margin-left: auto;
  white-space: nowrap;
  font-size: 13px;
}

.primary-links a,
.utility-links a {
  position: relative;
}

.primary-links a:hover::after,
.utility-links a:not(.login-button):hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.login-button {
  padding: 8px 17px;
  border: 2px solid var(--purple);
  border-radius: 10px;
  color: var(--pink);
  font-weight: 800;
}

.mobile-only-header {
  display: none;
}

.compact-header {
  background: #fff;
  border-bottom: 1px solid #ededf0;
}

.compact-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 20px;
  border-bottom: 1px solid #ededf0;
}

.compact-logo {
  width: 44px;
  height: 44px;
}

.compact-icons {
  display: flex;
  align-items: center;
  gap: 28px;
}

.compact-icons a,
.menu-toggle {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.menu-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.user-icon,
.search-icon,
.menu-icon {
  position: relative;
  display: block;
}

.user-icon {
  width: 23px;
  height: 23px;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #333;
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 21px;
  height: 12px;
  border: 2px solid #333;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.search-icon {
  width: 19px;
  height: 19px;
  border: 3px solid #333;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 3px;
  border-radius: 3px;
  background: #333;
  transform: rotate(45deg);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: #333;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.compact-actions {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 15vw, 150px);
  background: #fff;
}

.compact-actions a {
  min-width: 100px;
  padding: 7px 12px;
  border: 2px solid transparent;
  border-radius: 9px;
  color: #333;
  font-weight: 800;
  text-align: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(100deg, #00205b, var(--purple), var(--cyan)) border-box;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  min-height: 100vh;
  color: #fff;
  background: linear-gradient(110deg, #a927c0 0%, #6747bf 40%, #009fc4 100%);
}

.mobile-menu[hidden] {
  display: none;
}

.menu-close {
  position: absolute;
  top: 9px;
  right: 15px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.menu-actions {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(52px, 15vw, 152px);
  padding-top: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-actions a {
  min-width: 110px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.menu-list {
  display: grid;
}

.menu-list a,
.menu-list > span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 19px;
}

.menu-list > span {
  cursor: default;
}

.menu-list a span,
.menu-list > span span {
  font-size: 24px;
}

body.menu-open {
  overflow: hidden;
}

.quick-panel {
  padding: 42px 28px;
}

.narrow-panel {
  max-width: 920px;
}

.quick-recharge-page {
  max-width: 830px;
  display: grid;
  grid-template-columns: 335px 270px;
  column-gap: 205px;
  align-items: start;
  margin: 0 auto;
  padding: 34px 0 44px;
}

.quick-recharge-page h1 {
  grid-column: 1;
  font-size: 24px;
}

.quick-recharge-page .lead {
  grid-column: 1;
  margin: 10px 0 42px;
  font-size: 16px;
}

.quick-recharge-form {
  grid-column: 1;
  display: grid;
  gap: 42px;
}

.quick-recharge-form input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #c9c9cf;
  border-radius: 9px;
  color: #333;
  font: inherit;
  outline: none;
}

.quick-recharge-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.quick-recharge-form input.invalid-field {
  border-color: #ff4048;
  color: #ff2f39;
  box-shadow: none;
}

.quick-recharge-form input.invalid-field::placeholder {
  color: #ff2f39;
  opacity: 1;
}

.number-error {
  margin: -34px 0 -22px 12px;
  color: #1f1f24;
  font-size: 12px;
  line-height: 1.35;
}

.quick-next {
  width: 204px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.quick-next.active {
  pointer-events: auto;
  background: linear-gradient(100deg, var(--purple), var(--pink));
  box-shadow: var(--shadow);
}

.inline-accept-card {
  grid-column: 2;
  grid-row: 2 / span 3;
  margin-top: 6px;
}

.inline-accept-title {
  display: flex;
  align-items: center;
  gap: 0;
}

.inline-accept-title h2 {
  margin-right: 4px;
  font-size: 17px;
  white-space: nowrap;
}

.inline-accept-title .compact-brands {
  width: auto;
  display: flex;
  gap: 4px;
  margin: 0;
}

.inline-accept-title .compact-brands img {
  width: 54px;
  height: 32px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid #dcdce1;
  border-radius: 4px;
  background: #fff;
}

.inline-accept-card p {
  margin: 16px 0 8px;
}

.inline-secure {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inline-secure img {
  width: 116px;
  margin-right: 4px;
}

.promo-card {
  grid-column: 1;
  width: 535px;
  max-width: 100%;
  display: block;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.promo-card img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.promo-card div {
  padding: 15px 17px 14px;
}

.promo-card p {
  margin: 0 0 22px;
  color: #777;
}

.promo-card strong {
  color: var(--pink);
  font-weight: 500;
}

.quick-pay-page {
  max-width: 830px;
  display: grid;
  grid-template-columns: 335px 270px;
  column-gap: 205px;
  align-items: start;
  margin: 0 auto;
  padding: 34px 0 44px;
}

.quick-pay-page h1 {
  grid-column: 1;
  font-size: 24px;
}

.quick-pay-page .lead {
  grid-column: 1;
  margin: 8px 0 44px;
  font-size: 16px;
}

.quick-pay-form {
  grid-column: 1;
  gap: 42px;
}

.bank-transfer-card {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 22px;
  grid-column: 1;
  margin-top: 46px;
  padding: 20px 76px 20px 26px;
  border: 1px solid #dfe0e5;
  border-radius: 19px;
  background: #fff;
}

.bank-transfer-card strong,
.bank-transfer-card small {
  display: block;
}

.bank-transfer-card strong {
  font-size: 17px;
}

.bank-transfer-card small {
  margin-top: 2px;
  color: #333;
  font-size: 15px;
}

.bank-transfer-card b {
  color: var(--pink);
  font-size: 38px;
  font-weight: 400;
}

.bank-transfer-card em {
  position: absolute;
  top: -1px;
  right: 22px;
  padding: 6px 11px;
  color: #fff;
  background: #06245d;
  font-size: 15px;
  font-style: normal;
}

.bank-icon {
  position: relative;
  width: 42px;
  height: 36px;
  display: block;
  border-bottom: 3px solid #3564e7;
}

.bank-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 42px;
  height: 9px;
  border: 3px solid #21a9d2;
  border-bottom: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.bank-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 4px;
  height: 19px;
  background:
    linear-gradient(90deg, #5e42d6 0 3px, transparent 3px 11px, #5e42d6 11px 14px, transparent 14px 24px, #5e42d6 24px 27px, transparent 27px 35px, #5e42d6 35px);
}

.accepted-cards-block {
  grid-column: 2;
  grid-row: 2 / span 3;
  margin: 6px 0 0;
}

.accepted-cards-block h2 {
  margin-bottom: 6px;
  font-size: 16px;
}

.accepted-brands {
  width: auto;
  display: flex;
  gap: 4px;
  margin: 0 0 10px;
}

.accepted-brands img {
  width: 48px;
  height: 26px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid #dcdce1;
  border-radius: 4px;
  background: #fff;
}

.accepted-cards-block p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.quick-pay-banner {
  min-height: 260px;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.quick-pay-banner img {
  bottom: -210px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(26px, 2.6vw, 34px);
}

h2 {
  font-size: clamp(21px, 2.1vw, 28px);
}

.lead {
  margin: 10px 0 30px;
  font-size: 18px;
}

.stacked-form {
  display: grid;
  gap: 22px;
}

.floating-input {
  position: relative;
  display: block;
}

.floating-input input,
.card-form input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid #c9c9cf;
  border-radius: 12px;
  color: #333;
  background: #fff;
  font: inherit;
  outline: none;
}

.floating-input input:focus,
.card-form input[type="text"]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.card-form input.invalid-field {
  border-color: #e04444;
  box-shadow: 0 0 0 1px #e04444;
}

.floating-input span {
  position: absolute;
  left: 16px;
  top: -10px;
  padding: 0 6px;
  background: #fff;
  color: #444;
  font-size: 15px;
}

.hint {
  margin: -16px 0 24px 18px;
  color: var(--ink);
  font-size: 14px;
}

.gradient-button,
.soft-button {
  width: 226px;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.gradient-button {
  background: linear-gradient(100deg, var(--purple), var(--pink));
  box-shadow: var(--shadow);
}

.soft-button {
  color: #fff;
  background: linear-gradient(100deg, #efe9fb, #fae5f8);
}

.soft-button.active {
  background: linear-gradient(100deg, var(--purple), var(--pink));
  box-shadow: var(--shadow);
}

.page-title {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px 32px 26px;
}

.page-title p {
  margin: 12px 0 0;
}

.page-title strong {
  margin: 0 8px;
  letter-spacing: 0.04em;
}

.pink-link {
  color: var(--pink);
}

.content-band,
.checkout-band {
  background: var(--soft);
  border-top: 1px solid #f0f0f3;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 36px 32px;
}

.amount-form {
  margin-top: 24px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 8px;
  max-width: 700px;
}

.amount-card {
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  border: 1px solid #ececf0;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.amount-card input {
  position: absolute;
  opacity: 0;
}

.radio-ui {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  border: 3px solid #c39df7;
  border-radius: 50%;
}

.amount-card.selected .radio-ui,
.amount-card:has(input:checked) .radio-ui {
  border-width: 7px;
}

.amount-card strong {
  font-weight: 500;
}

.proceed-button {
  width: 455px;
  margin-top: 30px;
  pointer-events: none;
}

.proceed-button.active {
  pointer-events: auto;
}

.custom-amount {
  max-width: 455px;
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.custom-amount[hidden] {
  display: none;
}

.custom-amount span {
  color: var(--muted);
  font-size: 15px;
}

.custom-amount input {
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid #c9c9cf;
  border-radius: 10px;
  font: inherit;
  outline: none;
}

.custom-amount input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.app-banner {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 42px max(32px, calc((100vw - 1360px) / 2 + 32px));
  color: #fff;
  background:
    radial-gradient(circle at 60% 45%, rgba(255, 255, 255, 0.35) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.22) 0 28%, transparent 29%),
    linear-gradient(120deg, #5e00d9, #cf18f0 45%, #fff 72%);
}

.app-banner .banner-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.app-banner h2 {
  font-size: clamp(27px, 2.8vw, 38px);
}

.app-banner p {
  margin: 16px 0 28px;
  font-size: 17px;
}

.app-banner img {
  position: absolute;
  right: 14%;
  bottom: -140px;
  height: 420px;
}

.store-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.store-badge {
  min-width: 170px;
  padding: 9px 18px;
  border-radius: 5px;
  color: #fff;
  background: #1c1c1f;
  font-size: 13px;
  line-height: 1.05;
}

.store-badge strong {
  font-size: 20px;
}

.summary-card {
  max-width: 100%;
  min-height: 82px;
  padding: 17px 18px;
  border: 1px solid #d8d8dd;
  border-radius: 10px;
  background: #fff;
}

.summary-card p {
  margin: 2px 0 0;
}

.summary-card strong {
  font-size: 25px;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 386px;
  gap: 48px;
  margin-top: 42px;
}

.payment-main {
  max-width: 936px;
}

.section-label {
  margin: 22px 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dedee2;
}

.accordion-head {
  min-height: 70px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 6px;
  background: #fff;
  position: relative;
}

.card-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 17px;
  width: 36px;
  height: 22px;
  border: 3px solid var(--cyan);
  border-radius: 3px;
  box-shadow: inset 0 7px 0 rgba(117, 59, 189, 0.25);
}

.chevron {
  color: #999;
  font-size: 23px;
}

.card-form {
  display: grid;
  gap: 30px;
  margin: 18px 0 48px;
  max-width: 888px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.terms-check {
  display: flex;
  gap: 14px;
  align-items: center;
}

.terms-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--purple);
}

.terms-check a {
  color: var(--pink);
  text-decoration: underline;
}

.spaced {
  margin-top: 42px;
}

.wallet-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #dedee2;
}

.wallet-icon {
  width: 36px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 12px;
}

.wallet-icon.samsung {
  color: #fff;
  background: #1a54d8;
}

.wallet-icon.google {
  border: 1px solid #cfcfd4;
  background: #fff;
}

.wallet-row > span:last-child {
  color: #aaa;
  font-size: 34px;
}

.accept-card {
  align-self: start;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 14px 0 20px;
}

.brand-row img {
  width: 100%;
  height: 36px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid #dcdce1;
  border-radius: 4px;
  background: #fff;
}

.accept-card p {
  margin: 0 0 14px;
}

.secure-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.secure-row img {
  width: 112px;
}

@media (max-width: 1100px) {
  .amount-grid {
    grid-template-columns: repeat(3, minmax(112px, 1fr));
  }

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

  .accept-card {
    max-width: 430px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }

  .site-header {
    display: none;
  }

  .mobile-only-header {
    display: block;
  }

  .compact-top {
    min-height: 58px;
    padding: 0 14px;
  }

  .compact-logo {
    width: 42px;
    height: 42px;
  }

  .compact-icons {
    gap: 22px;
  }

  .compact-actions {
    min-height: 72px;
    justify-content: space-evenly;
    gap: 8px;
    padding: 0 10px;
  }

  .compact-actions a {
    min-width: 0;
    width: 30%;
    padding: 7px 4px;
    font-size: 13px;
  }

  .mobile-menu {
    background: linear-gradient(110deg, #a927c0 0%, #6747bf 43%, #009fc4 100%);
  }

  .menu-actions {
    min-height: 132px;
    justify-content: space-evenly;
    gap: 8px;
    padding: 40px 10px 16px;
  }

  .menu-actions a {
    min-width: 0;
    width: 30%;
    padding: 8px 4px;
    font-size: 13px;
  }

  .menu-list a,
  .menu-list > span {
    min-height: 58px;
    padding: 0 16px 0 8px;
    font-size: 16px;
  }

  .quick-panel,
  .page-title,
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quick-recharge-page,
  .quick-pay-page {
    max-width: none;
    display: block;
    padding: 22px 14px 24px;
  }

  .quick-recharge-page h1,
  .quick-pay-page h1 {
    font-size: 23px;
  }

  .quick-recharge-page .lead,
  .quick-pay-page .lead {
    margin-bottom: 42px;
    font-size: 16px;
  }

  .quick-recharge-form {
    gap: 40px;
  }

  .inline-accept-card {
    margin-top: 40px;
  }

  .inline-accept-title {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .inline-accept-title h2 {
    width: 100%;
    margin-right: 0;
  }

  .inline-accept-title .compact-brands {
    flex-wrap: wrap;
  }

  .inline-secure {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .promo-card {
    width: 100%;
    margin-top: 34px;
  }

  .promo-card img {
    height: 136px;
  }

  .bank-transfer-card {
    grid-template-columns: 42px 1fr 18px;
    gap: 12px;
    margin-top: 50px;
    padding: 22px 18px 20px 16px;
    border-radius: 17px;
  }

  .bank-transfer-card em {
    right: 18px;
    font-size: 13px;
  }

  .bank-transfer-card strong {
    font-size: 15px;
  }

  .bank-transfer-card small {
    font-size: 13px;
  }

  .accepted-cards-block {
    margin: 70px 0 46px;
  }

  .accepted-brands {
    flex-wrap: wrap;
  }

  .amount-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    max-width: none;
    gap: 10px;
  }

  .amount-card {
    min-height: 116px;
  }

  .custom-amount {
    max-width: none;
  }

  .proceed-button,
  .gradient-button,
  .soft-button {
    width: 100%;
  }

  .quick-next {
    width: 204px;
  }

  .page-title {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .page-title p {
    display: grid;
    gap: 4px;
  }

  .container {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .summary-card {
    min-height: 78px;
    padding: 16px;
  }

  .payment-layout {
    gap: 30px;
    margin-top: 30px;
  }

  .accordion-head {
    grid-template-columns: 52px 1fr auto;
    gap: 14px;
  }

  .card-form {
    gap: 24px;
    margin-bottom: 36px;
  }

  .wallet-row {
    gap: 14px;
  }

  .accept-card {
    max-width: none;
    padding: 20px;
  }

  .app-banner {
    padding: 32px 22px 230px;
  }

  .app-banner h2 {
    font-size: 26px;
  }

  .app-banner img {
    right: 22px;
    height: 330px;
    bottom: -135px;
  }

  .store-row {
    gap: 10px;
  }

  .store-badge {
    min-width: 145px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 420px) {
  .compact-actions,
  .menu-actions {
    gap: 6px;
  }

  .compact-actions a,
  .menu-actions a {
    font-size: 12px;
    letter-spacing: -0.01em;
  }

  .quick-next {
    width: 204px;
    max-width: calc(100vw - 28px);
  }

  .inline-accept-title .compact-brands img,
  .accepted-brands img {
    width: 62px;
  }

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

  .app-banner img {
    right: -12px;
  }
}
