@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #050a16;
  --bg-deep: #02050d;
  --panel: rgba(10, 19, 39, .92);
  --panel-soft: rgba(14, 27, 53, .82);
  --ink: #f7fbff;
  --muted: #aebbd0;
  --line: rgba(146, 183, 232, .18);
  --cyan: #12c7ff;
  --blue: #4a65ff;
  --magenta: #f029ba;
  --lime: #8dfb4f;
  --gold: #ffcc57;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --glow: 0 0 38px rgba(18, 199, 255, .19);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(240, 41, 186, .15), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(18, 199, 255, .17), transparent 32rem),
    radial-gradient(circle at 50% 90%, rgba(74, 101, 255, .12), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .32;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.page-shell {
  width: min(1120px, calc(100% - 30px));
  margin: 28px auto 0;
}

.hero,
.editorial-note {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(12, 23, 47, .96), rgba(5, 11, 25, .97));
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(22px, 5vw, 68px);
  text-align: center;
  border-radius: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--lime));
}

.hero-image-wrap {
  max-width: 920px;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(105, 219, 255, .38);
  border-radius: 20px;
  background: #050814;
  box-shadow: 0 22px 65px rgba(0,0,0,.48), 0 0 40px rgba(18,199,255,.14);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 6vw, 4.9rem);
  line-height: 1.01;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.intro {
  max-width: 760px;
  margin: 25px auto 0;
  color: #d7e2f3;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.assurance {
  display: grid;
  gap: 5px;
  max-width: 760px;
  margin: 28px auto;
  padding: 18px 20px;
  border: 1px solid rgba(18, 199, 255, .28);
  border-left: 4px solid var(--cyan);
  border-radius: 10px;
  background: rgba(8, 22, 42, .78);
  text-align: left;
  box-shadow: var(--glow);
}

.assurance strong { color: #fff; }
.assurance span { color: var(--muted); }

.support-options {
  display: grid;
  gap: 24px;
  width: min(790px, 100%);
  margin: 30px auto 0;
}

.support-card {
  position: relative;
  margin: 0;
  padding: clamp(24px, 5vw, 40px);
  overflow: hidden;
  color: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 30, 59, .98), rgba(7, 15, 31, .98));
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,.32);
}

.featured-card {
  border-color: rgba(18, 199, 255, .58);
  box-shadow: 0 20px 55px rgba(0,0,0,.35), 0 0 34px rgba(18,199,255,.14);
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta));
}

.option-heading { margin-bottom: 22px; }
.option-heading h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -.025em;
}
.option-heading p { margin: 0; color: var(--muted); }

.option-badge {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(18, 199, 255, .42);
  border-radius: 999px;
  color: #dff8ff;
  background: rgba(18, 199, 255, .12);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.secondary-badge {
  border-color: rgba(240,41,186,.34);
  color: #ffdff4;
  background: rgba(240,41,186,.10);
}

.support-card label {
  display: block;
  margin-bottom: 10px;
  font-size: .96rem;
  font-weight: 750;
}

.amount-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 187, 239, .30);
  border-radius: 10px;
  background: #f8fbff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.amount-wrap:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(18,199,255,.13);
}

.currency {
  padding-left: 18px;
  color: #07101f;
  font-size: 1.4rem;
  font-weight: 800;
}

#MonthlyAmount,
#OnceOffAmount {
  width: 100%;
  min-height: 60px;
  padding: 10px 16px 10px 8px;
  border: 0;
  outline: 0;
  color: #07101f;
  background: transparent;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 800;
}

.help,
.secure-note {
  margin: 9px 0 0;
  color: #91a2bb;
  font-size: .84rem;
}

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

.quick-amounts button {
  min-height: 43px;
  border: 1px solid rgba(146,183,232,.24);
  border-radius: 8px;
  color: #eaf7ff;
  background: rgba(255,255,255,.045);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.quick-amounts button:hover,
.quick-amounts button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--cyan);
  background: rgba(18,199,255,.11);
}

