/* ============================================
   TrustLayer Trade - CSS Styles
   AI-Powered Trade Document Fraud Detection
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #0A1628;
    --secondary: #1E3A5F;
    --accent: #00D4AA;
    --accent-dark: #00B894;
    --warning: #F59E0B;
    --danger: #EF4444;
    --danger-dark: #DC2626;
    --bg: #F8FAFC;
    --bg-card: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Risk Colors */
    --risk-low: #10B981;
    --risk-medium: #F59E0B;
    --risk-high: #EF4444;
    --risk-critical: #991B1B;
    
    /* Typography */
    --font-family: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.logo-accent {
    font-size: 20px;
    font-weight: 500;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.notification-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.notification-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.notification-btn svg {
    width: 20px;
    height: 20px;
}

.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.user-menu {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.user-avatar:hover {
    border-color: var(--accent);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition-fast);
}

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

.user-dropdown a {
    display: block;
    padding: var(--space-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-fast);
}

.user-dropdown a:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.user-dropdown a:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.user-dropdown a:hover {
    background: var(--bg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 212, 170, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    color: var(--accent);
    padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
    background: rgba(0, 212, 170, 0.1);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: var(--space-lg) var(--space-xl);
    font-size: 16px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.icon-btn:hover {
    background: var(--bg);
    color: var(--text-primary);
}

.icon-btn.danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 var(--space-4xl);
    background: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.5) 0%, transparent 40%),
        linear-gradient(135deg, rgba(0, 212, 170, 0.03) 0%, transparent 50%);
}

.hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.01) 100px,
            rgba(255, 255, 255, 0.01) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.01) 100px,
            rgba(255, 255, 255, 0.01) 101px
        );
}

.floating-docs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-doc {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    animation: float 20s ease-in-out infinite;
}

.floating-doc svg {
    width: 120px;
    height: 120px;
}

.doc-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.doc-2 {
    top: 60%;
    left: 8%;
    animation-delay: -5s;
}

.doc-3 {
    top: 20%;
    right: 8%;
    animation-delay: -10s;
}

