/* Premium Modern Theme for Malwa Digital App & Portal */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
  --navy: #091936; /* Dark Navy */
  --blue: #1557FF; /* Primary */
  --orange: #FF6B35;
  --cream: #F5F7FB; /* App Background */
  --line: #DFE4EB;
  --muted: #667085;
  --success: #16A36A;
  --warning: #F59E0B;
  --error: #E04444;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--navy);
  background: #FFF;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Common Typography & Buttons */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

button {
  font-family: var(--font-sans);
  transition: all 0.2s ease-in-out;
}

/* Layout - Topbar (Landing Page) */
.topbar {
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #edf0f4;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 max(5vw, 32px);
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  letter-spacing: -0.8px;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  display: flex;
}

.brand > span:last-child > span {
  color: var(--orange);
}

.brand-mark {
  background: var(--blue);
  border-radius: 9px;
  justify-content: center;
  align-items: end;
  gap: 2px;
  width: 32px;
  height: 32px;
  padding: 7px;
  display: flex;
}

.brand-mark i {
  background: #fff;
  border-radius: 3px;
  width: 4px;
  display: block;
}

.brand-mark i:first-child {
  height: 8px;
}

.brand-mark i:nth-child(2) {
  height: 14px;
}

.brand-mark i:nth-child(3) {
  height: 20px;
}

.brand-mark.tiny {
  border-radius: 6px;
  width: 23px;
  height: 23px;
  padding: 5px;
}

.brand-mark.tiny i {
  width: 3px;
}

.brand-mark.tiny i:first-child {
  height: 5px;
}

.brand-mark.tiny i:nth-child(2) {
  height: 9px;
}

.brand-mark.tiny i:nth-child(3) {
  height: 13px;
}

.topbar nav {
  gap: 38px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.topbar nav a:hover {
  color: var(--blue);
}

.header-actions {
  align-items: center;
  gap: 22px;
  display: flex;
}

.text-button {
  color: var(--navy);
  cursor: pointer;
  background: 0 0;
  border: 0;
  font-weight: 700;
}

.primary {
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-weight: 700;
  display: inline-flex;
  box-shadow: 0 10px 24px rgba(21, 87, 255, 0.2);
}

.primary:hover {
  background: #0c45d5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 87, 255, 0.3);
}

.primary span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.primary:hover span {
  transform: translateX(4px);
}

.primary.small {
  box-shadow: none;
  border-radius: 9px;
  padding: 12px 17px;
  font-size: 13px;
}

.secondary {
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  font-weight: 700;
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--line);
}