.conversion-widget {
  margin: 0 0 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(146,183,232,.20);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.conversion-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}

.conversion-header h3 {
  margin: 0;
  font-size: .98rem;
  color: #f3fbff;
}

.currency-select-wrap {
  margin: 0;
  min-width: 180px;
}

.currency-select {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(146,183,232,.28);
  border-radius: 8px;
  color: #eef8ff;
  background: rgba(9, 19, 38, .94);
  font: inherit;
}

.conversion-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .84rem;
}

.conversion-result {
  margin: 0;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
}

.conversion-meta {
  margin: 6px 0 0;
  color: #91a2bb;
  font-size: .8rem;
}

.pay-button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 10px;
  color: #02111a;
  background: linear-gradient(90deg, var(--cyan), #75e7ff);
  box-shadow: 0 12px 30px rgba(18,199,255,.20);
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.pay-button:hover { transform: translateY(-1px); filter: brightness(1.06); }
.pay-button:focus-visible { outline: 3px solid rgba(141,251,79,.75); outline-offset: 3px; }

.secondary-pay-button {
  color: #fff;
  background: linear-gradient(90deg, #cb228f, var(--magenta));
  box-shadow: 0 12px 30px rgba(240,41,186,.18);
}

.payment-steps {
  max-width: 920px;
  margin: 44px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 19, 38, .72);
  text-align: left;
}

.payment-steps > h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.payment-intro {
  max-width: 760px;
  margin: -8px 0 26px;
  color: var(--muted);
}

.payment-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.payment-step-grid article,
.support-notes article {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(146,183,232,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(18,199,255,.42);
  border-radius: 50%;
  color: var(--cyan);
  font-weight: 850;
}

.payment-step-grid h3,
.support-notes h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.payment-step-grid p,
.payment-method-note,
.support-notes p,
.editorial-note p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.payment-methods {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.payment-methods h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: #eef8ff;
}

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

.method-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(146,183,232,.20);
  border-radius: 10px;
  color: #dceafb;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  font-size: .88rem;
  font-weight: 700;
  text-align: center;
}

.payment-method-note { margin-top: 16px; }

.support-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.gratitude {
  max-width: 720px;
  margin: 34px auto 0;
  color: #d6e1f1;
  font-size: 1.03rem;
}

.signature {
  margin: 22px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.signature span {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: .84rem;
  font-weight: 500;
}

.editorial-note {
  margin-top: 22px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 18px;
}

.editorial-note h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

footer {
  width: min(1120px, calc(100% - 30px));
  margin: 22px auto 38px;
  color: #7f90a9;
  text-align: center;
  font-size: .8rem;
}

.sharrrap-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: rgba(154, 170, 194, .62);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sharrrap-credit img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
  opacity: .58;
  filter: saturate(.78) contrast(.92);
}

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

@media (max-width: 760px) {
  .page-shell { width: min(100% - 18px, 1120px); margin-top: 9px; }
  .hero { padding-inline: 14px; border-radius: 16px; }
  .hero-image-wrap { margin-bottom: 26px; border-radius: 12px; }
  .quick-amounts { grid-template-columns: repeat(2, 1fr); }
  .payment-step-grid,
  .support-notes { grid-template-columns: 1fr; }
  .payment-steps { padding-inline: 16px; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .conversion-header { flex-direction: column; }
  .currency-select-wrap { width: 100%; min-width: 0; }
}

@media (max-width: 430px) {
  .method-grid { grid-template-columns: 1fr; }
}

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

.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.currency-converter{display:grid;gap:10px;margin:18px 0;padding:16px;border:1px solid rgba(18,199,255,.24);border-radius:12px;background:rgba(18,199,255,.055)}
.currency-converter>div{display:grid;gap:2px}.currency-converter strong{font-size:.94rem}.currency-converter span,.currency-converter small{color:#91a2bb;font-size:.79rem}
.currency-converter select{width:100%;min-height:46px;padding:10px 12px;border:1px solid rgba(146,183,232,.3);border-radius:8px;background:#f8fbff;color:#07101f;font:inherit;font-weight:700}
.currency-converter output{display:block;padding:12px 14px;border-radius:8px;background:rgba(255,255,255,.055);color:#e9fbff;font-size:1.05rem;font-weight:800}
.brand-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}.brand{display:flex!important;align-items:center;justify-content:center;min-height:48px;text-align:center;font-weight:800;letter-spacing:.01em;background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025))!important}
@media(max-width:700px){.brand-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}


/* Live currency guide and payment-brand aliases */
.currency-converter {
  margin: 0 0 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(146,183,232,.20);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  display: grid;
  gap: 10px;
}

.currency-converter > div:first-child {
  display: grid;
  gap: 2px;
}

.currency-converter strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: .98rem;
  color: #f3fbff;
}

.currency-converter span {
  color: var(--muted);
  font-size: .84rem;
}

.currency-converter select {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(146,183,232,.28);
  border-radius: 8px;
  color: #eef8ff;
  background: rgba(9, 19, 38, .94);
  font: inherit;
}

.currency-converter output {
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
}

.currency-converter small {
  color: #91a2bb;
  font-size: .8rem;
}

.brand-grid .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(146,183,232,.20);
  border-radius: 10px;
  color: #dceafb;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  font-size: .88rem;
  font-weight: 700;
  text-align: center;
}

