:root {
    /* Professional OptmizePay Palette - Matching Logo */
    --primary-color: #2563eb; /* Vibrant Blue */
    --primary-dark: #1e40af;
    --secondary-color: #6366f1; /* Deep Purple */
    --accent-color: #10b981; /* Green accent (like logo leaf) */

    --text-main: #1e293b; /* Dark charcoal */
    --text-light: #64748b;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;

    /* Professional blue to purple gradient (matching logo) */
    --gradient-main: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
    --gradient-text: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #7c3aed 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --font-main: 'Outfit', sans-serif;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: #090909;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    background-color: #090909;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
    opacity: 0.95;
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-text {
    color: #ffffff;
    background: transparent;
}

.btn-text:hover {
    color: #b0b0b0;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #090909 !important;
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .logo,
.navbar .btn-text,
.navbar .nav-links a {
    color: #ffffff !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.logo-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.nav-links {
    display: none;
}

.nav-actions {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-links a {
        font-weight: 500;
        color: #b0b0b0;
    }

    .nav-links a:hover {
        color: #ffffff;
    }

    .nav-actions {
        display: flex !important;
        gap: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* User Profile Dropdown */
.user-profile-dropdown {
    position: relative;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.user-avatar-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.user-avatar-btn i {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.2s;
}

.user-profile-dropdown.active .user-avatar-btn i {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.user-profile-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.user-dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.user-dropdown-info {
    flex: 1;
    min-width: 0;
}

.user-dropdown-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-email {
    font-size: 0.875rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-role {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    font-weight: 500;
}

.user-dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
}

.user-dropdown-links {
    padding: 0.5rem 0;
}

.user-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.user-dropdown-link:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

.user-dropdown-link i {
    width: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.user-dropdown-link:hover i {
    color: var(--primary-color);
}

.user-dropdown-link-danger {
    color: #ef4444;
}

.user-dropdown-link-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

.user-dropdown-link-danger i {
    color: #ef4444;
}

.user-dropdown-link-danger:hover i {
    color: #dc2626;
}

@media (max-width: 767px) {
    .user-dropdown-menu {
        right: -1rem;
        min-width: 260px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-menu-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background-color: #090909;
    color: #ffffff;
}

.hero h1,
.hero p,
.hero .hero-subtitle {
    color: #ffffff;
}

.hero .bullet-item {
    color: #e5e5e5;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0%, rgba(99, 102, 241, 0.05) 30%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

/* Hero Bullets */
.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-size: 1rem;
}

.bullet-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Hero Visual (Abstract Dashboard) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.card-title {
    font-weight: 600;
    color: var(--text-light);
}

.card-badge {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #0f172a;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    gap: 0.5rem;
}

.bar {
    width: 100%;
    background: #e2e8f0;
    border-radius: 4px;
    transition: height 1s ease;
}

.bar:nth-child(odd) {
    background: var(--primary-color);
    opacity: 0.8;
}

.bar:nth-child(even) {
    background: var(--secondary-color);
    opacity: 0.6;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}

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

.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 3s;
}

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

.icon-box.success {
    background: var(--secondary-color);
}

.icon-box.primary {
    background: var(--primary-color);
}

.text-box .title {
    font-size: 0.875rem;
    font-weight: 600;
}

.text-box .subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

.amount {
    font-weight: 700;
    color: var(--secondary-color);
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: #090909;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #b0b0b0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-blue { background: #eff6ff; color: #2563eb; }
.icon-green { background: #f0fdf4; color: #16a34a; }
.icon-purple { background: #f5f3ff; color: #6366f1; }
.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-cyan { background: #ecfeff; color: #0891b2; }
.icon-pink { background: #fdf2f8; color: #be185d; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Positioning & Trust Section */
.positioning-trust {
    padding: 3rem 0;
    background: #090909;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

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

.trust-copy {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.trust-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    font-size: 1rem;
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #090909;
}

.cta-box {
    background: rgb(2, 7, 32);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #090909;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: #94a3b8;
    margin: 1rem 0 1.5rem;
}

.footer-brand .logo {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.25rem;
}

.social-links a:hover {
    color: white;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* What You Can Sell Section */
.what-you-can-sell,
.product-types-section {
    padding: 6rem 0;
    background: #090909;
}

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

.product-type-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    background: #020720;
    border: 1px solid rgba(37, 99, 235, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.product-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: #020720;
    border-color: var(--primary-color);
}

.product-type-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.product-type-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.product-type-subtitle {
    font-size: 0.875rem;
    color: #b0b0b0 !important;
    margin: 0;
}

/* How It Works Section */
.how-it-works,
.how-it-works-section {
    padding: 6rem 0;
    background: #090909;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #020720;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 1rem auto 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.step-card p {
    color: #b0b0b0 !important;
    line-height: 1.7;
}

/* Funnels & Upsell Section */
.funnels-upsell,
.funnels-section {
    padding: 6rem 0;
    background: #090909;
}

.funnels-content {
    max-width: 800px;
    margin: 0 auto;
}

.funnels-text {
    text-align: center;
}

.funnels-copy {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.funnels-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .funnels-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

.funnels-highlight-item,
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff !important;
}

.funnels-highlight-item i {
    color: var(--accent-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.funnels-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Payments Section */
.payments-section {
    padding: 6rem 0;
    background: #090909;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-method-card,
.payment-method {
    padding: 2rem 1.5rem;
    background: #020720;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.payment-method-card:hover,
.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.payment-method-card h3,
.payment-method h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    line-height: 1.4;
}

.payment-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.payments-tagline {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

/* Affiliates Section */
.affiliates-section {
    padding: 6rem 0;
    background: #090909;
}

.affiliates-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .affiliates-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.affiliate-feature-card,
.affiliate-feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #020720;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.affiliate-feature-card:hover,
.affiliate-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: #020720;
    border-color: var(--primary-color);
}

.affiliate-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.affiliate-feature-card h3,
.affiliate-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.affiliate-feature-card p,
.affiliate-feature p {
    color: #b0b0b0 !important;
    line-height: 1.7;
}

/* Dashboard Section */
.dashboard-section {
    padding: 6rem 0;
    background: #090909;
}

.dashboard-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #020720;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.dashboard-feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.dashboard-feature-item i {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dashboard-feature-item h4,
.dashboard-feature-item h3 {
    font-size: 1.125rem;
    color: #ffffff !important;
    margin: 0;
}

/* Who Is For Section */
.who-is-for-section {
    padding: 6rem 0;
    background: #090909;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #020720;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: #020720;
    border-color: var(--primary-color);
}

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

.audience-item span {
    font-weight: 500;
    color: #ffffff !important;
}

/* Security Section */
.security-section {
    padding: 6rem 0;
    background: #090909;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.security-feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #020720;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.security-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.security-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.75rem;
}

.security-feature-item i {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.75rem;
}

.security-feature-item h4 {
    font-size: 1.125rem;
    color: #ffffff !important;
    margin-bottom: 0.75rem;
}

.security-feature-item p {
    color: #b0b0b0 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section Updates */
.cta-microcopy {
    font-size: 1rem !important;
    opacity: 0.85 !important;
    margin-bottom: 2rem !important;
}

/* Footer */
.main-footer {
    background: #090909;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-languages {
    color: #94a3b8;
}

.footer-languages a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-languages a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .steps-container {
        gap: 3rem;
    }

    .step-card {
        margin-top: 2rem;
    }
}
