/* ============================================
   Meliasoft Modern Redesign
   Design Direction: "Digital Precision"
   Color Scheme: Based on MLS Logo
   - Navy Blue + Orange gradient theme
   - Professional enterprise aesthetic
   - Light/Dark theme support
   ============================================ */

/* CSS Custom Properties - Dark Theme (Default) */
:root {
    /* Colors - MLS Brand Palette (Dark Theme) */
    --color-bg-primary: #0a1628;
    --color-bg-secondary: #0f1e32;
    --color-bg-tertiary: #162a44;
    --color-bg-card: rgba(22, 42, 68, 0.6);
    --color-bg-card-hover: rgba(30, 58, 110, 0.5);

    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    /* Accent colors - MLS Logo Colors */
    --color-accent-1: #3b5998;      /* Royal Blue from logo */
    --color-accent-2: #1e3a6e;      /* Navy Blue (MLS text) */
    --color-accent-3: #f5a623;      /* Orange accent */
    --color-accent-4: #e8943a;      /* Darker orange */

    /* Brand colors */
    --color-blue-light: #4a6eb5;
    --color-blue-dark: #1e3a6e;
    --color-orange: #f5a623;
    --color-orange-dark: #e8943a;

    /* Gradients - Based on logo ring */
    --gradient-primary: linear-gradient(135deg, var(--color-accent-1) 0%, #6b5b95 50%, var(--color-accent-3) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent-1) 0%, var(--color-accent-3) 100%);
    --gradient-blue: linear-gradient(135deg, #4a6eb5 0%, #1e3a6e 100%);
    --gradient-orange: linear-gradient(135deg, #f5a623 0%, #e8943a 100%);
    --gradient-ring: linear-gradient(180deg, var(--color-accent-3) 0%, var(--color-accent-1) 50%, #6b5b95 75%, var(--color-accent-3) 100%);
    --gradient-surface: linear-gradient(180deg, rgba(59, 89, 152, 0.1) 0%, transparent 100%);

    /* Theme-specific */
    --header-bg: rgba(10, 22, 40, 0.85);
    --header-bg-scrolled: rgba(10, 22, 40, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-hover: rgba(255, 255, 255, 0.2);
    --input-bg: rgba(0, 0, 0, 0.2);
    --card-border: rgba(255, 255, 255, 0.05);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-display: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(59, 89, 152, 0.4);
    --shadow-glow-orange: 0 0 40px rgba(245, 166, 35, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 80px;
    --container-max: 1280px;
}

/* Light Theme */
[data-theme="light"] {
    /* Brighter, cleaner backgrounds */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-card: rgba(255, 255, 255, 1);
    --color-bg-card-hover: rgba(255, 255, 255, 1);

    /* Readable text colors - balanced contrast */
    --color-text-primary: #1e293b;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;

    /* Adjusted accents for light theme */
    --color-accent-1: #3b5998;
    --color-accent-2: #2d4a7c;

    /* Theme-specific - Enhanced borders for light theme */
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-bg-scrolled: rgba(255, 255, 255, 0.98);
    --border-color: rgba(59, 89, 152, 0.15);
    --border-color-hover: rgba(59, 89, 152, 0.25);
    --input-bg: #f8fafc;
    --card-border: rgba(59, 89, 152, 0.12);

    /* Enhanced shadows for light theme - more prominent */
    --shadow-sm: 0 2px 8px rgba(59, 89, 152, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(59, 89, 152, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(59, 89, 152, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(59, 89, 152, 0.15);

    /* Gradients adjusted for light */
    --gradient-surface: linear-gradient(180deg, rgba(59, 89, 152, 0.04) 0%, transparent 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 89, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 89, 152, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-accent-3);
    background: rgba(245, 166, 35, 0.1);
}

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

.btn-white:hover {
    background: var(--color-text-primary);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-base);
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--color-accent-3);
    background: var(--color-bg-card);
}

.theme-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
    position: absolute;
}

.theme-icon.sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-icon.moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-icon.sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-icon.moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

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

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text-secondary);
}

.lang-trigger:hover {
    border-color: var(--color-royal-blue);
    color: var(--color-text-primary);
}

.lang-icon {
    width: 18px;
    height: 18px;
}

.lang-current {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.lang-arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-base);
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 100;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-base);
    text-align: left;
}

.lang-option:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
}

.lang-option.active {
    background: rgba(59, 89, 152, 0.15);
    color: var(--color-royal-blue);
}

.lang-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.lang-name {
    font-weight: 500;
}

/* Light theme lang switcher */
[data-theme="light"] .lang-trigger {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .lang-dropdown {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .lang-option:hover {
    background: var(--color-bg-tertiary);
}

[data-theme="light"] .lang-option.active {
    background: rgba(59, 89, 152, 0.1);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    background: var(--header-bg-scrolled);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-icon {
    display: flex;
    width: 40px;
    height: 40px;
    color: var(--color-accent-1);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    padding: var(--space-sm);
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 89, 152, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(74, 110, 181, 0.15) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 0%, transparent 70%);
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 89, 152, 0.25);
    top: -200px;
    right: 0;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(245, 166, 35, 0.12);
    bottom: -100px;
    left: 0;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(74, 110, 181, 0.15);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-accent-3);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-4);
    border-radius: 50%;
    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(var(--text-4xl), 6vw, var(--text-6xl));
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

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

.stat {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-accent-1);
}

