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

:root {
    /* R-Cash Brand Colors */
    --rcash-primary: #077d6d;
    --rcash-primary-dark: #065a4f;
    --rcash-primary-light: #0a9580;
    
    /* Primary Colors */
    --primary-color: #077d6d;
    --primary-dark: #065a4f;
    --primary-light: #0a9580;
    
    /* Secondary Colors (R-Cash distinction) */
    --secondary-color: #099485;
    --secondary-dark: #077d6d;
    --secondary-light: #0bb89f;
    
    /* Accent Colors */
    --accent-color: #0d9488;
    --accent-dark: #0f766e;
    --accent-light: #14b8a6;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #077d6d 0%, #099485 50%, #0d9488 100%);
    --gradient-secondary: linear-gradient(135deg, #065a4f 0%, #077d6d 100%);
    --gradient-accent: linear-gradient(135deg, #0d9488 0%, #077d6d 100%);
    --gradient-glass: linear-gradient(135deg, rgba(7, 125, 109, 0.1) 0%, rgba(7, 125, 109, 0.05) 100%);
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Dark Theme */
[data-theme="dark"] {
    --text-primary: #f8fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e1;
    --text-light: #94a3b8;
    
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: rgba(30, 41, 59, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --border-color: #334155;
    --border-light: #475569;
    
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #077d6d 0%, #0a9580 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

/* Send Money Icon Styling */
.send-money-icon i,
.wallet-icon i {
    font-size: 1.5rem;
    color: white;
    animation: sendMoneyGlow 2s ease-in-out infinite alternate;
}

@keyframes sendMoneyGlow {
    from { 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(7, 125, 109, 0.6);
        transform: scale(1.05);
    }
}

/* Backward compatibility */
@keyframes walletGlow {
    from { 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
    to { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(7, 125, 109, 0.6);
        transform: scale(1.05);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.75rem;
    font-weight: 900;
    color: #1e293b;
    font-family: var(--font-secondary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.theme-toggle {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.app-download {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.download-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.download-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.download-btn small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.download-btn strong {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 340px;
    height: 720px;
    background: #000;
    border-radius: 2.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.phone-screen.rcash-send-money,
.phone-screen.rcash-wallet {
    background: #2d5a3d;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: var(--radius-full);
}

.app-interface {
    background: #2d5a3d;
    height: 100%;
    border-radius: 2rem;
    padding: 0;
    color: white;
    display: flex;
    flex-direction: column;
}

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

.balance-label {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.action-btn i {
    font-size: 1.25rem;
}

.action-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.crypto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.crypto-amount {
    font-size: 0.75rem;
    color: #94a3b8;
}

.crypto-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.value {
    font-weight: 600;
    font-size: 0.875rem;
}

.change {
    font-size: 0.75rem;
}

.change.positive { color: #22c55e; }
.change.negative { color: #ef4444; }
.change.neutral { color: #94a3b8; }

/* Modern Mobile Wallet Interface */
.modern-send-money,
.modern-wallet {
    background: #f5f5f5 !important;
}

.phone-screen.modern-send-money,
.modern-wallet {
    background: #f5f5f5;
}

.phone-screen.modern-wallet .app-interface {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-exchange {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%) !important;
}

.phone-content.modern-exchange {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    padding: 0;
}

/* Wallet Status Bar */
.send-money-status-bar,
.wallet-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.7rem;
    background: #077d6d;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-left .time {
    font-weight: 700;
}

.status-icon {
    font-size: 0.8rem;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: end;
}

.signal-bars .bar {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.signal-bars .bar.active {
    background: white;
}

.battery-display {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.battery-icon {
    width: 20px;
    height: 10px;
    border: 1px solid white;
    border-radius: 2px;
    position: relative;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 4px;
    background: white;
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 90%;
    height: 100%;
    background: white;
    border-radius: 1px;
}

.battery-percent {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Wallet Header */
.send-money-header,
.wallet-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    background: #077d6d;
    position: relative;
}

.hamburger-menu {
    position: absolute;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.menu-line {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.send-money-title,
.wallet-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Currency Grid */
.currency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    padding: 0.5rem;
    background: #f5f5f5;
}

/* Currency Grid Image */
.currency-grid-image {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.send-money-screenshot,
.wallet-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.currency-card {
    border-radius: 6px;
    padding: 0.5rem;
    color: white;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.currency-card:nth-child(5) {
    grid-column: 1 / 3;
    max-width: 100%;
    margin: 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}

.currency-label {
    font-size: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.2;
}

.flag, .crypto-icon {
    font-size: 0.9rem;
}

.currency-info {
    margin-bottom: 0.3rem;
    flex: 1;
}

.currency-code {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    line-height: 1;
}

.currency-name {
    font-size: 0.55rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.1;
}

.balance-amount {
    font-size: 1rem;
    font-weight: 800;
    margin-top: auto;
    line-height: 1;
}

/* Currency Card Colors */
.usd-card {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
}

.kes-card {
    background: linear-gradient(135deg, #3949ab, #283593);
}

.etb-card {
    background: linear-gradient(135deg, #ff8a65, #f4511e);
}



/* Wallet Actions */
.wallet-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0.5rem;
    background: #f5f5f5;
    gap: 0.5rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action-item:hover {
    transform: translateY(-2px);
}

.action-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.send-icon {
    background: linear-gradient(135deg, #077d6d, #065a4f);
}

.receive-icon {
    background: linear-gradient(135deg, #099485, #077d6d);
}

.exchange-icon {
    background: linear-gradient(135deg, #0d9488, #0f766e);
}

.more-icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.action-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}

/* Wallet Bottom Navigation */
.send-money-bottom-nav,
.wallet-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #077d6d;
    padding: 0.6rem 0;
    margin-top: auto;
}

.send-money-bottom-nav .nav-item,
.wallet-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.send-money-bottom-nav .nav-icon,
.wallet-bottom-nav .nav-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.send-money-bottom-nav .nav-label,
.wallet-bottom-nav .nav-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.send-money-bottom-nav .nav-item.active .nav-icon,
.send-money-bottom-nav .nav-item.active .nav-label,
.wallet-bottom-nav .nav-item.active .nav-icon,
.wallet-bottom-nav .nav-item.active .nav-label {
    color: white;
}

.send-money-bottom-nav .nav-item:hover .nav-icon,
.send-money-bottom-nav .nav-item:hover .nav-label,
.wallet-bottom-nav .nav-item:hover .nav-icon,
.wallet-bottom-nav .nav-item:hover .nav-label {
    color: white;
}

/* Recent Transactions Mini */
.recent-transactions {
    background: #f5f5f5;
    padding: 0.6rem;
    margin-bottom: 0.4rem;
}

.section-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.section-header-mini h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.view-all-btn {
    background: none;
    border: none;
    color: #077d6d;
    font-size: 0.6rem;
    font-weight: 600;
    cursor: pointer;
}

.transaction-list-mini {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.transaction-item-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    background: white;
    border-radius: 6px;
}

.transaction-icon-mini {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
    flex-shrink: 0;
}

.transaction-icon-mini.sent {
    background: #ef4444;
}

.transaction-icon-mini.received {
    background: #22c55e;
}

.transaction-details-mini {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.transaction-title-mini {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.transaction-time-mini {
    font-size: 0.6rem;
    color: #64748b;
    line-height: 1.2;
}

.transaction-amount-mini {
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.transaction-amount-mini.positive {
    color: #22c55e;
}

.transaction-amount-mini.negative {
    color: #ef4444;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    justify-content: space-around;
    background: #f5f5f5;
    padding: 0.5rem;
    gap: 0.4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    padding: 0.4rem;
    border-radius: 6px;
    flex: 1;
}

.stat-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #077d6d, #065a4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: white;
    flex-shrink: 0;
}

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

.stat-value {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.55rem;
    color: #64748b;
    line-height: 1.2;
}

.battery-indicator {
    width: 24px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: relative;
    margin-right: 0.25rem;
}

.battery-indicator::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 87%;
    height: 100%;
    background: #22c55e;
    border-radius: 1px;
}

.battery-percent {
    font-size: 0.8rem;
}

/* Modern App Header */
.modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem 1.5rem;
    color: white;
}

.header-greeting h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: white;
}

.user-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-badge {
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.notification-badge .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    font-weight: 600;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}


/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 0.5rem;
    letter-spacing: 0.05em;
    margin-left: 0.75rem;
    vertical-align: middle;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Merchant Payment Solutions - COMING SOON Overlay */
.merchant-coming-soon-wrapper {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(3px);
    border-radius: 1rem;
}

.coming-soon-stamp {
    text-align: center;
    transform: rotate(-15deg);
    animation: stampPulse 3s ease-in-out infinite;
}

@keyframes stampPulse {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    50% { transform: rotate(-15deg) scale(1.05); }
}

.stamp-text {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    text-shadow: 
        0 0 20px rgba(239, 68, 68, 0.8),
        0 0 40px rgba(239, 68, 68, 0.6),
        0 0 60px rgba(239, 68, 68, 0.4),
        4px 4px 0 rgba(220, 38, 38, 0.8);
    -webkit-text-stroke: 3px rgba(220, 38, 38, 0.5);
    padding: 1rem 2rem;
    border: 8px solid #ef4444;
    border-radius: 1rem;
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 
        0 0 30px rgba(239, 68, 68, 0.6),
        inset 0 0 30px rgba(239, 68, 68, 0.2);
}

.stamp-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.strikethrough-text {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(239, 68, 68, 0.7);
    opacity: 0.6;
}

/* Responsive Coming Soon Stamp */
@media (max-width: 768px) {
    .stamp-text {
        font-size: 3rem;
        -webkit-text-stroke: 2px rgba(220, 38, 38, 0.5);
        border: 6px solid #ef4444;
        padding: 0.75rem 1.5rem;
    }
    
    .stamp-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stamp-text {
        font-size: 2rem;
        -webkit-text-stroke: 1.5px rgba(220, 38, 38, 0.5);
        border: 4px solid #ef4444;
        padding: 0.5rem 1rem;
    }
    
    .stamp-subtitle {
        font-size: 0.8rem;
    }
}

/* Developer API Section */
.developer-api-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.developer-api-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dev-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(7, 125, 109, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dev-grid)"/></svg>');
    opacity: 0.3;
}

.api-content {
    position: relative;
    z-index: 1;
}

.api-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.api-hero-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.api-hero-text > p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.api-features-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.api-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(7, 125, 109, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(7, 125, 109, 0.2);
    transition: all 0.3s ease;
}

.api-feature-item:hover {
    background: rgba(7, 125, 109, 0.15);
    border-color: rgba(7, 125, 109, 0.4);
    transform: translateX(5px);
}

.api-feature-item i {
    font-size: 1.5rem;
    color: #077d6d;
    margin-top: 0.25rem;
}

.api-feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.api-feature-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.api-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.api-docs-btn {
    background: linear-gradient(135deg, #077d6d, #065a4f);
}

.api-docs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(7, 125, 109, 0.4);
}

/* Code Example */
.code-example {
    background: #0f172a;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(7, 125, 109, 0.3);
    margin-bottom: 1.5rem;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(7, 125, 109, 0.1);
    border-bottom: 1px solid rgba(7, 125, 109, 0.2);
}

.code-lang {
    font-size: 0.85rem;
    font-weight: 600;
    color: #077d6d;
}

.copy-btn {
    background: rgba(7, 125, 109, 0.2);
    color: #077d6d;
    border: none;
    padding: 0.4rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(7, 125, 109, 0.3);
}

.code-block {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* API Stats */
.api-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.api-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(7, 125, 109, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(7, 125, 109, 0.2);
}

.api-stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #077d6d, #065a4f);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.api-stat-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.api-stat-info p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

/* SDK Section */
.api-sdk-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(7, 125, 109, 0.2);
}

.api-sdk-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.sdk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.sdk-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(7, 125, 109, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sdk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 125, 109, 0.4);
    box-shadow: 0 10px 30px rgba(7, 125, 109, 0.2);
}

.sdk-icon {
    font-size: 3rem;
    color: #077d6d;
    margin-bottom: 1rem;
}

.sdk-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.sdk-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    font-family: 'Monaco', 'Courier New', monospace;
}

.sdk-card a {
    color: #077d6d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.sdk-card a:hover {
    color: #0a9580;
}

/* Responsive Design */
@media (max-width: 968px) {
    .api-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .api-stats {
        grid-template-columns: 1fr;
    }

    .api-hero-text h3 {
        font-size: 2rem;
    }

    .api-cta {
        flex-direction: column;
    }

    .api-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Balance Overview */
.balance-overview {
    padding: 0 1.5rem 1.5rem;
}

.balance-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    padding: 1.5rem;
    border-radius: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.balance-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.visibility-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.visibility-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.balance-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.currency-symbol {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0.25rem;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.balance-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.change-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    background: rgba(34, 197, 94, 0.2);
}

.change-indicator.positive {
    color: #22c55e;
}

.change-period {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Quick Actions */
.quick-actions-modern {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    gap: 1rem;
}

.quick-actions-modern .action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.quick-actions-modern .action-item:hover {
    transform: translateY(-2px);
}

.quick-actions-modern .action-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.action-icon.send { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); }
.action-icon.receive { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
.action-icon.exchange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.action-icon.more { background: linear-gradient(135deg, #64748b 0%, #475569 100%); }

.quick-actions-modern .action-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Currency Cards Section */
.currencies-section {
    padding: 0 1.5rem 1.5rem;
}

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

.section-header h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.see-all {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.currency-cards-modern {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.currency-card-modern {
    flex-shrink: 0;
    width: 200px;
    padding: 1.25rem;
    border-radius: 1.25rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.currency-card-modern.primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.currency-card-modern.secondary {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 163, 74, 0.1) 100%);
}

.currency-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.currency-icon .flag {
    font-size: 1.5rem;
}

.card-menu {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.card-balance {
    margin-bottom: 0.75rem;
}

.card-balance .balance {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.card-balance .currency-code {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.card-trend .trend-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Transactions Section */
.transactions-section {
    padding: 0 1.5rem 1.5rem;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.transaction-icon.sent { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.transaction-icon.received { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.transaction-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.transaction-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.transaction-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.transaction-amount .amount {
    font-weight: 600;
    font-size: 0.9rem;
}

.transaction-amount .amount.negative {
    color: #ef4444;
}

.transaction-amount .amount.positive {
    color: #22c55e;
}

.transaction-amount .time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Modern Bottom Navigation */
.bottom-nav-modern {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.nav-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.nav-item-modern.active {
    background: rgba(99, 102, 241, 0.1);
}

.nav-item-modern .nav-icon {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.nav-item-modern.active .nav-icon {
    color: #6366f1;
}

.nav-item-modern .nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.nav-item-modern.active .nav-label {
    color: white;
}

.nav-indicator {
    position: absolute;
    top: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #6366f1;
    border-radius: 2px;
}

/* Exchange Interface */
.exchange-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
}

.back-btn, .history-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn:hover, .history-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.exchange-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.exchange-calculator-modern {
    padding: 1.5rem;
    margin: 0 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.exchange-from, .exchange-to {
    padding: 1rem;
}

.currency-selector {
    margin-bottom: 1rem;
}

.selected-currency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.selected-currency:hover {
    background: rgba(255, 255, 255, 0.15);
}

.selected-currency .flag {
    font-size: 1.5rem;
}

.selected-currency .code {
    font-weight: 600;
    font-size: 1rem;
}

.amount-input {
    margin-bottom: 0.5rem;
}

.amount-field {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    outline: none;
    margin-bottom: 0.5rem;
}

.amount-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.amount-output .converted-amount {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.currency-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.balance-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.exchange-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.swap-currencies {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap-currencies:hover {
    transform: rotate(180deg) scale(1.1);
}

.rate-info {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-display {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rate-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.rate-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.rate-change .change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.rate-change .change.positive {
    color: #22c55e;
}

.exchange-details {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.detail-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-value.highlight {
    color: #22c55e;
    font-weight: 700;
}

.exchange-action {
    padding: 1.5rem;
}

.exchange-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border: none;
    border-radius: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.exchange-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.quick-exchanges {
    padding: 1rem 1.5rem;
}

.quick-exchanges h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.quick-options {
    display: flex;
    gap: 1rem;
}

.quick-option {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.option-currencies {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.option-currencies .from,
.option-currencies .to {
    font-size: 1.25rem;
}

.option-currencies i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.option-rate {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.2);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
}

.float-card i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Multi-Currency Wallet Platform Section */
.multi-currency-platform {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

[data-theme="dark"] .multi-currency-platform {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.currency-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.currency-platform-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid rgba(7, 125, 109, 0.1);
}

[data-theme="dark"] .currency-platform-card {
    background: var(--bg-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.currency-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(7, 125, 109, 0.2);
}

.currency-platform-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.currency-icon-large {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.currency-icon-large.tether {
    background: linear-gradient(135deg, #26a17b 0%, #1a7a5e 100%);
}

.currency-icon-large.kenya {
    background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
}

.currency-icon-large.ethiopia {
    background: linear-gradient(135deg, #ff8a65 0%, #f4511e 100%);
}

.currency-icon-large.dollar {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
}



.flag-icon {
    font-size: 2.5rem;
}

.currency-title-block {
    flex: 1;
}

.currency-title-block h3 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.currency-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(7, 125, 109, 0.05);
    border-radius: var(--radius-lg);
}

[data-theme="dark"] .currency-stats {
    background: rgba(7, 125, 109, 0.1);
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.currency-action-btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



.kes-btn {
    background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
    color: white;
}

.kes-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(57, 73, 171, 0.4);
}

.etb-btn {
    background: linear-gradient(135deg, #ff8a65 0%, #f4511e 100%);
    color: white;
}

.etb-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 138, 101, 0.4);
}

.usd-btn {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
}

.usd-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

/* Live Rate Indicator */
.live-rate-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .live-rate-indicator {
    background: var(--bg-card);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes priceFlash {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        color: var(--rcash-primary);
    }
    100% {
        transform: scale(1);
    }
}

.live-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.last-update {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Mobile Money Integration Section */
.mobile-money {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.mobile-money-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.country-section {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.country-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-light);
}

.country-flag {
    font-size: 2rem;
}

.country-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.mobile-money-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-card {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-card.mpesa .service-logo { background: linear-gradient(135deg, #00a651 0%, #007a3d 100%); }
.service-card.zaad .service-logo { background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); }
.service-card.sahal .service-logo { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }
.service-card.evc .service-logo { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.service-card.banks .service-logo { background: linear-gradient(135deg, #059669 0%, #047857 100%); }

.service-info h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.service-features span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.integration-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.stat-card h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.stat-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Kenya Banking Section */
.kenya-banking {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.kenya-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.kenya-section-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.kenya-card-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.kenya-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
}

.kenya-icon.merchant {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.kenya-card-header h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.kenya-card-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.bank-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.bank-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.bank-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bank-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.bank-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.bank-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.bank-status {
    display: flex;
    align-items: center;
}

.status {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status.active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status.supported {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.transfer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.feature-highlight i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-highlight h5 {
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-highlight p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.merchant-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.merchant-category {
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.merchant-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: white;
    font-size: 1.5rem;
}

.category-icon.retail { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.category-icon.restaurant { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.category-icon.transport { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.category-icon.services { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }

.merchant-category h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.merchant-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.merchant-category li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: var(--spacing-lg);
}

.merchant-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.merchant-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 1.5rem;
}

.benefit-card h5 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

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

.kenya-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.stat-item-large {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.stat-item-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-item-large .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 1.75rem;
}

.stat-item-large h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.stat-item-large p {
    margin: 0;
    color: var(--text-secondary);
}

/* Ethiopian Banking Section */
.ethiopia-banking {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.ethiopia-banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.bank-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    text-align: center;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--rcash-primary);
}

.bank-logo-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    background: white;
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.bank-logo-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bank-card:hover .bank-logo-image {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(7, 125, 109, 0.3);
}

.bank-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.bank-card:hover .bank-logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(7, 125, 109, 0.3);
}

.bank-logo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.bank-logo-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bank-card h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.bank-card p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bank-features {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    padding: 0.375rem 0.75rem;
    background: rgba(7, 125, 109, 0.1);
    color: var(--rcash-primary);
    border: 1px solid rgba(7, 125, 109, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ethiopia-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.ethiopia-feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
}

.ethiopia-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.ethiopia-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 1.75rem;
}

.ethiopia-feature-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-size: 1.25rem;
}

.ethiopia-feature-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.ethiopia-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

/* Exchange Features Section */
.exchange-features {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.exchange-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.exchange-calculator {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.calculator-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.calculator-header h3 {
    margin-bottom: var(--spacing-sm);
}

.calculator-header p {
    color: var(--text-secondary);
    margin: 0;
}

.exchange-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.exchange-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.currency-input {
    flex: 1;
}

.currency-input label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.input-group {
    display: flex;
    gap: var(--spacing-sm);
}

.input-group select {
    width: 100px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
}

.input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.exchange-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap-btn {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap-btn:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.rate-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.current-rate {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.rate-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rate-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rate-trend .trend {
    font-size: 0.9rem;
    font-weight: 600;
}

.rate-trend .positive { color: #22c55e; }
.rate-trend .negative { color: #ef4444; }
.rate-trend .neutral { color: var(--text-muted); }

.exchange-btn {
    margin-top: var(--spacing-md);
}

.exchange-pairs {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.exchange-pairs h4 {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.pairs-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pair-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.pair-card:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
}

.pair-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.pair-name {
    font-weight: 600;
    color: var(--text-primary);
}

.pair-rate {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pair-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.pair-change.positive {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.pair-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.pair-change.neutral {
    color: var(--text-muted);
    background: var(--bg-tertiary);
}

.exchange-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-xl);
}

.benefit-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-lg);
}

.benefit-item h4 {
    margin-bottom: var(--spacing-md);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Exchange Benefits - Redesigned Modern Style */
.exchange-benefits-redesigned {
    margin-top: var(--spacing-3xl);
}

.benefits-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.benefits-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(7, 125, 109, 0.1);
    color: var(--rcash-primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(7, 125, 109, 0.2);
}

.benefits-header h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 800;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.benefit-card-modern {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .benefit-card-modern {
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card-modern:hover::before {
    transform: scaleX(1);
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(7, 125, 109, 0.3);
    box-shadow: 0 20px 60px rgba(7, 125, 109, 0.15);
}

/* Card Decorations */
.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--rcash-primary);
}

.decoration-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--rcash-primary) 2px, transparent 2px);
    background-size: 12px 12px;
}

/* Benefit Icons */
.benefit-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.best-rates .benefit-icon-modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.instant-exec .benefit-icon-modern {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.secure-trans .benefit-icon-modern {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.low-fees .benefit-icon-modern {
    background: linear-gradient(135deg, #077d6d 0%, #0a9580 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(7, 125, 109, 0.3);
}

.benefit-card-modern:hover .benefit-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

/* Badge Tags */
.benefit-badge-tag {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    padding: 0.375rem 0.875rem;
    background: var(--rcash-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(7, 125, 109, 0.3);
}

.benefit-badge-tag.trending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.benefit-badge-tag.secure {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.benefit-badge-tag.value {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* Card Content */
.benefit-card-modern h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 700;
}

.benefit-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

/* Benefit Features Tags */
.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: rgba(7, 125, 109, 0.08);
    color: var(--rcash-primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(7, 125, 109, 0.15);
    transition: all 0.3s ease;
}

[data-theme="dark"] .feature-tag {
    background: rgba(7, 125, 109, 0.15);
}

.feature-tag i {
    font-size: 0.7rem;
}

.benefit-card-modern:hover .feature-tag {
    background: rgba(7, 125, 109, 0.15);
    border-color: rgba(7, 125, 109, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, rgba(7, 125, 109, 0.05) 0%, rgba(7, 125, 109, 0.02) 100%);
    border-radius: var(--radius-2xl);
    border: 2px dashed rgba(7, 125, 109, 0.2);
}

[data-theme="dark"] .trust-indicators {
    background: linear-gradient(135deg, rgba(7, 125, 109, 0.1) 0%, rgba(7, 125, 109, 0.05) 100%);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
}

.trust-item i {
    font-size: 2rem;
    color: var(--rcash-primary);
    margin-bottom: var(--spacing-xs);
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-card-modern:hover .benefit-icon-modern {
    animation: float 2s ease-in-out infinite;
}

/* Stablecoins Section */
.stablecoins {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.stablecoin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.stablecoin-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.stablecoin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.coin-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.coin-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}


.coin-logo.kes { background: linear-gradient(135deg, #4a67c4 0%, #6b7ee0 100%); }
.coin-logo.etb { background: linear-gradient(135deg, #b8662f 0%, #d48440 100%); }
.coin-logo.usd { background: linear-gradient(135deg, #1e7ba8 0%, #2593c7 100%); }

.coin-info h3 {
    margin-bottom: var(--spacing-xs);
}

.coin-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.coin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.coin-stats .stat {
    text-align: left;
}

.coin-stats .label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

.coin-stats .value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.rates-disclaimer {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    backdrop-filter: blur(10px);
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    text-align: left;
}

.disclaimer-content i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.disclaimer-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.disclaimer-content strong {
    color: var(--text-primary);
}

.market-chart-container {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.market-chart-container h3 {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.chart-wrapper {
    position: relative;
    height: 400px;
}

/* Mobile App Section */
.mobile-app {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.app-features {
    margin: var(--spacing-2xl) 0;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.app-feature i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.app-feature h4 {
    margin-bottom: var(--spacing-sm);
}

.app-feature p {
    color: var(--text-secondary);
}

.app-downloads {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 0.875rem 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-store-btn i {
    font-size: 1.75rem;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-store-btn span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-store-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

.app-ratings {
    display: flex;
    gap: var(--spacing-xl);
}

.rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.stars {
    display: flex;
    gap: var(--spacing-xs);
    color: #fbbf24;
}

.rating span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1f2937 0%, #374151 100%);
    border-radius: 2.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4b5563;
    border-radius: var(--radius-full);
}

.phone-content {
    background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
    height: 100%;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    color: white;
    overflow: hidden;
}

.phone-content.rcash-actions {
    background: #2d5a3d;
    padding: 1rem;
}

.mockup-header {
    margin-bottom: 1.5rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.portfolio-overview {
    text-align: center;
    margin-bottom: 2rem;
}

.portfolio-balance {
    margin-bottom: 1.5rem;
}

.balance-label {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 2.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.balance-change {
    font-size: 0.875rem;
    color: #22c55e;
}

.portfolio-chart {
    height: 120px;
    margin-bottom: 1.5rem;
}

.asset-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.asset-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.asset-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.asset-icon.usd { background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%); }
.asset-icon.kes { background: linear-gradient(135deg, #4a67c4 0%, #6b7ee0 100%); }
.asset-icon.etb { background: linear-gradient(135deg, #b8662f 0%, #d48440 100%); }

.asset-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.asset-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.asset-symbol {
    font-size: 0.75rem;
    color: #9ca3af;
}

.asset-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.amount {
    font-weight: 600;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.certifications {
    margin-top: var(--spacing-2xl);
}

.certifications h4 {
    margin-bottom: var(--spacing-lg);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cert-badge i {
    color: var(--primary-color);
}

.chart-container {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.chart-container h4 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: var(--spacing-sm);
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.contact-form {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #077d6d 0%, #0a9580 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.footer-logo-icon.wallet-icon i {
    font-size: 2rem;
    color: white;
    animation: walletGlow 2s ease-in-out infinite alternate;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-main {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
    font-family: var(--font-secondary);
}

.footer-logo-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.footer-text p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-apps {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-app-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-app-link:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .app-content,
    .about-content,
    .contact-content,
    .exchange-interface {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .mobile-money-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .kenya-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .banks-grid {
        grid-template-columns: 1fr;
    }
    
    .merchant-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .nav-actions .theme-toggle {
        display: block;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .phone-screen {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .currency-platform-header {
        flex-direction: column;
        text-align: center;
    }
    
    .currency-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .benefits-header h3 {
        font-size: 1.75rem;
    }
    
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        padding: var(--spacing-xl);
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .benefit-badge-tag {
        top: var(--spacing-md);
        right: var(--spacing-md);
        font-size: 0.65rem;
        padding: 0.25rem 0.625rem;
    }
    
    .mobile-money-grid {
        grid-template-columns: 1fr;
    }
    
    .kenya-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banks-grid {
        grid-template-columns: 1fr;
    }
    
    .ethiopia-banks-grid {
        grid-template-columns: 1fr;
    }
    
    .ethiopia-features {
        grid-template-columns: 1fr;
    }
    
    .ethiopia-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transfer-features {
        grid-template-columns: 1fr;
    }
    
    .merchant-categories {
        grid-template-columns: 1fr;
    }
    
    .merchant-benefits {
        grid-template-columns: 1fr;
    }
    
    .exchange-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .exchange-icon {
        order: 2;
    }
    
    .swap-btn {
        transform: rotate(90deg);
    }
    
    .rate-display {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .stablecoin-grid {
        grid-template-columns: 1fr;
    }
    
    .app-downloads {
        flex-direction: column;
    }
    
    .app-ratings {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .phone-screen {
        width: 280px;
        height: 560px;
        padding: 0.75rem;
    }
    
    .currency-cards-modern {
        flex-direction: column;
    }
    
    .currency-card-modern {
        width: 100%;
    }
    
    .quick-actions-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .bottom-nav-modern {
        padding: 0.75rem 1rem;
    }
    
    .nav-item-modern {
        padding: 0.375rem;
        gap: 0.375rem;
    }
    
    .nav-item-modern .nav-label {
        font-size: 0.65rem;
    }
    
    .cert-badges {
        flex-direction: column;
    }
    
    .exchange-calculator-modern {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .amount-field, .converted-amount {
        font-size: 1.5rem;
    }
    
    .quick-options {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-secondary: #000000;
        --bg-card: #ffffff;
    }
    
    [data-theme="dark"] {
        --border-color: #ffffff;
        --text-secondary: #ffffff;
        --bg-card: #000000;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-cards,
    .app-downloads,
    .social-links {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-bg,
    .hero-gradient {
        display: none;
    }
}