:root {
  --navy: #003366;
  --blue: #004481;
  --deep: #002855;
  --sky: #72d4ff;
  --link: #0066cc;
  --muted: #c8d0d8;
  --bg: #f5f7fa;
  --card: #f0f6fb;
  --line: #e2e7ec;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  background: #fff;
  color: var(--navy);
  font-family: Inter, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.page {
  margin: 0 auto;
  min-height: 100%;
  width: 100%;
  max-width: 28rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 1.25rem 1.5rem;
}
.logo { height: 2rem; width: auto; }

.splash {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
}
.splash img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.splash[hidden] { display: none; }

.hero {
  background: linear-gradient(to bottom right, var(--blue), var(--deep));
  color: #fff;
  padding: 1.5rem 1.5rem 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero h1 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
}
.hero .amount {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 3rem;
  font-weight: 700;
}
.hero .hint { margin: 0.25rem 0 0; font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.hero-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.btn:disabled {
  background: var(--muted);
  color: #fff;
  cursor: not-allowed;
}
.btn-white { background: #fff; color: var(--blue); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.85rem;
  font-size: 0.875rem;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover:not(:disabled) { background: #002244; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover:not(:disabled) { background: var(--navy); }

.section { padding: 2rem 1.5rem; }
.muted { color: rgba(0,51,102,0.7); font-size: 0.875rem; line-height: 1.6; }
.steps { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.steps li { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.step-num {
  width: 2rem; height: 2rem; border-radius: 999px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.card {
  margin: 0 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  padding: 1.5rem 1.25rem;
}
.check {
  width: 1.25rem; height: 1.25rem; border-radius: 999px;
  background: var(--blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 0.75rem; flex-shrink: 0;
}
.benefits { list-style: none; padding: 0; margin: 1rem 0 0; }
.benefits li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 0.75rem; }

.page-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0,51,102,0.5);
  line-height: 1.6;
}
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  margin: 0 auto;
  max-width: 28rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
  padding: 0.75rem 1rem;
}

.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1.5rem;
}
.page-header h1 { margin: 0; font-size: 1.25rem; }
.page-header .right {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  display: flex;
  gap: 1rem;
}
.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
}

.form { display: flex; flex: 1; flex-direction: column; padding: 0 1.5rem 2rem; }
.field { margin-bottom: 1rem; position: relative; }
.input {
  width: 100%;
  border: 2px solid var(--navy);
  border-radius: 0.75rem;
  padding: 1rem 3rem 1rem 1rem;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
}
.input:focus { border-color: #0055a4; }
.eye {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: var(--navy);
  cursor: pointer;
}
.link { margin-top: 1rem; font-size: 0.875rem; font-weight: 500; color: var(--link); }
.error {
  margin-top: 1rem;
  border-radius: 0.5rem;
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.success {
  margin-top: 1rem;
  border-radius: 0.5rem;
  background: #ecfdf5;
  color: #047857;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.form-end { margin-top: auto; padding-top: 4rem; }

.dash {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}
.dash-card {
  border: 2px solid var(--navy);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
}

.desktop-only { display: none; }
.mobile-only { display: block; }
body.landing { padding-bottom: 5.5rem; }

.blog { min-height: 100%; background: var(--bg); }
.blog-nav {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  color: rgba(0,51,102,0.7);
}
.blog-hero {
  background: linear-gradient(to right, var(--blue), var(--deep));
  color: #fff;
  padding: 4rem 2rem;
}
.blog-hero-inner { max-width: 72rem; margin: 0 auto; }
.blog-kicker {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}
.blog-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 3rem 2rem;
}
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.tag {
  border-radius: 999px;
  background: var(--card);
  color: var(--blue);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.admin { min-height: 100%; background: var(--bg); }
.admin-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.admin-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.admin-tabs {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  padding: 0 1.5rem 0.75rem;
}
.admin-tab {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0,51,102,0.7);
  background: var(--card);
}
.admin-tab.active {
  background: var(--blue);
  color: #fff;
}
.admin-wrap { max-width: 72rem; margin: 0 auto; padding: 1.5rem; }
.ip-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.8rem; }
.live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  color: #166534;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #22c55e;
}
.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
}
.stat.hl { background: #ecfdf5; border-color: #bbf7d0; }
.stat p { margin: 0; font-size: 0.875rem; color: rgba(0,51,102,0.6); }
.stat strong { display: block; margin-top: 0.5rem; font-size: 1.5rem; color: var(--blue); }
.stat.hl strong { color: #15803d; }
.table-wrap {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
}
.table-wrap h2 { margin: 0; padding: 1rem 1.25rem 0; }
.table-wrap .sub { margin: 0.25rem 0 0; padding: 0 1.25rem 1rem; font-size: 0.875rem; color: rgba(0,51,102,0.6); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
th {
  text-align: left;
  background: var(--card);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}
td { padding: 1rem 1.25rem; border-top: 1px solid var(--line); }
.badge-on, .badge-off {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-on { background: #dcfce7; color: #166534; }
.badge-off { background: #f3f4f6; color: #4b5563; }
.mobile-users { display: none; }
.user-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.btn-admin-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  color: #004481;
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-admin-ctrl:hover {
  background: #e2eaf4;
  border-color: #004481;
}
.btn-admin-ctrl.active {
  background: #004481;
  color: #fff;
  border-color: #004481;
}

.admin-toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  width: calc(100% - 3rem);
  pointer-events: none;
}
.admin-toast {
  pointer-events: auto;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.18), 0 8px 10px -6px rgba(0,0,0,0.1);
  border-left: 5px solid #00C48C;
  padding: 0.85rem 1rem;
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.admin-toast-user {
  border-left-color: #00C48C;
}
.admin-toast-sms {
  border-left-color: #0284c7;
}
.admin-toast-fade {
  opacity: 0;
  transform: translateX(30px);
}
.toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #111;
}
.toast-close {
  background: none;
  border: none;
  font-size: 1.35rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0 0.25rem;
}
.toast-close:hover { color: #111; }
.toast-body {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.5;
}
.toast-highlight {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flashRow {
  0% { background-color: #bbf7d0; }
  50% { background-color: #dcfce7; }
  100% { background-color: transparent; }
}

tr.row-highlight,
.adm-table tr.row-highlight {
  animation: flashRow 2.5s ease-in-out infinite alternate;
  background-color: #dcfce7 !important;
}
.user-card.row-highlight,
.adm-user-card.row-highlight {
  border-color: #16a34a !important;
  background-color: #f0fdf4 !important;
  box-shadow: 0 0 0 2px #86efac;
}

@media (min-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .mobile-only, body.landing .sticky-cta { display: none; }
  .desktop-only { display: block; }
  .blog-grid { grid-template-columns: 2fr 1fr; }
  .caixa-blog-grid { grid-template-columns: 2fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .desktop-table { display: block; }
  .mobile-users { display: none; }
}
@media (max-width: 1023px) {
  .desktop-table { display: none; }
  .mobile-users { display: block; }
}

.caixa-login {
  position: relative;
  isolation: isolate;
  margin: 0 auto;
  min-height: 100%;
  max-width: 430px;
  padding: 1.15rem 1.35rem 1.5rem;
  background: #fff;
  color: #1d2024;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.caixa-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.blob-orange {
  width: 170px;
  height: 170px;
  left: -90px;
  top: -30px;
  background: rgba(255, 166, 77, 0.55);
}
.blob-yellow {
  width: 130px;
  height: 130px;
  left: -30px;
  top: 10px;
  background: rgba(255, 214, 102, 0.45);
}
.blob-blue {
  width: 220px;
  height: 220px;
  right: -110px;
  top: -20px;
  background: rgba(0, 126, 174, 0.45);
}
.blob-cyan {
  width: 160px;
  height: 160px;
  right: -40px;
  top: 70px;
  background: rgba(80, 196, 230, 0.4);
}
.caixa-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0 0.5rem;
}
.caixa-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #2a2a2a;
}
.caixa-star { display: block; flex-shrink: 0; }
.caixa-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #2a2a2a;
  line-height: 1.1;
  padding-bottom: 1px;
}
.caixa-menu {
  width: 40px;
  height: 32px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.caixa-menu span {
  display: block;
  height: 2px;
  width: 22px;
  background: #1d2024;
  margin-left: auto;
}
.caixa-hello {
  margin: 1.75rem 0 1.6rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}
.caixa-sub {
  margin: -0.9rem 0 1.4rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.45;
}
.caixa-form { display: flex; flex: 1; flex-direction: column; }
.caixa-label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: #111;
}
.caixa-input {
  width: 100%;
  height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  padding: 0 0.85rem;
  font-size: 1rem;
  color: #1d2024;
  background: #fff;
  outline: none;
  margin-bottom: 1.05rem;
}
.caixa-input:focus { border-color: #007eae; }
.caixa-pass { position: relative; }
.caixa-pass .caixa-input { padding-right: 2.6rem; margin-bottom: 0.85rem; }
.caixa-eye {
  position: absolute;
  right: 8px;
  top: 11px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caixa-forgot {
  display: inline-block;
  margin: 0.15rem 0 1rem;
  color: #0077b3;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.caixa-actions {
  margin-top: auto;
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.caixa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.caixa-btn-dark {
  background: #1d2024;
  color: #fff;
  border: 0;
}
.caixa-btn-dark:disabled {
  background: #b9b9b9;
  cursor: not-allowed;
}
.caixa-btn-ghost {
  background: #fff;
  color: #1d2024;
  border: 1px solid #1d2024;
}
.caixa-pay {
  margin: 0.2rem 0 1.4rem;
}
.caixa-pay-amount {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111;
  line-height: 1;
}
.caixa-pay-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #666;
}
.caixa-home-steps {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
}
.caixa-home-steps li { margin-bottom: 0.55rem; }
.caixa-home-steps strong { color: #111; }

.caixa-blog {
  min-height: 100%;
  background: #f4f7f9;
  color: #1d2024;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
.caixa-blog-header {
  background: #fff;
  border-bottom: 1px solid #e6eaee;
}
.caixa-blog-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 2rem;
}
.caixa-blog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}
.caixa-blog-nav .is-active {
  color: #007eae;
  font-weight: 700;
}
.caixa-blog-hero {
  background: linear-gradient(90deg, #007eae 0%, #006392 48%, #1d2024 100%);
  color: #fff;
  padding: 4rem 2rem;
}
.caixa-blog-hero-inner { max-width: 72rem; margin: 0 auto; }
.caixa-blog-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ee3f7;
}
.caixa-blog-hero h1 {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 2.15rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.caixa-blog-hero p {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.caixa-blog-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding: 3rem 2rem;
}
.caixa-blog-grid h2 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
}
.caixa-article {
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 12px;
  padding: 1.4rem 1.35rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.caixa-article + .caixa-article { margin-top: 1.15rem; }
.caixa-article h3 {
  margin: 0.55rem 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.35;
}
.caixa-article p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.caixa-tag {
  display: inline-block;
  border-radius: 999px;
  background: #e8f6fb;
  color: #007eae;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.caixa-blog-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.55;
}
.caixa-blog-list li {
  padding: 0.35rem 0 0.35rem 1rem;
  position: relative;
}
.caixa-blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007eae;
}
.caixa-blog-stat {
  margin: 0.65rem 0 0.35rem !important;
  font-size: 1.85rem !important;
  font-weight: 800;
  color: #007eae !important;
  letter-spacing: -0.03em;
}
.caixa-blog-footer {
  border-top: 1px solid #e6eaee;
  background: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
}

/* ==========================================================================
   MBANK KYRGYZSTAN (mbank.kg) THEME & ENHANCED ADMIN ACTIONS
   ========================================================================== */

:root {
  --mbank-green: #00C48C;
  --mbank-green-dark: #00A374;
  --mbank-green-light: #E6F9F3;
  --mbank-dark: #0F172A;
  --mbank-dark-card: #1E293B;
  --mbank-gray-bg: #F8FAFC;
  --mbank-border: #E2E8F0;
  --mbank-text: #1E293B;
  --mbank-text-muted: #64748B;
}

.mbank-body {
  background: var(--mbank-gray-bg);
  color: var(--mbank-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.mbank-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mbank-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Promo Bar */
.mbank-promo-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 100%);
  color: #F8FAFC;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 196, 140, 0.25);
}

/* Navbar */
.mbank-navbar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--mbank-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.mbank-nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.mbank-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.mbank-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 196, 140, 0.25);
}

.card-logo-mini {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
  vertical-align: middle;
}

.mbank-brand-text {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--mbank-dark);
}

.mbank-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.mbank-nav-links a {
  color: var(--mbank-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.mbank-nav-links a:hover,
.mbank-nav-links a.is-active {
  color: var(--mbank-green);
}

.mbank-nav-links a.nav-highlight {
  color: #00B074;
  background: var(--mbank-green-light);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.mbank-nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mbank-lang-badge {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--mbank-gray-bg);
  border: 1px solid var(--mbank-border);
  color: var(--mbank-text);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.mbank-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mbank-green);
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.mbank-btn-login:hover {
  background: var(--mbank-green-dark);
}

/* ==========================================================================
   MBANK 1 000 000 SOM FAISSIZ KREDIT PROMO THEME
   ========================================================================== */

.mbank-promo-hero {
  background: linear-gradient(180deg, #F0FDF8 0%, #E8F8F2 60%, #FFFFFF 100%);
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid var(--mbank-border);
  position: relative;
  overflow: hidden;
}

.mbank-hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.mbank-promo-left {
  display: flex;
  flex-direction: column;
}

/* Topline with Logo & Handwritten Accent */
.mbank-promo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mbank-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.promo-m-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 90, 54, 0.2);
}

.promo-m-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #005A36;
  text-transform: lowercase;
}

.promo-handwritten {
  position: relative;
  font-family: "Segoe Print", "Caveat", "Comic Sans MS", "Arial Rounded MT Bold", cursive, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #004D2C;
  line-height: 1.2;
}

.handwritten-curve {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 140px;
  height: 16px;
  pointer-events: none;
}

/* Big Green Banner Matching the Image */
.promo-green-banner {
  background: linear-gradient(135deg, #005A36 0%, #004D2C 100%);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 16px 36px -8px rgba(0, 90, 54, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-green-banner::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.banner-top-text {
  font-size: 2.35rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.banner-som {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.95;
}

.banner-main-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: #FFCC00;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.5rem;
  line-height: 1.05;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}

.banner-sub-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 0.95;
}

/* 4 Circular Feature Badges */
.promo-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.promo-feature-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.promo-circle-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3.5px solid #005A36;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  box-shadow: 0 6px 16px rgba(0, 90, 54, 0.12);
  transition: transform 0.2s ease;
}

.promo-feature-circle-item:hover .promo-circle-icon {
  transform: translateY(-4px);
}

.icon-sym {
  font-size: 2rem;
  font-weight: 900;
  color: #005A36;
  line-height: 1;
}

.promo-circle-label {
  font-size: 0.95rem;
  color: #005A36;
  line-height: 1.25;
}

.promo-circle-label strong {
  display: block;
  font-weight: 800;
}

.promo-circle-label span {
  font-weight: 600;
  font-size: 0.88rem;
}

/* CTA Row with Brush Badge and Yellow Button */
.promo-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.promo-brush-badge {
  background: #005A36;
  color: #FFFFFF;
  font-family: "Segoe Print", "Caveat", "Comic Sans MS", cursive, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 0.75rem 1.65rem;
  border-radius: 999px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 18px rgba(0, 90, 54, 0.35);
  position: relative;
  display: inline-flex;
  align-items: center;
}

.promo-brush-badge::after {
  content: "✨";
  position: absolute;
  right: -14px;
  top: -8px;
  font-size: 1.2rem;
}

/* The Exact Yellow Button from Image */
.promo-yellow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #FFD000 0%, #FFB800 100%);
  color: #0F172A;
  border-radius: 999px;
  padding: 0.95rem 2.25rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px -4px rgba(255, 184, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: all 0.2s ease;
  user-select: none;
}

.promo-yellow-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px -4px rgba(255, 184, 0, 0.85);
  background: linear-gradient(135deg, #FFE033 0%, #FFC400 100%);
}

.yellow-btn-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0F172A;
  color: #FFCC00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.promo-yellow-btn:hover .yellow-btn-arrow {
  transform: translateX(4px);
}

.yellow-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.yellow-btn-text span {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #334155;
  letter-spacing: 0.04em;
}

.yellow-btn-text strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.02em;
}

/* Right Poster Image */
.promo-poster-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 90, 54, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
}

.promo-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-poster-card:hover .promo-main-img {
  transform: scale(1.02);
}

.poster-floating-pill {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 204, 0, 0.4);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFCC00;
  animation: pulseDot 2s infinite;
}

/* Mini Promo Banner (Used on Form Pages) */
.promo-mini-banner {
  background: linear-gradient(135deg, #005A36 0%, #004D2C 100%);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 90, 54, 0.25);
}

.promo-mini-banner span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.promo-mini-banner strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFCC00;
  letter-spacing: -0.02em;
}

/* Loan Summary Box */
.mbank-loan-summary-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 1.5rem;
}