/* Visible payment-method logos */
.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px;
}

.payment-logo-card {
  display: grid;
  grid-template-rows: 92px auto;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(146,183,232,.20);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.payment-logo-card img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: contain;
  background: #ffffff;
}

.payment-logo-card figcaption {
  color: #17243a;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 760px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 390px) {
  .brand-grid { grid-template-columns: 1fr !important; }
}

/* Compact international currency converter */
.converter-open-button {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid rgba(18,199,255,.42);
  border-radius: 10px;
  color: #dff8ff;
  background: rgba(18,199,255,.08);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.converter-open-button:hover,
.converter-open-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--cyan);
  background: rgba(18,199,255,.15);
}

.currency-dialog {
  width: min(720px, calc(100% - 24px));
  max-height: min(88vh, 820px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(18,199,255,.42);
  border-radius: 18px;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 30px 100px rgba(0,0,0,.65), 0 0 42px rgba(18,199,255,.16);
}

.currency-dialog::backdrop {
  background: rgba(1, 5, 14, .84);
  backdrop-filter: blur(6px);
}

.currency-dialog-panel {
  position: relative;
  max-height: min(88vh, 820px);
  padding: clamp(24px, 5vw, 38px);
  overflow-y: auto;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(14,29,57,.99), rgba(4,10,23,.99));
}