.stat-label {
    width: 100%;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual - Dashboard Preview */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 750px;
    z-index: 0;
}

.dashboard-preview {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.window-controls span:nth-child(1) { background: #ff5f57; }
.window-controls span:nth-child(2) { background: #febc2e; }
.window-controls span:nth-child(3) { background: #28c840; }

.dashboard-title {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.dashboard-content {
    display: flex;
    padding: var(--space-lg);
    gap: var(--space-lg);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.sidebar-item {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.sidebar-item.active {
    background: var(--gradient-accent);
}

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.chart-row {
    display: flex;
    gap: var(--space-md);
}

.chart-card {
    flex: 1;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.chart-header {
    height: 12px;
    width: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    height: 80px;
}

.bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-accent);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    animation: growBar 1.5s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.bar:nth-child(1) { --i: 1; }
.bar:nth-child(2) { --i: 2; }
.bar:nth-child(3) { --i: 3; }
.bar:nth-child(4) { --i: 4; }
.bar:nth-child(5) { --i: 5; }
.bar:nth-child(6) { --i: 6; }

@keyframes growBar {
    from { height: 0; }
    to { height: var(--height); }
}

.chart-donut {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.chart-donut svg {
    width: 80px;
    height: 80px;
    animation: rotateDonut 2s ease-out forwards;
}

@keyframes rotateDonut {
    from { stroke-dashoffset: 251; }
    to { stroke-dashoffset: 0; }
}

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

.table-row {
    height: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.table-row.header {
    background: rgba(255, 255, 255, 0.08);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 10px;
    background: var(--gradient-accent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-10px); }
    50% { transform: translateY(40px); }
    100% { transform: translateY(-10px); }
}

/* Trusted Section */
.trusted-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-label {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: var(--space-3xl);
    animation: marquee 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

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

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

/* Section Styles */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent-1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-lead {
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.about-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

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

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-accent-1);
}

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

.feature-text h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.feature-text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* About Visual Card */
.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 89, 152, 0.2) 0%, transparent 70%);
    pointer-events: none;
    overflow: hidden;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.v-stat {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.v-stat:hover {
    background: rgba(59, 89, 152, 0.1);
    transform: translateX(10px);
}

.v-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    color: white;
}

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

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

.v-stat-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
}

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

/* Products Section */
.products-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

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

.product-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-surface);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover {
    border-color: rgba(59, 89, 152, 0.3);
    transform: translateY(-8px);
}

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

.product-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.15) 0%, rgba(245, 166, 35, 0.08) 100%);
    border-color: rgba(59, 89, 152, 0.2);
}

.product-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-sm);
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: white;
}

