/* Main Content Styles */

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: #f5f7f9;
    color: #333;
    overflow: visible;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    max-width: 800px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Dropshipper Section */
.dropshipper-section {
    background: white;
    border-radius: 16px;
    padding: 48px;
    margin: 60px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.dropshipper-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.dropshipper-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.dropshipper-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.dropshipper-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.dropshipper-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: #ff6b35;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    color: white;
    font-size: 20px;
}

.benefit-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .dropshipper-section {
        padding: 32px 24px;
        margin: 40px 0;
    }
    
    .dropshipper-title {
        font-size: 24px;
    }
    
    .dropshipper-description {
        font-size: 16px;
    }
    
    .dropshipper-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-item {
        padding: 20px 16px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .benefit-icon i {
        font-size: 18px;
    }
    
    .benefit-text {
        font-size: 15px;
    }
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    perspective: 1200px;
    padding-bottom: 30px;
}

/* Laptop Mockup */
.browser-window {
    position: relative;
    background: #1f1f1f;
    border-radius: 10px 10px 0 0;
    padding: 6px 6px 0;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1200px) rotateX(5deg);
}

/* Dashboard Scroll Overlay */
.dashboard-scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
    border-radius: 10px 10px 0 0;
}

.dashboard-scroll-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

.dashboard-scroll-overlay.active {
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    pointer-events: all;
}

.dashboard-scroll-overlay .overlay-content {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dashboard-scroll-overlay:hover .overlay-content,
.dashboard-scroll-overlay.active .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-scroll-overlay .overlay-content i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.dashboard-scroll-overlay .overlay-content p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.dashboard-scroll-overlay .overlay-content small {
    font-size: 14px;
    opacity: 0.8;
}

.browser-window.unlocked .dashboard-scroll-overlay {
    display: none;
}

.browser-window::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 8px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 0 4px 4px;
    z-index: -1;
}