.secondary:hover {
  background: #fff;
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: linear-gradient(118deg, #fbfaf6 0%, #f7f4ec 55%, #eef3ff 100%);
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  min-height: 680px;
  padding: 80px max(7vw, 40px) 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  color: #234aa4;
  letter-spacing: 0.5px;
  background: #e8efff;
  border-radius: 99px;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.eyebrow span {
  color: #2bad6f;
  font-size: 10px;
}

.hero h1 {
  letter-spacing: -1px;
  margin: 24px 0;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 em, .section h2 em {
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

.hero-copy > p {
  color: #5d6678;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
  display: flex;
}

.trust-row {
  gap: 0;
  margin-top: 50px;
  display: flex;
}

.trust-row div {
  border-right: 1px solid #d6d9de;
  flex-direction: column;
  padding: 0 24px;
  display: flex;
}

.trust-row div:first-child {
  padding-left: 0;
}

.trust-row div:last-child {
  border: 0;
}

.trust-row strong {
  font-size: 18px;
  font-weight: 800;
}

.trust-row span {
  color: #71798a;
  margin-top: 5px;
  font-size: 11px;
}

/* Pay Shell & Widget */
.pay-shell {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.pay-card {
  z-index: 2;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 24px;
  width: min(100%, 470px);
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 70px rgba(34, 53, 91, 0.15);
}

.pay-head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.pay-head span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 800;
}

.pay-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 800;
}

.pay-head > b {
  color: var(--blue);
  background: #eef3ff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 19px;
  display: flex;
}

.service-tabs {
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 24px 0;
  display: grid;
}

.service-tabs button {
  color: #7b8391;
  cursor: pointer;
  background: #f5f7fa;
  border: 0;
  border-radius: 10px;
  padding: 10px 4px;
  font-size: 10px;
  font-weight: 600;
}

.service-tabs button span {
  margin-bottom: 5px;
  font-size: 16px;
  display: block;
}

.service-tabs button.active {
  color: var(--blue);
  background: #eaf0ff;
  font-weight: 800;
}

.pay-card label {
  color: #4e586a;
  margin: 12px 0 7px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.pay-card input, .pay-card select {
  color: #1b2948;
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 48px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 500;
}

.pay-card input:focus, .pay-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.1);
}

.form-row {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  display: grid;
}

.amount {
  position: relative;
}

.amount span {
  position: absolute;
  top: 14px;
  left: 12px;
  font-weight: 600;
}

.amount input {
  padding-left: 28px;
}

.quick-amounts {
  gap: 7px;
  margin: 12px 0;
  display: flex;
}

.quick-amounts button {
  color: #536074;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 8px;
  flex: 1;
  padding: 7px;
  font-size: 11px;
  font-weight: 600;
}

.quick-amounts button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pay-button {
  width: 100%;
  height: 51px;
  margin-top: 5px;
}

.secure {
  text-align: center !important;
  color: #7c8492 !important;
  margin: 14px 0 0 !important;
  font-size: 10px !important;
  font-weight: 600;
}

.secure span {
  color: #2bad6f;
}

/* Float Cards */
.float-card {
  z-index: 3;
  background: #fff;
  border: 1px solid #ecedf1;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  display: flex;
  position: absolute;
  box-shadow: 0 15px 35px rgba(27, 44, 74, 0.1);
}

.float-card > span {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  display: flex;
  font-weight: bold;
}

.float-card b, .float-card small {
  display: block;
}

.float-card b {
  font-size: 11px;
  font-weight: 700;
}

.float-card small {
  color: #89909d;
  margin-top: 3px;
  font-size: 9px;
}

.receipt {
  bottom: 53px;
  left: -35px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.receipt > span {
  color: #18a867;
  background: #e6f8ef;
}

.support {
  top: 88px;
  right: -25px;
  animation: floatUpDown 4s ease-in-out infinite 2s;
}

.support > span {
  color: var(--orange);
  background: #fff0ea;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Operators Section */
.operators {
  color: #9ca3ae;
  border-bottom: 1px solid #e8ebef;
  justify-content: center;
  align-items: center;
  gap: 48px;
  height: 92px;
  display: flex;
  background: #fff;
}

.operators > span {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 10px;
  font-weight: 800;
}

.operators b {
  letter-spacing: -0.8px;
  font-size: 18px;
  font-weight: 800;
}

.operators b span {
  color: #f15532;
}

/* Sections General */
.section {
  padding: 100px max(7vw, 40px);
}

.section-kicker {
  letter-spacing: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.section-title {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.section-title h2, .how h2, .security h2, .contact h2 {
  margin: 16px 0 24px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-title h2 em, .how h2 em, .security h2 em, .contact h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}

.section-title > p {
  max-width: 390px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 15px;
}

/* Services Grid */
.service-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-grid article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 130px;
  padding: 30px;
  display: grid;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
}

.service-grid article > span {
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: #f1f4fa;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  display: flex;
}

.service-grid h3 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
}

.service-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.service-grid article > b {
  color: #b0b6c1;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.service-grid article:hover {
  background: #fafbfe;
}

.service-grid article:hover > b {
  transform: translateX(3px) translateY(-3px);
  color: var(--blue);
}

.service-grid article.featured {
  background: var(--blue);
  color: #fff;
}

.service-grid article.featured > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.service-grid article.featured p, .service-grid article.featured > b {
  color: #d9e2ff;
}

.service-grid article.featured:hover {
  background: #0c45d5;
}

.service-grid article.featured:hover > b {
  color: #fff;
}

/* How It Works Section */
.how {
  background: var(--cream);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10vw;
  display: grid;
}

.phone-mock {
  background: #fff;
  border-radius: 38px;
  width: min(100%, 380px);
  margin: auto;
  padding: 28px;
  transform: rotate(-2deg);
  box-shadow: 0 30px 60px rgba(45, 58, 85, 0.12);
  border: 8px solid var(--navy);
}

.phone-top {
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  display: flex;
}

.phone-top > span:last-child {
  margin-left: auto;
  font-size: 14px;
}

.phone-mock > p {
  color: var(--muted);
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.phone-mock > h3 {
  margin: 6px 0 22px;
  font-size: 22px;
  font-weight: 800;
}

.phone-mock .mini-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  display: grid;
}

.phone-mock .mini-grid > span {
  height: 70px;
  color: var(--blue);
  background: #f5f7fb;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  display: flex;
}

.phone-mock .mini-grid small {
  color: #5f6878;
  margin-top: 8px;
  font-size: 8px;
  font-weight: 700;
}

.phone-mock .mini-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 15px;
  display: flex;
}

.phone-mock .mini-card > span {
  color: #14a465;
  background: #e8f9ef;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}

.phone-mock .mini-card small, .phone-mock .mini-card b {
  display: block;
}

.phone-mock .mini-card small {
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 600;
}

.phone-mock .mini-card b {
  font-size: 11px;
  font-weight: 700;
}

.how ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.how li {
  border-top: 1px solid #d9d7d0;
  gap: 22px;
  padding: 24px 0;
  display: flex;
}

.how li > span {
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: bold;
}

.how li b {
  font-size: 17px;
  font-weight: 800;
  display: block;
}

.how li p {
  color: var(--muted);
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

/* Security Section */
.security {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 7vw;
  display: grid;
}

.security > div:first-child > p {
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
  font-size: 15px;
}

.security-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  display: grid;
}

.security-cards article {
  background: #f7f8fb;
  border-radius: 18px;
  min-height: 220px;
  padding: 28px 23px;
  transition: transform 0.2s ease;
}

.security-cards article:hover {
  transform: translateY(-4px);
  background: #f1f4fa;
}

.security-cards span {
  width: 43px;
  height: 43px;
  color: var(--blue);
  background: #eaf0ff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 42px;
  font-size: 19px;
  display: flex;
}

.security-cards b {
  font-size: 14px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.security-cards p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 500;
}

/* Contact Us Section */
.contact {
  background: #fbfaf6;
  border-top: 1px solid var(--line);
}

.contact-layout {
  grid-template-columns: 1fr 1.2fr;
  gap: 5vw;
  display: grid;
  margin-top: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.contact-info-card i {
  color: var(--blue);
  background: #eef3ff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.contact-info-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-info-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-form-wrapper h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-form-wrapper label {
  color: #4e586a;
  margin: 14px 0 7px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.contact-form-wrapper input, .contact-form-wrapper textarea {
  color: #1b2948;
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
}

.contact-form-wrapper textarea {
  height: 100px;
  resize: vertical;
}

.contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.1);
}

.contact-form-wrapper button {
  width: 100%;
  margin-top: 20px;
}

.form-status {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: #e6f8ef;
  color: #18a867;
  border: 1px solid #c2ebd5;
}

.form-status.error {
  display: block;
  background: #fff0ea;
  color: var(--orange);
  border: 1px solid #ffdcd0;
}

/* Call To Action (CTA) Section */
.cta {
  background: var(--blue);
  color: #fff;
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
  margin: 0 max(4vw, 24px) 30px;
  padding: 65px max(5vw, 35px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta span {
  letter-spacing: 1.7px;
  font-size: 10px;
  font-weight: 800;
  opacity: 0.8;
}

.cta h2 {
  margin: 12px 0;
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.cta p {
  color: #cfdbff;
  font-size: 16px;
  font-weight: 500;
}

.cta .primary.light {
  color: var(--blue);
  box-shadow: none;
  background: #fff;
  position: relative;
  z-index: 2;
}

.cta .primary.light:hover {
  background: #f1f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Footer Section */
footer {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 25px;
  padding: 50px max(7vw, 40px);
  display: grid;
  border-top: 1px solid var(--line);
  background: #fff;
}

footer > p {
  color: var(--muted);
  text-align: right;
  font-size: 12px;
  font-weight: 500;
}

footer > div {
  color: #566174;
  gap: 25px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

footer > div a:hover {
  color: var(--blue);
}

footer > small {
  text-align: right;
  color: #9aa1ad;
  font-size: 10px;
  font-weight: 500;
}

.footer-play-badge {
  display: inline-block;
  margin-top: 10px;
}

.footer-play-badge img {
  height: 40px;
  border-radius: 6px;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  position: relative;
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
  color: white;
}

.whatsapp-button .pulse-ring {
  border: 3px solid #25d366;
  position: absolute;
  top: -4px;
  left: -4px;
  bottom: -4px;
  right: -4px;
  border-radius: 50%;
  animation: pulse-ring-anim 1.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-button .pulse-ring-2 {
  animation-delay: 0.6s;
}

@keyframes pulse-ring-anim {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-tooltip {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: absolute;
  right: 70px;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.whatsapp-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}

.whatsapp-tooltip p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
}

.tooltip-arrow {
  width: 10px;
  height: 10px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: absolute;
  right: -6px;
  top: 23px;
  transform: rotate(-45deg);
}

/* Policy Pages Layout */
.policy-page {
  padding: 60px max(7vw, 40px);
  background: #fbfaf6;
  min-height: calc(100vh - 180px);
}

.policy-card-wrapper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(0,0,0,0.02);
}

.policy-card-wrapper h1 {
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.policy-card-wrapper p.subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.policy-content {
  color: #3b4256;
  font-size: 14px;
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--navy);
}

.policy-content p {
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

.policy-content li {
  margin-bottom: 8px;
}

/* -------------------------------------------------------------
   FINTECH WEB APPLICATION PORTAL LAYOUT & APP UI STYLES
------------------------------------------------------------- */
.app-shell {
  display: flex;
  background: var(--cream);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.app-shell.logged-in #authWrapper {
  display: none !important;
}

.app-shell.logged-out .app-sidebar,
.app-shell.logged-out .app-main {
  display: none !important;
}/* Desktop App Sidebar */
.app-sidebar {
  width: 260px;
  background: var(--navy);
  color: #FFF;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
  transition: transform 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.app-sidebar.collapsed {
  transform: translateX(-260px);
}

.app-sidebar-brand {
  height: 84px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-sidebar-menu {
  flex: 1;
  padding: 24px 12px;
  overflow-y: auto;
  list-style: none;
}

.app-sidebar-menu li {
  margin-bottom: 6px;
}

.app-sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  cursor: pointer;
}

.app-sidebar-menu li a:hover,
.app-sidebar-menu li a.active {
  color: #FFF;
  background: rgba(21, 87, 255, 0.15);
  box-shadow: inset 3px 0 0 var(--blue);
}

.app-sidebar-menu li a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.menu-badge {
  margin-left: auto;
  background: var(--orange);
  color: #FFF;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
}

/* App Main Panel */
.app-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: margin-left 0.3s ease;
}

.app-main.full-width {
  margin-left: 0;
}

/* App Header */
.app-header {
  height: 84px;
  background: #FFF;
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 400;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sidebar-toggle-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

.app-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Balance Chip */
.wallet-balance-chip {
  background: rgba(21, 87, 255, 0.08);
  border: 1px solid rgba(21, 87, 255, 0.12);
  border-radius: 99px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wallet-balance-chip:hover {
  background: rgba(21, 87, 255, 0.12);
  transform: translateY(-1px);
}

.wallet-balance-chip i {
  color: var(--blue);
  font-size: 15px;
}

.wallet-balance-chip span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.wallet-balance-chip strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-action-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  border: 0;
}

.header-action-icon:hover {
  background: var(--line);
}

.notification-badge-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--error);
  border: 1px solid #FFF;
}

.header-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #FFF;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid #FFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* App Main Container */
.app-container {
  padding: 32px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

/* Fintech Screens / Pages Containers */
.app-page {
  display: none;
  animation: fadeIn 0.3s ease;
}

.app-page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Summary Header Card */
.dashboard-summary-card {
  background: linear-gradient(135deg, var(--navy) 0%, #15326c 100%);
  color: #FFF;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(9, 25, 54, 0.15);
}

.dashboard-summary-card::before {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -30%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.dashboard-summary-left h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.dashboard-summary-left p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}

.dashboard-summary-right {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 28px;
}

.summary-balance-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.summary-balance-amount {
  font-size: 32px;
  font-weight: 800;
  margin-top: 4px;
}

.summary-add-money-btn {
  background: #FFF;
  color: var(--blue);
  border: 0;
  font-weight: 800;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.15);
}

.summary-add-money-btn:hover {
  background: #f1f4ff;
  transform: translateY(-1px);
}

/* Quick Categories Grid */
.quick-categories-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--navy);
}

.quick-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.category-action-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-action-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(21, 87, 255, 0.05);
  transform: translateY(-2px);
}

.category-action-card i {
  width: 44px;
  height: 44px;
  background: rgba(21, 87, 255, 0.08);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.category-action-card span {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* Double-column Grid for Dashboard Cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  margin-top: 32px;
}

.dashboard-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.dashboard-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Transaction Card Row */
.recent-transactions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transaction-card-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FFF;
}

.transaction-card-row:hover {
  background: #fafbfe;
  border-color: var(--blue);
}

.transaction-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.transaction-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(21, 87, 255, 0.08);
  color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.transaction-icon-box.success {
  background: rgba(22, 163, 106, 0.08);
  color: var(--success);
}

.transaction-icon-box.failed {
  background: rgba(224, 68, 68, 0.08);
  color: var(--error);
}

.transaction-icon-box.pending {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}

.transaction-details-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.transaction-details-text p {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.transaction-card-right {
  text-align: right;
}

.transaction-amount-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.transaction-amount-label.credit {
  color: var(--success);
}

.transaction-amount-label.debit {
  color: var(--navy);
}

.status-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  text-transform: uppercase;
}

.status-badge.success {
  background: #e6f8ef;
  color: var(--success);
  border: 1px solid #c2ebd5;
}

.status-badge.failed {
  background: #fff0ea;
  color: var(--error);
  border: 1px solid #ffdcd0;
}

.status-badge.pending,
.status-badge.processing {
  background: #fef3c7;
  color: var(--warning);
  border: 1px solid #fde68a;
}

/* Step Progress Indicator (reusable component) */
.step-progress-wrapper {
  margin-bottom: 32px;
}

.step-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.step-progress-line {
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--line);
  z-index: 1;
}

.step-progress-line-fill {
  height: 100%;
  background: var(--blue);
  width: 0%;
  transition: width 0.3s ease;
}

.step-progress-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.step-node-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF;
  border: 2px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.step-progress-node.active .step-node-dot {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 87, 255, 0.1);
}

.step-progress-node.completed .step-node-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFF;
}

.step-node-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.step-progress-node.active .step-node-label {
  color: var(--blue);
}

.auth-split-wrapper {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  background: #FFF;
}

.auth-split-wrapper.active {
  display: grid !important;
}

.auth-split-promo {
  background: linear-gradient(135deg, var(--navy) 0%, #15326c 100%);
  color: #FFF;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-split-promo::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(21, 87, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.promo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
}

.promo-brand .brand-mark {
  background: var(--blue);
}

.promo-brand span span {
  color: var(--orange);
}

.promo-middle {
  max-width: 480px;
}

.promo-middle h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.promo-middle h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}

.promo-middle p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
}

.promo-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  list-style: none;
}

.promo-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.promo-benefits-list li i {
  color: var(--success);
}

.promo-footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.auth-split-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #fbfaf6;
}

.auth-form-card {
  width: 100%;
  max-width: 420px;
}

.auth-form-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.auth-form-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}