.product-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-accent-1);
    position: relative;
    z-index: 1;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.product-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.product-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent-1);
    border-radius: 50%;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-1);
    position: relative;
    z-index: 1;
}

.product-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.product-link:hover svg {
    transform: translateX(4px);
}

/* Features Section */
.features-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

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

.feature-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 89, 152, 0.1) 0%, transparent 70%);
}

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

.feature-card {
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(59, 89, 152, 0.2);
    background: var(--color-bg-card-hover);
}

.feature-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: var(--radius-xl);
    color: var(--color-accent-1);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-card-icon {
    background: var(--gradient-accent);
    color: white;
    border-color: transparent;
}

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

.feature-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.industries-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.industry-tag {
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
    cursor: default;
}

.industry-tag:hover {
    border-color: rgba(59, 89, 152, 0.3);
    color: var(--color-text-primary);
    background: rgba(59, 89, 152, 0.1);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

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

.testimonial-card {
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(59, 89, 152, 0.2);
    transform: translateY(-4px);
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent-1);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-sm);
    color: white;
}

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

.author-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
}

.author-role {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-accent-1) 40%, var(--color-accent-3) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
}

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

.cta-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    color: white;
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Contact Section */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-accent-1);
}

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

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text a,
.contact-text span {
    font-size: var(--text-base);
    color: var(--color-text-primary);
}

.contact-text a:hover {
    color: var(--color-accent-1);
}

.contact-support h4 {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.support-tools {
    display: flex;
    gap: var(--space-sm);
}

.support-tool {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.support-tool:hover {
    border-color: var(--color-accent-1);
    color: var(--color-accent-1);
}

/* Contact Form */
.contact-form-wrapper {
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
}

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

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

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

.form-group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-1);
    background: rgba(59, 89, 152, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%2394a3b8' stroke-linecap='round' stroke-width='1.5' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-select.open .select-trigger {
    border-color: var(--color-accent-1);
    background: rgba(59, 89, 152, 0.05);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.select-value {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
}

.select-value.placeholder {
    color: var(--color-text-muted);
}

.select-arrow {
    width: 12px;
    height: 12px;
    color: var(--color-text-muted);
    transition: transform var(--transition-fast);
}

.custom-select.open .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-accent-1);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.custom-select.open .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.select-option:hover {
    background: rgba(59, 89, 152, 0.2);
    color: var(--color-text-primary);
}

.select-option.selected {
    background: var(--color-accent-1);
    color: white;
}

/* Scrollbar for options */
.select-options::-webkit-scrollbar {
    width: 6px;
}

.select-options::-webkit-scrollbar-track {
    background: transparent;
}

.select-options::-webkit-scrollbar-thumb {
    background: var(--color-accent-1);
    border-radius: 3px;
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.footer-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-accent-1);
    border-color: var(--color-accent-1);
    color: white;
}

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

.footer-links h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

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

