@font-face {
  font-family: "Dynamo Bold";
  src:
    local("Dynamo Bold"),
    local("Dynamo-Bold"),
    url("/public/fonts/DynamoBold.woff2") format("woff2"),
    url("/public/fonts/DynamoBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: "Dynamo Bold", "Baloo 2", sans-serif;
  --font-body: "Outfit", sans-serif;
  --text-main: #20303a;
  --text-soft: #5b6a74;
  --green: #66bf27;
  --green-dark: #4f9b1f;
  --gold: #ffc11e;
  --gold-dark: #eea300;
  --shell-width: min(1520px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fafc 0%, #fbf6ee 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.5), transparent 28%);
  pointer-events: none;
}

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

button {
  border: 0;
}

.hidden {
  display: none !important;
}

body.sidebar-open {
  overflow: hidden;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
}

.topbar {
  position: relative;
  top: 0;
  z-index: 20;
  animation: fade-up 0.45s ease-out both;
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(45, 63, 78, 0.08);
}

.brand {
  display: inline-flex;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(140px, 16vw, 180px);
  height: auto;
}

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

.menu a {
  padding: 10px 16px;
  border-radius: 16px;
  color: #2f3640;
  font-family: var(--font-heading);
  font-size: clamp(14px, 0.95vw, 18px);
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.menu a.is-active,
.menu a:hover {
  background: rgba(116, 215, 55, 0.14);
  color: #213131;
}

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

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 18px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(52, 67, 84, 0.12);
}

.login-btn {
  background: linear-gradient(180deg, #f6bd24, #e59414);
  color: #2b2b2b;
}

.ghost-btn {
  background: rgba(246, 250, 252, 0.96);
  color: #2e3b46;
}

.mobile-nav-toggle,
.mobile-overlay,
.mobile-sidebar {
  display: none;
}

.mobile-nav-toggle {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 22px rgba(52, 67, 84, 0.12);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: #2f3640;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(14, 22, 31, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 16;
  width: min(84vw, 360px);
  height: 100dvh;
  padding: 22px 18px 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: -20px 0 40px rgba(24, 38, 49, 0.18);
  backdrop-filter: blur(16px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sidebar-head img {
  width: min(100%, 210px);
  height: auto;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(32, 48, 58, 0.08);
  color: #263743;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu,
.mobile-actions {
  display: grid;
  gap: 10px;
}

.mobile-menu {
  margin-top: 24px;
}

.mobile-link,
.mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

.mobile-link {
  color: #2f3640;
  background: rgba(244, 247, 250, 0.92);
}

.mobile-link.is-active {
  background: linear-gradient(180deg, #74d737, #59b423);
  color: #fff;
}

.mobile-actions {
  margin-top: 18px;
}

.mobile-login-btn {
  background: linear-gradient(180deg, #ffd03b, #ffb700);
  color: #422600;
}

.mobile-ghost-btn {
  background: rgba(240, 244, 247, 0.92);
  color: #2e3b46;
}

body.sidebar-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.sidebar-open .mobile-sidebar {
  transform: translateX(0);
}

body.sidebar-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.sidebar-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.sidebar-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.content-stack {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.hero-panel,
.catalog-panel,
.trust-panel {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(47, 63, 77, 0.1);
  animation: fade-up 0.45s ease-out both;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 28px;
  min-height: auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.eyebrow,
.panel-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(236, 252, 227, 0.8);
  color: #2d5732;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-copy h1,
.section-head h2 {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.05;
}

.hero-description,
.trust-card p,
.benefit-list li {
  color: var(--text-soft);
  line-height: 1.5;
}

.hero-description {
  max-width: 600px;
  margin: 16px 0 0;
  font-size: 16px;
}

.modal-card input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(185, 200, 212, 0.6);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text-main);
}

.benefit-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: #f8fbfd;
}

.benefit-list {
  display: grid;
  gap: 10px;
  padding-left: 14px;
  margin: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 18px;
}

.benefit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #66bf27;
}

.account-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f6f9f5;
  color: #304042;
  font-weight: 600;
}

.catalog-panel {
  padding: 22px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.section-head-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.section-head-copy {
  display: grid;
}

.section-step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(180deg, #74d737, #59b423);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(102, 191, 39, 0.24);
}

.section-head h2 {
  margin-top: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f4f7f9;
  color: #32414a;
  font-weight: 700;
}

.topup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.topup-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 232px;
  padding: 18px;
  border: 1px solid rgba(232, 219, 185, 0.78);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 228, 0.98));
  box-shadow: 0 18px 32px rgba(47, 63, 77, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.topup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(47, 63, 77, 0.14);
  border-color: rgba(229, 182, 69, 0.6);
}

.topup-card.gold {
  background:
    radial-gradient(circle at top right, rgba(255, 220, 121, 0.36), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #fff4d9 100%);
}

.topup-card.violet {
  border-color: rgba(201, 182, 255, 0.8);
  background:
    radial-gradient(circle at top right, rgba(170, 133, 255, 0.26), transparent 36%),
    linear-gradient(180deg, #fcfaff 0%, #f2ebff 100%);
  color: #2f2d3c;
}

.topup-card.violet:hover {
  border-color: rgba(145, 110, 244, 0.52);
}

.topup-card.is-promo {
  border-color: rgba(255, 111, 97, 0.45);
  background:
    radial-gradient(circle at top right, rgba(255, 123, 84, 0.26), transparent 35%),
    linear-gradient(180deg, #fffdfb 0%, #ffe9dc 100%);
  box-shadow: 0 22px 40px rgba(255, 140, 90, 0.16);
}

.topup-card.is-promo:hover {
  border-color: rgba(255, 111, 97, 0.72);
  box-shadow: 0 26px 44px rgba(255, 140, 90, 0.22);
}

.card-glow {
  position: absolute;
  top: -64px;
  right: -52px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  z-index: -1;
}

.card-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.card-visual {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  min-width: 70px;
  min-height: 70px;
  width: 70px;
  height: 70px;
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.88),
    0 10px 22px rgba(102, 88, 40, 0.08);
}

.card-main {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
}

.card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card-tag,
.card-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-tag {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(59, 72, 82, 0.86);
}

.card-promo-badge {
  background: linear-gradient(180deg, #ff8054, #ef4444);
  color: #fff;
  box-shadow: 0 12px 20px rgba(239, 68, 68, 0.24);
}

.visual-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #2c3a4a;
}

.visual-icon svg {
  width: 100%;
  height: 100%;
}

.visual-icon-coin {
  color: #f2c94c;
}

.visual-icon-ads {
  color: #8a63ff;
}

.card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.7vw, 31px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.card-headline {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(71, 88, 99, 0.72);
}

.card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(32, 48, 58, 0.78);
}

.topup-card.violet .card-desc,
.topup-card.violet .card-headline {
  color: rgba(47, 45, 60, 0.76);
}

.card-price {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.card-price-stack {
  display: grid;
  gap: 2px;
}

.card-price-original {
  font-size: 14px;
  font-weight: 700;
  color: rgba(97, 109, 120, 0.78);
  text-decoration: line-through;
}

.card-price-current {
  color: #d93d1d;
}

.card-save-note {
  font-size: 12px;
  font-weight: 700;
  color: #db5a2f;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(195, 202, 208, 0.26);
}

.card-price-wrap {
  display: grid;
  gap: 4px;
}

.card-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(87, 100, 110, 0.74);
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 96px;
  padding: 12px 18px;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(52, 67, 84, 0.12);
}

.card-btn.primary {
  background: linear-gradient(180deg, #74d737, #59b423);
  color: #fff;
  box-shadow: 0 12px 20px rgba(102, 191, 39, 0.24);
}

.topup-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.history-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.history-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.24);
}

.card-btn.primary[disabled],
.card-btn.secondary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.card-btn.secondary {
  background: #f3f6f9;
  color: #2f3640;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
}

.trust-card {
  padding: 18px;
  border-radius: 20px;
  background: #f8fbff;
}

.trust-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.08;
}

.trust-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 26, 32, 0.5);
}

.modal-backdrop.show {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(46, 61, 73, 0.22);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(32, 48, 58, 0.08);
  color: #263743;
  font-size: 28px;
  cursor: pointer;
}

.modal-card h4 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1;
}