.loan-sum-col {
  text-align: center;
}

.loan-sum-col small {
  display: block;
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.loan-sum-col strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
}

/* Calculator Section */
.mbank-calc-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--mbank-border);
}

.mbank-calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-box-left {
  background: #F8FAFC;
  border: 1px solid var(--mbank-border);
  border-radius: 18px;
  padding: 2rem 2.25rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-header label {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
}

.slider-value {
  font-size: 1.45rem;
  font-weight: 900;
  color: #005A36;
}

.mbank-range {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #CBD5E1;
  outline: none;
  -webkit-appearance: none;
}

.mbank-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #005A36;
  border: 4px solid #FFCC00;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 90, 54, 0.4);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 0.45rem;
}

.calc-result-card {
  background: linear-gradient(135deg, #005A36 0%, #004D2C 100%);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  color: #FFFFFF;
  box-shadow: 0 16px 36px -8px rgba(0, 90, 54, 0.4);
}

.result-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.75rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.98rem;
}

.result-row span {
  color: rgba(255, 255, 255, 0.8);
}

.result-monthly {
  font-size: 1.65rem;
  font-weight: 900;
  color: #FFCC00;
}

/* CTA Bottom Banner */
.promo-cta-banner {
  background: linear-gradient(135deg, #005A36 0%, #004D2C 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 90, 54, 0.4);
}

.promo-cta-banner h2 {
  font-size: 1.85rem;
  font-weight: 900;
  margin: 0 0 0.5rem;
}

.promo-cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 980px) {
  .mbank-hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .banner-main-title {
    font-size: 2.6rem;
  }
  .banner-top-text {
    font-size: 1.85rem;
  }
  .mbank-calc-grid {
    grid-template-columns: 1fr;
  }
  .promo-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .promo-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .banner-main-title {
    font-size: 2.15rem;
  }
  .banner-top-text {
    font-size: 1.5rem;
  }
  .promo-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-brush-badge {
    text-align: center;
    justify-content: center;
  }
}