.footer-badges .badge {
    padding: var(--space-xs) var(--space-md);
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent-1);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-visual {
        width: 45%;
        right: 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        background: var(--color-bg-primary);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-base);
        z-index: 999;
        display: none;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        list-style: none;
        text-align: center;
    }

    .nav-menu .nav-link {
        font-size: var(--text-xl);
        padding: var(--space-md);
        color: var(--color-text-primary);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: var(--space-sm) 0;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown .dropdown-menu a {
        text-align: center;
        padding: var(--space-sm) var(--space-md);
        color: var(--color-text-secondary);
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-content {
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin: 0 auto var(--space-md);
    }

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

    .feature-text h4,
    .feature-text p {
        text-align: center;
    }

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-support {
        text-align: center;
    }

    .support-tools {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --header-height: 70px;
    }

    .header {
        padding: var(--space-sm) 0;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        display: none;
    }

    .nav-actions {
        gap: var(--space-sm);
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .lang-trigger {
        padding: 6px 10px;
    }

    .lang-current {
        font-size: var(--text-xs);
    }

    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-xs) var(--space-sm);
    }

    .hero-title {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
    }

    .hero-description {
        font-size: var(--text-base);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-column: span 1;
    }

    .product-card {
        padding: var(--space-xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: var(--space-xl);
    }

    .industries-wrapper {
        gap: var(--space-sm);
    }

    .industry-tag {
        padding: var(--space-xs) var(--space-md);
        font-size: var(--text-xs);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
    }

    .stat {
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: var(--border-color);
    }

    .stat-number {
        font-size: var(--text-2xl);
    }

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

    .testimonial-card {
        padding: var(--space-xl);
    }

    .cta-title {
        font-size: clamp(var(--text-2xl), 6vw, var(--text-3xl));
    }

    .cta-desc {
        font-size: var(--text-base);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Section padding adjustments */
    .about-section,
    .products-section,
    .features-section,
    .industries-section,
    .testimonials-section,
    .cta-section,
    .contact-section,
    .footer {
        padding: var(--space-3xl) 0;
    }

    .trusted-section {
        padding: var(--space-2xl) 0;
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .section-title {
        font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
    }

    .section-desc {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .lang-dropdown {
        right: -50px;
        min-width: 140px;
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-xl));
    }

    .hero-badge {
        display: inline-flex;
        max-width: 100%;
    }

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

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
    }

    .about-features {
        gap: var(--space-md);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

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

    .visual-card {
        padding: var(--space-lg);
    }

    .v-stat {
        padding: var(--space-md);
        flex-direction: column;
        text-align: center;
    }

    .v-stat-icon {
        width: 48px;
        height: 48px;
    }

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

    .product-card {
        text-align: center;
    }

    .product-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto var(--space-lg);
    }

    .product-title {
        font-size: var(--text-lg);
        text-align: center;
    }

    .product-desc {
        text-align: center;
    }

    .product-features {
        text-align: left;
        display: inline-block;
    }

    .product-features li {
        font-size: var(--text-xs);
    }

    .product-link {
        justify-content: center;
    }

    .feature-card-icon {
        width: 48px;
        height: 48px;
    }

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

    .feature-card h3 {
        font-size: var(--text-base);
    }

    .feature-card p {
        font-size: var(--text-xs);
    }

    .feature-number {
        font-size: var(--text-3xl);
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

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

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: var(--text-xs);
    }

    .testimonial-content p {
        font-size: var(--text-sm);
    }

    .quote-icon {
        width: 24px;
        height: 24px;
    }

    .footer-badges .badge {
        font-size: 0.625rem;
        padding: 4px 8px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    :root {
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .lang-trigger {
        padding: 4px 8px;
    }

    .lang-icon {
        width: 16px;
        height: 16px;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
    }

    .theme-icon {
        width: 16px;
        height: 16px;
    }
}

/* Global Mobile Overflow Fix */
@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile Menu Full Screen Overlay */
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: var(--color-bg-primary) !important;
        z-index: 999 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding-top: 80px !important;
    }

    [data-theme="light"] .nav-menu.active {
        background-color: #ffffff !important;
    }

    /* Fix elements that may cause horizontal overflow */
    .hero-visual,
    .orb,
    .cursor-glow {
        display: none !important;
    }

    .hero-gradient,
    .hero-grid,
    .hero-orbs {
        max-width: 100%;
        overflow: hidden;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Fix logo marquee overflow */
    .logo-marquee {
        max-width: 100%;
    }

    .logo-track {
        max-width: 200%;
    }

    /* Fix dashboard preview if visible */
    .dashboard-preview {
        max-width: 100%;
        transform: none;
    }

    /* Fix any absolute positioned elements */
    .hero-bg {
        max-width: 100vw;
        overflow: hidden;
    }

    /* Ensure sections don't overflow */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Fix CTA section pattern */
    .cta-pattern,
    .cta-gradient {
        max-width: 100%;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(59, 89, 152, 0.3);
    overflow: hidden;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 89, 152, 0.4);
}

.scroll-to-top:hover svg {
    animation: bounce-arrow 0.6s ease infinite;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Click animation */
.scroll-to-top.scrolling {
    animation: pulse-btn 0.4s ease;
}

.scroll-to-top.scrolling svg {
    animation: fly-up 0.6s ease forwards;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes pulse-btn {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

@keyframes fly-up {
    0% { transform: translateY(0); opacity: 1; }
    40% { transform: translateY(-20px); opacity: 0; }
    41% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Light theme scroll to top */
[data-theme="light"] .scroll-to-top {
    box-shadow: 0 4px 20px rgba(59, 89, 152, 0.25);
}

[data-theme="light"] .scroll-to-top:hover {
    box-shadow: 0 8px 30px rgba(59, 89, 152, 0.35);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Selection */
::selection {
    background: rgba(59, 89, 152, 0.3);
    color: white;
}

[data-theme="light"] ::selection {
    background: rgba(59, 89, 152, 0.2);
    color: var(--color-text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-1);
}

/* ============================================
   Light Theme Specific Overrides
   Enhanced borders and prominent components
   ============================================ */

[data-theme="light"] .hero-gradient {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 89, 152, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(74, 110, 181, 0.06) 0%, transparent 50%);
}

[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(59, 89, 152, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 89, 152, 0.05) 1px, transparent 1px);
}

[data-theme="light"] .orb-1 {
    background: rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .orb-2 {
    background: rgba(245, 166, 35, 0.06);
}

[data-theme="light"] .orb-3 {
    background: rgba(74, 110, 181, 0.05);
}

[data-theme="light"] .cursor-glow {
    background: radial-gradient(circle, rgba(59, 89, 152, 0.04) 0%, transparent 70%);
}

/* Header - Enhanced border */
[data-theme="light"] .header {
    border-bottom: 1px solid rgba(59, 89, 152, 0.12);
    box-shadow: 0 2px 12px rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .header.scrolled {
    box-shadow: 0 4px 20px rgba(59, 89, 152, 0.12);
}

[data-theme="light"] .hero-badge {
    background: rgba(59, 89, 152, 0.08);
    border: 2px solid rgba(59, 89, 152, 0.2);
    color: var(--color-accent-1);
    box-shadow: 0 2px 8px rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .dashboard-preview {
    background: var(--color-bg-card);
    border: 2px solid rgba(59, 89, 152, 0.15);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .dashboard-header {
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .dashboard-sidebar {
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .chart-card {
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .table-row {
    background: var(--color-bg-tertiary);
}

[data-theme="light"] .table-row.header {
    background: var(--color-bg-secondary);
}

[data-theme="light"] .trusted-section {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(59, 89, 152, 0.1);
    border-bottom: 1px solid rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .client-logo {
    color: var(--color-text-muted);
}

/* Visual Card - Enhanced */
[data-theme="light"] .visual-card {
    background: var(--color-bg-card);
    border: 2px solid rgba(59, 89, 152, 0.15);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorative bottom border for visual card */
[data-theme="light"] .visual-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

[data-theme="light"] .card-glow {
    background: radial-gradient(circle, rgba(59, 89, 152, 0.1) 0%, transparent 70%);
}

[data-theme="light"] .v-stat {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(59, 89, 152, 0.12);
    box-shadow: 0 2px 8px rgba(59, 89, 152, 0.06);
}

[data-theme="light"] .v-stat:hover {
    background: rgba(59, 89, 152, 0.06);
    border-color: rgba(59, 89, 152, 0.25);
    box-shadow: 0 4px 16px rgba(59, 89, 152, 0.12);
}

/* Products Section */
[data-theme="light"] .products-section {
    background: var(--color-bg-secondary);
}

[data-theme="light"] .product-card {
    background: var(--color-bg-card);
    border: 2px solid rgba(59, 89, 152, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Decorative bottom border for cards */
[data-theme="light"] .product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

[data-theme="light"] .product-card:hover::after {
    transform: scaleX(1);
}

[data-theme="light"] .product-card:hover {
    border-color: rgba(59, 89, 152, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

[data-theme="light"] .product-card.featured {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.06) 0%, rgba(245, 166, 35, 0.04) 100%);
    border: 2px solid rgba(59, 89, 152, 0.2);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .product-card.featured::after {
    transform: scaleX(1);
}

[data-theme="light"] .product-card.featured:hover {
    border-color: rgba(59, 89, 152, 0.4);
}

[data-theme="light"] .product-badge {
    box-shadow: 0 2px 8px rgba(59, 89, 152, 0.2);
}

/* Feature Section */
[data-theme="light"] .feature-gradient {
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(59, 89, 152, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .feature-card {
    background: var(--color-bg-card);
    border: 2px solid rgba(59, 89, 152, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Decorative bottom border for feature cards */
[data-theme="light"] .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

[data-theme="light"] .feature-card:hover::after {
    transform: scaleX(1);
}

[data-theme="light"] .feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(59, 89, 152, 0.25);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .feature-number {
    color: rgba(59, 89, 152, 0.08);
}

/* Industries Section */
[data-theme="light"] .industries-section {
    background: var(--color-bg-secondary);
}

[data-theme="light"] .industry-tag {
    background: var(--color-bg-card);
    border: 1px solid rgba(59, 89, 152, 0.15);
    box-shadow: 0 2px 6px rgba(59, 89, 152, 0.06);
}

[data-theme="light"] .industry-tag:hover {
    background: rgba(59, 89, 152, 0.08);
    border-color: rgba(59, 89, 152, 0.35);
    color: var(--color-accent-1);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.12);
}

/* Testimonials */
[data-theme="light"] .testimonial-card {
    background: var(--color-bg-card);
    border: 2px solid rgba(59, 89, 152, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Decorative bottom border for testimonial cards */
[data-theme="light"] .testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

[data-theme="light"] .testimonial-card:hover::after {
    transform: scaleX(1);
}

[data-theme="light"] .testimonial-card:hover {
    border-color: rgba(59, 89, 152, 0.25);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .author-avatar {
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.2);
}

/* Contact Section */
[data-theme="light"] .contact-section {
    background: var(--color-bg-secondary);
}

[data-theme="light"] .contact-form-wrapper {
    background: var(--color-bg-card);
    border: 2px solid rgba(59, 89, 152, 0.12);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Decorative bottom border for contact form */
[data-theme="light"] .contact-form-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: var(--input-bg);
    border: 1px solid rgba(59, 89, 152, 0.15);
    color: var(--color-text-primary);
}

[data-theme="light"] .form-group input:hover,
[data-theme="light"] .form-group select:hover,
[data-theme="light"] .form-group textarea:hover {
    border-color: rgba(59, 89, 152, 0.25);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    background: white;
    border: 2px solid var(--color-accent-1);
    box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .select-trigger {
    background: var(--input-bg);
    border: 1px solid rgba(59, 89, 152, 0.15);
}

[data-theme="light"] .select-trigger:hover {
    border-color: rgba(59, 89, 152, 0.25);
}

[data-theme="light"] .custom-select.open .select-trigger {
    background: white;
    border: 2px solid var(--color-accent-1);
}

[data-theme="light"] .select-options {
    background: white;
    border: 2px solid var(--color-accent-1);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .select-option:hover {
    background: rgba(59, 89, 152, 0.08);
    color: var(--color-accent-1);
}

/* Contact Items */
[data-theme="light"] .contact-item {
    padding: var(--space-md);
    background: rgba(59, 89, 152, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .support-tool {
    background: var(--color-bg-card);
    border: 1px solid rgba(59, 89, 152, 0.15);
    box-shadow: 0 2px 6px rgba(59, 89, 152, 0.06);
}

[data-theme="light"] .support-tool:hover {
    border-color: var(--color-accent-1);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.12);
}

/* Footer */
[data-theme="light"] .footer {
    background: var(--color-bg-primary);
    border-top: 2px solid rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .social-link {
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(59, 89, 152, 0.15);
    box-shadow: 0 2px 6px rgba(59, 89, 152, 0.06);
}

[data-theme="light"] .social-link:hover {
    border-color: var(--color-accent-1);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.15);
}

[data-theme="light"] .dropdown-menu {
    background: white;
    border: 1px solid rgba(59, 89, 152, 0.15);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .dropdown-menu a:hover {
    background: rgba(59, 89, 152, 0.06);
}

[data-theme="light"] .section-tag {
    background: rgba(59, 89, 152, 0.08);
    border: 1px solid rgba(59, 89, 152, 0.2);
    box-shadow: 0 2px 6px rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .feature-icon,
[data-theme="light"] .feature-card-icon,
[data-theme="light"] .contact-icon {
    background: rgba(59, 89, 152, 0.08);
    border: 2px solid rgba(59, 89, 152, 0.15);
    box-shadow: 0 2px 8px rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .feature-card:hover .feature-card-icon {
    box-shadow: 0 4px 16px rgba(59, 89, 152, 0.25);
}

[data-theme="light"] .footer-badges .badge {
    background: rgba(59, 89, 152, 0.08);
    border: 1px solid rgba(59, 89, 152, 0.2);
    box-shadow: 0 2px 6px rgba(59, 89, 152, 0.06);
}

[data-theme="light"] .scroll-indicator {
    color: var(--color-text-muted);
}

[data-theme="light"] .scroll-line {
    background: rgba(59, 89, 152, 0.2);
}

/* Buttons - Light Theme */
[data-theme="light"] .btn-primary {
    box-shadow: 0 4px 16px rgba(59, 89, 152, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(59, 89, 152, 0.4);
}

[data-theme="light"] .btn-ghost {
    border: 1px solid rgba(59, 89, 152, 0.2);
    color: var(--color-text-secondary);
}

[data-theme="light"] .btn-ghost:hover {
    border-color: rgba(59, 89, 152, 0.4);
    background: rgba(59, 89, 152, 0.06);
    color: var(--color-accent-1);
}

[data-theme="light"] .btn-outline {
    border: 2px solid rgba(59, 89, 152, 0.25);
    color: var(--color-accent-1);
}

[data-theme="light"] .btn-outline:hover {
    border-color: var(--color-accent-1);
    background: rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .btn-white {
    background: white;
    color: var(--color-accent-1);
    border: 2px solid rgba(59, 89, 152, 0.2);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.1);
}

[data-theme="light"] .btn-white:hover {
    background: var(--color-accent-1);
    color: white;
    border-color: var(--color-accent-1);
    box-shadow: 0 6px 20px rgba(59, 89, 152, 0.25);
}

[data-theme="light"] .btn-ghost-white {
    border: 2px solid var(--color-accent-1);
    color: var(--color-accent-1);
}

[data-theme="light"] .btn-ghost-white:hover {
    background: var(--color-accent-1);
    color: white;
}

/* Theme Toggle - Light */
[data-theme="light"] .theme-toggle {
    border: 1px solid rgba(59, 89, 152, 0.2);
    box-shadow: 0 2px 6px rgba(59, 89, 152, 0.08);
}

[data-theme="light"] .theme-toggle:hover {
    border-color: var(--color-accent-3);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15);
}

/* Stat Divider */
[data-theme="light"] .stat-divider {
    background: rgba(59, 89, 152, 0.15);
}

/* V-Stat Icon */
[data-theme="light"] .v-stat-icon {
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.2);
}

/* Smooth theme transition */
body,
.header,
.hero-gradient,
.orb,
.product-card,
.feature-card,
.testimonial-card,
.contact-form-wrapper,
.form-group input,
.form-group textarea,
.select-trigger,
.select-options,
.footer {
    transition: background-color var(--transition-slow),
                border-color var(--transition-slow),
                box-shadow var(--transition-slow);
}
