/* ==========================================================================
   MNSB Bank - Merchant UPI QR Service CSS Design System
   Modern Banking & Digital Payment Solution - Powered by GetePay
   ========================================================================== */

:root {
  --primary: #1252a4;
  --primary-glow: rgba(18, 82, 164, 0.15);
  --primary-dark: #093770;
  --primary-gradient: linear-gradient(135deg, #0a2540 0%, #1252a4 100%);
  --accent: #ff6f00;
  --accent-glow: rgba(255, 111, 0, 0.25);
  --accent-dark: #cc5900;
  --accent-gradient: linear-gradient(135deg, #ff512f 0%, #f09819 100%);
  --upi-gradient: linear-gradient(135deg, #0974f1 0%, #00b4db 100%);
  --bg-dark: #0b0f19;
  --bg-light: #f8fafc;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-muted-dark: #94a3b8;
  --card-dark: rgba(15, 23, 42, 0.6);
  --card-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
  --border-radius: 16px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Modern Resets for the Page */
.upi-service-page {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

.upi-service-page h1, 
.upi-service-page h2, 
.upi-service-page h3, 
.upi-service-page h4, 
.upi-service-page h5, 
.upi-service-page h6 {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px var(--accent-glow); }
  50% { box-shadow: 0 0 35px rgba(255, 111, 0, 0.5); }
  100% { box-shadow: 0 0 15px var(--accent-glow); }
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes soundwave {
  0%, 100% { height: 10px; }
  50% { height: 60px; }
}

@keyframes float-badge {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes grid-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Hero Section */
.upi-hero {
  position: relative;
  background: var(--primary-gradient);
  color: var(--text-light);
  padding: 120px 0 80px 0;
  overflow: hidden;
}

.upi-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 111, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 85%, rgba(18, 82, 164, 0.4) 0%, transparent 60%);
  z-index: 1;
}

.upi-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  z-index: 1;
  animation: grid-glow 8s infinite ease-in-out;
}

.upi-hero-content {
  position: relative;
  z-index: 10;
}

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: float-badge 4s infinite ease-in-out;
}

.partnership-badge span.partner-highlight {
  color: #ff9d00;
  font-weight: 700;
}

.upi-hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #ffca80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.upi-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.7;
}

.upi-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 45px;
}

.upi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-decoration: none !important;
  cursor: pointer;
}

.upi-btn-primary {
  background: var(--accent-gradient);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
  animation: pulse-glow 3s infinite ease-in-out;
}

.upi-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.55);
  color: white;
}

.upi-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.upi-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.upi-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.upi-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* Floating QR Graphic */
.upi-hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 10;
}

.qr-card-holder {
  animation: float 6s infinite ease-in-out;
  perspective: 1000px;
}

.qr-glass-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 30px;
  width: 320px;
  backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.qr-card-header img {
  height: 25px;
}

.qr-code-body {
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
}

.qr-code-body img.qr-image {
  width: 180px;
  height: 180px;
  display: block;
}

.qr-code-body::after {
  content: 'BHIM UPI';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.qr-card-footer {
  text-align: center;
  width: 100%;
}

.qr-card-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.qr-card-footer .merchant-name {
  font-weight: 700;
  color: white;
  margin-top: 4px;
  font-size: 1rem;
}

/* Glow effects behind QR */
.glow-ring-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18, 82, 164, 0.4) 0%, transparent 70%);
  z-index: -1;
}

.glow-ring-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.25) 0%, transparent 70%);
  z-index: -2;
}

/* Stats Counter Grid inside Hero */
.upi-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #ff9d00;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-top: 4px;
}

/* Horizontal UPI Apps Ticker */
.upi-ticker-section {
  background: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #e2e8f0;
}

.ticker-title {
  text-align: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.ticker-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.ticker-container::before,
.ticker-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 5;
}

.ticker-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.ticker-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  align-items: center;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #334155;
}

.ticker-item img {
  height: 28px;
  object-fit: contain;
}

/* Features Section (Bento Grid) */
.upi-features-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  background-color: var(--primary-glow);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--card-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(18, 82, 164, 0.2);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.bento-card:hover::before {
  background: var(--primary-gradient);
}

/* Grid Spans */
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.bento-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-icon-wrapper {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.05);
}

.bento-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.bento-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Highlight Card Accent Styles */
.bento-card.highlight-accent {
  background: var(--primary-gradient);
  color: white;
  border: none;
}

.bento-card.highlight-accent .bento-card-title {
  color: white;
}

.bento-card.highlight-accent .bento-card-desc {
  color: var(--text-muted-dark);
}

.bento-card.highlight-accent .bento-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  color: #ff9d00;
}

.bento-card.highlight-accent:hover .bento-icon-wrapper {
  background: var(--accent-gradient);
  color: white;
}

/* Soundbox Highlight Section */
.soundbox-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.soundbox-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.soundbox-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.soundbox-speaker-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px;
  width: 340px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.speaker-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.speaker-top .brand {
  font-weight: 800;
  color: #ff9d00;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.speaker-grille {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #0f172a 60%, #1e293b 100%);
  border: 4px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.speaker-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff6f00;
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.6);
  animation: pulse-glow 2s infinite ease-in-out;
}

.soundwave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 80px;
  margin-bottom: 20px;
  width: 100%;
}