.browser-window::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 6px;
    background: #0f0f0f;
    border-radius: 0 0 8px 8px;
    z-index: -2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dashboard-content {
    background: white;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

/* Browser Chrome */
.browser-top {
    background: #f1f3f5;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    border-bottom: 1px solid #dee2e6;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dots .dot.red {
    background: #ff5f56;
}

.browser-dots .dot.yellow {
    background: #ffbd2e;
}

.browser-dots .dot.green {
    background: #27c93f;
}

.browser-address {
    flex: 1;
    background: white;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.browser-address i {
    color: #27c93f;
    font-size: 10px;
}

.browser-menu {
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

/* Dashboard Content Inner */
.browser-window .dashboard-content {
    display: flex;
    min-height: 400px;
    max-height: 500px;
    background: #fafafa;
    margin: 0;
    font-size: 11px;
}

/* Sidebar */
.dashboard-sidebar {
    width: 140px;
    background: white;
    border-right: 1px solid #e5e7eb;
    padding: 16px 0;
}

.sidebar-logo {
    padding: 0 12px 12px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-logo img {
    height: 24px;
}

.sidebar-nav {
    padding: 12px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #6b7280;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-item:hover {
    background: #f9fafb;
    color: #111827;
}

.nav-item.active {
    background: #fff5f2;
    color: #ff6b35;
    border-left: 2px solid #ff6b35;
}

.nav-item i {
    font-size: 12px;
    width: 16px;
    text-align: center;
}

/* Dashboard Main */
.dashboard-main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 500px;
}

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

.dashboard-topbar h1 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 11px;
}

.topbar-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

.stat-title {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}

.stat-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.stat-icon.success {
    background: #d1fae5;
    color: #065f46;
}

.stat-icon.info {
    background: #dbeafe;
    color: #1e40af;
}

.stat-icon.primary {
    background: #fff5f2;
    color: #ff6b35;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
}

.stat-change.positive {
    color: #059669;
}

.stat-change i {
    font-size: 8px;
}

/* Dashboard Row */
.dashboard-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 12px;
}

/* Chart Card */
.chart-card {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

.card-header h3 {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.period-select {
    padding: 5px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 10px;
    background: white;
    cursor: pointer;
}

.chart-placeholder {
    width: 100%;
    height: 120px;
}

.revenue-chart {
    width: 100%;
    height: 100%;
}

/* Transactions Card */
.transactions-card {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.view-all {
    font-size: 10px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

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

.transaction-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.transaction-icon.success {
    background: #d1fae5;
    color: #065f46;
}

.transaction-icon.danger {
    background: #fee2e2;
    color: #991b1b;
}

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

.transaction-name {
    font-size: 11px;
    font-weight: 500;
    color: #111827;
}

.transaction-time {
    font-size: 9px;
    color: #6b7280;
}

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

.transaction-amount.positive {
    color: #059669;
}

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

/* App Header */
.app-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.app-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.app-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.spacer {
    flex: 1;
}

.profile-icon {
    font-size: 24px;
    color: #1a1a1a;
}

/* Status Message */
.status-message {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 11px;
    color: #2e7d32;
}

.status-icon {
    font-size: 14px;
    color: #2e7d32;
}

/* Section Title */
.section-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Virtual Card */
.virtual-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 16px;
    padding: 18px;
    color: white;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card-label {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.card-logo {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

.card-holder {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    margin-top: 30px;
}

.card-number {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-brand-logo {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
}

.card-brand {
    font-size: 9px;
    opacity: 0.7;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.card-btn {
    flex: 1;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 11px;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.card-btn:hover {
    background: #f5f5f5;
    border-color: #ff6b35;
}

.card-btn i {
    font-size: 11px;
}

/* Spending Section */
.spending-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
}

.spending-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.spending-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.spending-amount {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.amount-large {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.amount-small {
    font-size: 11px;
    color: #666;
}

/* Activity Section */
.activity-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

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

.activity-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 10px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.activity-date {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

/* Transfer Popup */
.transfer-popup {
    position: absolute;
    top: 160px;
    right: -220px;
    width: 280px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 15;
    animation: fadeInSlide 0.5s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-header {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.transfer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
}

.transfer-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.transfer-amount {
    display: flex;
    align-items: center;
    gap: 8px;
}

.transfer-amount .amount {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.currency-select {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
}

.currency {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.fx-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 11px;
    color: #666;
    border-left: 3px solid #4caf50;
    background: #f1f8f4;
    border-radius: 8px;
    margin-bottom: 12px;
}

.fx-info i {
    font-size: 12px;
}

.fx-info .fa-check-circle {
    color: #4caf50;
}

/* Recent Transfers Cards */
.recent-transfers {
    position: absolute;
    top: 420px;
    right: -250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 12;
}

.transfer-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: all 0.3s ease;
    animation: fadeInSlide 0.5s ease;
}

.transfer-card:nth-child(2) {
    animation-delay: 0.1s;
}

.transfer-card:nth-child(3) {
    animation-delay: 0.2s;
}

.transfer-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.transfer-avatar {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.transfer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transfer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.transfer-country {
    font-size: 12px;
    color: #666;
}

.transfer-total {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

/* Payment Providers Section */
.payment-providers {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-solution {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.solution-header {
    text-align: center;
    margin: 0 auto 30px auto;
    padding-top: 60px;
    width: 100%;
}

.solution-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 auto 16px auto;
    text-align: center;
    width: 100%;
}

.solution-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto 24px auto;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.payment-providers .providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.provider-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.provider-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.provider-link:hover {
    transform: translateY(-5px);
}

.provider-logo {
    width: 100%;
    height: 80px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.provider-logo:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

.provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.provider-logo:hover img {
    filter: grayscale(0);
}

/* Tap to Pay Section */
.tap-to-pay {
    padding: 60px 0;
    background: #2a2a2a;
    color: white;
}

.tap-to-pay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tap-to-pay-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tap-to-pay-title {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.tap-to-pay-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.tap-to-pay-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
}

.btn-light {
    background-color: #f5f7f7;
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #e8eaea;
    transform: translateY(-2px);
}

/* Terminal Visual */
.terminal-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.terminal-container {
    position: relative;
    display: inline-block;
    overflow: visible;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 0;
}

.terminal-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.terminal-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.terminal-text-pay {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.terminal-text-amount {
    font-family: "Inter", sans-serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Payment Processing Times Section */
.processing-times {
    padding: 80px 0;
    background: #f8f9fa;
}

.processing-list {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.processing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.processing-item:last-child {
    border-bottom: none;
}

.processing-item:hover {
    background: #f8f9fa;
}

.processing-item.credit-card {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.processing-item.credit-card:hover {
    background: #ffecb3;
}

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

.method-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.method-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.method-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.processing-time {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.transaction-cost {
    font-size: 12px;
    font-weight: 500;
    color: #ff6b35;
}

.processing-item.credit-card .processing-time {
    color: #e65100;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6b35;
    margin-bottom: 20px;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    width: 100%;
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 12px;
}

.member-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Integrations Section */
.integrations {
    padding: 80px 0;
    background: #2a2a2a;
    color: white;
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.integrations-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.integrations-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 600px;
}

.integration-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: transform 0.3s ease;
}

.integration-icon:hover {
    transform: translateY(-3px);
}

.integration-icon.xero {
    background: white;
}

.integration-icon.amazon {
    background: white;
}

.integration-icon.woocommerce {
    background: white;
}

.integration-icon.shopify {
    background: white;
}

.integration-icon span {
    font-weight: 600;
}

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

.integration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.integration-icon.xero img {
    filter: none;
}

.integration-icon.amazon img {
    filter: none;
}

.integration-icon.shopify img {
    filter: none;
}

.integration-icon.woocommerce img {
    filter: none;
}

.integration-icon.magento {
    background: white;
}

.integration-icon.opencart {
    background: white;
}

.integration-icon.magento img {
    filter: none;
}

.integration-icon.opencart img {
    filter: none;
}

.integration-icon.prestashop {
    background: white;
}

.integration-icon.lightspeed {
    background: white;
}

.integration-icon.prestashop img {
    filter: none;
}

.integration-icon.lightspeed img {
    filter: none;
}

/* Mini Checkout Preview */
.checkout-preview-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mini-browser {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mini-browser-bar {
    background: #f1f3f5;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #dee2e6;
}

.mini-dots {
    display: flex;
    gap: 5px;
}

.mini-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.mini-dots span:nth-child(1) { background: #ff5f56; }
.mini-dots span:nth-child(2) { background: #ffbd2e; }
.mini-dots span:nth-child(3) { background: #27c93f; }

.mini-url {
    flex: 1;
    background: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-url i {
    color: #27c93f;
    font-size: 10px;
}

.mini-checkout {
    padding: 20px;
    background: #fafafa;
}

.mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.mini-logo {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.mini-secure {
    width: 32px;
    height: 32px;
    background: #d1fae5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065f46;
    font-size: 14px;
}

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

.mini-input {
    height: 36px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.mini-input::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.mini-placeholder {
    font-size: 12px;
    color: #6b7280;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.mini-card-icon {
    position: absolute;
    right: 12px;
    font-size: 24px;
    color: #1a1f71;
    z-index: 2;
}

.mini-input.large {
    height: 40px;
}

.mini-input.small {
    flex: 1;
}

.mini-card-group {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mini-card-group .mini-input {
    margin-bottom: 8px;
    border: 2px solid #f3f4f6;
    background: #fafafa;
}

.mini-card-group .mini-input:last-child {
    margin-bottom: 0;
}

.mini-row {
    display: flex;
    gap: 8px;
}

.mini-button {
    background: #ff6b35;
    color: white;
    padding: 14px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.mini-button i {
    font-size: 12px;
}

.mini-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #059669;
    border: 1px solid #d1fae5;
}

.mini-badge i {
    font-size: 12px;
}

@keyframes shimmer {
    0% {
        width: 0%;
        left: 0%;
    }
    50% {
        width: 100%;
        left: 0%;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
    }
}

/* Providers Section */
.providers {
    padding: 80px 0;
    background: white;
}

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

.provider-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.provider-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-icon i {
    font-size: 40px;
    color: #ff6b35;
}

.provider-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.contact-details p {
    color: #666;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .transfer-popup {
        right: -200px;
        width: 260px;
        padding: 18px;
    }
    
    .recent-transfers {
        right: -220px;
    }
    
    .transfer-card {
        width: 280px;
        padding: 12px 14px;
    }
}

@media (max-width: 1024px) {
    .dashboard-preview {
        max-width: 95%;
    }

    .browser-window {
        transform: perspective(1200px) rotateX(3deg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dashboard-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dashboard-sidebar {
        width: 120px;
    }

    .nav-item {
        padding: 7px 10px;
        font-size: 10px;
        gap: 6px;
    }

    .nav-item i {
        font-size: 11px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-value {
        font-size: 16px;
    }

    .chart-placeholder {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .dashboard-preview {
        max-width: 100%;
        padding: 0 16px 20px;
        transform: none;
    }

    .browser-window {
        padding: 8px;
        transform: none;
        border-radius: 16px;
        max-width: 680px;
        margin: 0 auto;
        background: #ffffff;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .browser-window::before {
        display: none;
    }

    .browser-window::after {
        display: none;
    }

    .dashboard-content {
        border-radius: 8px;
    }

    .browser-top {
        height: 30px;
        padding: 0 12px;
        gap: 10px;
    }

    .browser-dots .dot {
        width: 7px;
        height: 7px;
    }

    .browser-address {
        font-size: 10px;
        padding: 4px 10px;
    }

    .browser-window .dashboard-content {
        min-height: 450px;
        max-height: 550px;
        font-size: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dashboard-content {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 8px 0;
    }

    .sidebar-logo {
        padding: 0 10px 8px;
    }

    .sidebar-logo img {
        height: 20px;
    }

    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 4px 0;
        gap: 4px;
    }

    .nav-item {
        flex-shrink: 0;
        padding: 6px 12px;
        border-left: none;
        border-bottom: 2px solid transparent;
        font-size: 10px;
    }

    .nav-item.active {
        border-left: none;
        border-bottom: 2px solid #ff6b35;
    }

    .dashboard-main {
        padding: 12px;
    }

    .dashboard-topbar {
        margin-bottom: 12px;
    }

    .dashboard-topbar h1 {
        font-size: 14px;
    }

    .topbar-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .user-avatar {
        width: 24px;
        height: 24px;
    }

    .stat-card {
        padding: 10px;
    }

    .stat-title {
        font-size: 9px;
    }

    .stat-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }

    .stat-value {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .stat-change {
        font-size: 8px;
    }

    .chart-card,
    .transactions-card {
        padding: 12px;
    }

    .card-header {
        margin-bottom: 12px;
    }

    .card-header h3 {
        font-size: 11px;
    }

    .period-select {
        font-size: 9px;
        padding: 4px 6px;
    }

    .chart-placeholder {
        height: 80px;
    }

    .view-all {
        font-size: 9px;
    }

    .transactions-list {
        gap: 8px;
    }

    .transaction-icon {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .transaction-name {
        font-size: 10px;
    }

    .transaction-time {
        font-size: 8px;
    }

    .transaction-amount {
        font-size: 10px;
    }
    
    .phone-screen {
        padding: 30px 12px 12px;
    }
    
    .section-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .virtual-card {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .card-label {
        font-size: 7px;
        margin-bottom: 8px;
    }
    
    .card-logo {
        width: 24px;
        height: 24px;
        top: 12px;
        right: 12px;
    }
    
    .card-holder {
        font-size: 10px;
        margin-bottom: 4px;
        margin-top: 20px;
    }
    
    .card-number {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .card-brand-logo {
        height: 10px;
    }
    
    .card-brand {
        font-size: 7px;
    }
    
    .card-actions {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .card-btn {
        padding: 8px 10px;
        font-size: 9px;
    }
    
    .card-btn i {
        font-size: 9px;
    }
    
    .spending-section {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .spending-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .spending-progress {
        height: 4px;
        margin-bottom: 6px;
    }
    
    .amount-large {
        font-size: 13px;
    }
    
    .amount-small {
        font-size: 9px;
    }
    
    .activity-section {
        padding: 12px;
    }
    
    .activity-title {
        font-size: 11px;
    }
    
    .filter-btn {
        padding: 4px 8px;
        font-size: 8px;
    }
    
    .activity-date {
        font-size: 9px;
    }
    
    .transfer-popup,
    .recent-transfers {
        display: none;
    }
    
    .features-grid,
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .payment-solutions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-solution {
        padding: 30px;
    }
    
    .solution-title {
        font-size: 24px;
    }
    
    .solution-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .payment-providers .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .provider-logo {
        height: 60px;
        padding: 8px;
    }
    
    .tap-to-pay-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .tap-to-pay-title {
        font-size: 24px;
    }
    
    .tap-to-pay-description {
        font-size: 15px;
    }
    
    .iphone-image {
        max-height: 400px;
    }
    
    .processing-times {
        padding: 60px 0;
    }
    
    .processing-list {
        margin: 0 20px;
    }
    
    .processing-item {
        padding: 14px 20px;
    }
    
    .method-info {
        gap: 10px;
    }
    
    .method-logo {
        width: 28px;
        height: 28px;
    }
    
    .method-name {
        font-size: 15px;
    }
    
    .method-details {
        gap: 3px;
    }
    
    .processing-time {
        font-size: 13px;
    }
    
    .transaction-cost {
        font-size: 11px;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-role {
        font-size: 14px;
    }
    
    .member-description {
        font-size: 14px;
    }
    
    .integrations-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .integrations-title {
        font-size: 28px;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .integration-icon {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
}

/* Payment Methods Available Section */
.payment-methods-available {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.payment-methods-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.payment-methods-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.payment-methods-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-item span {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.btn-whatsapp:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 20px;
}

.payment-methods-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 600px;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.payment-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: none;
}

.payment-icon i {
    font-size: 32px;
    color: white;
}

.payment-icon span {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* Payment Methods Responsive */
@media (max-width: 768px) {
    .payment-methods-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .payment-methods-title {
        font-size: 28px;
    }
    
    .payment-methods-description {
        font-size: 16px;
    }
    
    .payment-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 450px;
        margin: 0 auto;
        gap: 10px;
    }
    
    .payment-icon {
        padding: 16px;
    }
    
    .payment-icon img {
        width: 30px;
        height: 30px;
        filter: none;
    }
    
    .payment-icon span {
        font-size: 10px;
    }
    
    .btn-whatsapp {
        align-self: center;
    }
}