.auth-form-card label {
  color: #4e586a;
  margin: 14px 0 7px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.input-with-prefix, .input-with-suffix {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.input-with-prefix input {
  padding-left: 48px;
}

.input-suffix-btn {
  position: absolute;
  right: 14px;
  background: none;
  border: 0;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

.auth-form-card input {
  color: #1b2948;
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 48px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 500;
}

.auth-form-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.1);
}

.auth-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 28px;
  font-size: 12px;
  font-weight: 600;
}

.auth-form-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
}

.auth-form-options label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.forgot-link {
  color: var(--blue);
  font-weight: 700;
}

.auth-form-card button[type="submit"] {
  width: 100%;
  height: 50px;
}

.auth-switch-link {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.auth-switch-link a {
  color: var(--blue);
  font-weight: 700;
}

/* OTP Spaced Code Input */
.otp-inputs-row {
  display: flex;
  gap: 10px;
  margin: 24px 0 16px;
  justify-content: center;
}

.otp-digit-input {
  width: 48px;
  height: 52px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #FFF;
  outline: none;
}

.otp-digit-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.1);
}

.otp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: 14px;
}

.otp-timer {
  color: var(--muted);
}

.otp-timer strong {
  color: var(--navy);
}

.resend-otp-btn {
  color: var(--blue);
  background: none;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.resend-otp-btn:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

/* Plans Browsing Component */
.plans-category-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.plans-category-tabs button {
  background: #FFF;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.plans-category-tabs button.active {
  background: var(--blue);
  color: #FFF;
  border-color: var(--blue);
}

.plans-list-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
  padding: 2px 8px 8px 2px;
}