.doc-4 {
    top: 65%;
    right: 5%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: var(--space-lg);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #4FD1C5 50%, #81E6D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   Dashboard Section
   ============================================ */
.dashboard {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-icon.documents-icon {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
}

.stat-icon.score-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.stat-icon.review-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.stat-icon.flagged-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    font-weight: 600;
}

.stat-trend svg {
    width: 16px;
    height: 16px;
}

.stat-trend.up {
    color: var(--risk-low);
}

.stat-trend.down {
    color: var(--danger);
}

.stat-trend.neutral {
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
}

.dashboard-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-filter {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.activity-item:hover {
    background: var(--border-light);
}

.activity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.activity-icon svg {
    width: 20px;
    height: 20px;
}

.activity-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.activity-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.activity-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.activity-icon.flagged {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-content p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.badge.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* Risk Chart */
.chart-container {
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
}

.risk-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--space-lg);
    height: 100%;
}

.risk-bar {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    height: var(--height);
    animation: growUp 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growUp {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.risk-bar::before {
    content: '';
    width: 100%;
    flex: 1;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.risk-bar.low::before {
    background: linear-gradient(to top, var(--risk-low), #34D399);
}

.risk-bar.medium::before {
    background: linear-gradient(to top, var(--risk-medium), #FBBF24);
}

.risk-bar.high::before {
    background: linear-gradient(to top, var(--risk-high), #F87171);
}

.risk-bar.critical::before {
    background: linear-gradient(to top, var(--risk-critical), #EF4444);
}

.risk-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.risk-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* ============================================
   Documents Section
   ============================================ */
.documents {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.upload-zone {
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: var(--space-xl);
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent);
    background: rgba(0, 212, 170, 0.02);
}

.upload-zone.dragover {
    transform: scale(1.01);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.upload-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-xl);
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.upload-icon svg {
    width: 40px;
    height: 40px;
}

.upload-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.upload-content p {
    color: var(--text-secondary);
}

.upload-formats {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-sm) 0;
}

.format-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

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

/* Upload Progress */
.upload-progress {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.progress-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.progress-percent {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-mono);
}

.progress-bar {
    height: 8px;
    background: var(--bg);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.3s ease;
}

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

/* Document List */
.document-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.document-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.document-card:hover {
    box-shadow: var(--shadow-md);
}

.doc-preview {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.doc-preview svg {
    width: 28px;
    height: 28px;
}

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

.doc-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: var(--space-xs);
}

.doc-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.doc-type {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

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

.doc-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Demo Prompt */
.demo-prompt {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.demo-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.demo-icon svg {
    width: 28px;
    height: 28px;
}

.demo-content {
    flex: 1;
}

.demo-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.demo-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   Analysis Section
   ============================================ */
.analysis {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

/* Processing Animation */
.analysis-processing {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.processing-animation {
    margin-bottom: var(--space-xl);
}

.scanner {
    position: relative;
    width: 200px;
    height: 260px;
    margin: 0 auto var(--space-xl);
}

.scanner-document {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text-secondary);
}

.scanner-document svg {
    width: 80px;
    height: 80px;
}

.scanner-line {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: var(--radius-full);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% {
        top: 10%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        top: 90%;
    }
}

.processing-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.4;
    transition: var(--transition-base);
}

.stage.active {
    opacity: 1;
}

.stage.completed {
    opacity: 1;
}

.stage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.stage.active .stage-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.stage.completed .stage-icon {
    background: var(--risk-low);
    border-color: var(--risk-low);
    color: white;
}

.stage-icon svg {
    width: 24px;
    height: 24px;
}

.stage span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.stage.active span {
    color: var(--accent);
}

.stage.completed span {
    color: var(--risk-low);
}

.stage-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
}

.processing-status {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Analysis Results */
.analysis-results {
    animation: fadeIn 0.5s ease;
}

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

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.risk-score-container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.risk-gauge {
    width: 180px;
    height: 180px;
}

.risk-gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: var(--bg);
    stroke-width: 12;
}

.gauge-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 1.5s ease;
}

.gauge-value {
    font-size: 42px;
    font-weight: 700;
    fill: var(--text-primary);
    text-anchor: middle;
    transform: rotate(90deg);
    transform-origin: center;
    font-family: var(--font-mono);
}

.gauge-label {
    font-size: 14px;
    fill: var(--text-secondary);
    text-anchor: middle;
    transform: rotate(90deg);
    transform-origin: center;
}

.risk-level {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.risk-level-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.risk-level-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-mono);
}

.risk-level-value.low {
    color: var(--risk-low);
}

.risk-level-value.medium {
    color: var(--risk-medium);
}

.risk-level-value.high {
    color: var(--risk-high);
}

.risk-level-value.critical {
    color: var(--risk-critical);
}

.results-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Results Cards */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.results-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.results-card .card-header {
    margin-bottom: var(--space-md);
}

.results-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 16px;
}

.results-card .card-header h3 svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.score-pill {
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.score-bar {
    height: 8px;
    background: var(--bg);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.score-fill {
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius-full);
    width: var(--width);
    transition: width 1s ease;
}

.findings-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.findings-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.findings-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: var(--radius-full);
    margin-top: 6px;
    flex-shrink: 0;
}

/* Inconsistencies Table */
.inconsistencies-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.inconsistencies-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.inconsistencies-table {
    overflow-x: auto;
}

.inconsistencies-table table {
    width: 100%;
    border-collapse: collapse;
}

.inconsistencies-table th,
.inconsistencies-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.inconsistencies-table th {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inconsistencies-table td {
    font-size: 14px;
    color: var(--text-primary);
}

.inconsistencies-table tbody tr:hover {
    background: var(--bg);
}

/* Extracted Data */
.extracted-data-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.extracted-data-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.data-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
}

.data-tab {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.data-tab:hover {
    color: var(--text-primary);
    background: var(--bg);
}

.data-tab.active {
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}

.data-content {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.data-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.data-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-field span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: var(--space-4xl) 0;
    background: var(--primary);
}

.features .section-header h2 {
    color: white;
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.toggle-save {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: var(--space-xs);
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--space-xl);
}

.pricing-amount .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount .price {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-primary);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
}

.pricing-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

.pricing-footer p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

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

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin: var(--space-lg) 0;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent);
    color: white;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-md);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.legal-links {
    display: flex;
    gap: var(--space-lg);
}

.legal-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Toast Notifications
   ============================================ */
.toast-container {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.leaving {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.toast.warning .toast-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.toast-message {
    font-size: 13px;
    color: var(--text-secondary);
}

.toast-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.toast-close:hover {
    background: var(--bg);
    color: var(--text-primary);
}

.toast-close svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 var(--space-3xl);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .upload-zone {
        padding: var(--space-xl);
    }
    
    .document-card {
        flex-wrap: wrap;
    }
    
    .doc-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .demo-prompt {
        flex-direction: column;
        text-align: center;
    }
    
    .results-header {
        flex-direction: column;
        text-align: center;
    }
    
    .risk-score-container {
        flex-direction: column;
    }
    
    .results-actions {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .inconsistencies-table {
        font-size: 12px;
    }
    
    .inconsistencies-table th,
    .inconsistencies-table td {
        padding: var(--space-sm);
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .risk-chart {
        gap: var(--space-sm);
    }
    
    .risk-bar {
        width: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .cta h2 {
        font-size: 28px;
    }
}

/* ============================================
   Company Verification Section
   ============================================ */
.company-verify {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.verify-search-container {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.verify-search-box {
    display: flex;
    gap: var(--space-md);
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

#companySearchInput {
    width: 100%;
    padding: var(--space-md) var(--space-md) var(--space-md) 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg);
    transition: var(--transition-fast);
}

#companySearchInput:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

#companySearchInput::placeholder {
    color: var(--text-muted);
}

.country-select {
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg);
    cursor: pointer;
    min-width: 140px;
}

.country-select:focus {
    outline: none;
    border-color: var(--accent);
}

.search-tags {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.search-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.company-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.company-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.company-card.verified {
    border-color: var(--risk-low);
}

.company-card.pending {
    border-color: var(--warning);
}

.company-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.company-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.company-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.company-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
    color: var(--text-secondary);
}

.company-location svg {
    width: 16px;
    height: 16px;
}

.verification-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-badge svg {
    width: 14px;
    height: 14px;
}

.verification-badge.verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.verification-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.company-details {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-row:last-child {
    border-bottom: none;
}

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

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.trust-score {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.trust-score.high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.trust-score.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.trust-score.low {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.company-verification-checks {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-primary);
}

.check-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.check-item.verified {
    color: var(--risk-low);
}

.check-item.verified svg {
    color: var(--risk-low);
}

.check-item.pending {
    color: var(--warning);
}

.check-item.pending svg {
    color: var(--warning);
}

.check-item.not-verified {
    color: var(--text-muted);
}

.check-item.not-verified svg {
    color: var(--text-muted);
}

.company-card-footer {
    display: flex;
    gap: var(--space-sm);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
}

.verification-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.verification-feature-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.verification-feature-item .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.verification-feature-item .feature-icon svg {
    width: 32px;
    height: 32px;
}

.verification-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   Company Pricing Section
   ============================================ */
.company-pricing {
    padding: var(--space-4xl) 0;
    background: var(--primary);
}

.company-pricing .section-header h2 {
    color: white;
}

.company-pricing .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.pricing-note strong {
    color: var(--accent);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-btn svg {
    width: 16px;
    height: 16px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition-fast);
    z-index: 100;
}

.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.language-option:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.language-option:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.language-option:hover {
    background: var(--bg);
}

.language-option.active {
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}

.language-flag {
    font-size: 18px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.trust-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Payment Security Badges */
.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    color: var(--text-muted);
}

.payment-badge svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .verify-search-box {
        flex-direction: column;
    }
    
    .company-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verification-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid.two-col {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-info p {
    margin: 0.25rem 0 0 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-flag {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-rating .star {
    color: #FCD34D;
    font-size: 1.25rem;
}

.testimonial-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

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

.btn-block {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--risk-low);
    stroke-width: 2;
}

.form-success h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.form-success p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-info-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.contact-info-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   AVATAR VIDEO SECTION
   ============================================ */

.avatar-video-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    color: white;
}

.avatar-video-section .section-header h2,
.avatar-video-section .section-header p {
    color: white;
}

.video-container {
    margin-top: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-content {
    text-align: center;
    color: white;
}

.video-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.video-content p {
    margin: 0 0 var(--space-md) 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */

.verification-carousel-section {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.carousel-wrapper {
    position: relative;
    margin-top: var(--space-xl);
}

.carousel-container {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--space-md) 0;
    scroll-snap-type: x mandatory;
}

.carousel-container::-webkit-scrollbar {
    height: 6px;
}

.carousel-container::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: var(--radius-full);
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: var(--radius-full);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - var(--space-md));
    scroll-snap-align: start;
    min-width: 280px;
}

.carousel-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.carousel-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.carousel-image {
    width: 100%;
    height: 150px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image svg {
    width: 100%;
    height: 100%;
}

.carousel-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.carousel-location {
    margin: 0 0 var(--space-md) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.carousel-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.carousel-status.verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.carousel-description {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 20;
}

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

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {
    /* Dark mode text fixes */
    .hero-title,
    .section-header h2,
    .dashboard-card h3,
    .company-card h3,
    .testimonial-card h4,
    .contact-form-wrapper label {
        color: #1E293B;
    }
    
    /* Form centering */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Testimonials grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Carousel mobile */
    .carousel-slide {
        flex: 0 0 calc(100% - var(--space-md));
        min-width: 100%;
    }
    
    .carousel-btn {
        display: none;
    }
    
    /* Video responsive */
    .video-player {
        padding-bottom: 56.25%;
    }
    
    /* Contact info stacking */
    .contact-info {
        gap: var(--space-md);
    }
    
    /* Button sizing */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Navigation menu button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 1px;
        transition: var(--transition);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Navigation links mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: 1px solid var(--border);
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    /* Section padding mobile */
    .section-header {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Dashboard grid mobile */
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: var(--space-md);
    }
    
    .form-group {
        gap: 0.375rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
    }
}

/* ============================================
   Company Verification Section
   ============================================ */
.company-verify {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.verify-search-container {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.verify-search-box {
    display: flex;
    gap: var(--space-md);
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

#companySearchInput {
    width: 100%;
    padding: var(--space-md) var(--space-md) var(--space-md) 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg);
    transition: var(--transition-fast);
}

#companySearchInput:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

#companySearchInput::placeholder {
    color: var(--text-muted);
}

.country-select {
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg);
    cursor: pointer;
    min-width: 140px;
}

.country-select:focus {
    outline: none;
    border-color: var(--accent);
}

.search-tags {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.search-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.company-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.company-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.company-card.verified {
    border-color: var(--risk-low);
}

.company-card.pending {
    border-color: var(--warning);
}

.company-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.company-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.company-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.company-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 14px;
    color: var(--text-secondary);
}

.company-location svg {
    width: 16px;
    height: 16px;
}

.verification-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-badge svg {
    width: 14px;
    height: 14px;
}

.verification-badge.verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.verification-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.company-details {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-row:last-child {
    border-bottom: none;
}

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

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.trust-score {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.trust-score.high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--risk-low);
}

.trust-score.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.trust-score.low {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.company-verification-checks {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-primary);
}

.check-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.check-item.verified {
    color: var(--risk-low);
}

.check-item.verified svg {
    color: var(--risk-low);
}

.check-item.pending {
    color: var(--warning);
}

.check-item.pending svg {
    color: var(--warning);
}

.check-item.not-verified {
    color: var(--text-muted);
}

.check-item.not-verified svg {
    color: var(--text-muted);
}

.company-card-footer {
    display: flex;
    gap: var(--space-sm);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
}

.verification-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.verification-feature-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.verification-feature-item .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.verification-feature-item .feature-icon svg {
    width: 32px;
    height: 32px;
}

.verification-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   Company Pricing Section
   ============================================ */
.company-pricing {
    padding: var(--space-4xl) 0;
    background: var(--primary);
}

.company-pricing .section-header h2 {
    color: white;
}

.company-pricing .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.pricing-note strong {
    color: var(--accent);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-btn svg {
    width: 16px;
    height: 16px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition-fast);
    z-index: 100;
}

.language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.language-option:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.language-option:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.language-option:hover {
    background: var(--bg);
}

.language-option.active {
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
}

.language-flag {
    font-size: 18px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.trust-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Payment Security Badges */
.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    color: var(--text-muted);
}

.payment-badge svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .verify-search-box {
        flex-direction: column;
    }
    
    .company-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verification-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid.two-col {
        grid-template-columns: 1fr;
    }
}