.confirm-message {
  margin: 0 0 24px;
  color: #2d3d4c;
  font-size: 16px;
  line-height: 1.5;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

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

.modal-card label {
  font-weight: 700;
  color: var(--text-soft);
}

.error {
  min-height: 22px;
  color: #cf3f3f;
  font-weight: 600;
}

.submit-btn {
  min-height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #74d737, #59b423);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  cursor: pointer;
}

@keyframes fade-up {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1280px) {
  .page-shell {
    width: min(100vw - 32px, 1240px);
  }

  .topbar-inner {
    gap: 14px;
    padding: 14px 18px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .topup-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 900px), (max-width: 1100px) and (max-height: 540px) {
  .page-shell {
    width: calc(100vw - 24px);
    padding-top: 12px;
  }

  .topbar-inner {
    min-height: 0;
    padding: 16px;
    border-radius: 22px;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
  }

  .mobile-nav-toggle,
  .mobile-overlay,
  .mobile-sidebar {
    display: block;
  }

  .menu,
  .topbar-actions {
    display: none;
  }

  .brand img {
    width: min(100%, 160px);
  }
}

@media (max-width: 960px) {
  .trust-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --shell-width: calc(100vw - 24px);
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 28%),
      linear-gradient(180deg, #f7f8fc 0%, #fff9f4 100%);
  }

  body::before {
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.7), transparent 20%),
      radial-gradient(circle at 100% 10%, rgba(255, 255, 255, 0.42), transparent 24%);
  }

  .page-shell {
    width: 100%;
    padding: 0 0 24px;
  }

  .topbar {
    position: sticky;
    top: 0;
    padding: 0;
  }

  .topbar-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 24px rgba(45, 63, 78, 0.12);
  }

  .brand img {
    width: min(100%, 156px);
  }

  .hero-panel,
  .catalog-panel,
  .trust-panel {
    border-radius: 24px;
    backdrop-filter: none;
  }

  .hero-panel,
  .catalog-panel,
  .trust-panel {
    padding: 18px 16px;
    box-shadow: 0 16px 34px rgba(47, 63, 77, 0.08);
  }

  .content-stack {
    gap: 14px;
    margin-top: 10px;
    padding: 0 12px;
  }

  .hero-panel {
    gap: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.98));
  }

  .hero-copy h1,
  .section-head h2 {
    font-size: 28px;
  }

  .hero-copy h1 {
    margin-top: 12px;
  }

  .hero-description {
    margin-top: 12px;
    font-size: 14px;
  }

  .eyebrow,
  .panel-label {
    padding: 7px 12px;
    font-size: 11px;
  }

  .benefit-panel {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .account-chip {
    border-radius: 16px;
    font-size: 14px;
  }

  .catalog-panel {
    padding-top: 16px;
  }

  .section-head {
    align-items: flex-start;
    gap: 12px;
  }

  .section-head-main {
    gap: 12px;
    width: 100%;
  }

  .section-head-copy {
    gap: 4px;
  }

  .section-step {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .section-head h2 {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.15;
  }

  .status-pill {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 14px;
  }

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

  .topup-card {
    min-height: 0;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(47, 63, 77, 0.08);
  }

  .card-glow {
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
  }

  .card-body {
    gap: 10px;
    align-items: flex-start;
  }

  .card-visual {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    border-radius: 14px;
  }

  .visual-icon {
    width: 28px;
    height: 28px;
  }

  .card-main {
    gap: 4px;
  }

  .card-tags {
    gap: 6px;
  }

  .card-tag,
  .card-promo-badge {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .card-headline {
    font-size: 10px;
  }

  .card-title {
    font-size: 17px;
    line-height: 1.1;
  }

  .card-desc {
    display: none;
  }

  .card-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

  .card-price-wrap {
    gap: 2px;
  }

  .card-price-label {
    font-size: 9px;
  }

  .card-price {
    font-size: 18px;
  }

  .card-price-original,
  .card-save-note {
    font-size: 10px;
  }

  .card-btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .topup-footer {
    margin-top: 18px;
    justify-content: stretch;
  }

  .history-btn {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    font-family: var(--font-heading);
    font-size: 18px;
  }

  .trust-panel {
    gap: 12px;
    padding-top: 16px;
  }

  .trust-card {
    padding: 16px;
    border-radius: 18px;
  }

  .trust-card strong {
    font-size: 22px;
  }

  .trust-card p {
    margin-top: 8px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    padding: 12px 14px;
  }

  .brand img {
    width: min(100%, 138px);
  }

  .mobile-nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-panel,
  .catalog-panel,
  .trust-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .topup-grid {
    gap: 10px;
  }

  .topup-card {
    padding: 10px;
    border-radius: 16px;
  }

  .card-body {
    gap: 8px;
  }

  .card-visual {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
  }

  .visual-icon {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-price {
    font-size: 16px;
  }

  .card-btn {
    min-height: 40px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