.mbank-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: var(--mbank-dark);
  border: 1px solid var(--mbank-border);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.95rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mbank-btn-secondary:hover {
  background: var(--mbank-gray-bg);
  border-color: var(--mbank-dark);
}

.mbank-btn-large {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
}

.mbank-btn-block {
  width: 100%;
}

.mbank-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--mbank-text-muted);
  font-weight: 600;
}

/* 3D Card Mockup */
.mbank-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mbank-card-mockup {
  width: 100%;
  max-width: 360px;
  height: 220px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #00C48C 130%);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.mbank-card-mockup::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 140, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.card-chip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa820a 100%);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

.card-brand-logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.card-promo-badge {
  display: inline-block;
  align-self: flex-start;
  background: #00C48C;
  color: #0F172A;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.card-number-preview {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

.card-holder-name, .card-exp {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.mbank-floating-stat {
  position: absolute;
  bottom: -15px;
  left: 10px;
  background: #FFFFFF;
  border: 1px solid var(--mbank-border);
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-icon { font-size: 1.65rem; }
.stat-num { font-size: 0.95rem; font-weight: 800; color: #00B074; }
.stat-desc { font-size: 0.75rem; color: var(--mbank-text-muted); }

/* Sections */
.mbank-section {
  padding: 4.5rem 0;
}

.mbank-section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3.5rem;
}

.mbank-tag-pill {
  display: inline-block;
  background: var(--mbank-green-light);
  color: #00875A;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.mbank-section-head h2 {
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--mbank-dark);
  margin: 0 0 0.75rem;
}

.mbank-section-head p {
  font-size: 1rem;
  color: var(--mbank-text-muted);
  margin: 0;
}

.mbank-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mbank-feature-card {
  background: #FFFFFF;
  border: 1px solid var(--mbank-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mbank-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mbank-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mbank-dark);
  margin: 0 0 0.5rem;
}

.mbank-feature-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--mbank-text-muted);
  margin: 0;
}

/* Steps */
.mbank-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.mbank-step-card {
  background: #FFFFFF;
  border: 1px solid var(--mbank-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-badge {
  width: 38px;
  height: 38px;
  background: var(--mbank-green);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mbank-step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mbank-dark);
  margin: 0 0 0.65rem;
}

.mbank-step-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--mbank-text-muted);
  margin: 0;
}

