/* styles.css - BillBase Landing Page Styles */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Primary Colors - Deep Blue/Indigo */
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #3730a3;
    --primary-800: #1e1b4b;
    --primary-900: #0f0e24;
    
    /* Accent Color - Vibrant Green */
    --accent-50: #ecfdf5;
    --accent-100: #d1fae5;
    --accent-200: #a7f3d0;
    --accent-300: #6ee7b7;
    --accent-400: #34d399;
    --accent-500: #00d4aa;
    --accent-600: #059669;
    --accent-700: #047857;
    --accent-800: #065f46;
    --accent-900: #064e3b;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --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 -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 20px 40px -15px rgba(99, 102, 241, 0.3);
    --shadow-accent: 0 20px 40px -15px rgba(0, 212, 170, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ==========================================
   BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   PRELOADER
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--accent-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition-base);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    transition: color var(--transition-base);
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-800);
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-base);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--gray-600);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-600);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-500);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    font-family: var(--font-family);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border: none;
    color: #ffffff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -15px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-600);
    color: var(--primary-600);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-600);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-700);
    border: none;
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.hero-bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-500);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-500);
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-400);
    top: 50%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
}

.hero-bg-shapes .shape-4 {
    width: 200px;
    height: 200px;
    background: var(--primary-400);
    top: 20%;
    left: 20%;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge .badge-icon {
    color: var(--accent-400);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Phone Mockup */
.hero-phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.greeting {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.app-bell {
    position: relative;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.app-bell:hover {
    background: var(--gray-200);
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--error);
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.app-balance-card {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.balance-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.balance-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.balance-amount .currency {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.balance-amount .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.balance-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.balance-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: var(--radius-md);
    padding: 8px 16px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.balance-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.app-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    transition: transform var(--transition-base);
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.airtime { background: linear-gradient(135deg, #ffcc00, #ff9500); }
.service-icon.data { background: linear-gradient(135deg, #00d4aa, #00b894); }
.service-icon.electricity { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.service-icon.cable { background: linear-gradient(135deg, #f59e0b, #d97706); }

.service-item span {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 500;
}

.app-transactions {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transactions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.transactions-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.transactions-view {
    font-size: 0.75rem;
    color: var(--primary-600);
    cursor: pointer;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.transaction-icon.mtn { background: #ffcc00; color: #000; }
.transaction-icon.dstv { background: #0066cc; color: #fff; }
.transaction-icon.cashback { background: var(--accent-100); color: var(--accent-600); }
.transaction-icon.ekedc { background: #00a651; color: #fff; }

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.transaction-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.transaction-date {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.transaction-amount {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.transaction-amount.positive {
    color: var(--accent-600);
}

.transaction-amount.negative {
    color: var(--gray-800);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.floating-icon.success {
    background: var(--accent-100);
    color: var(--accent-600);
}

.floating-icon.cashback {
    background: #fef3c7;
    color: #f59e0b;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-title {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.floating-amount {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* Trust Badges */
.hero-trust-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 10;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--accent-400);
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    padding: 3rem 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.partners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.partners-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-logo span {
    font-weight: 700;
    font-size: 0.875rem;
}

.partner-mtn { color: #ffcc00; }
.partner-airtel { color: #ed1c24; }
.partner-glo { color: #00a651; }
.partner-9mobile { color: #00a651; }
.partner-dstv { color: #0066cc; }
.partner-gotv { color: #e31836; }
.partner-startimes { color: #1a4695; }
.partner-phcn { color: #00a651; }

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card.featured {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
    border: none;
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-description {
    color: #ffffff;
}

.feature-card.featured .feature-list li {
    color: rgba(255, 255, 255, 0.85);
}

.feature-card.featured .feature-list i {
    color: var(--accent-400);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-500);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon.airtime-icon { background: #fef3c7; color: #f59e0b; }
.feature-icon.data-icon { background: var(--accent-100); color: var(--accent-600); }
.feature-icon.electricity-icon { background: #eef2ff; color: var(--primary-600); }
.feature-icon.cable-icon { background: #fce7f3; color: #ec4899; }
.feature-icon.cashback-icon { background: rgba(255, 255, 255, 0.15); color: var(--accent-400); }
.feature-icon.history-icon { background: #f3e8ff; color: #a855f7; }

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.feature-list i {
    color: var(--accent-500);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}

.steps-wrapper {
    position: relative;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-100);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.step-description {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.steps-connector {
    display: none;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-choose-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.why-choose-content {
    margin-bottom: 3rem;
}

.why-choose-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-600);
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.why-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

.why-choose-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.visual-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.visual-card.main-card {
    position: relative;
    z-index: 2;
    width: 320px;
}

.visual-header {
    margin-bottom: 1.5rem;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.visual-badge.success {
    background: var(--accent-100);
    color: var(--accent-700);
}

.visual-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.visual-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-detail-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.visual-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.detail-value.highlight {
    color: var(--accent-600);
}

.floating-visual {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-visual.card-1 {
    top: 10%;
    left: 0;
}

.floating-visual.card-2 {
    bottom: 10%;
    right: 0;
    animation-delay: 3s;
}

.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.mini-icon.success {
    background: var(--accent-100);
    color: var(--accent-600);
}

.mini-content {
    display: flex;
    flex-direction: column;
}

.mini-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.mini-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ==========================================
   APP PREVIEW SECTION
   ========================================== */
.app-preview-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}

.app-showcase {
    position: relative;
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.app-feature-item:hover,
.app-feature-item.active {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-md);
}

.app-feature-item.active {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.app-feature-item.active .app-feature-icon {
    background: var(--primary-600);
    color: #ffffff;
}

.app-feature-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.app-feature-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.app-phone-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.showcase-phone {
    position: relative;
    width: 300px;
    height: 620px;
    background: #1a1a2e;
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.showcase-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.screen-content.active {
    opacity: 1;
    visibility: visible;
}

/* App Services Grid */
.app-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.service-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.service-icon-sm {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

.service-icon-sm.airtime { background: linear-gradient(135deg, #ffcc00, #ff9500); }
.service-icon-sm.data { background: linear-gradient(135deg, #00d4aa, #00b894); }
.service-icon-sm.electricity { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.service-icon-sm.cable { background: linear-gradient(135deg, #f59e0b, #d97706); }

.service-grid-item span {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Payment Screen */
.payment-screen-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--gray-800);
}

.network-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.network-item {
    padding: 10px 15px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.network-item.active {
    background: #ffcc00;
    color: #000;
}

.payment-form .form-group {
    margin-bottom: 15px;
}

.payment-form label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.quick-amounts {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-amount {
    padding: 8px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
}

.payment-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* History Screen */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.history-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.history-icon.mtn { background: #ffcc00; color: #000; }
.history-icon.dstv { background: #0066cc; color: #fff; }
.history-icon.cashback { background: var(--accent-100); color: var(--accent-600); }
.history-icon.ekedc { background: #00a651; color: #fff; }

.history-details {
    flex: 1;
}

.history-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
}

.history-date {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.history-amount {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.history-amount.positive {
    color: var(--accent-600);
}

/* Rewards Screen */
.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rewards-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.rewards-period {
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 5px 10px;
    border-radius: var(--radius-full);
}

.rewards-total {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.rewards-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.rewards-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
}

.rewards-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breakdown-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.breakdown-info {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.breakdown-name {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.breakdown-amount {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.download-btn:hover {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 1.5rem;
    color: var(--gray-800);
}

.download-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-label {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.download-store {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
    border: none;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-name {
    color: #ffffff;
}

.testimonial-card.featured .testimonial-rating i {
    color: var(--accent-400);
}

.testimonial-card.featured .author-location {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-500);
    top: -200px;
    right: -100px;
    opacity: 0.2;
}

.cta-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-500);
    bottom: -150px;
    left: -100px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.cta-feature i {
    color: var(--accent-400);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-600);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-text a,
.contact-text span {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-600);
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-floating > .form-control {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    height: auto;
    padding: 1rem 1rem 0.5rem;
}

.form-floating > .form-control:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-floating > label {
    padding: 1rem;
    color: var(--gray-500);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gray-900);
    padding-top: 60px;
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo .brand-icon {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-600);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-400);
}

.footer-bottom {
    padding: 1.5rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-badge i {
    color: var(--accent-400);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .visual-card.main-card {
        width: 280px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .navbar-collapse {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        margin-top: 1rem;
        box-shadow: var(--shadow-xl);
    }
    
    .navbar-nav .nav-link {
        color: var(--gray-600);
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-600);
    }
    
    .nav-buttons {
        flex-direction: column;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }
    
    .nav-buttons .btn {
        width: 100%;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-phone-mockup {
        margin-top: 3rem;
    }
    
    .floating-card.card-1 {
        left: 0;
    }
    
    .floating-card.card-2 {
        right: 0;
    }
    
    .why-choose-visual {
        margin-top: 3rem;
        min-height: 400px;
    }
    
    .app-feature-list {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-items {
        gap: 1rem;
    }
    
    .phone-frame {
        width: 260px;
        height: 540px;
    }
    
    .floating-card {
        display: none;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .visual-card.main-card {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-visual {
        display: none;
    }
    
    .showcase-phone {
        width: 280px;
        height: 580px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-badges {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .partners-logos {
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 0.5rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}