/* IV HELP - Global Styles */

:root {
    /* Primary Colors */
    --iv-red: #ED1C49;
    --iv-green: #3CB14A;
    --iv-blue: #2196F3;
    --iv-yellow: #FFC525;
    
    /* Universe Gradients */
    --gradient-universe: linear-gradient(135deg, #0066CC 0%, #003366 50%, #000033 100%);
    --gradient-tech: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    --gradient-aurora: linear-gradient(135deg, #00D4FF 0%, #090979 50%, #020024 100%);
    --gradient-nebula: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    
    /* Dark Theme */
    --bg-dark: #0A0E1A;
    --bg-darker: #060810;
    --bg-section: #0F1218;
    --text-light: #E8EAED;
    --text-muted: #9CA3AF;
    --border-glass: rgba(255, 255, 255, 0.1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 8, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-tech);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border-glass);
}

.nav-cta {
    background: var(--gradient-tech);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-dark);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 2rem;
    display: none;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.mobile-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--iv-blue);
    padding-left: 0.5rem;
}

.mobile-cta {
    background: var(--gradient-tech);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.universe-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(13, 27, 42, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(6, 8, 16, 1) 0%, transparent 50%),
        linear-gradient(135deg, #001122 0%, #000811 50%, #000000 100%);
}

/* Space Travel Animation */
.stars-layer-1,
.stars-layer-2,
.stars-layer-3 {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
}

.stars-layer-1 {
    background: 
        radial-gradient(1px 1px at 15% 20%, #ffffff, transparent),
        radial-gradient(2px 2px at 85% 80%, #00d4ff, transparent),
        radial-gradient(1px 1px at 45% 70%, #ffffff, transparent),
        radial-gradient(1px 1px at 75% 30%, #2196f3, transparent),
        radial-gradient(1px 1px at 25% 90%, #ffffff, transparent),
        radial-gradient(2px 2px at 95% 10%, #667eea, transparent),
        radial-gradient(1px 1px at 5% 45%, #ffffff, transparent),
        radial-gradient(2px 2px at 65% 15%, #00d4ff, transparent),
        radial-gradient(1px 1px at 35% 85%, #ffffff, transparent),
        radial-gradient(1px 1px at 90% 55%, #2196f3, transparent),
        radial-gradient(2px 2px at 20% 60%, #667eea, transparent),
        radial-gradient(1px 1px at 55% 25%, #ffffff, transparent),
        radial-gradient(1px 1px at 80% 75%, #00d4ff, transparent),
        radial-gradient(2px 2px at 10% 85%, #ffffff, transparent),
        radial-gradient(1px 1px at 70% 5%, #2196f3, transparent);
    animation: space-travel-fast 8s linear infinite;
}

.stars-layer-2 {
    background: 
        radial-gradient(2px 2px at 60% 40%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(0,212,255,0.6), transparent),
        radial-gradient(2px 2px at 80% 15%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 10% 85%, rgba(33,150,243,0.5), transparent),
        radial-gradient(1px 1px at 90% 70%, rgba(255,255,255,0.6), transparent),
        radial-gradient(3px 3px at 25% 25%, rgba(102,126,234,0.4), transparent),
        radial-gradient(2px 2px at 75% 75%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 45% 10%, rgba(0,212,255,0.7), transparent),
        radial-gradient(2px 2px at 15% 45%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 85% 35%, rgba(33,150,243,0.4), transparent),
        radial-gradient(3px 3px at 50% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 5% 20%, rgba(102,126,234,0.6), transparent),
        radial-gradient(2px 2px at 95% 90%, rgba(0,212,255,0.5), transparent);
    animation: space-travel-medium 12s linear infinite;
}

.stars-layer-3 {
    background: 
        radial-gradient(3px 3px at 20% 10%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 70% 50%, rgba(102,126,234,0.3), transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(0,212,255,0.2), transparent),
        radial-gradient(4px 4px at 10% 30%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(33,150,243,0.3), transparent),
        radial-gradient(3px 3px at 30% 70%, rgba(102,126,234,0.25), transparent),
        radial-gradient(2px 2px at 80% 85%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 50% 5%, rgba(0,212,255,0.4), transparent),
        radial-gradient(2px 2px at 25% 55%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(102,126,234,0.3), transparent),
        radial-gradient(3px 3px at 5% 75%, rgba(33,150,243,0.2), transparent);
    animation: space-travel-slow 20s linear infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 200px 100px at 20% 30%, rgba(0,212,255,0.08), transparent),
        radial-gradient(ellipse 300px 150px at 80% 70%, rgba(102,126,234,0.06), transparent),
        radial-gradient(ellipse 250px 125px at 50% 50%, rgba(33,150,243,0.04), transparent),
        radial-gradient(ellipse 180px 90px at 15% 80%, rgba(0,212,255,0.06), transparent),
        radial-gradient(ellipse 220px 110px at 85% 20%, rgba(102,126,234,0.05), transparent),
        radial-gradient(ellipse 160px 80px at 70% 40%, rgba(33,150,243,0.07), transparent),
        radial-gradient(ellipse 140px 70px at 30% 10%, rgba(0,212,255,0.05), transparent),
        radial-gradient(ellipse 190px 95px at 90% 85%, rgba(102,126,234,0.04), transparent),
        radial-gradient(ellipse 280px 140px at 10% 60%, rgba(33,150,243,0.03), transparent);
    animation: nebula-drift 25s ease-in-out infinite alternate;
}

@keyframes space-travel-fast {
    from { 
        transform: translateX(100%) translateY(50%) scale(0.5);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to { 
        transform: translateX(-100%) translateY(-50%) scale(2);
        opacity: 0;
    }
}

@keyframes space-travel-medium {
    from { 
        transform: translateX(80%) translateY(30%) scale(0.7);
        opacity: 0;
    }
    15% { opacity: 0.8; }
    85% { opacity: 0.8; }
    to { 
        transform: translateX(-80%) translateY(-30%) scale(1.5);
        opacity: 0;
    }
}

@keyframes space-travel-slow {
    from { 
        transform: translateX(60%) translateY(20%) scale(0.9);
        opacity: 0;
    }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    to { 
        transform: translateX(-60%) translateY(-20%) scale(1.2);
        opacity: 0;
    }
}

@keyframes nebula-drift {
    0% { 
        transform: translateX(-10%) translateY(-5%) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(10%) translateY(5%) rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    100% { 
        transform: translateX(-10%) translateY(-5%) rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-md);
    line-height: 1.05;
    text-shadow: 0 0 30px rgba(33, 150, 243, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #2196F3 50%, #667EEA 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(33, 150, 243, 0.4));
}

.subtitle {
    color: var(--text-light);
    display: block;
    margin-top: 0.75rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #2196F3 50%, #1565C0 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00E5FF 0%, #42A5F5 50%, #1976D2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 2;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--iv-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Globe removed for cleaner design */

/* Orbit animations removed */

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    animation: bounce 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 0.7;
}

.hero-scroll span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0.5rem auto 0;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle strong {
    color: var(--text-light);
    font-weight: 700;
}

/* Solutions Grid */
.solutions-section {
    background: var(--bg-section);
}

/* Impact Statistics */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0 var(--space-3xl);
}

.impact-stats .stat-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.impact-stats .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(33, 150, 243, 0.05);
    border-color: rgba(33, 150, 243, 0.3);
}

.impact-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.impact-stats .stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* AI Query Section */
.ai-query-section {
    margin: var(--space-2xl) 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.query-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.query-input-wrapper:focus-within {
    border-color: var(--iv-blue);
    background: rgba(33, 150, 243, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.query-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--iv-blue);
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 8px rgba(33, 150, 243, 0.3));
}

.ai-query-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.ai-query-input::placeholder {
    color: var(--text-muted);
}

.query-submit-btn {
    background: var(--gradient-tech);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.query-submit-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

/* Query Suggestions */
.query-suggestions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.suggestion-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.suggestion-chip:hover {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.4);
    color: var(--text-light);
    transform: translateY(-1px);
}

.suggestion-chip i {
    font-size: 0.75rem;
}

/* Query Hint */
.query-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.75rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.query-hint i {
    color: #25D366;
    font-size: 0.85rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Impact Section */
.impact-section {
    padding: var(--space-3xl) 0;
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--iv-blue) 50%, transparent 100%);
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.global-stats .stat-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.global-stats .stat-card.featured {
    background: rgba(33, 150, 243, 0.08);
    border-color: rgba(33, 150, 243, 0.3);
}

.global-stats .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.4);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.global-stats .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0);
    color: var(--iv-blue);
    text-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
}

.global-stats .stat-card:hover .stat-icon {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(33, 150, 243, 0.8);
    transform: scale(1.1);
}

.global-stats .stat-card.featured .stat-icon {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(33, 150, 243, 0.6);
}

.global-stats .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

.global-stats .stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.global-stats .stat-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Counter Animation States - Simplified */
.global-stats .stat-card.counting .stat-number {
    color: var(--iv-blue);
}

/* Removed complex animations - keeping it simple for better performance */

.impact-highlight {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.highlight-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-icon-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-icon {
    font-size: 8rem;
    color: var(--iv-blue);
    position: relative;
    z-index: 2;
    text-shadow: 0 0 40px rgba(33, 150, 243, 0.6);
}

.globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(33, 150, 243, 0.2) 30%,
        rgba(33, 150, 243, 0.1) 50%,
        transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

.globe-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 2px solid rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    animation: orbitSpin 15s linear infinite;
}

.globe-orbit::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--iv-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.8);
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .global-stats {
        grid-template-columns: 1fr;
    }
    
    .global-stats .stat-card.featured {
        transform: none;
    }
    
    .ai-query-section {
        margin: var(--space-lg) 0;
    }
    
    .query-input-wrapper {
        padding: 0.5rem 1rem;
    }
    
    .ai-query-input {
        font-size: 1rem;
    }
    
    .highlight-visual .world-map {
        font-size: 4rem;
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: var(--space-xl);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.solution-card.featured {
    border-color: rgba(33, 150, 243, 0.3);
}

.card-glow {
    position: absolute;
    inset: -1px;
    background: var(--gradient-tech);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(20px);
}

.solution-card:hover .card-glow {
    opacity: 0.3;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-tech);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--iv-blue);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: #ffffff;
}

.solution-card p {
    color: #cbd5e1;
    margin-bottom: var(--space-md);
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-card p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Card Footer with Status */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-glass);
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge.active {
    background: rgba(60, 177, 74, 0.1);
    color: #3CB14A;
    border: 1px solid rgba(60, 177, 74, 0.3);
}

.status-badge.development {
    background: rgba(255, 197, 37, 0.1);
    color: #FFC525;
    border: 1px solid rgba(255, 197, 37, 0.3);
}

.status-badge.planned {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.card-footer .card-link {
    color: var(--primary-blue);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-footer .card-link:hover {
    color: var(--text-light);
    transform: translateX(3px);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--iv-blue);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-darker) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-motto {
    font-size: 1.25rem;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--iv-blue);
    border-radius: 8px;
    margin-bottom: var(--space-xl);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
}

.feature-text h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.stack-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.stack-item:hover {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.gradient-orb-1 {
    background: var(--gradient-tech);
    top: -300px;
    left: -300px;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-2 {
    background: var(--gradient-nebula);
    bottom: -300px;
    right: -300px;
    animation: float 20s ease-in-out infinite reverse;
}

/* Footer */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    position: relative;
    padding-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--iv-blue);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-motto {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
    color: var(--iv-blue);
    transform: translateY(-2px);
}

.footer-section h4 {
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--iv-blue);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--iv-blue);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-glass);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-language label {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.footer-lang-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-lang-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--iv-blue);
}

.footer-lang-select:focus {
    outline: none;
    border-color: var(--iv-blue);
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.footer-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-stars .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.footer-stars .star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.footer-stars .star:nth-child(2) { top: 50%; left: 80%; animation-delay: 1s; }
.footer-stars .star:nth-child(3) { top: 80%; left: 40%; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Large screens - Perfect centering */
@media (min-width: 1400px) {
    .hero-content .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-center {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
        max-width: 700px;
        margin: 0 auto var(--space-xl) auto;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content .container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .hero-center {
        max-width: 100%;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   SOLUTION PAGES STYLES
======================================== */

/* Solution Hero Section */
.solution-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--space-2xl) 0;
}

.solution-hero .solution-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-tech);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.solution-hero .solution-icon svg {
    width: 80px;
    height: 80px;
    color: white;
}

.solution-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.solution-title .gradient-text {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.solution-title .subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.solution-description {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    color: var(--text-muted);
    line-height: 1.7;
}

.solution-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.solution-stats .stat {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.solution-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--iv-blue);
    display: block;
}

.solution-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Problem Section */
.problem-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.problem-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 28, 73, 0.3);
    background: rgba(237, 28, 73, 0.05);
}

.problem-card .problem-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.problem-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Solution Details Section */
.solution-details {
    padding: var(--space-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.featured {
    border-color: rgba(33, 150, 243, 0.4);
    background: rgba(33, 150, 243, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 150, 243, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-tech);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before,
.feature-card.featured::before {
    opacity: 1;
}

.feature-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-tech);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-card .card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-card strong {
    color: var(--iv-blue);
}

/* Process/Workflow Section */
.process-section, .how-works-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.process-flow, .workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.process-step, .workflow-step {
    text-align: center;
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
    color: white;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.process-arrow, .workflow-arrow {
    font-size: 2rem;
    color: var(--iv-blue);
}

/* Step Visual Elements */
.step-visual {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 200px;
    height: 300px;
    background: #000;
    border-radius: 20px;
    padding: 20px 15px;
    border: 3px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chat-message {
    background: var(--iv-blue);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 8px;
    max-width: 80%;
}

.chat-message.sent {
    align-self: flex-end;
    background: var(--iv-green);
}

.chat-message.received {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
}

.message-content {
    color: white;
    font-size: 0.875rem;
}

.analysis-visual {
    position: relative;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.scanning-effect {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid var(--iv-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: scan 2s linear infinite;
}

.analysis-items span {
    display: block;
    font-size: 0.875rem;
    color: var(--iv-blue);
    text-align: center;
}

@keyframes scan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Technology Section */
.technology-section {
    padding: var(--space-3xl) 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.tech-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 150, 243, 0.4);
}

.tech-item .tech-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.tech-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.tech-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Roadmap Section */
.roadmap-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.roadmap-timeline {
    max-width: 800px;
    margin: var(--space-xl) auto 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + var(--space-lg));
    background: linear-gradient(to bottom, var(--iv-blue), transparent);
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-marker {
    background: var(--iv-green);
}

.timeline-item.current .timeline-marker {
    background: var(--iv-yellow);
    color: #000;
}

.timeline-item.future .timeline-marker {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--iv-blue);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-muted);
}

/* Specialties Section */
.specialties-section {
    padding: var(--space-3xl) 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.specialty-card {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: rgba(60, 177, 74, 0.4);
    background: rgba(60, 177, 74, 0.05);
}

.specialty-card .specialty-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.specialty-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.specialty-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Early Access Section */
.early-access-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.early-access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.access-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.preview-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-glass);
}

.header-item {
    padding: var(--space-sm);
    background: var(--gradient-tech);
    border-radius: 8px;
    font-size: 0.875rem;
    color: white;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--iv-blue);
}

/* Impact Section */
.impact-section {
    padding: var(--space-3xl) 0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.impact-stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--iv-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.achievement-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.achievement-badges .badge {
    padding: var(--space-md);
    background: var(--gradient-tech);
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: white;
    font-size: 0.875rem;
}

/* Solution Pages Responsive Design */
@media (max-width: 1024px) {
    .solution-stats {
        gap: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-content,
    .early-access-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solution-title .gradient-text {
        font-size: 2.5rem;
    }
    
    .solution-title .subtitle {
        font-size: 1.25rem;
    }
    
    .solution-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .problems-grid,
    .features-grid,
    .tech-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-content,
    .early-access-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .process-flow,
    .workflow-steps {
        flex-direction: column;
    }
    
    .process-arrow,
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .achievement-badges {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 150px;
        height: 225px;
        padding: 15px 10px;
    }
}

/* Language Selector Styles */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: var(--space-md);
}

.lang-select,
.mobile-lang-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-select:hover,
.mobile-lang-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--iv-blue);
}

.lang-select:focus,
.mobile-lang-select:focus {
    border-color: var(--iv-blue);
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.lang-select option,
.mobile-lang-select option {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.5rem;
}

.mobile-language-selector {
    padding: var(--space-md);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin: var(--space-md) 0;
}

@media (max-width: 768px) {
    .language-selector {
        display: none;
    }
    
    .mobile-language-selector {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-language-selector {
        display: none;
    }
}