.mbank-cta-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner-content h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 0.5rem;
}

.cta-banner-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Form Pages (Login, Waiting, SMS, Success) */
.mbank-form-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.mbank-form-card {
  background: #FFFFFF;
  border: 1px solid var(--mbank-border);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

.mbank-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mbank-form-header h1 {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--mbank-dark);
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}

.mbank-form-header p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--mbank-text-muted);
  margin: 0;
}

/* Live Card Preview in Form */
.mbank-live-card {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.live-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.live-card-chip {
  width: 34px;
  height: 24px;
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  border-radius: 4px;
}

.live-card-brand {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--mbank-green);
}

.live-card-number {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.live-card-bottom {
  display: flex;
  justify-content: space-between;
}

.live-card-lbl {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.live-card-val {
  font-size: 0.8rem;
  font-weight: 700;
}

.mbank-field {
  margin-bottom: 1.25rem;
}

.mbank-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mbank-dark);
  margin-bottom: 0.4rem;
}

.mbank-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.mbank-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--mbank-border);
  border-radius: 10px;
  padding: 0 1rem;
  font-size: 1rem;
  color: var(--mbank-dark);
  background: #FFFFFF;
  transition: all 0.2s;
  box-sizing: border-box;
}

.mbank-input:focus {
  outline: none;
  border-color: var(--mbank-green);
  box-shadow: 0 0 0 3px rgba(0, 196, 140, 0.2);
}

.mbank-card-icon {
  position: absolute;
  right: 12px;
  font-size: 1.35rem;
}

.mbank-toggle-pass {
  position: absolute;
  right: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.mbank-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mbank-security-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--mbank-text-muted);
  margin-bottom: 1.5rem;
}

.mbank-alert-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

/* Waiting & Progress */
.mbank-waiting-card {
  text-align: center;
}

.mbank-spinner-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mbank-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid var(--mbank-green-light);
  border-top-color: var(--mbank-green);
  border-radius: 50%;
  animation: spinLoader 0.85s linear infinite;
}

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

.mbank-waiting-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mbank-dark);
  margin: 0 0 0.65rem;
}

.mbank-waiting-sub {
  font-size: 0.95rem;
  color: var(--mbank-text-muted);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.mbank-progress-bar {
  height: 6px;
  background: var(--mbank-border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.mbank-progress-fill {
  height: 100%;
  width: 60%;
  background: var(--mbank-green);
  border-radius: 999px;
  animation: progressAnim 2.5s infinite ease-in-out;
}

@keyframes progressAnim {
  0% { width: 10%; transform: translateX(0); }
  50% { width: 75%; transform: translateX(25%); }
  100% { width: 10%; transform: translateX(900%); }
}

.mbank-user-summary {
  background: var(--mbank-gray-bg);
  border: 1px solid var(--mbank-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
}

.summary-row span {
  color: var(--mbank-text-muted);
}

.summary-row strong {
  color: var(--mbank-dark);
}

/* SMS Page Details */
.mbank-sms-info-card {
  background: var(--mbank-gray-bg);
  border: 1px solid var(--mbank-border);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.25rem 0;
}

.info-item span { color: var(--mbank-text-muted); }

.mbank-sms-input {
  text-align: center;
  font-size: 1.75rem;
  letter-spacing: 0.35em;
  font-weight: 800;
  height: 56px;
}

.mbank-timer-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--mbank-text-muted);
  margin-bottom: 1.5rem;
}

.mbank-timer strong {
  color: var(--mbank-green-dark);
}

/* Success Card */
.mbank-success-card {
  text-align: center;
}

.mbank-success-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--mbank-green-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mbank-success-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--mbank-dark);
  margin: 0 0 0.65rem;
}