.plan-operator-summary {
  margin-bottom: 22px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-operator-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plan-operator-logo-wrap {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf3ff;
  color: var(--blue);
}

.plan-operator-logo-wrap img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.plan-summary-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.plan-operator-identity h4 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 15px;
}

.plan-operator-identity small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.plans-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.plans-section-heading h3 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 4px;
}

.plans-section-heading p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

#plansResultCount {
  color: var(--blue);
  background: #edf3ff;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-card-item {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-card-item:hover {
  border-color: rgba(21, 87, 255, 0.35);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  transform: translateY(-1px);
}

.plan-card-price {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.plan-card-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card-price strong {
  margin-top: 4px;
  font-size: 24px;
  color: var(--navy);
}

.plan-category-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 5px;
  background: #edf3ff;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: capitalize;
}

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

.plan-benefits-grid > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.plan-benefits-grid i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f2f4f7;
  color: var(--blue);
  font-size: 11px;
}

.plan-benefits-grid span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.plan-benefits-grid small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.plan-benefits-grid strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-card-description {
  margin-top: 11px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
}

.plan-card-action .primary {
  min-width: 112px;
  height: 42px;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 11px;
}

@media (max-width: 700px) {
  .plan-operator-summary,
  .plans-section-heading {
    align-items: flex-start;
  }

  .plan-change-btn {
    padding: 8px 10px;
  }

  .plan-card-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .plan-card-price strong {
    font-size: 20px;
  }

  .plan-benefits-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .plan-card-action {
    grid-column: 1 / -1;
  }

  .plan-card-action .primary {
    width: 100%;
  }
}

/* Bill Summary Table */
.bill-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.bill-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

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

.bill-summary-row strong {
  color: var(--navy);
}

.bill-summary-row.total-row {
  font-size: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
}

.bill-summary-row.total-row strong {
  color: var(--blue);
  font-weight: 800;
}

/* Payment Checkout Cards */
.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.payment-method-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.payment-method-card:hover {
  border-color: var(--blue);
  background: #fafbfe;
}

.payment-method-card.selected {
  border-color: var(--blue);
  background: rgba(21, 87, 255, 0.03);
}

.payment-method-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f8fafc;
}

.payment-method-card.disabled:hover {
  border-color: var(--line);
  transform: none;
}

/* Small custom radio indicator (Avoid oversized radio circles) */
.custom-radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.payment-method-card.selected .custom-radio-indicator {
  border-color: var(--blue);
}

.payment-method-card.selected .custom-radio-indicator::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

.payment-method-icon {
  font-size: 20px;
  color: var(--navy);
  width: 32px;
  text-align: center;
}

.payment-method-card.selected .payment-method-icon {
  color: var(--blue);
}

