/* ===== CSS Variables - PayItFast Clean Design ===== */
:root {
    /* Primary Colors - Black & White */
    --primary: #000000;
    --primary-dark: #1a1a1a;
    --primary-light: #f5f5f5;
    --secondary: #111111;
    --secondary-light: #333333;

    /* Accent Colors - Green for highlights */
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-light: #ecfdf5;

    /* Neutral Colors */
    --dark: #000000;
    --dark-light: #1a1a1a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #525252;
    --text-muted: #737373;
    --text-light: #a3a3a3;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: rgba(255, 255, 255, 0.7);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --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);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    --container-max: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ===== Row & Grid ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.row > * {
    padding: 0 12px;
}

.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.col-lg-8 { width: 66.666%; }
.col-md-6 { width: 50%; }

@media (max-width: 991.98px) {
    .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 { width: 100%; }
}

@media (max-width: 767.98px) {
    .col-md-6 { width: 100%; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

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

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

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* ===== Badge / Tag ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 12px;
}

.section-tag-dark {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.navbar .nav-link:hover {
    color: var(--text-primary);
    background: var(--gray-100);
}

.navbar .btn-primary {
    margin-left: 16px;
}

/* Mobile Navigation */
.navbar-toggler {
    display: none;
    border: none;
    padding: 8px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 24px;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-collapse.show {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .navbar .nav-link {
        padding: 12px 16px;
    }

    .navbar .btn-primary {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.hero .row {
    align-items: center;
}

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

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-content h1 .highlight {
    color: var(--accent);
}

.hero-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.trust-indicator i {
    color: var(--accent);
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Payment Infographic */
.payment-infographic {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.infographic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.infographic-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.infographic-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.infographic-status i {
    color: var(--accent);
    font-size: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Payment Flow */
.payment-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 20px;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.node-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.node-icon i {
    font-size: 18px;
    color: var(--text-secondary);
}

.node-icon.main-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.node-icon.main-icon i {
    font-size: 24px;
    color: var(--white);
}

.node-icon.card-icon {
    background: var(--accent-light);
}

.node-icon.card-icon i {
    color: var(--accent);
}

.node-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.center-node .node-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Flow Connector */
.flow-connector {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 4px;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: flowLine 2s ease-in-out infinite;
}

@keyframes flowLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.connector-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 0.7; }
}

/* Transaction Details */
.transaction-details {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}

.transaction-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.transaction-row:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.transaction-label {
    font-size: 13px;
    color: var(--text-muted);
}

.transaction-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.transaction-value.fee {
    color: var(--text-muted);
}

.transaction-value.highlight {
    color: var(--accent);
    font-size: 15px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.method-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.method-icons {
    display: flex;
    gap: 12px;
}

.method-icons i {
    font-size: 20px;
    color: var(--gray-400);
    transition: var(--transition);
}

.method-icons i:hover {
    color: var(--primary);
}

/* Responsive Infographic */
@media (max-width: 480px) {
    .payment-infographic {
        padding: 16px;
    }

    .node-icon {
        width: 36px;
        height: 36px;
    }

    .node-icon i {
        font-size: 14px;
    }

    .node-icon.main-icon {
        width: 44px;
        height: 44px;
    }

    .node-icon.main-icon i {
        font-size: 18px;
    }

    .node-label {
        font-size: 9px;
    }
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--gray-50);
    padding: 48px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-bar .row {
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-item i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.col-6 {
    width: 50%;
}

@media (min-width: 768px) {
    .col-md-3 {
        width: 25%;
    }
}

/* ===== Features Section ===== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    margin-bottom: 24px;
}

.feature-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i {
    font-size: 22px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Features Visual Section (Bultra-inspired) ===== */
.features-visual {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.features-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

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

.features-visual-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.features-visual-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 480px;
}

.features-visual-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visual-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.visual-feature-item i {
    color: var(--accent);
    font-size: 18px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.dashboard-card {
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.9) 0%, rgba(20, 20, 35, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

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

.dashboard-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--accent); }
    50% { opacity: 0.5; box-shadow: 0 0 5px var(--accent); }
}

.dashboard-balance {
    margin-bottom: 20px;
}

.balance-amount {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.balance-cents {
    font-size: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.currency-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.currency-tab {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.currency-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.currency-tab.active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.currency-tab.more {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
}

.dashboard-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 20px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: var(--transition);
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-icon i {
    font-size: 16px;
}

.transaction-icon.incoming {
    background: rgba(16, 185, 129, 0.15);
}

.transaction-icon.incoming i {
    color: #10b981;
}

.transaction-icon.outgoing {
    background: rgba(239, 68, 68, 0.15);
}

.transaction-icon.outgoing i {
    color: #ef4444;
}

.transaction-icon.exchange {
    background: rgba(59, 130, 246, 0.15);
}

.transaction-icon.exchange i {
    color: #3b82f6;
}

.transaction-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.transaction-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.transaction-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.transaction-amount {
    font-size: 14px;
    font-weight: 600;
}

.transaction-amount.positive {
    color: #10b981;
}

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

.transaction-amount.neutral {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Dashboard */
@media (max-width: 991.98px) {
    .features-visual .row {
        flex-direction: column;
    }

    .features-visual-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .features-visual-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .features-visual-list {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .dashboard-card {
        padding: 20px;
    }

    .balance-amount {
        font-size: 1.75rem;
    }

    .currency-tabs {
        flex-wrap: wrap;
    }

    .transaction-item {
        padding: 10px;
    }

    .transaction-icon {
        width: 36px;
        height: 36px;
    }
}

/* ===== How It Works ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

/* Steps Infographic */
.steps-infographic {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.step-icon i {
    font-size: 32px;
    color: var(--primary);
}

.step-icon.success {
    background: var(--accent);
    border-color: var(--accent);
}

.step-icon.success i {
    color: var(--white);
}

.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 3px solid var(--gray-50);
}

.step-badge.success {
    background: var(--accent);
}

.step-content h4 {
    margin-bottom: 8px;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    padding: 0 8px;
}

/* Step Connector */
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 40px;
    width: 80px;
    flex-shrink: 0;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-300), var(--accent));
    position: relative;
}

.connector-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: flowPulse 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes flowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.connector-arrow {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
}

.connector-arrow i {
    font-size: 12px;
    color: var(--white);
}

/* Responsive Infographic */
@media (max-width: 767.98px) {
    .steps-infographic {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-item {
        max-width: 100%;
        width: 100%;
    }

    .step-connector {
        width: auto;
        height: 60px;
        padding-top: 0;
        flex-direction: column;
    }

    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--gray-300), var(--accent));
    }

    .connector-arrow {
        margin-left: 0;
        margin-top: -4px;
        transform: rotate(90deg);
    }
}

/* Legacy step-card styles (kept for other pages) */
.step-card {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* ===== Make Money Go Further Section ===== */
.money-further-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111118 100%);
}

.section-title-center {
    text-align: center;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.money-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.money-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.money-card-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.money-card-content h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.money-card-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    max-width: 400px;
}

.money-card .btn-outline-light {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.money-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* Premium card specific styling */
.premium-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Global card specific styling */
.global-card {
    background: linear-gradient(135deg, #0f1624 0%, #1a1a2e 100%);
}

/* Fallback background when video doesn't load */
.money-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0d1117 100%);
    z-index: 0;
}

/* Responsive Money Cards */
@media (max-width: 991.98px) {
    .money-cards-grid {
        grid-template-columns: 1fr;
    }

    .money-card {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .money-card {
        min-height: 320px;
    }

    .money-card-content {
        padding: 24px;
    }

    .money-card-content h4 {
        font-size: 1.25rem;
    }

    .section-title-center {
        margin-bottom: 32px;
    }
}

/* ===== Solutions Section ===== */
.solutions-section {
    padding: var(--section-padding) 0;
    background: var(--primary);
}

.solutions-section .section-header h2,
.solutions-section .section-header p {
    color: var(--white);
}

.solutions-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
    margin-bottom: 24px;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.solution-icon i {
    font-size: 22px;
    color: var(--white);
}

.solution-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta {
    padding: 64px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.cta-content {
    text-align: center;
}

.cta h2 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Page Header ===== */
.page-header {
    padding: 140px 0 60px;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-header .lead {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 60px 0;
}

.contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
}

.contact-info-card h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.contact-info-card > p {
    margin-bottom: 28px;
}

.consultation-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.consultation-step .step-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consultation-step .step-icon i {
    font-size: 18px;
    color: var(--primary);
}

.step-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.step-content p {
    font-size: 13px;
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
}

.contact-method i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.contact-method:hover {
    color: var(--accent);
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px;
}

.contact-form-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.contact-form-card > p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* ===== About Page ===== */
.about-section {
    padding: var(--section-padding) 0;
}

.about-section .row {
    align-items: flex-start;
}

.about-content {
    margin-bottom: 40px;
}

.about-content h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-content p {
    margin-bottom: 14px;
    font-size: 15px;
}

.value-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    height: 100%;
    margin-bottom: 24px;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon i {
    font-size: 24px;
    color: var(--primary);
}

.value-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.value-card p {
    font-size: 14px;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary);
    padding: 60px 0 32px;
    color: var(--white);
}

.footer-logo {
    height: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 280px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-links ul li i {
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: 48px 0;
}

.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 14px;
    font-size: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-content ul li {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.list-unstyled { list-style: none; padding: 0; margin: 0; }

hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 24px 0;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-visual {
        margin-top: 40px;
        padding: 20px;
    }

    .stats-bar {
        padding: 32px 0;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .features-section,
    .features-visual,
    .how-it-works,
    .money-further-section,
    .solutions-section,
    .about-section {
        padding: var(--section-padding-sm) 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .page-header {
        padding: 120px 0 48px;
    }
}

@media (max-width: 767.98px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .col-6 {
        width: 50%;
    }
}

/* ===== Cards & Wallets Visual (Hero) ===== */
.cards-wallet-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
    width: 100%;
}

/* Premium Card Display */
.premium-card-display {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    min-height: 200px;
}

.premium-card-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 6px;
    margin-bottom: 24px;
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.card-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.card-number {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.15em;
    font-family: 'Courier New', monospace;
    margin-bottom: 20px;
}

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

.card-holder {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-expiry {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.card-type {
    position: absolute;
    bottom: 28px;
    right: 28px;
}

.card-type i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
}

/* Connected Wallets */
.connected-wallets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 16px 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.wallet-item:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.wallet-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wallet-icon i {
    font-size: 20px;
}

.fiat-wallet .wallet-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.fiat-wallet .wallet-icon i {
    color: var(--white);
}

.wallet-icon.btc {
    background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
}

.wallet-icon.btc i {
    color: var(--white);
}

.wallet-icon.eth {
    background: linear-gradient(135deg, #627eea 0%, #3b5998 100%);
}

.wallet-icon.eth i {
    color: var(--white);
}

.wallet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wallet-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.wallet-balance {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.wallet-status {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-status.connected {
    background: var(--accent-light);
}

.wallet-status.connected i {
    font-size: 16px;
    color: var(--accent);
}

/* Responsive Cards Visual */
@media (max-width: 991.98px) {
    .cards-wallet-visual {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .premium-card-display {
        padding: 20px;
        min-height: 180px;
    }

    .card-logo {
        font-size: 18px;
    }

    .card-number {
        font-size: 15px;
    }

    .wallet-item {
        padding: 12px 14px;
    }

    .wallet-icon {
        width: 38px;
        height: 38px;
    }

    .wallet-balance {
        font-size: 14px;
    }
}
