/* ===== CSS Variables - Light Professional Theme ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.15);
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.06);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(37, 99, 235, 0.12);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--gray-300);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--gray-300);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

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

.navbar .nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 10px 16px !important;
    font-size: 15px;
    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--text-primary) !important;
}

.navbar .dropdown-menu {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 12px;
    min-width: 220px;
    box-shadow: var(--shadow-card);
}

.navbar .dropdown-item {
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.navbar .dropdown-item:hover {
    background: var(--gray-50);
    color: var(--text-primary);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(0);
}

.nav-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.nav-buttons .btn-outline-light {
    color: var(--text-primary);
    border-color: var(--gray-300);
}

.nav-buttons .btn-outline-light:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-tag i {
    font-size: 14px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 520px;
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.hero-promo i {
    font-size: 18px;
}

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

.hero-stats-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-card);
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== 3D Globe Section ===== */
.globe-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
}

#globe-canvas:active {
    cursor: grabbing;
}

#globe-canvas canvas {
    border-radius: var(--radius-xl);
}

.globe-stats {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    z-index: 10;
}

.globe-stat {
    text-align: center;
}

.globe-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.globe-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.globe-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
}

.legend-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
    animation: legendPulse 2s ease-in-out infinite;
}

@keyframes legendPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 15px rgba(37, 99, 235, 0.8); }
}