.currency-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(146,183,232,.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-eyebrow {
  margin: 0 48px 8px 0;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.currency-dialog h2 {
  margin: 0 48px 10px 0;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.08;
}

.dialog-intro {
  margin: 0 0 22px;
  color: var(--muted);
}


.currency-dialog label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.currency-dialog select {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid rgba(146,183,232,.32);
  border-radius: 9px;
  color: #07101f;
  background: #f8fbff;
  font: inherit;
  font-weight: 700;
}

.dialog-converted {
  display: block;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(141,251,79,.25);
  border-radius: 10px;
  color: #efffe8;
  background: rgba(141,251,79,.07);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 850;
}

.dialog-rate-note {
  margin: 10px 0 0;
  color: #91a2bb;
  font-size: .8rem;
}

body:has(.currency-dialog[open]) { overflow: hidden; }

@media (max-width: 520px) {
  .currency-dialog-panel { padding: 24px 16px 20px; }
}

/* Logo safety: always show the complete brand mark without cropping */
.payment-logo-card img { object-fit: contain !important; object-position: center !important; max-width: 100%; }

.dialog-amount-controls {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(146,183,232,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.dialog-quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 10px 0 12px;
}

.dialog-quick-amounts button {
  min-height: 42px;
  border: 1px solid rgba(146,183,232,.26);
  border-radius: 8px;
  color: #eef8ff;
  background: rgba(255,255,255,.045);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dialog-quick-amounts button:hover,
.dialog-quick-amounts button:focus-visible {
  border-color: var(--cyan);
  background: rgba(18,199,255,.13);
}

.dialog-amount-input-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(146,183,232,.32);
  border-radius: 9px;
  background: #f8fbff;
}

.dialog-amount-input-wrap span {
  padding-left: 16px;
  color: #07101f;
  font-size: 1.2rem;
  font-weight: 800;
}

.dialog-amount-input-wrap input {
  width: 100%;
  min-height: 52px;
  padding: 10px 14px 10px 8px;
  border: 0;
  outline: 0;
  color: #07101f;
  background: transparent;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
}

.dialog-amount-help {
  margin: 7px 0 0;
  color: #91a2bb;
  font-size: .8rem;
}

@media (max-width: 520px) {
  .dialog-quick-amounts { grid-template-columns: repeat(2, 1fr); }
}


/* Final mobile logo layout: image only, larger, never cropped */
.brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.payment-logo-card {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 22px 24px !important;
  overflow: visible !important;
}

.payment-logo-card img {
  width: 100% !important;
  height: 110px !important;
  max-width: 280px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

.payment-logo-card figcaption { display: none !important; }

@media (max-width: 820px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .payment-logo-card { min-height: 145px; padding: 20px !important; }
  .payment-logo-card img { height: 105px !important; max-width: 260px !important; }
}

@media (max-width: 560px) {
  .brand-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .payment-logo-card {
    min-height: 170px;
    padding: 24px 28px !important;
    border-radius: 16px;
  }
  .payment-logo-card img {
    height: 125px !important;
    max-width: 320px !important;
  }
}

/* Proportionally enlarged logos with no clipping */
.payment-logo-card {
  flex-direction: column !important;
  gap: 12px !important;
  min-height: 150px !important;
  padding: 22px !important;
  overflow: hidden !important;
}

.payment-logo-card img {
  width: auto !important;
  height: auto !important;
  max-width: min(88%, 360px) !important;
  max-height: 105px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

.payment-logo-card figcaption {
  display: none !important;
}

.payment-logo-card--explained figcaption {
  display: block !important;
  margin: 0 !important;
  color: #0b1730 !important;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

@media (max-width: 560px) {
  .payment-logo-card {
    min-height: 155px !important;
    padding: 20px 24px !important;
  }
  .payment-logo-card img {
    max-width: 92% !important;
    max-height: 112px !important;
  }
  .payment-logo-card--explained img {
    max-height: 85px !important;
  }
}

/* Final colour refinement: international converter CTA and result */
.converter-open-button {
  border-color: rgba(141, 251, 79, .55) !important;
  color: #07160a !important;
  background: linear-gradient(90deg, #71e83f, #a8ff72) !important;
  box-shadow: 0 10px 28px rgba(141, 251, 79, .16);
}

.converter-open-button:hover,
.converter-open-button:focus-visible {
  border-color: #c6ff9f !important;
  background: linear-gradient(90deg, #87f15a, #b8ff8f) !important;
  box-shadow: 0 12px 32px rgba(141, 251, 79, .24);
}

.dialog-converted {
  border-color: rgba(255, 204, 87, .48) !important;
  color: #fff2b7 !important;
  background: rgba(255, 204, 87, .10) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 204, 87, .06), 0 10px 28px rgba(255, 204, 87, .08);
}

/* Brighter converter result to match the site's primary buttons */
.dialog-converted {
  border-color: #ffe58a !important;
  color: #151004 !important;
  background: linear-gradient(90deg, #ffd447, #fff07a) !important;
  box-shadow: 0 12px 32px rgba(255, 204, 87, .28), inset 0 1px 0 rgba(255,255,255,.55) !important;
  text-shadow: none !important;
}