.payment-method-details h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.payment-method-details p {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.method-badge-pill {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(22, 163, 106, 0.1);
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Loading Skeleton (reusable component) */
.skeleton-box {
  background: linear-gradient(90deg, #edf0f4 25%, #f5f7fa 50%, #edf0f4 75%);
  background-size: 200% 100%;
  animation: loadingSkeleton 1.5s infinite;
  border-radius: 8px;
}

@keyframes loadingSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text-line {
  height: 14px;
  margin-bottom: 10px;
  width: 100%;
}

.skeleton-text-line.short {
  width: 60%;
}

/* Animated Payment Processing Widget */
.processing-card {
  text-align: center;
  padding: 40px 20px;
}

.processing-spinner {
  width: 64px;
  height: 64px;
  border: 5px solid rgba(21, 87, 255, 0.1);
  border-top-color: var(--blue);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success/Failed Result Displays */
.result-display-wrapper {
  text-align: center;
  padding: 48px 24px;
}

.result-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  font-size: 36px;
}

.result-icon-circle.success {
  background: rgba(22, 163, 106, 0.1);
  color: var(--success);
  animation: scalePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-icon-circle.failed {
  background: rgba(224, 68, 68, 0.1);
  color: var(--error);
  animation: scalePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scalePop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.result-display-wrapper h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.result-display-wrapper p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}

.result-actions-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Support Timeline resoluton tracker */
.vertical-timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}

.vertical-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--line);
}

.timeline-event-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-event-item:last-child {
  margin-bottom: 0;
}

.timeline-event-node {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFF;
  border: 3px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-event-item.completed .timeline-event-node {
  border-color: var(--blue);
  background: var(--blue);
}

.timeline-event-item.active .timeline-event-node {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 87, 255, 0.1);
}

.timeline-event-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-event-content p {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.timeline-event-content small {
  font-size: 10px;
  color: #9aa1ad;
  font-weight: 600;
}

/* Empty State Styling */
.empty-state-card {
  text-align: center;
  padding: 48px 24px;
}

.empty-state-card i {
  font-size: 48px;
  color: var(--line);
  margin-bottom: 16px;
}

/* Responsive profile page */
.profile-responsive-grid > * {
  min-width: 0;
}

.profile-summary-list .bill-summary-row strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 900px) {
  #profilePage,
  .profile-responsive-grid,
  .profile-information-card,
  .profile-security-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .profile-responsive-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  #profilePage .dashboard-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .profile-identity-row {
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 12px !important;
    align-items: center !important;
  }

  .profile-identity-row .header-profile-avatar {
    width: 56px !important;
    height: 56px !important;
    font-size: 20px !important;
  }

  .profile-summary-list .bill-summary-row {
    display: grid;
    grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1.2fr);
    gap: 12px;
    align-items: start;
  }

  .profile-summary-list .bill-summary-row strong {
    min-width: 0;
    text-align: right;
  }

  .profile-security-card .form-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

.empty-state-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.empty-state-card p {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  margin: 0 auto;
}

/* Notification panel row */
.notifications-panel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification-panel-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFF;
  position: relative;
  cursor: pointer;
}

.notification-panel-row.unread {
  background: rgba(21, 87, 255, 0.02);
  border-color: rgba(21, 87, 255, 0.15);
}

.notification-panel-row.unread::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.notification-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.notification-content-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  padding-right: 16px;
}

.notification-content-text p {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px;
}

.notification-content-text small {
  font-size: 10px;
  color: #9aa1ad;
  font-weight: 600;
}

/* Sticky payment button (WebView/mobile convenience) */
.mobile-sticky-btn-wrapper {
  display: none;
}

/* Confirmation Modal Component */
.app-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 25, 54, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.app-modal-overlay.active {
  display: flex;
}