/* Globe responsive */
@media (max-width: 991.98px) {
    .globe-container {
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .globe-container {
        height: 350px;
    }

    .globe-stats {
        padding: 12px 20px;
        gap: 16px;
    }

    .globe-stat-number {
        font-size: 1.25rem;
    }
}

/* ===== Trust Badges Section ===== */
.trust-badges {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badges-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 8px;
}

.badge-item:hover {
    color: var(--text-secondary);
    background: var(--gray-50);
}

.badge-item i {
    font-size: 20px;
    color: var(--primary);
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(0, 182, 122, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(0, 182, 122, 0.12);
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
}

.trustpilot-stars i {
    color: #00b67a;
    font-size: 14px;
}

.trustpilot-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.trustpilot-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.trustpilot-text span {
    color: var(--text-muted);
}

/* ===== Logo Marquee Section ===== */
.logo-marquee {
    padding: 60px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-header {
    text-align: center;
    margin-bottom: 40px;
}

.marquee-header p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    min-width: 160px;
    height: 60px;
    opacity: 0.4;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item span {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 1px;
}

/* ===== Products Section ===== */
.products {
    background: var(--white);
    padding: 120px 0;
}

.product-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-icon {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.product-icon i {
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.product-card:hover .product-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.product-card > p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.product-features {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.product-features li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.product-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.product-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ===== Features Section ===== */
.features {
    background: var(--gray-50);
    padding: 120px 0;
}

.features-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.features-content .lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.feature-item {
    padding: 16px 0;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon-box {
    background: rgba(37, 99, 235, 0.12);
    transform: scale(1.05);
}

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

.feature-item h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}

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

/* Dashboard Preview */
.features-visual {
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-800);
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.preview-header {
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.preview-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-header .dot:nth-child(1) { background: #ff5f56; }
.preview-header .dot:nth-child(2) { background: #ffbd2e; }
.preview-header .dot:nth-child(3) { background: #27c93f; }

.preview-content {
    padding: 24px;
}

.balance-card {
    background: rgba(37, 99, 235, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.balance-label {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.balance-currencies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.currency-chip {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-300);
    font-weight: 500;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.tx-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.tx-icon.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

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

.tx-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.tx-time {
    font-size: 12px;
    color: var(--gray-500);
}

.tx-amount {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.tx-amount.success {
    color: #34d399;
}

.tx-amount.pending {
    color: #fbbf24;
}

/* ===== Solutions Section ===== */
.solutions {
    background: var(--white);
    padding: 120px 0;
}

.solution-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.solution-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    background: rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
}

.solution-icon i {
    font-size: 30px;
    color: var(--secondary);
    transition: var(--transition);
}

.solution-card:hover .solution-icon i {
    color: var(--primary);
}

.solution-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Developers Section ===== */
.developers {
    background: var(--gray-50);
    padding: 120px 0;
}

.developer-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.developer-content .lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.developer-content > p {
    color: var(--text-muted);
    line-height: 1.7;
}

.developer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dev-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.dev-feature i {
    color: var(--success);
    font-size: 18px;
}

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

.code-showcase {
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.code-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.code-tab {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-weight: 500;
}

.code-tab.active {
    color: #fff;
    border-bottom-color: var(--primary);
}

.code-tab:hover {
    color: #fff;
}

.code-window {
    padding: 24px;
    overflow-x: auto;
}

.code-window pre {
    margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.7;
}

.code-window code {
    color: #e2e8f0;
}

.code-comment {
    color: var(--gray-500);
}

.code-keyword {
    color: #60a5fa;
}

.code-function {
    color: #22d3ee;
}

.code-string {
    color: #86efac;
}

/* ===== Testimonial Section ===== */
.testimonial {
    background: var(--white);
    padding: 120px 0;
    overflow: hidden;
}

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

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-width: 100%;
    box-shadow: var(--shadow-card);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 5px;
}

/* ===== Investors Section ===== */
.investors {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.investors-header {
    text-align: center;
    margin-bottom: 48px;
}

.investors-header p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.investors-track {
    display: flex;
    animation: investorsScroll 25s linear infinite;
    width: max-content;
}

.investors-track:hover {
    animation-play-state: paused;
}

@keyframes investorsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.investor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    min-width: 200px;
}

.investor-item span {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.investor-item:hover span {
    color: var(--gray-600);
}

/* ===== About Section ===== */
.about {
    background: var(--white);
    padding: 120px 0;
}

.about-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.about-content > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    padding: 12px 0;
}

.highlight-item i {
    color: var(--success);
    font-size: 20px;
}

.about-stats {
    display: flex;
    justify-content: center;
}

.about-stat-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-card);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.stat-row:first-child {
    border-bottom: 1px solid var(--border-color);
}

.stat-box {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--gray-50);
    padding: 120px 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary);
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    background: var(--white);
    color: var(--text-secondary);
    padding: 0 24px 24px;
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
    padding: 120px 0;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    padding: 16px 0;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(37, 99, 235, 0.12);
}

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

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    color: var(--text-primary);
}

.contact-form .form-select {
    color: var(--text-muted);
}

.contact-form .form-select option {
    background: var(--white);
    color: var(--text-primary);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.03) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    color: var(--gray-300);
}

.footer-brand .logo-text {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 14px;
    margin-top: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

.footer-links h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-compliance {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 24px;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.footer-compliance .small {
    color: var(--gray-500);
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

    .hero-stats-card {
        margin-top: 48px;
        padding: 32px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features,
    .products,
    .solutions,
    .developers,
    .about,
    .contact,
    .faq,
    .testimonial {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 36px;
    }

    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 16px;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-card);
    }

    .nav-buttons {
        margin-top: 16px;
        flex-direction: column;
    }

    .badges-content {
        gap: 20px;
    }

    .badge-item {
        font-size: 13px;
        padding: 6px 12px;
    }

    .stats-grid {
        gap: 24px;
    }

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

    .code-showcase {
        margin-top: 40px;
    }

    .contact-form {
        padding: 28px;
    }

    .dashboard-preview {
        margin-top: 40px;
    }

    .logo-item {
        padding: 0 24px;
        min-width: 120px;
    }

    .investor-item {
        padding: 12px 32px;
        min-width: 160px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .product-card,
    .solution-card {
        padding: 24px;
    }

    .hero-stats-card {
        padding: 24px;
    }

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

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Utility Classes ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.glow {
    box-shadow: var(--shadow-glow);
}
