/* SilkRoute - Ultra Modern Hi-Tech Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-surface: #222222;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --accent-primary: #ff6b35;
    --accent-secondary: #00d4ff;
    --accent-success: #00ff88;
    --accent-warning: #ffaa00;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8f69 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-surface: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-hero: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.4);
    --shadow-blue-glow: 0 0 20px rgba(0, 212, 255, 0.4);
    
    /* Borders */
    --border-primary: rgba(255, 255, 255, 0.1);
    --border-secondary: rgba(255, 255, 255, 0.05);
    --border-accent: rgba(255, 107, 53, 0.3);
    
    /* Animation */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    background: 
        radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 90%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 20%, rgba(255, 107, 53, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 60% 10%, rgba(255, 170, 0, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .brand-logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }
    
    .brand-logo i {
        font-size: 1.5rem;
    }
}

.brand-logo i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cta-button {
        display: none;
    }
    
    .header-actions {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .brand-logo {
        font-size: 1.1rem;
    }
    
    .brand-logo i {
        font-size: 1.3rem;
    }
}



.lang-toggle {
    display: flex;
    background: var(--bg-surface);
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid var(--border-primary);
}

.lang-option {
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .lang-option {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

.lang-option.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: white;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 60%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--gradient-surface);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

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

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    color: white;
}

.action-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

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

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-status {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-status.online {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.region-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-secondary);
    transition: var(--transition-fast);
}

.region-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-primary);
}

.region-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.region-item span {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.region-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-success);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Platform Section */
.platform-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--accent-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item .benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue-glow);
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--gradient-surface);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
}

.dashboard-title {
    font-size: 1rem;
    font-weight: 600;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

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

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.dashboard-content {
    padding: 1.5rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-secondary);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.metric-change.positive {
    color: var(--accent-success);
}

.chart-area {
    height: 100px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 100%;
    gap: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    min-height: 20%;
    transition: var(--transition-smooth);
}

.chart-bar:hover {
    opacity: 0.8;
}

/* Platform Section */
.platform-section {
    background: transparent;
    position: relative;
    padding: 6rem 0 4rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.stat-growth {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* Features Section */
.features-section {
    background: transparent;
    position: relative;
    padding: 8rem 0;
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Regions Section */
.regions-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.region-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

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

.region-card.premium::before {
    background: var(--gradient-secondary);
}

.region-flag {
    margin-bottom: 1.5rem;
}

.region-flag img {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.region-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.region-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.region-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.region-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.region-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: var(--shadow-blue-glow);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Success Metrics */
.success-metrics {
    background: var(--gradient-surface);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 2rem;
}

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

.metrics-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.metrics-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    gap: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.metric-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-cards::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 107, 53, 0.6) 50%, 
        rgba(255, 107, 53, 0.3) 80%, 
        transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.process-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 
        var(--shadow-lg),
        0 0 30px rgba(255, 107, 53, 0.2);
}

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

.process-card:hover::before {
    transform: scaleX(1);
}

.card-step {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    font-size: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.process-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(6px) scale(1.1);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.process-card:last-child .card-arrow {
    display: none;
}

/* Responsive adjustments for process cards */
@media (max-width: 1200px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-cards::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .card-step {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-surface);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: var(--transition-fast);
    color: var(--accent-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.main-footer {
    background: transparent;
    border-top: 1px solid var(--border-primary);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-container {
        padding: 2rem 1rem 0;
    }
    
    .footer-brand {
        max-width: none;
    }
}

.footer-brand {
    max-width: 500px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.brand-logo i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-email i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.footer-email a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-email a:hover {
    color: var(--accent-primary);
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

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

.footer-actions h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-actions p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-buttons {
        align-items: center;
    }
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-align: left;
}

@media (max-width: 768px) {
    .footer-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
}

.footer-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.footer-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.footer-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.footer-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
}

.footer-copyright {
    border-top: 1px solid var(--border-primary);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-copyright p {
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .footer-container {
        padding: 2rem 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        justify-content: space-around;
    }
}

/* Global Floating Particles */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: globalFloat linear infinite;
}

@keyframes globalFloat {
    0% { 
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) rotate(324deg) scale(1);
    }
    100% { 
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Enhanced Section Transitions */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 40%);
    animation: sectionGlow 25s linear infinite;
    pointer-events: none;
}

@keyframes sectionGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ===== PRIVACY PAGE ===== */
.privacy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 60px;
    position: relative;
}

.privacy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-content {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 50px 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.last-updated {
    text-align: center;
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
}

.policy-section {
    margin-bottom: 45px;
}

.policy-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2d2d2d;
    margin: 30px 0 18px;
    font-family: 'Space Grotesk', sans-serif;
}

.policy-section p {
    color: #444444;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1rem;
    text-align: justify;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-section li {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
    font-size: 0.95rem;
}

.policy-section li::marker {
    color: #ff6b35;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    border: 1px solid #e9ecef;
}

.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444444;
    font-size: 1rem;
}

.contact-info i {
    color: #ff6b35;
    width: 22px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}