.app-modal-card {
  background: #FFF;
  border-radius: 20px;
  width: min(100%, 420px);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: modalScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.app-modal-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.app-modal-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.app-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.app-modal-actions button {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
}

.app-modal-actions button.cancel-btn {
  background: var(--cream);
  color: var(--navy);
}

.app-modal-actions button.confirm-btn {
  background: var(--blue);
  color: #FFF;
}

/* Toast Notification systems */
.toast-container {
  position: fixed;
  top: 104px;
  right: 28px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
  pointer-events: none;
}

.toast-message {
  background: #FFF;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(9, 25, 54, 0.1);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  animation: slideInLeft 0.3s ease;
  border-left: 4px solid var(--blue);
  pointer-events: auto;
}

.toast-message.success { border-left-color: var(--success); }
.toast-message.error { border-left-color: var(--error); }
.toast-message.warning { border-left-color: var(--warning); }

@keyframes slideInLeft {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast-message span {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.toast-message > i {
  flex: 0 0 auto;
  color: var(--blue);
}

.toast-message.success > i { color: var(--success); }
.toast-message.error > i { color: var(--error); }
.toast-message.warning > i { color: var(--warning); }

.toast-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 700px) {
  .toast-container {
    top: 74px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}

/* Outage message box */
.outage-alert-box {
  background: #fff0ea;
  color: var(--orange);
  border: 1px solid #ffdcd0;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Top header and Bottom Navigation Layouts */
.mobile-top-header {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

/* Safe Area Utility */
.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

/* -------------------------------------------------------------
   RESPONSIVE OVERRIDES
------------------------------------------------------------- */
@media (max-width: 900px) {
  .app-sidebar {
    transform: translateX(-260px);
  }
  
  .app-sidebar.active {
    transform: translateX(0);
  }
  
  .app-main {
    margin-left: 0;
  }
  
  .app-header {
    display: none; /* Mobile has top bar */
  }
  
  .app-container {
    padding: 20px;
    padding-bottom: calc(84px + env(safe-area-inset-bottom)); /* Leave space for bottom nav */
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile Top Header Display */
  .mobile-top-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    gap: 6px;
  }
  
  .mobile-menu-burger {
    font-size: 18px;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-top-header .brand {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }

  .mobile-top-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .mobile-top-header .wallet-balance-chip {
    padding: 5px 10px;
    gap: 5px;
    border-radius: 20px;
  }

  .mobile-top-header .wallet-balance-chip i {
    font-size: 11px;
  }

  .mobile-top-header .wallet-balance-chip strong {
    font-size: 12px;
  }

  .mobile-top-header .header-action-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .mobile-top-header .header-profile-avatar {
    width: 32px;
    height: 32px;
    font-size: 11px;
    flex-shrink: 0;
  }

  @media (max-width: 400px) {
    .mobile-top-header .brand span span {
      display: none;
    }
    .mobile-top-header .wallet-balance-chip {
      padding: 4px 8px;
    }
  }

  /* Mobile Bottom Nav Display */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #FFF;
    border-top: 1px solid var(--line);
    z-index: 480;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    gap: 4px;
    flex: 1;
    height: 100%;
    cursor: pointer;
  }

  .mobile-nav-item.active {
    color: var(--blue);
  }

  .mobile-nav-item i {
    font-size: 18px;
  }

  .dashboard-summary-card {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
  }

  .dashboard-summary-right {
    justify-content: space-between;
    padding: 14px 18px;
  }
  
  .summary-balance-amount {
    font-size: 24px;
  }

  .auth-split-wrapper,
  .auth-split-wrapper.active {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .auth-split-promo {
    display: none !important;
  }
  
  .auth-split-form-container {
    padding: 24px 16px !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .mobile-sticky-btn-wrapper {
    display: block;
    position: fixed;
    bottom: calc(64px + env(safe-area-inset-bottom));
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, #FFF 80%, rgba(255,255,255,0));
    z-index: 450;
  }

  .mobile-sticky-btn-wrapper button {
    width: 100%;
    height: 48px;
    box-shadow: 0 4px 16px rgba(21, 87, 255, 0.25);
  }
}

/* Visual Alignment Updates for Auth Screens */
.promo-brand-svg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-middle h2 em {
  position: relative;
  display: inline-block;
}

.promo-middle h2 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.promo-vector-container {
  margin-top: auto;
  opacity: 0.85;
}

.promo-city-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Compliance Footer */
.compliance-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  justify-content: space-between;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.compliance-item i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

/* Premium Inputs with prefixes and suffixes */
.input-group-premium {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.input-group-premium i.prefix-icon {
  position: absolute;
  left: 16px;
  color: #98a2b3;
  font-size: 14px;
  pointer-events: none;
}

.input-group-premium .prefix-country {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  background: #f8f9fa;
  border-right: 1px solid #dce1e8;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.input-group-premium input {
  color: #1b2948;
  background: #fff;
  border: 1px solid #dce1e8;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.input-group-premium input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.1);
}

.input-group-premium.has-prefix-icon input {
  padding-left: 44px;
}

.input-group-premium.has-country-prefix input {
  padding-left: 76px;
}

.input-group-premium i.suffix-icon {
  position: absolute;
  right: 16px;
  color: #98a2b3;
  font-size: 14px;
  cursor: pointer;
}

/* Secondary white outlines buttons */
.button-outline-blue {
  background: #FFF;
  color: var(--blue);
  border: 1.5px solid rgba(21, 87, 255, 0.4);
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-outline-blue:hover {
  background: rgba(21, 87, 255, 0.03);
  border-color: var(--blue);
}

/* Shield Check Badge (OTP page) */
.shield-check-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(22, 163, 106, 0.08);
  color: var(--success);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

/* Operator premium grid cells selector */
.operator-select {
  position: relative;
}

.operator-select-trigger {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.operator-select-trigger:focus,
.operator-select.open .operator-select-trigger {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 255, 0.1);
}

.operator-select-trigger img,
.operator-select-option img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #f2f4f7;
}

.operator-select-trigger span {
  flex: 1;
  text-align: left;
}

.operator-select-trigger .fa-chevron-down {
  color: var(--muted);
  font-size: 10px;
  transition: transform 0.2s ease;
}

.operator-select.open .fa-chevron-down {
  transform: rotate(180deg);
}

.operator-select-menu {
  display: none;
  position: absolute;
  z-index: 50;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(16, 24, 40, 0.16);
}

.operator-select.open .operator-select-menu {
  display: block;
}

.operator-select-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.operator-select-option:hover,
.operator-select-option.selected {
  background: #edf3ff;
  color: var(--blue);
}

.operator-logo-fallback {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.operator-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.operator-cell-premium {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.operator-cell-premium:hover {
  border-color: rgba(21, 87, 255, 0.4);
  background: rgba(21, 87, 255, 0.02);
}

.operator-cell-premium.selected {
  border-color: var(--blue);
  background: rgba(21, 87, 255, 0.04);
}

.operator-cell-logo {
  height: 32px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.operator-cell-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
}

.operator-cell-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid var(--line);
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.operator-cell-premium.selected .operator-cell-radio {
  border-color: var(--blue);
}

.operator-cell-premium.selected .operator-cell-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Success payment amount panel box */
.success-amount-panel {
  background: rgba(22, 163, 106, 0.08);
  border: 1.5px solid rgba(22, 163, 106, 0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.success-amount-panel span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}

.success-amount-panel strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--success);
}

/* Choose amount grids cards selector */
.quick-amount-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.quick-amount-cell {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-amount-cell:hover {
  border-color: rgba(21, 87, 255, 0.4);
}

.quick-amount-cell.selected {
  border-color: var(--blue);
  background: rgba(21, 87, 255, 0.04);
  color: var(--blue);
}

/* Premium Autofill resets */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: var(--navy) !important;
  font-family: inherit !important;
}

/* Universal Fintech Select Overrides */
select {
  background-color: #ffffff !important;
  border: 1.5px solid #d0d5dd !important;
  border-radius: 12px !important;
  height: 50px !important;
  padding: 0 40px 0 16px !important;
  font-weight: 600 !important;
  color: #101828 !important;
  font-size: 14px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05) !important;
  transition: all 0.2s ease !important;
  outline: none !important;
}

select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(21, 87, 255, 0.12) !important;
}

/* Category Grid Improvements */
.quick-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.category-action-card {
  background: #ffffff;
  border: 1.5px solid #eaecf0;
  border-radius: 14px;
  padding: 22px 18px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(16, 24, 40, 0.02);
}

.category-action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 87, 255, 0.35);
  box-shadow: 0 12px 24px -4px rgba(21, 87, 255, 0.12);
}

.category-action-card i {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(21, 87, 255, 0.08);
  color: var(--blue);
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

.category-action-card:hover i {
  background: var(--blue);
  color: #ffffff;
}

.category-action-card span {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.category-action-card small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
}

/* Category Color Tints */
.category-action-card.cat-electricity i { background: #FEF3C7; color: #D97706; }
.category-action-card.cat-gas i { background: #FEE2E2; color: #DC2626; }
.category-action-card.cat-water i { background: #E0F2FE; color: #0284C7; }
.category-action-card.cat-broadband i { background: #F3E8FF; color: #7E22CE; }
.category-action-card.cat-fastag i { background: #D1FAE5; color: #059669; }
.category-action-card.cat-insurance i { background: #EEF2FF; color: #4F46E5; }
.category-action-card.cat-cable i { background: #E0E7FF; color: #4338CA; }
.category-action-card.cat-dth i { background: #DBEAFE; color: #2563EB; }
.category-action-card.cat-credit-card i { background: #FFE4E6; color: #E11D48; }
.category-action-card.cat-education i { background: #FEF3C7; color: #B45309; }
.category-action-card.cat-clubs i { background: #FCE7F3; color: #BE185D; }
.category-action-card.cat-loan i { background: #D1FAE5; color: #047857; }
.category-action-card.cat-municipal i { background: #E2E8F0; color: #334155; }
.category-action-card.cat-housing i { background: #CCFBF1; color: #0F766E; }
.category-action-card.cat-health i { background: #FEE2E2; color: #B91C1C; }
.category-action-card.cat-subscription i { background: #F3E8FF; color: #7E22CE; }
.category-action-card.cat-mobile i { background: #DBEAFE; color: #1D4ED8; }
.category-action-card.cat-telephone i { background: #E0F2FE; color: #0369A1; }
.category-action-card.cat-utility i { background: #F1F5F9; color: #475569; }
.biller-search-control { position:relative; overflow:visible !important; }
.biller-search-dropdown { display:none; position:absolute; z-index:30; top:calc(100% + 6px); left:0; right:0; max-height:260px; overflow-y:auto; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:0 14px 30px rgba(16,24,40,.14); padding:6px; }
.biller-search-dropdown.active { display:block; }
.biller-search-option { width:100%; border:0; background:#fff; border-radius:8px; padding:10px 12px; display:flex; gap:10px; align-items:center; text-align:left; cursor:pointer; color:var(--navy); }
.biller-search-option:hover, .biller-search-option:focus { background:#f0f5ff; outline:none; }
.biller-search-option > i { color:var(--blue); width:18px; text-align:center; }
.biller-search-option span, .biller-search-option strong, .biller-search-option small { display:block; min-width:0; }
.biller-search-option strong { font-size:12px; }
.biller-search-option small { margin-top:2px; color:var(--muted); font-size:10px; }
.biller-search-empty { padding:14px; text-align:center; color:var(--muted); font-size:12px; }
.recent-paid-bill { width:100%; border:1px solid var(--line); font-family:inherit; }
.recent-paid-bill strong, .recent-paid-bill small { display:block; text-align:left; }
.recent-paid-bill strong { font-size:12px; color:var(--navy); }
.recent-paid-bill small { margin-top:3px; font-size:10px; color:var(--muted); overflow-wrap:anywhere; }
.recent-paid-bill > i { margin-left:auto; color:var(--muted); font-size:10px; }

/* 2-Column Split Layout Containers for Desktop */
.portal-flow-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 991px) {
  .portal-flow-split {
    grid-template-columns: 1fr;
  }
}

/* Side Panel Promo Cards */
.side-promo-card {
  background: #ffffff;
  border: 1.5px solid #eaecf0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.03);
}

.side-promo-card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-account-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-account-chip:hover {
  border-color: var(--blue);
  background: #f0f5ff;
}

.offer-badge-box {
  background: linear-gradient(135deg, #1557ff 0%, #0040e5 100%);
  border-radius: 14px;
  padding: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.offer-badge-box::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* Input Groups with Prefix Icons */
.input-group-premium.has-prefix-icon select {
  padding-left: 44px !important;
}

.input-group-premium.has-prefix-icon i.prefix-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #98a2b3;
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
}

.input-group-premium.has-prefix-icon input {
  padding-left: 44px !important;
}

/* Primary Button Gradient & Hover Glow */
button.primary {
  background: linear-gradient(135deg, #1557FF 0%, #0040E5 100%) !important;
  box-shadow: 0 4px 14px rgba(21, 87, 255, 0.35) !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  height: 52px !important;
  border: 0 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

button.primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(21, 87, 255, 0.45) !important;
  background: linear-gradient(135deg, #0040E5 0%, #0032B8 100%) !important;
}

/* =============================================================
   ENHANCED MOBILE APP & LANDING PAGE RESPONSIVE STYLES
   ============================================================= */

/* Ensure Mobile Top Header & Mobile Bottom Nav are hidden on Desktop */
@media (min-width: 901px) {
  .mobile-top-header,
  .mobile-bottom-nav,
  .sidebar-backdrop {
    display: none !important;
  }
}

/* Mobile & Tablet Devices (<= 900px) */
@media (max-width: 900px) {
  /* Layout adjustments */
  .app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    z-index: 999;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 24, 40, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
  }

  .sidebar-backdrop.active {
    display: block;
  }

  .app-container {
    padding: 16px;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  /* Improved Mobile Bottom Navigation Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(228, 231, 236, 0.8);
    z-index: 950;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(16, 24, 40, 0.06);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #667085;
    font-size: 10px;
    font-weight: 700;
    gap: 3px;
    flex: 1;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
  }

  .mobile-nav-item.active {
    color: var(--blue);
  }

  .mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--blue);
    border-radius: 0 0 4px 4px;
  }

  .mobile-nav-item i {
    font-size: 18px;
  }

  /* Landing Page Topbar Header on Mobile */
  .topbar {
    padding: 12px 16px;
    height: auto;
    min-height: 64px;
  }

  .topbar nav {
    display: none;
  }

  .topbar .header-actions .text-button {
    display: none;
  }

  /* Landing Hero & Payment Widget on Mobile */
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    word-spacing: normal;
  }

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

  .service-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .service-tabs button {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Dashboard Categories Grid on Mobile */
  .quick-categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .category-action-card {
    padding: 16px 12px !important;
    border-radius: 12px !important;
  }

  .category-action-card i {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .category-action-card span {
    font-size: 13px !important;
  }

  /* Form & Step Grids on Mobile */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  select {
    font-size: 13px !important;
    padding: 0 32px 0 12px !important;
    background-position: right 10px center !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .quick-amount-selector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* General Section Padding & Title Stack on Mobile */
  .section {
    padding: 44px 16px !important;
  }

  .section-title {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .section-title h2, 
  .how h2, 
  .security h2, 
  .contact h2 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.4px !important;
    margin: 8px 0 10px !important;
    word-break: break-word !important;
  }

  .section-title > p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
  }

  /* Operators Trust Banner on Mobile */
  .operators {
    height: auto !important;
    padding: 16px 14px !important;
    gap: 18px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
  }

  .operators > span,
  .operators b {
    flex-shrink: 0 !important;
    font-size: 15px !important;
  }

  /* Services Grid on Mobile */
  .service-grid {
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
    margin-top: 20px !important;
  }

  .service-grid article {
    grid-template-columns: 44px 1fr auto !important;
    padding: 18px 16px !important;
    min-height: auto !important;
    gap: 12px !important;
  }

  .service-grid article p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .service-grid h3 {
    font-size: 15px !important;
  }

  /* How It Works Section on Mobile */
  .how {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .phone-mock {
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    border-width: 6px !important;
    padding: 20px !important;
  }

  /* Security Section on Mobile */
  .security {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .security-cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .security-cards article {
    min-height: auto !important;
    padding: 20px 18px !important;
  }

  .security-cards span {
    margin-bottom: 18px !important;
  }

  /* CTA Section on Mobile */
  .cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    padding: 36px 20px !important;
    margin: 0 16px 24px !important;
    border-radius: 20px !important;
  }

  .cta h2 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
  }

  .cta .primary.light {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Footer on Mobile */
  footer {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 32px 18px calc(80px + env(safe-area-inset-bottom)) !important;
    text-align: center !important;
  }

  footer > p {
    text-align: center !important;
  }

  footer div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Contact section layout */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Touch tables horizontal scroll wrapper */
  .table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
  }

  table {
    min-width: 600px;
  }
}

/* Small Smartphone Devices (<= 600px) */
@media (max-width: 600px) {
  .hero-copy h1,
  .hero h1 {
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    word-spacing: normal;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
  }

  .trust-row strong {
    font-size: 16px;
  }

  .trust-row span {
    font-size: 10px;
  }

  .dashboard-summary-card {
    padding: 16px;
    border-radius: 14px;
  }

  .dashboard-summary-left h2 {
    font-size: 18px;
  }

  .step-progress-node .step-node-label {
    font-size: 10px;
  }

  .quick-categories-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* Optimize modal on small mobile */
  .app-modal-card {
    width: 92%;
    padding: 20px;
    border-radius: 16px;
  }
}

/* =============================================================
   NEW FINTECH DESIGN SYSTEM OVERRIDES & COMPONENT STYLING
   ============================================================= */

.transaction-item-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #ffffff !important;
  border: 1px solid #eaecf0 !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  margin-bottom: 12px !important;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.transaction-item-row:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(21, 87, 255, 0.08) !important;
  border-color: #d0d5dd !important;
}

.transaction-item-icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 12px !important;
  background: rgba(21, 87, 255, 0.08) !important;
  color: var(--blue) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  flex-shrink: 0 !important;
  margin-right: 16px !important;
}

.transaction-item-info {
  flex-grow: 1 !important;
}

.transaction-item-info h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #101828 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
}

.transaction-item-info p {
  font-size: 12px !important;
  color: #667085 !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

.transaction-item-amount {
  text-align: right !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 4px !important;
}

.transaction-item-amount strong {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #101828 !important;
}

.badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.2px !important;
}

.badge.success {
  background: #ecfdf3 !important;
  color: #027a48 !important;
  border: 1px solid #abefc6 !important;
}

.badge.error {
  background: #fef3f2 !important;
  color: #b42318 !important;
  border: 1px solid #fecdca !important;
}

.badge.warning {
  background: #fffaeb !important;
  color: #b54708 !important;
  border: 1px solid #fedf89 !important;
}

.notification-item-card {
  background: #ffffff !important;
  border: 1px solid #eaecf0 !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  margin-bottom: 12px !important;
  box-shadow: 0 1px 3px rgba(16,24,40,0.03) !important;
  transition: all 0.2s ease !important;
}

.notification-item-card.unread {
  background: #f0f5ff !important;
  border-color: #b2ccff !important;
}

.dashboard-card {
  background: #ffffff !important;
  border: 1px solid #eaecf0 !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.04) !important;
  margin-bottom: 24px !important;
}

.empty-state-card {
  text-align: center !important;
  padding: 48px 24px !important;
  background: #ffffff !important;
  border: 1.5px dashed #eaecf0 !important;
  border-radius: 18px !important;
  margin: 16px 0 !important;
}

.empty-state-card i {
  font-size: 40px !important;
  color: #98a2b3 !important;
  margin-bottom: 12px !important;
}

.empty-state-card h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #101828 !important;
  margin-bottom: 4px !important;
}

.empty-state-card p {
  font-size: 13px !important;
  color: #667085 !important;
  margin: 0 !important;
}

/* ==========================================
   BHARAT CONNECT (BBPS) COMPLIANCE STYLES
   ========================================== */
.bbps-logo-img {
  width: 140px !important;
  max-width: 140px !important;
  height: auto !important;
  display: inline-block !important;
  object-fit: contain !alignment;
  vertical-align: middle !important;
}

@media (max-width: 768px) {
  .bbps-logo-img {
    width: 100px !important;
    max-width: 100px !important;
  }
}

.bbps-header-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  padding: 6px 14px !important;
  border-radius: 10px !important;
}

.bbps-powered-tag {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  line-height: 1.3 !important;
}

.bbps-banner-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0f5ff 100%) !important;
  border: 1px solid #b2ccff !important;
  border-radius: 18px !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 16px rgba(0, 71, 186, 0.05) !important;
}

.bbps-banner-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-bottom: 16px !important;
}

.bbps-action-btns-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.bbps-card-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #0047ba !important;
  background: #eff6ff !important;
  border: 1px solid #bfdbfe !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  margin-top: 6px !important;
}

.bbps-footer-section {
  background: #0f172a !important;
  color: #94a3b8 !important;
  padding: 40px 24px 28px !important;
  margin-top: 48px !important;
  border-top: 1px solid #1e293b !important;
  border-radius: 20px 20px 0 0 !important;
}

.bbps-footer-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid #1e293b !important;
}

.bbps-footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px 28px !important;
  margin: 24px 0 !important;
}

.bbps-footer-links a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
}

.bbps-footer-links a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.bbps-disclaimer-text {
  font-size: 11px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px dashed #1e293b !important;
}