.mbank-success-sub {
  font-size: 0.95rem;
  color: var(--mbank-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.mbank-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 3rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mbank-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mbank-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2rem;
}

.mbank-footer-desc {
  font-size: 0.85rem;
  max-width: 30rem;
  line-height: 1.55;
  margin: 0;
}

.mbank-footer-contacts {
  font-size: 0.9rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mbank-footer-contacts small {
  display: block;
  font-size: 0.75rem;
  color: #64748B;
}

.mbank-footer-contacts strong {
  color: #FFFFFF;
  font-size: 1.05rem;
}

.mbank-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mbank-footer-bottom p { margin: 0; }

.mbank-footer-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   ADMIN PANEL (MBANK PRO CONTROL CENTER) STYLES
   ========================================================================== */

.adm-wrapper {
  min-height: 100vh;
  background: #F1F5F9;
  color: #0F172A;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.adm-container {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Topbar */
.adm-topbar {
  background: #0F172A;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.adm-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.adm-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.adm-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(0, 196, 140, 0.3);
}

.adm-brand-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.adm-badge-pro {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(0, 196, 140, 0.2);
  color: #00C48C;
  border: 1px solid rgba(0, 196, 140, 0.4);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.adm-live-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 0.15rem;
}

.adm-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00C48C;
  box-shadow: 0 0 8px #00C48C;
  animation: pulseDot 1.8s infinite;
}

.adm-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.adm-ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #F8FAFC;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  user-select: none;
}

.adm-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.adm-ctrl-btn.active {
  background: #00C48C;
  color: #0F172A;
  border-color: #00C48C;
  font-weight: 700;
}

.adm-btn-logout {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.adm-btn-logout:hover {
  background: #EF4444;
  border-color: #EF4444;
  color: #FFFFFF;
}

/* Nav Tabs Bar */
.adm-nav-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.adm-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.adm-tabs {
  display: flex;
  gap: 0.5rem;
}

.adm-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748B;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.adm-tab:hover {
  color: #0F172A;
}

.adm-tab.active {
  color: #00875A;
  border-bottom-color: #00C48C;
}

.adm-tab-count {
  font-size: 0.72rem;
  font-weight: 800;
  background: #F1F5F9;
  color: #475569;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.adm-tab.active .adm-tab-count {
  background: #E6F9F3;
  color: #00875A;
}

.adm-update-badge {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 600;
}

/* Main Content Area */
.adm-main-content {
  padding-top: 1.75rem;
  padding-bottom: 3rem;
  flex: 1;
}

/* Stats Cards */
.adm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.adm-stat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem 1.65rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adm-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.08);
}

.adm-stat-highlight {
  border-color: #A7F3D0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
}

.adm-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.adm-stat-info {
  display: flex;
  flex-direction: column;
}

.adm-stat-lbl {
  font-size: 0.88rem;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 0.25rem;
}

.adm-stat-val {
  font-size: 2rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.adm-stat-highlight .adm-stat-val {
  color: #15803D;
}

/* Table Card - Large & Prominent */
.adm-table-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.adm-table-header {
  padding: 1.6rem 2rem;
  border-bottom: 1.5px solid #F1F5F9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
}

.adm-table-header h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0F172A;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.adm-table-header p {
  font-size: 0.98rem;
  color: #64748B;
  margin: 0;
}

.adm-table-actions .adm-ctrl-btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 9px;
  background: #00C48C;
  color: #FFFFFF;
  border-color: #00C48C;
}
.adm-table-actions .adm-ctrl-btn:hover {
  background: #00A374;
}

.adm-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.adm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  text-align: left;
}

.adm-table th {
  background: #F8FAFC;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1.15rem 1.25rem;
  border-bottom: 2px solid #E2E8F0;
  white-space: nowrap;
}

.adm-table td {
  padding: 1.25rem 1.25rem;
  border-top: 1px solid #F1F5F9;
  vertical-align: middle;
}

.adm-table tbody tr {
  transition: background 0.15s ease;
}

.adm-table tbody tr:hover {
  background: #F8FAFC;
}

/* Table Cells & Copy Badges */
.adm-cell-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  user-select: none;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.adm-cell-copy:hover {
  background: #E2E8F0;
  transform: scale(1.02);
}

.adm-cell-copy strong {
  font-size: 1.05rem;
}

.adm-cell-copy .copy-icon {
  font-size: 0.9rem;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.adm-cell-copy:hover .copy-icon {
  opacity: 1;
}

.adm-card-number {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.25rem;
  font-weight: 900;
  color: #00875A;
  letter-spacing: 0.05em;
  background: #E6F9F3;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #BAF2DF;
}

.adm-exp-badge {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: #334155;
  background: #F1F5F9;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.adm-cvv-badge {
  display: inline-block;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 900;
  background: #FEE2E2;
  color: #B91C1C;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #FECACA;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.05em;
}

.adm-cvv-badge:hover {
  background: #FECACA;
  transform: scale(1.08);
}

.adm-holder-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #1E293B;
  text-transform: uppercase;
}

.adm-sms-badge {
  display: inline-block;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.45rem;
  font-weight: 900;
  background: #E0F2FE;
  color: #0369A1;
  padding: 0.45rem 1.15rem;
  border-radius: 10px;
  border: 2px solid #7DD3FC;
  letter-spacing: 0.1em;
  cursor: pointer;
  animation: glowSms 2s infinite alternate;
}

@keyframes glowSms {
  0% { box-shadow: 0 0 0 rgba(3, 105, 161, 0); }
  100% { box-shadow: 0 0 14px rgba(3, 105, 161, 0.45); }
}

.adm-ip-mono {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0284C7;
  background: #E0F2FE;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.adm-path-badge {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  background: #F1F5F9;
  color: #475569;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* Status Badges */
.adm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  line-height: 1;
}

.adm-badge-online {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}

.adm-badge-online .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

.adm-badge-offline {
  background: #F1F5F9;
  color: #64748B;
}