.soundwave-bar {
  width: 4px;
  background: linear-gradient(to top, #ff6f00, #ffba08);
  border-radius: 10px;
  animation: soundwave 1.2s ease-in-out infinite;
}

.soundwave-bar:nth-child(1) { animation-delay: 0.1s; height: 30px; }
.soundwave-bar:nth-child(2) { animation-delay: 0.3s; height: 50px; }
.soundwave-bar:nth-child(3) { animation-delay: 0.5s; height: 75px; }
.soundwave-bar:nth-child(4) { animation-delay: 0.2s; height: 40px; }
.soundwave-bar:nth-child(5) { animation-delay: 0.4s; height: 60px; }
.soundwave-bar:nth-child(6) { animation-delay: 0.6s; height: 80px; }
.soundwave-bar:nth-child(7) { animation-delay: 0.3s; height: 50px; }
.soundwave-bar:nth-child(8) { animation-delay: 0.1s; height: 30px; }

.voice-alert-bubble {
  background: rgba(255, 111, 0, 0.15);
  border: 1px solid rgba(255, 111, 0, 0.3);
  padding: 12px 20px;
  border-radius: 16px 16px 0 16px;
  position: absolute;
  top: -30px;
  right: -50px;
  max-width: 220px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.voice-alert-bubble p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}

.voice-alert-bubble p span.amount {
  color: #ff9d00;
  font-weight: 800;
  font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.step-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.step-flow::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #e2e8f0;
  z-index: 1;
}

.step-flow-progress {
  content: '';
  position: absolute;
  top: 55px;
  left: 10%;
  width: 40%;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-node {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28%;
  text-align: center;
}

.step-number-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: white;
  border: 4px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-muted);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.step-node.active .step-number-box {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(18, 82, 164, 0.2);
  transform: scale(1.05);
}

.step-node:hover .step-number-box {
  transform: scale(1.08);
}

.step-node.completed .step-number-box {
  border-color: #10b981;
  color: #10b981;
  background-color: #ecfdf5;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Merchant Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.benefit-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.benefit-box-title {
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.benefit-icon.success {
  background-color: #d1fae5;
  color: #10b981;
}

.benefit-text h4 {
  font-size: 1.05rem;
  margin: 0 0 4px 0;
  font-weight: 700;
  color: var(--text-dark);
}

.benefit-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Dashboard Live Preview Section */
.dashboard-preview-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.dashboard-mockup {
  background: #0f172a;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  background: #1e293b;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #f59e0b; }
.mockup-dot.green { background-color: #10b981; }

.mockup-title {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
}

.mockup-body {
  padding: 30px;
  color: white;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.dash-main {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dash-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition-smooth);
}

.dash-stat-card:hover {
  background: rgba(255,255,255,0.06);
}

.dash-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.dash-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.dash-stat-val.highlight {
  color: #ff9d00;
}

.dash-stat-trend {
  font-size: 0.75rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.dash-recent-tx {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
}

.tx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tx-title {
  font-size: 1rem;
  font-weight: 600;
}

.tx-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tx-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-glow 1.5s infinite ease-in-out;
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.tx-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tx-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tx-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
}

.tx-app-icon.gpay { background: #1e3a8a; }
.tx-app-icon.phonepe { background: #581c87; }
.tx-app-icon.paytm { background: #0369a1; }

.tx-details h5 {
  font-size: 0.85rem;
  margin: 0 0 2px 0;
  color: white;
}

.tx-details p {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.tx-amt {
  text-align: right;
}

.tx-amt h5 {
  font-size: 0.9rem;
  margin: 0 0 2px 0;
  color: #10b981;
  font-weight: 700;
}

.tx-status {
  font-size: 0.7rem;
  color: #94a3b8;
}

.dash-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dash-qr-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dash-qr-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.dash-qr-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.dash-qr-img {
  background: white;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.dash-qr-img img {
  width: 140px;
  height: 140px;
  display: block;
}

.dash-settle-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
}

.settle-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.settle-row.total {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  font-weight: 700;
  color: white;
}

.settle-row span.label {
  color: #94a3b8;
}

/* Call To Action Section */
.upi-cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--accent-gradient);
  color: white;
  text-align: center;
  overflow: hidden;
}

.upi-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(0,0,0,0.1) 0%, transparent 40%);
  z-index: 1;
}

.upi-cta-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  z-index: 10;
}

.upi-cta-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
  position: relative;
  z-index: 10;
}

.upi-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.upi-cta-buttons .upi-btn-white {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.upi-cta-buttons .upi-btn-white:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.upi-cta-buttons .upi-btn-dark {
  background: var(--bg-dark);
  color: white;
}

.upi-cta-buttons .upi-btn-dark:hover {
  background: #1e293b;
  transform: translateY(-3px);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .upi-hero {
    padding-top: 100px;
    text-align: center;
  }
  .upi-hero-title {
    font-size: 2.6rem;
  }
  .upi-hero-subtitle {
    margin: 0 auto 30px auto;
  }
  .upi-cta-group {
    justify-content: center;
  }
  .upi-hero-graphic {
    margin-top: 50px;
  }
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .span-4, .span-6, .span-8 {
    grid-column: span 6;
  }
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .step-flow {
    flex-direction: column;
    gap: 40px;
  }
  .step-flow::before {
    display: none;
  }
  .step-node {
    width: 100%;
  }
  .step-number-box {
    margin: 0 auto 16px auto;
  }
}

@media (max-width: 575px) {
  .upi-hero-title {
    font-size: 2rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .span-4, .span-6, .span-8, .span-12 {
    grid-column: span 1;
  }
  .upi-hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .qr-glass-card {
    width: 100%;
    max-width: 290px;
    padding: 20px;
  }
  .soundbox-speaker-box {
    width: 100%;
    max-width: 290px;
    padding: 20px;
  }
  .voice-alert-bubble {
    right: 0;
    top: -40px;
  }
  .upi-cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
}
