/* ==========================================================================
   KOLHAT LANDING PAGE - STYLESHEET
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --bg-color: #010816;
  --bg-elem: #070d1d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.05);
  
  --primary: #3b82f6;
  --primary-glow: rgba(59, 130, 246, 0.15);
  --accent: #8b5cf6;
  --emerald: #10b981;
  --orange: #ea580c;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-card: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Glow Background Orbs */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 40%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(1, 8, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg {
  transform: rotate(0deg);
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-svg {
  transform: rotate(15deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.admin-link-nav {
  color: var(--accent);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.badge-glow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 4px rgba(139, 92, 246, 0.1); }
  100% { box-shadow: 0 0 16px rgba(139, 92, 246, 0.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatars {
  display: flex;
}

.avatar-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-color);
  margin-right: -10px;
  background-color: var(--bg-elem);
}

.avatar-1 { background-image: url('images/avatar1.png'); background-size: cover; background-position: center; }
.avatar-2 { background-image: url('images/avatar2.png'); background-size: cover; background-position: center; }
.avatar-3 { background-image: url('images/avatar3.png'); background-size: cover; background-position: center; }

.trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Device Mockup Graphic */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.device-mockup {
  width: 280px;
  height: 560px;
  background-color: #0b0f19;
  border-radius: 36px;
  border: 6px solid #1e293b;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
  transform: rotateY(-10deg) rotateX(10deg);
  transition: var(--transition-smooth);
}

.device-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.screen-content {
  padding: 16px 16px 54px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
}

.status-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

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

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-image: url('images/avatar1.png');
  background-size: cover;
  background-position: center;
}

.greeting {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.username {
  font-size: 0.75rem;
  font-weight: 700;
}

.notification-bell {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bell-icon-app {
  color: var(--text-main);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.bell-icon-app:hover {
  opacity: 1;
  color: var(--accent);
}

/* Real App wealthCard and virtualCard Inside Frame */
.wealth-card {
  height: 96px;
  background-color: #0047FF;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 71, 255, 0.25);
  overflow: hidden;
}

.wealth-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.balance-header {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.balance-label {
  font-size: 0.55rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eye-toggle {
  margin-left: 4px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.balance-value {
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.25px;
}

.trend-row-app {
  display: flex;
  align-items: center;
  margin-top: 4px;
  gap: 3px;
}

.trend-text-app {
  color: #10B981;
  font-size: 0.52rem;
  font-weight: 900;
}

.trend-sub-app {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.52rem;
  font-weight: 700;
}

/* Glass Virtual Card in Mockup Screen */
.virtual-card-app {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.card-brand-app {
  font-size: 0.35rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.25px;
}

.card-chip-app {
  width: 7px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1.5px;
}

.card-body-app {
  margin-top: 2px;
}

.card-chip-core-app {
  width: 9px;
  height: 6px;
  background-color: rgba(218, 165, 32, 0.8);
  border-radius: 1.5px;
  margin-bottom: 2px;
}

.card-number-app {
  font-size: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: monospace;
  letter-spacing: 0.5px;
}

.card-footer-app {
  align-self: flex-end;
  display: flex;
}

.card-type-app {
  font-size: 0.45rem;
  font-weight: 900;
  color: #ffffff;
  font-style: italic;
}

/* QuickActions Container matching app */
.quick-actions-container-app {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.action-item-app {
  align-items: center;
  width: 18%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.action-icon-bg-app {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #070D1D;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.action-icon-bg-app:hover {
  transform: scale(1.05);
  background-color: #0d162d;
}

.border-white { border-color: rgba(255, 255, 255, 0.05); color: #ffffff; }
.border-emerald { border-color: rgba(16, 185, 129, 0.1); color: #10B981; }
.border-purple { border-color: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.border-orange { border-color: rgba(234, 88, 12, 0.1); color: #EA580C; }
.border-blue { border-color: rgba(59, 130, 246, 0.1); color: #3B82F6; }

.action-icon-symbol {
  font-size: 0.65rem;
}

.action-label-app {
  font-size: 0.45rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

/* Savings Promo Card Mockup inside device screen */
.promo-card-app {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.promo-details-app {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-title-app {
  font-size: 0.65rem;
  font-weight: 900;
  color: #ffffff;
}

.promo-desc-app {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.promo-button-app {
  font-size: 0.55rem;
  font-weight: 900;
  color: #3B82F6;
  background-color: rgba(59, 130, 246, 0.15);
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
}

/* Recent Activity List Mockup inside device screen */
.activities-container-app {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.activities-header-app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.section-header-app {
  font-size: 0.55rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-text-app {
  font-size: 0.55rem;
  font-weight: 900;
  color: #3B82F6;
  text-transform: uppercase;
  cursor: pointer;
}

.activity-list-app {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-item-app {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-icon-bg-app {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-orange-light {
  background-color: rgba(245, 158, 11, 0.15);
}

.icon-emerald-light {
  background-color: rgba(16, 185, 129, 0.15);
}

.activity-symbol-text {
  font-size: 0.75rem;
}

.activity-details-app {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-title-app {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
}

.activity-date-app {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.4);
}

.activity-right-app {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.activity-amount-app {
  font-size: 0.6rem;
  font-weight: 900;
}

.amount-orange {
  color: #F59E0B;
}

.amount-emerald {
  color: #10B981;
}

.activity-status-app {
  font-size: 0.42rem;
  color: #10B981;
  text-transform: lowercase;
}

.activity-logo-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* Floating Custom Bottom Navigation Bar matching the app */
.nav-wrapper-app {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: transparent;
}

.nav-app {
  height: 38px;
  background-color: #0b1220;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.tab-item-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-item-app.active-tab {
  color: var(--accent); /* active tab is purple/accent */
}

.tab-item-app:hover {
  color: #ffffff;
}

.tab-icon-svg {
  width: 10px;
  height: 10px;
}

.tab-label-app {
  font-size: 0.38rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  margin-top: 1px;
}

.fab-wrapper-app {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -16px;
}

.fab-app {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0047FF;
  border: 2px solid #010816;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 71, 255, 0.4);
  transition: var(--transition-smooth);
}

.fab-app:hover {
  transform: scale(1.1);
  background-color: #1d4ed8;
}

/* Radial menu popup overlay inside mockup screen */
.radial-menu-app {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
  border-radius: 30px;
}

.radial-menu-app.active {
  opacity: 1;
  pointer-events: auto;
}

.radial-content-app {
  width: 120px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 58px; /* sits right above the bottom menu FAB */
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.radial-menu-app.active .radial-content-app {
  transform: translateY(0);
}

.radial-btn-app {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0B1220;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}

.radial-btn-app:hover {
  transform: scale(1.1);
  background-color: #121b2d;
}

.radial-label-app {
  color: #ffffff;
  font-size: 0.42rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 0.25px;
}

/* Simulated Camera/QR Scanner inside mockup screen */
.camera-scanner-app {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #010816;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 110;
  border-radius: 30px;
}

.camera-scanner-app.active {
  opacity: 1;
  pointer-events: auto;
}

.scanner-header-app {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scanner-title-app {
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scanner-close-btn-app {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-smooth);
}

.scanner-close-btn-app:hover {
  color: #ffffff;
}

.scanner-viewfinder-app {
  width: 130px;
  height: 130px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.02);
}

.scanner-laser-app {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: laserScan 2s infinite ease-in-out;
}

@keyframes laserScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.scanner-corners-app {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 15px rgba(16, 185, 129, 0.1);
  pointer-events: none;
}

.scanner-logo-overlay {
  opacity: 0.8;
  animation: pulseLogo 2s infinite alternate;
}

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

.scanner-hint-app {
  color: rgba(255,255,255,0.4);
  font-size: 0.52rem;
  text-align: center;
  margin-bottom: 20px;
}

/* Onboarding & PIN Screen Simulator styles */
.step-hidden {
  display: none !important;
}

/* STEP 1: Onboarding Simulator Screen */
.screen-step-onboarding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
  background-color: #010816;
  animation: fadeInStep 0.4s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.onboarding-carousel-app {
  width: 100%;
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboarding-slide-app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateX(18px);
}

.onboarding-slide-app.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.onboarding-graphics-app {
  width: 100%;
  height: 100px;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Shield check styles (Slide 1) */
.shield-graphic-app {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseShield 2s infinite ease-in-out;
}

@keyframes pulseShield {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.check-overlay-app {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}

/* Cards stack styles (Slide 2) */
.cards-stack-graphics-app {
  perspective: 600px;
}

.overlap-card-stack {
  width: 100px;
  height: 64px;
  border-radius: 8px;
  position: absolute;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

/* Card Slot Positions mimicking App Onboarding Stack */
.slot-0 {
  transform: translate(-30px, 14px) scale(1.0);
  opacity: 1.0;
  z-index: 5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(255,255,255,0.12);
}

.slot-1 {
  transform: translate(-18px, 6px) scale(0.93);
  opacity: 0.85;
  z-index: 4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.slot-2 {
  transform: translate(-6px, -2px) scale(0.86);
  opacity: 0.65;
  z-index: 3;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.slot-3 {
  transform: translate(6px, -10px) scale(0.79);
  opacity: 0.45;
  z-index: 2;
}

.slot-4 {
  transform: translate(18px, -18px) scale(0.72);
  opacity: 0.25;
  z-index: 1;
}

/* Slideout animation transition state */
.slot-slideout {
  transform: translate(-140px, 24px) rotate(-15deg) scale(1.0);
  opacity: 0 !important;
  z-index: 6;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.mini-svg-card text {
  font-family: 'Inter', sans-serif;
}

/* Mobile money badge styles (Slide 3) */
.momo-badge-app {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #070d1d;
}

.momo-badge-app img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.momo-orange {
  left: 45px;
  top: 15px;
  transform: rotate(-12deg);
  animation: floatBadge1 3s infinite ease-in-out;
}

.momo-afri {
  left: 90px;
  top: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 2;
  animation: floatBadge2 3.2s infinite ease-in-out;
}

.momo-q {
  right: 45px;
  top: 20px;
  transform: rotate(15deg);
  animation: floatBadge3 2.8s infinite ease-in-out;
}

@keyframes floatBadge1 {
  0% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-5px) rotate(-12deg); }
  100% { transform: translateY(0) rotate(-12deg); }
}

@keyframes floatBadge2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

@keyframes floatBadge3 {
  0% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-4px) rotate(15deg); }
  100% { transform: translateY(0) rotate(15deg); }
}

/* Profiles connection styles (Slide 4) */
.profile-circle-app {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
}

.profile-1 {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  margin-right: -8px;
}

.profile-2 {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  margin-left: -8px;
}

.profile-arrow-app {
  font-size: 0.72rem;
  color: #3B82F6;
  z-index: 2;
  background-color: #1e293b;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.1);
  font-weight: bold;
}

.onboarding-title-app {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  text-align: center;
}

.onboarding-desc-app {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  margin-bottom: 12px;
  padding: 0 10px;
  text-align: center;
}

/* Footer slide dots & button */
.onboarding-footer-app {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

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

.onboarding-dot-app {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  transition: var(--transition-smooth);
}

.onboarding-dot-app.active {
  background-color: #0047FF;
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(0, 71, 255, 0.6);
}

.btn-app-next {
  width: 90%;
  height: 34px;
  border-radius: 10px;
  background-color: #0047FF;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 71, 255, 0.4);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-app-next:hover {
  transform: translateY(-2px);
  background-color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(0, 71, 255, 0.5);
}

/* STEP 2: Secure PIN Screen */
.screen-step-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 24px 20px;
  background-color: #010816;
  animation: fadeInStep 0.4s ease;
}

.pin-header-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 8px;
}

.avatar-large-app {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-image: url('images/avatar1.png');
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
}

.pin-title-app {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.pin-subtitle-app {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pin-dots-container-app {
  display: flex;
  gap: 14px;
  margin: 12px 0;
}

.pin-dot-indicator-app {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition-smooth);
}

.pin-dot-indicator-app.active {
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  transform: scale(1.15);
}

.pin-numpad-app {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
  width: 100%;
  max-width: 180px;
  margin-bottom: 4px;
}

.numpad-key-app {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.numpad-key-app.active-sim {
  background-color: rgba(0, 71, 255, 0.3) !important;
  border-color: #0047FF !important;
  transform: scale(0.95);
}

.numpad-key-app:hover {
  background-color: rgba(255,255,255,0.08);
  transform: scale(1.05);
}

.numpad-key-app:active {
  background-color: rgba(0, 71, 255, 0.3);
  border-color: #0047FF;
}

.numpad-key-empty-app {
  width: 40px;
  height: 40px;
}

.key-backspace-app {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border: none;
  background-color: transparent;
}

.key-backspace-app:hover {
  background-color: transparent;
  color: #ffffff;
}

/* STEP 3: Dashboard wrapper */
.screen-step-dashboard {
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeInStep 0.4s ease;
}

/* Core Features Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-elem);
  position: relative;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.feature-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 30px;
  transition: var(--transition-smooth);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-blue { background: rgba(59, 130, 246, 0.1); color: var(--primary); }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--accent); }
.icon-orange { background: rgba(234, 88, 12, 0.1); color: var(--orange); }
.icon-emerald { background: rgba(16, 185, 129, 0.1); color: var(--emerald); }

.feature-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* Card Deck Switcher Loop Section */
.deck-section {
  padding: 120px 0;
  position: relative;
}

.cards-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.deck-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deck-controls {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.deck-container {
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG Realistic Cards inside Web Carousel */
.web-card-wrapper {
  position: absolute;
  width: 260px;
  height: 166px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  cursor: pointer;
}

.web-card-slideout {
  transform: translateX(-180px) translateY(30px) scale(0.9) rotateZ(-10deg) !important;
  opacity: 0 !important;
  z-index: 6 !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.web-card-wrapper svg {
  border-radius: 10px;
  overflow: hidden;
}

/* Carousel 3D Card Slots Styling */
.slot-0 {
  transform: translateX(0) translateY(0) scale(1) rotateZ(0deg);
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
}

.slot-1 {
  transform: translateX(28px) translateY(-24px) scale(0.92) rotateZ(3deg);
  z-index: 4;
  opacity: 0.85;
  pointer-events: auto;
}

.slot-2 {
  transform: translateX(56px) translateY(-48px) scale(0.84) rotateZ(6deg);
  z-index: 3;
  opacity: 0.65;
  pointer-events: none;
}

.slot-3 {
  transform: translateX(-56px) translateY(24px) scale(0.76) rotateZ(-6deg);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.slot-4 {
  transform: translateX(-28px) translateY(12px) scale(0.84) rotateZ(-3deg);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

/* Interactive Calculator Section - Sleek & Compact Layout */
.calculator-section {
  padding: 60px 0;
  background-color: var(--bg-elem);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calculator-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-tier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.tier {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.tier h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tier span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.calculator-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.input-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.input-group input,
.input-group select {
  padding: 10px 14px;
  border-radius: 8px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.calc-results {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 18px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.result-row:last-child {
  margin-bottom: 0;
}

.result-row strong {
  font-weight: 600;
}

.total-row {
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald);
}

/* Download / CTA Section */
.download-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, #030c20 100%);
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-app-badge {
  background: #0b0f19;
  border: 1px solid var(--border-color);
  padding: 14px 28px;
}

.download-app-badge:hover {
  background: #151c2e;
  border-color: var(--primary);
}

.launch-portal-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #6d28d9 100%);
  color: #fff;
  border: none;
}

.launch-portal-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.3);
}

/* Footer Section */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  background-color: #010612;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.brand-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.5;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-links ul a:hover {
  color: var(--text-main);
}

.copyright-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .cards-flex {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .deck-controls {
    justify-content: center;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-tier {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .section-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
    text-align: center;
  }
  .section-subtitle {
    text-align: center;
    font-size: 0.95rem;
  }
  .deck-container {
    height: 220px;
    margin-bottom: 20px;
    overflow: visible;
  }
  .web-card-wrapper {
    width: 200px;
    height: 128px;
  }
  .slot-0 {
    transform: translateX(0) translateY(0) scale(1) rotateZ(0deg);
    z-index: 5;
    opacity: 1;
  }
  .slot-1 {
    transform: translateX(18px) translateY(-16px) scale(0.92) rotateZ(3deg);
    z-index: 4;
    opacity: 0.85;
  }
  .slot-2 {
    transform: translateX(36px) translateY(-32px) scale(0.84) rotateZ(6deg);
    z-index: 3;
    opacity: 0.65;
  }
  .slot-3 {
    transform: translateX(-36px) translateY(16px) scale(0.76) rotateZ(-6deg);
    z-index: 1;
    opacity: 0;
  }
  .slot-4 {
    transform: translateX(-18px) translateY(8px) scale(0.84) rotateZ(-3deg);
    z-index: 2;
    opacity: 0;
  }
  .web-card-slideout {
    transform: translateX(-120px) translateY(20px) scale(0.9) rotateZ(-8deg) !important;
    opacity: 0 !important;
    z-index: 6 !important;
  }
  .pricing-tier {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 340px;
    margin: 16px auto 0 auto;
    width: 100%;
  }
  .calculator-widget {
    padding: 16px;
    border-radius: 12px;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
  .calculator-text {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .download-section {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .download-app-badge {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .deck-container {
    height: 190px;
  }
  .web-card-wrapper {
    width: 170px;
    height: 108px;
  }
  .slot-1 {
    transform: translateX(12px) translateY(-12px) scale(0.92) rotateZ(3deg);
  }
  .slot-2 {
    transform: translateX(24px) translateY(-24px) scale(0.84) rotateZ(6deg);
  }
  .slot-3 {
    transform: translateX(-24px) translateY(12px) scale(0.76) rotateZ(-6deg);
  }
  .slot-4 {
    transform: translateX(-12px) translateY(6px) scale(0.84) rotateZ(-3deg);
  }
  .web-card-slideout {
    transform: translateX(-100px) translateY(15px) scale(0.9) rotateZ(-8deg) !important;
  }
  .device-mockup {
    transform: scale(0.85) rotateY(-10deg) rotateX(10deg);
  }
  .device-mockup:hover {
    transform: scale(0.85) rotateY(0deg) rotateX(0deg);
  }
  .pricing-tier,
  .calculator-widget,
  .calculator-text {
    max-width: 300px;
  }
}