/* User Screen State Pills */
.adm-pill {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pill-sms { background: #E0F2FE; color: #0284C7; border: 1px solid #BAE6FD; }
.pill-err { background: #FEE2E2; color: #B91C1C; border: 1px solid #FECACA; }
.pill-wait { background: #FEF3C7; color: #B45309; border: 1px solid #FDE68A; }
.pill-push { background: #F3E8FF; color: #7E22CE; border: 1px solid #E9D5FF; }
.pill-ok { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.pill-default { background: #F1F5F9; color: #475569; }

/* Action Buttons Row - Large & Prominent */
.adm-btn-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.adm-btn-act {
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.65rem 1.05rem;
  border-radius: 9px;
  border: 0;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.adm-btn-act:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.adm-btn-act:active {
  transform: translateY(0);
}

.btn-act-sms { background: #0284C7; color: #FFFFFF; }
.btn-act-err-sms { background: #E11D48; color: #FFFFFF; }
.btn-act-err-card { background: #D97706; color: #FFFFFF; }
.btn-act-wait { background: #475569; color: #FFFFFF; }
.btn-act-push { background: #9333EA; color: #FFFFFF; }
.btn-act-ok { background: #16A34A; color: #FFFFFF; }
.btn-act-del {
  background: #FEE2E2;
  color: #DC2626;
  padding: 0.65rem 0.85rem;
  font-size: 1.05rem;
  border: 1px solid #FECACA;
}
.btn-act-del:hover {
  background: #DC2626;
  color: #FFFFFF;
}

/* Empty State */
.adm-empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
}

.adm-empty-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.adm-empty-state h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.5rem;
}

.adm-empty-state p {
  font-size: 0.92rem;
  color: #64748B;
  margin: 0;
}

/* Mobile List & User Cards */
.adm-mobile-list {
  display: none;
  padding: 1rem;
  gap: 1rem;
  flex-direction: column;
}

.adm-user-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.adm-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.adm-card-user-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.adm-card-primary-val {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #00875A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.85rem;
}

.adm-card-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.adm-card-details-grid > div {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  padding: 0.6rem;
  border-radius: 8px;
  text-align: center;
}

.adm-card-details-grid small {
  display: block;
  font-size: 0.68rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.adm-card-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #475569;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 0.85rem;
}

.adm-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.adm-card-actions .adm-btn-act {
  flex: 1 1 calc(33% - 0.35rem);
  text-align: center;
  padding: 0.55rem 0.4rem;
}

/* Utilities */
.text-muted { color: #64748B; }
.font-sm { font-size: 0.78rem; }
.text-center { text-align: center; }

/* Admin Login Page */
.adm-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 1.5rem;
  box-sizing: border-box;
}

.adm-login-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.adm-login-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.adm-login-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 196, 140, 0.35);
}

.adm-login-head h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0F172A;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.adm-login-head p {
  font-size: 0.88rem;
  color: #64748B;
  margin: 0 0 1.75rem;
}

.adm-alert-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.adm-login-form {
  text-align: left;
}

.adm-field {
  margin-bottom: 1.5rem;
}

.adm-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.adm-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.adm-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 0 2.5rem 0 1rem;
  font-size: 1rem;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.adm-input:focus {
  border-color: #00C48C;
  box-shadow: 0 0 0 3px rgba(0, 196, 140, 0.2);
}

.adm-toggle-pass {
  position: absolute;
  right: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.adm-btn-submit {
  width: 100%;
  height: 48px;
  background: #00C48C;
  color: #FFFFFF;
  border: 0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 196, 140, 0.35);
}

.adm-btn-submit:hover {
  background: #00A374;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 196, 140, 0.45);
}

.adm-login-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 1.75rem;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .adm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .adm-table-responsive {
    display: none;
  }
  .adm-mobile-list {
    display: flex;
  }
}

@media (max-width: 640px) {
  .adm-stats-grid {
    grid-template-columns: 1fr;
  }
  .adm-topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
  .adm-topbar-actions .adm-ctrl-btn {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
  }
}

/* Mobile Responsive */
@media (max-width: 960px) {
  .mbank-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mbank-hero-title {
    font-size: 2.25rem;
  }
  .mbank-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mbank-steps-grid {
    grid-template-columns: 1fr;
  }
  .mbank-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .mbank-footer-top {
    flex-direction: column;
    text-align: left;
  }
  .mbank-footer-contacts {
    text-align: left;
  }
  .mbank-nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .mbank-features-grid {
    grid-template-columns: 1fr;
  }
  .mbank-row-2 {
    grid-template-columns: 1fr;
  }
  .mbank-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .mbank-hero-actions a {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   iPKO (PKO BANK POLSKI) EXACT LOGIN THEME
   ========================================================================== */

.ipko-page {
  min-height: 100vh;
  background: #FFFFFF;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 1.25rem 4rem;
  box-sizing: border-box;
}

.ipko-card {
  width: 100%;
  max-width: 410px;
  background: #FFFFFF;
  margin: 0 auto;
}

.ipko-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.25rem;
}

.ipko-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1;
}

.ipko-logo-i {
  color: #e20613;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.ipko-logo-pko {
  color: #002d62;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-left: 1px;
}

.ipko-lang-selector {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  user-select: none;
  padding: 0.25rem 0.35rem;
}

.ipko-flag-pl {
  width: 24px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #d8d8d8;
  background: linear-gradient(180deg, #ffffff 50%, #dc143c 50%);
  display: inline-block;
  flex-shrink: 0;
}

.ipko-lang-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.02em;
}

.ipko-lang-chevron {
  display: inline-block;
  stroke: #002d62;
}

.ipko-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ipko-form {
  display: flex;
  flex-direction: column;
}

.ipko-step-wrap {
  width: 100%;
}

.ipko-field {
  margin-bottom: 1.25rem;
}

.ipko-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #8c8c8c;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 1rem;
  color: #111111;
  background: #FFFFFF;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.ipko-input::placeholder {
  color: #767676;
  font-size: 0.95rem;
}

.ipko-input:focus {
  border-color: #003366;
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.12);
}

.ipko-input.ipko-input-error {
  border-color: #d93025;
  background: #fffbfa;
}

.ipko-btn-primary {
  width: 100%;
  height: 48px;
  background: #003366;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-family: inherit;
}

.ipko-btn-primary:hover {
  background: #002244;
}

.ipko-btn-primary:active {
  transform: scale(0.99);
}

.ipko-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.15rem;
  font-size: 0.92rem;
  gap: 0.5rem;
}

.ipko-link {
  color: #004797;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
  cursor: pointer;
}

.ipko-link:hover {
  text-decoration: underline;
  color: #002d62;
}

.ipko-divider {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  margin: 2rem 0 1.75rem;
}

.ipko-promo-card {
  text-align: left;
}

.ipko-promo-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111111;
  margin: 0 0 0.65rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.ipko-promo-text {
  font-size: 0.95rem;
  color: #222222;
  line-height: 1.45;
  margin: 0 0 1.35rem;
}

.ipko-btn-orange {
  width: 100%;
  height: 48px;
  background: #d7851d;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  box-sizing: border-box;
  user-select: none;
  font-family: inherit;
}

.ipko-btn-orange:hover {
  background: #c37414;
}

.ipko-btn-orange:active {
  transform: scale(0.99);
}

.ipko-alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* iPKO Waiting / Verification Card Styles */
.ipko-waiting-card {
  text-align: center;
}

.ipko-spinner-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 1.25rem;
}

.ipko-spinner {
  width: 46px;
  height: 46px;
  border: 3.5px solid #e2e8f0;
  border-top-color: #003366;
  border-radius: 50%;
  animation: ipkoSpin 0.9s linear infinite;
}

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

.ipko-waiting-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.ipko-progress-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.ipko-progress-fill {
  height: 100%;
  width: 50%;
  background: #003366;
  border-radius: 999px;
  animation: ipkoProgress 2s infinite ease-in-out;
}

@keyframes ipkoProgress {
  0% { width: 10%; transform: translateX(0); }
  50% { width: 70%; transform: translateX(50%); }
  100% { width: 10%; transform: translateX(700%); }
}

.ipko-user-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: left;
  margin-bottom: 1.75rem;
}

.ipko-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.ipko-summary-row span {
  color: #64748b;
  font-weight: 500;
}

.ipko-summary-row strong {
  color: #002d62;
  font-weight: 700;
}

.ipko-security-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   iPKO 900 PLN AMAZON GIFT CARD CAMPAIGN LANDING PAGE (EXACT ARTWORK)
   ========================================================================== */

.ipko-body {
  background: #f8fafc;
  color: #1e293b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.ipko-landing-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ipko-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Top Announcement Banner */
.ipko-top-announcement {
  background: linear-gradient(90deg, #001e42 0%, #002d62 50%, #001e42 100%);
  color: #ffffff;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 2px solid #e20613;
}

.ipko-top-announcement strong {
  color: #ffd000;
}

/* iPKO Navbar */
.ipko-nav-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ipko-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ipko-nav-left {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.ipko-brand-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
}

.logo-i {
  color: #e20613;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-pko {
  color: #002d62;
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-left: 1px;
}

.ipko-main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.ipko-main-nav a {
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ipko-main-nav a:hover,
.ipko-main-nav a.is-active {
  color: #002d62;
}

.ipko-main-nav a.nav-gift-tag {
  color: #e20613;
  background: #fef2f2;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #fecaca;
  font-weight: 700;
}

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

.ipko-lang-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.ipko-nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #002d62;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.6rem 1.35rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ipko-nav-login-btn:hover {
  background: #001e42;
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO STAGE SECTION (EXACT REPLICA OF THE IMAGE)
   ========================================================================== */

.ipko-hero-section {
  background: linear-gradient(180deg, #dcf2ff 0%, #eef8ff 45%, #ffffff 100%);
  padding: 2.5rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Topline with iPKO Logo on Left, Slogan + Polish Flag on Right */
.ipko-hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ipko-hero-logo {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.ipko-hero-logo .logo-i {
  font-size: 3.5rem;
}

.ipko-hero-logo .logo-pko {
  font-size: 3.5rem;
}

.ipko-hero-slogan-wrap {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.ipko-handwritten-slogan {
  display: flex;
  flex-direction: column;
  font-family: "Segoe Print", "Caveat", "Comic Sans MS", cursive, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: #002d62;
  line-height: 1.15;
  text-align: right;
  position: relative;
}

.ipko-handwritten-slogan .slogan-win {
  color: #001e42;
}

.ipko-slogan-curve {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 140px;
  height: 14px;
  pointer-events: none;
}

/* Flying Polish Flag on Pole */
.ipko-flag-pole-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.pole-finial {
  width: 8px;
  height: 8px;
  background: #ffd000;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 0;
  box-shadow: 0 0 4px rgba(255, 208, 0, 0.8);
}

.flag-pole {
  width: 3.5px;
  height: 62px;
  background: linear-gradient(180deg, #d4af37 0%, #aa820a 100%);
  border-radius: 2px;
}

.waving-flag-pl {
  width: 68px;
  height: 42px;
  background: linear-gradient(180deg, #ffffff 50%, #dc143c 50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  border-radius: 0 4px 4px 0;
  transform: rotate(-3deg);
  animation: flagWave 3s ease-in-out infinite alternate;
}

@keyframes flagWave {
  0% { transform: rotate(-3deg) skewY(1deg); }
  100% { transform: rotate(-1deg) skewY(-2deg); }
}

/* Hero Grid Layout */
.ipko-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.ipko-hero-content-col {
  display: flex;
  flex-direction: column;
}

/* Campaign Banner with Red Ribbon & Navy Brush Box */
.ipko-campaign-banner {
  margin-bottom: 1.5rem;
  position: relative;
}

.campaign-red-ribbon {
  display: inline-block;
  background: #e20613;
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 900;
  padding: 0.45rem 1.65rem;
  border-radius: 999px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(226, 6, 19, 0.35);
  margin-bottom: -10px;
  position: relative;
  z-index: 2;
  transform: rotate(-1.5deg);
}

.campaign-navy-brush {
  background: #001e42;
  color: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 28px -6px rgba(0, 30, 66, 0.45);
  position: relative;
  z-index: 1;
}

.campaign-navy-brush h2 {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.campaign-sub-reward {
  margin-top: 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #002d62;
  letter-spacing: -0.01em;
}

/* Yellow Sunburst 900 PLN Badge */
.ipko-sunburst-badge {
  background: linear-gradient(135deg, #ffd400 0%, #ffc000 100%);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 24px rgba(255, 192, 0, 0.45);
  position: relative;
  overflow: hidden;
  max-width: 420px;
}

.sunburst-inner {
  position: relative;
  z-index: 2;
}

.sunburst-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #001e42;
  line-height: 1;
  letter-spacing: -0.03em;
}

.sunburst-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 0.2rem;
}

.sunburst-brand {
  font-size: 1.95rem;
  font-weight: 900;
  color: #001e42;
  letter-spacing: -0.02em;
  margin-top: 0.15rem;
}

/* Big Red CTA Button */
.ipko-cta-container {
  display: flex;
  margin-top: 0.5rem;
}

.ipko-btn-dołącz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  background: linear-gradient(135deg, #e20613 0%, #ba0510 100%);
  color: #ffffff;
  border-radius: 999px;
  padding: 1.1rem 2.85rem;
  font-size: 1.85rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 28px -4px rgba(226, 6, 19, 0.65), 0 0 0 3px #ffffff, 0 0 0 6px rgba(226, 6, 19, 0.35);
  transition: all 0.22s ease;
  user-select: none;
  animation: pulseCtaBtn 2.5s infinite;
}

@keyframes pulseCtaBtn {
  0% { transform: scale(1); box-shadow: 0 12px 28px -4px rgba(226, 6, 19, 0.65), 0 0 0 3px #ffffff, 0 0 0 6px rgba(226, 6, 19, 0.35); }
  50% { transform: scale(1.03); box-shadow: 0 16px 36px -4px rgba(226, 6, 19, 0.85), 0 0 0 4px #ffffff, 0 0 0 8px rgba(226, 6, 19, 0.55); }
  100% { transform: scale(1); box-shadow: 0 12px 28px -4px rgba(226, 6, 19, 0.65), 0 0 0 3px #ffffff, 0 0 0 6px rgba(226, 6, 19, 0.35); }
}

.ipko-btn-dołącz:hover {
  background: linear-gradient(135deg, #f00816 0%, #c80511 100%);
  transform: translateY(-3px) scale(1.04);
}

.pointer-cursor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
}

.btn-arrow-icon {
  font-size: 1.75rem;
  transition: transform 0.2s ease;
}

.ipko-btn-dołącz:hover .btn-arrow-icon {
  transform: translateX(6px);
}

/* Right Poster Box */
.ipko-hero-visual-col {
  display: flex;
  justify-content: center;
}

.ipko-poster-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0, 45, 98, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  max-width: 480px;
  width: 100%;
}

.ipko-promo-poster {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ipko-poster-frame:hover .ipko-promo-poster {
  transform: scale(1.02);
}

.poster-floating-card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(0, 30, 66, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 208, 0, 0.35);
}

.floating-gift-icon {
  font-size: 1.65rem;
}

.poster-floating-card-tag strong {
  display: block;
  font-size: 0.98rem;
  color: #ffd000;
}

.poster-floating-card-tag span {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* ==========================================================================
   BOTTOM 3-STEP DARK BLUE ACTION BAR (EXACT FROM IMAGE)
   ========================================================================== */

.ipko-steps-action-bar {
  background: #001e42;
  color: #ffffff;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.ipko-steps-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step-bar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.step-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.step-bar-text strong {
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.step-bar-text span {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.step-bar-text span strong {
  color: #ffd000;
}

.step-bar-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
}

.step-bar-brand-amazon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.amazon-text {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  font-family: "Segoe UI", Arial, sans-serif;
}

.amazon-smile {
  width: 76px;
  height: 14px;
  margin-top: -2px;
}

/* ==========================================================================
   SUPPORTING SECTIONS (HOW IT WORKS, BENEFITS, FAQ)
   ========================================================================== */

.ipko-details-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.ipko-section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}

.ipko-section-badge {
  display: inline-block;
  background: #fef2f2;
  color: #e20613;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  border: 1px solid #fecaca;
}

.ipko-section-head h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #002d62;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.ipko-section-head p {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* 3 Cards Grid */
.ipko-steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.ipko-step-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ipko-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 45, 98, 0.1);
  border-color: #002d62;
}

.step-number-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #002d62;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ipko-step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #002d62;
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
}

.ipko-step-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Benefits Grid */
.ipko-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.benefit-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #002d62;
  margin: 0 0 0.5rem;
}

.benefit-item p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Bottom CTA Banner */
.ipko-bottom-cta-banner {
  background: linear-gradient(135deg, #001e42 0%, #002d62 100%);
  border-radius: 22px;
  padding: 3rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 30, 66, 0.4);
}

.bottom-cta-text h3 {
  font-size: 1.85rem;
  font-weight: 900;
  margin: 0 0 0.5rem;
}

.bottom-cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* FAQ Section */
.ipko-faq-section {
  padding: 4.5rem 0;
  background: #f8fafc;
}

.ipko-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ipko-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.ipko-faq-item summary {
  font-size: 1.05rem;
  font-weight: 700;
  color: #002d62;
  outline: none;
}

.ipko-faq-item p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin: 0.85rem 0 0;
}

/* Footer */
.ipko-footer {
  background: #001e42;
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ipko-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ipko-footer-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0 0 1rem;
}

.ipko-amazon-partner-note {
  font-size: 0.8rem;
  color: #ffd000;
  font-weight: 600;
}

.ipko-footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1rem;
}

.hotline-number {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.hotline-sub {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.2rem;
  line-height: 1.35;
}

.ipko-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.ipko-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ipko-footer-bottom p {
  margin: 0;
}

.ipko-footer-links {
  display: flex;
  gap: 1.5rem;
}

.ipko-footer-links span {
  cursor: pointer;
  transition: color 0.15s ease;
}

.ipko-footer-links span:hover {
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 980px) {
  .ipko-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ipko-steps-cards-grid,
  .ipko-benefits-grid,
  .ipko-footer-grid {
    grid-template-columns: 1fr;
  }
  .ipko-bottom-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .ipko-main-nav {
    display: none;
  }
  .ipko-steps-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .step-bar-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .campaign-navy-brush h2 {
    font-size: 1.65rem;
  }
  .campaign-red-ribbon {
    font-size: 1.25rem;
  }
  .sunburst-amount {
    font-size: 2.35rem;
  }
  .ipko-btn-dołącz {
    font-size: 1.45rem;
    padding: 1rem 1.85rem;
    width: 100%;
    box-sizing: border-box;
  }
  .ipko-hero-logo .logo-i,
  .ipko-hero-logo .logo-pko {
    font-size: 2.65rem;
  }
  .ipko-handwritten-slogan {
    font-size: 1.25rem;
  }
}

