/* Modern Professional Design System */
:root {
    /* Colors */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #6366f1;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text-dark: #0f172a;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --white: #ffffff;
    --bg-dark: #020617;
    --bg-section: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-text: linear-gradient(135deg, #0ea5e9 0%, #6366f1 50%, #a855f7 100%);
    --gradient-hover: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
    
    /* Spacing */
    --container: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Utility Classes for Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease forwards;
}

[data-animate] {
    opacity: 0;
}

[data-animate].animate {
    opacity: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
    display: none;
}

@media (min-width: 768px) {
    .logo-subtitle {
        display: block;
    }
}

/* Navigation */
.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link-cta:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.08) 0%, 
        rgba(59, 130, 246, 0.05) 25%,
        rgba(0, 0, 0, 0) 50%,
        rgba(168, 85, 247, 0.05) 75%,
        rgba(236, 72, 153, 0.08) 100%
    );
    z-index: -1;
    will-change: transform;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@media (min-width: 768px) {
    .hero {
        padding: calc(100px + var(--section-padding)) 0 var(--section-padding);
    }
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--gray-light);
    margin-bottom: 48px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(14, 165, 233, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
/* About Section - Side Layout */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 1024px) {
    .about-content {
        order: 1;
    }
}

.about-text-wrapper {
    max-width: 600px;
}

.about-section .section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    text-align: left;
}

.about-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.about-description {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.company-name {
    color: var(--primary);
    font-weight: 500;
}

.about-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 24px;
    position: relative;
}

.about-action-btn:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

.about-action-btn::after {
    content: '→';
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.about-action-btn:hover::after {
    transform: translateX(4px);
}

.action-icon {
    font-size: 18px;
}

.action-text {
    font-size: 16px;
}

/* About Image */
.about-image-wrapper {
    order: 1;
    position: relative;
}

@media (min-width: 1024px) {
    .about-image-wrapper {
        order: 2;
    }
}

.about-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(14, 165, 233, 0.2);
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 24px;
    z-index: -1;
}

@media (min-width: 1024px) {
    .about-image {
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
    }
    
    .about-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 1023px) {
    .about-section {
        padding: var(--section-padding-mobile) 0;
        min-height: auto;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .about-section .section-title {
        text-align: center;
    }
    
    .about-subtitle {
        text-align: center;
    }
    
    .about-text-wrapper {
        max-width: 100%;
        text-align: center;
    }
    
    .about-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .about-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .image-decoration {
        display: none;
    }
}

/* Sections */
.expertise,
.portfolio,
.experience,
.contact,
.press,
.faq {
    padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
    .expertise,
    .portfolio,
    .experience,
    .contact,
    .press,
    .faq {
        padding: var(--section-padding) 0;
    }
}

.expertise {
    background: var(--bg-section);
}

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

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
}

/* Dark sections - white text for better contrast */
.about .section-title,
.companies .section-title,
.expertise .section-title,
.services .section-title,
.services-orbital .section-title,
.portfolio .section-title,
.experience .section-title,
.contact .section-title {
    color: var(--white);
}

/* Press section titles - dark text on light background */
.press .section-title {
    color: #1e293b;
    text-shadow: none;
}

.about .section-subtitle,
.companies .section-subtitle,
.expertise .section-subtitle,
.services .section-subtitle,
.services-orbital .section-subtitle,
.portfolio .section-subtitle,
.experience .section-subtitle,
.contact .section-subtitle {
    color: var(--gray-light);
}

/* Press section subtitle - dark text on light background */
.press .section-subtitle {
    color: #64748b;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.expertise-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.expertise-card p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    position: relative;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Portfolio Overlay - Always visible with stronger gradient */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 40%, rgba(2, 6, 23, 0.3) 70%, transparent 100%);
    opacity: 1;
    transition: background 0.3s ease;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    padding-top: 40px;
}

/* Hover States - Enhance visibility */
.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.8) 50%, transparent 100%);
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.portfolio-tags span {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.portfolio-link {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: all 0.3s ease;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.portfolio-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    z-index: -1;
}

@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    padding: 32px 0;
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 767px) {
    .timeline-item {
        padding-left: 60px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-dark);
}

@media (max-width: 767px) {
    .timeline-item::before {
        left: 20px;
    }
}

.timeline-date {
    flex: 0 0 150px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 767px) {
    .timeline-date {
        position: static;
        flex: none;
        text-align: left;
        font-size: 14px;
        margin-bottom: 12px;
        display: block;
    }
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
}

@media (max-width: 767px) {
    .timeline-content {
        margin-top: 0;
    }
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray-light);
}

/* Contact */
.contact {
    background: var(--bg-section);
}

.contact-content-simple {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-content-simple h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-intro {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-media-section {
    margin-top: 64px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.contact-media-section h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-media-section p {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-media-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-media-section a:hover {
    color: var(--primary-dark);
}

@media (min-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-intro {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-details a {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 12px;
    color: var(--gray-light);
    font-style: italic;
}

/* Response Info */
.response-info {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.response-info h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.response-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.response-info li {
    color: var(--gray-light);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.response-info li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Social Section */
.social-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link span {
    font-size: 16px;
}

/* FAQ Section */
.faq {
    background: var(--bg-section);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question.active {
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--white);
    font-weight: 600;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
}

.faq-cta h3 {
    font-size: 28px;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-cta p {
    color: var(--gray-light);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Press Section - Light theme with animated background */
.press {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Animated falling articles background - FOREGROUND LAYER (faster, bigger, closer) */
.press::before {
    content: '';
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(200vh + 200px);
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='80' fill='%23000'%3E%3Ctext x='5' y='15' font-size='5' opacity='0.06'%3ETechnology%3C/text%3E%3Ctext x='5' y='25' font-size='4' opacity='0.04'%3EInnovation%3C/text%3E%3Ctext x='5' y='35' font-size='5' opacity='0.06'%3EArtificial%3C/text%3E%3Ctext x='5' y='45' font-size='4' opacity='0.05'%3EIntelligence%3C/text%3E%3Ctext x='5' y='55' font-size='5' opacity='0.05'%3EEducation%3C/text%3E%3Ctext x='5' y='65' font-size='4' opacity='0.04'%3EFuture%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='100' fill='%23000'%3E%3Ctext x='8' y='18' font-size='6' opacity='0.05'%3EVARDIX%3C/text%3E%3Ctext x='8' y='30' font-size='5' opacity='0.04'%3EDreamLight%3C/text%3E%3Ctext x='8' y='42' font-size='6' opacity='0.05'%3EROBED%3C/text%3E%3Ctext x='8' y='54' font-size='5' opacity='0.04'%3EMedical VR%3C/text%3E%3Ctext x='8' y='66' font-size='5' opacity='0.05'%3E3D Learning%3C/text%3E%3Ctext x='8' y='78' font-size='4' opacity='0.03'%3EDigital Reality%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='120' fill='%23000'%3E%3Ctext x='10' y='20' font-size='6' opacity='0.05'%3EStartup%3C/text%3E%3Ctext x='10' y='35' font-size='5' opacity='0.04'%3EKazakhstan%3C/text%3E%3Ctext x='10' y='50' font-size='6' opacity='0.05'%3EVladimir%3C/text%3E%3Ctext x='10' y='65' font-size='5' opacity='0.04'%3EBarinov%3C/text%3E%3Ctext x='10' y='80' font-size='5' opacity='0.04'%3EDigital%3C/text%3E%3Ctext x='10' y='95' font-size='4' opacity='0.03'%3ERealities%3C/text%3E%3C/svg%3E");
    animation: falling-articles 60s linear infinite;
    pointer-events: none;
    z-index: 1;
    background-repeat: repeat;
    background-size: 102% 102%; /* Едва заметно увеличиваем масштаб - элементы кажутся ближе */
}

@keyframes falling-articles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Additional parallax layers - BACKGROUND LAYER (slower, smaller, farther) */
.press::after {
    content: '';
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(200vh + 150px);
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='150' fill='%23000'%3E%3Ctext x='15' y='25' font-size='7' opacity='0.03'%3EPress Release%3C/text%3E%3Ctext x='15' y='45' font-size='6' opacity='0.02'%3ENews%3C/text%3E%3Ctext x='15' y='65' font-size='7' opacity='0.03'%3EMedia%3C/text%3E%3Ctext x='15' y='85' font-size='5' opacity='0.02'%3EInterview%3C/text%3E%3Ctext x='15' y='105' font-size='6' opacity='0.03'%3EPublication%3C/text%3E%3C/svg%3E");
    animation: falling-articles-slow 80s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat;
    background-size: 98% 98%; /* Едва заметно уменьшаем масштаб - элементы кажутся дальше */
}

@keyframes falling-articles-slow {
    0% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0.2;
    }
}

/* Content above background */
.press > * {
    position: relative;
    z-index: 2;
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .press-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.press-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.press-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.press-item.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .press-item.featured {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 32px;
        align-items: center;
    }
}

.press-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .press-item.featured .press-image {
        height: 300px;
        border-radius: 12px;
    }
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.press-item:hover .press-image img {
    transform: scale(1.1);
}

.press-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.press-source {
    background: rgba(14, 165, 233, 0.9);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.press-date {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.press-content {
    padding: 24px;
}

.press-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.3;
}

.press-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.press-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.press-tags span {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.press-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: var(--primary-dark);
}

/* Compact Press Items */
.press-item.compact {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(8px);
}

.press-content-compact {
    padding: 20px;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.press-meta .press-source {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.press-meta .press-date {
    color: var(--gray-light);
    font-size: 12px;
    background: none;
    padding: 0;
}

.press-content-compact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    line-height: 1.4;
}

.press-content-compact p {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.press-link-compact {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.press-link-compact:hover {
    color: var(--primary-dark);
}

/* Press CTA */
.press-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(12px);
}

.press-cta h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.press-cta p {
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Form */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-sans);
}

#form-response {
    margin-bottom: 20px;
}

#form-response .success {
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
}

#form-response .error {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

/* Loading states for HTMX */
.htmx-request .htmx-indicator {
    display: inline-block;
}

.htmx-indicator {
    display: none;
}

[data-loading-disable].htmx-request {
    opacity: 0.6;
    pointer-events: none;
}

[data-loading-text].htmx-request span {
    display: none;
}

[data-loading-text].htmx-request::after {
    content: attr(data-loading-text);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(25, 25, 25, 0.95));
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(138, 43, 226, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(138, 43, 226, 0.1);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.service-features span {
    background: rgba(138, 43, 226, 0.1);
    color: #c084fc;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-features span {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.service-cta {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

.services-cta {
    text-align: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-top: 48px;
}

.services-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Mobile optimizations for services */
@media (max-width: 480px) {
    .services {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .services-cta {
        padding: 32px 20px;
        margin-top: 32px;
    }
    
    .services-cta p {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Modern Services Section Enhancements */

/* Service Category Filters */
.service-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
}

.filter-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
}

/* Modern Service Cards */
.service-card.modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.service-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(75, 0, 130, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card.modern:hover::before {
    opacity: 1;
}

.service-card.modern:hover {
    transform: translateY(-12px);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 48px rgba(138, 43, 226, 0.15);
}

.service-card.modern > * {
    position: relative;
    z-index: 2;
}

/* Modern Service Icons (SVG) */
.service-icon-modern {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-icon-modern svg {
    width: 100%;
    height: 100%;
    color: rgba(138, 43, 226, 0.8);
    stroke-width: 1.5;
    transition: color 0.3s ease;
}

.service-card.modern:hover .service-icon-modern {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
    transform: scale(1.1);
}

.service-card.modern:hover .service-icon-modern svg {
    color: rgba(138, 43, 226, 1);
}

/* Service Company Attribution */
.service-company {
    font-size: 12px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-company::before {
    content: '';
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

/* Modern Service CTA */
.service-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(138, 43, 226, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-cta-modern:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.service-cta-modern::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-cta-modern:hover::after {
    transform: translateX(4px);
}

/* Enhanced Services CTA */
.services-cta-enhanced {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.08));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 24px;
    padding: 48px;
    margin-top: 64px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.services-cta-enhanced .cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-cta-enhanced .cta-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: rgba(138, 43, 226, 0.9);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

.btn-primary-lg {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(75, 0, 130, 0.9));
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-lg:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(75, 0, 130, 1));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 43, 226, 0.3);
}

.btn-secondary-lg {
    background: transparent;
    color: rgba(138, 43, 226, 0.9);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.btn-secondary-lg:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Modern Services */
@media (max-width: 768px) {
    .service-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .service-card.modern {
        padding: 28px;
    }
    
    .service-icon-modern {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
    
    .services-cta-enhanced {
        padding: 36px 24px;
        margin-top: 48px;
    }
    
    .services-cta-enhanced .cta-content h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .services-cta-enhanced .cta-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-stats {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-lg,
    .btn-secondary-lg {
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-card.modern {
        padding: 24px;
    }
    
    .services-cta-enhanced {
        padding: 32px 20px;
    }
    
    .services-cta-enhanced .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Orbital Services Section */
.services-orbital {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-orbital::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 40%);
    animation: rotate-gradient 60s linear infinite;
}

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

.services-orbital .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Orbital System Layout */
.orbital-system {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 900px;
    margin: 4rem auto;
}

/* Central Core - Vladimir */
.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    z-index: 10;
}

.center-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.2);
}

.center-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.center-content p {
    color: rgba(0, 255, 255, 0.9);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Orbital Pulse Animation */
.orbital-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-expand 3s ease-out infinite;
}

.orbital-pulse.delay-1 {
    animation-delay: 1s;
}

.orbital-pulse.delay-2 {
    animation-delay: 2s;
}

@keyframes pulse-expand {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

/* Orbital Ring */
.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    /* Animation handled by JavaScript for Lissajous curve */
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Service Cards */
.service-card {
    position: absolute;
    width: 160px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Animation handled by JavaScript */
    will-change: transform;
}

@keyframes counter-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Cards positioned by JavaScript Lissajous animation */
.service-card.orbit-1,
.service-card.orbit-2,
.service-card.orbit-3,
.service-card.orbit-4,
.service-card.orbit-5,
.service-card.orbit-6 {
    /* Position handled by JavaScript */
}

.service-card:hover {
    border-color: rgba(0, 255, 255, 0.6);
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.25), 
        rgba(147, 51, 234, 0.25));
    box-shadow: 
        0 15px 50px rgba(0, 255, 255, 0.4),
        0 0 80px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.15);
    z-index: 10;
}

/* Icons removed - simplified design */

.service-card h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-align: center;
}

/* Feature lists removed - simplified design */

.service-companies {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-companies span {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 12px;
    color: rgba(0, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.service-card:hover .service-companies span {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(147, 51, 234, 0.2));
    border-color: rgba(0, 255, 255, 0.6);
    color: #00ffff;
}

.service-companies span:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.35), rgba(147, 51, 234, 0.3));
    border-color: rgba(0, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.4);
}

/* CTA links removed - cards are now clickable */

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.services-cta h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background: linear-gradient(45deg, #00ffff, #0099cc);
    color: #000;
    font-weight: 600;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .orbital-system {
        height: 800px;
    }
    
    .orbital-ring {
        width: 600px;
        height: 600px;
    }
    
    .service-card {
        width: 180px;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .orbital-system {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .orbital-center {
        position: relative;
        transform: none;
        margin-bottom: 3rem;
    }
    
    .orbital-ring {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        animation: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        position: relative !important;
        width: 100%;
        transform: none !important;
        animation: none;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
}

/* All old hexagonal styles have been removed - now using orbital design */

/* Professional Background Section */
.professional-background {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    color: var(--text-dark);
}

.professional-background .section-title {
    color: var(--text-dark) !important;
}

.professional-background .section-subtitle {
    color: var(--gray);
}

.professional-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.background-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .background-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.background-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.background-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.card-header h3 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-item, 
.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.experience-bullet, 
.expertise-bullet {
    color: #c084fc;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 2px;
}

.experience-item strong, 
.expertise-item strong {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
}

.experience-item p, 
.expertise-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Achievement Stats */
.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #c084fc;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-label {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vision Statement */
.vision-statement {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0.05));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    position: relative;
}

.vision-statement::before {
    content: '"';
    font-size: 120px;
    color: rgba(138, 43, 226, 0.2);
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.vision-statement blockquote {
    margin: 0;
    position: relative;
    z-index: 2;
}

.vision-statement p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-statement cite {
    color: #c084fc;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
}

/* Mobile optimizations for professional background */
@media (max-width: 768px) {
    .professional-background {
        padding: 60px 0;
    }
    
    .background-card {
        padding: 24px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .vision-statement {
        padding: 32px 20px;
    }
    
    .vision-statement::before {
        font-size: 80px;
        top: -10px;
        left: 15px;
    }
    
    .vision-statement p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .achievement-stats {
        grid-template-columns: 1fr;
    }
    
    .experience-item, 
    .expertise-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .experience-bullet, 
    .expertise-bullet {
        align-self: flex-start;
    }
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(25, 25, 25, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #a3a3a3;
    justify-content: center;
}

.breadcrumbs a {
    color: #c084fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs span {
    color: #666;
}

.blog-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.blog-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.blog-rss {
    display: flex;
    align-items: center;
}

.rss-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 24px;
    color: #c084fc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rss-link:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
    color: #ffffff;
}

.blog-subtitle {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
    background: #0a0a0a;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .blog-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Featured Blog Post */
.blog-post.featured {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-post.featured:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c084fc;
    color: #000;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 32px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(138, 43, 226, 0.1);
    color: #c084fc;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.post-date {
    color: #a3a3a3;
    font-size: 14px;
}

.post-title {
    margin: 0 0 16px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #c084fc;
}

.post-excerpt {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.post-read-more {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.post-read-more.visible {
    opacity: 1;
    transform: translateX(0);
}

.read-more-link {
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #ffffff;
}

/* Coming Soon Section */
.coming-soon-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    height: fit-content;
}

.coming-soon-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.upcoming-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.upcoming-post {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.upcoming-post:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.upcoming-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.upcoming-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.upcoming-content p {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.newsletter-signup {
    text-align: center;
    padding: 24px;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 16px;
}

.newsletter-signup p {
    color: #d1d5db;
    margin-bottom: 16px;
    font-size: 14px;
}

/* Blog Navigation */
.blog-navigation {
    margin-top: 48px;
    text-align: center;
}

.back-to-home {
    color: #a3a3a3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-home:hover {
    color: #c084fc;
}

/* Article Styles */
.blog-article {
    padding: 120px 0 80px;
    background: #0a0a0a;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.article-date {
    color: #a3a3a3;
    font-size: 14px;
}

.article-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.article-excerpt {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-title {
    color: #a3a3a3;
    font-size: 14px;
}

.article-image {
    max-width: 800px;
    margin: 0 auto 48px auto;
    border-radius: 16px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    color: #d1d5db;
    line-height: 1.7;
    font-size: 16px;
}

.article-content .lead {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.6;
}

.article-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px 0;
    line-height: 1.3;
}

.article-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 16px 0;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
    color: #d1d5db;
}

.article-content a {
    color: #c084fc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #ffffff;
}

.article-content strong {
    color: #ffffff;
    font-weight: 600;
}

.article-footer {
    max-width: 800px;
    margin: 48px auto 0 auto;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.article-tags-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tags-label {
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 500;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 500;
}

.share-link {
    color: #c084fc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.share-link:hover {
    color: #ffffff;
}

.article-navigation {
    max-width: 800px;
    margin: 48px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-button {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-button.primary {
    background: #c084fc;
    color: #000;
    border-color: #c084fc;
}

.nav-button.primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .blog-title {
        font-size: 36px;
    }
    
    .blog-title-section {
        flex-direction: column;
        gap: 16px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-meta {
        gap: 16px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-button {
        text-align: center;
        width: 100%;
    }
}

/* My Companies Section */
.companies {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.companies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(800px circle at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(600px circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.companies .container {
    position: relative;
    z-index: 1;
}

.companies-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 64px;
}

/* Different tiers of companies */
.companies-tier {
    display: grid;
    gap: 32px;
}

.companies-tier.featured {
    grid-template-columns: 1fr;
}

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

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

@media (max-width: 1024px) {
    .companies-tier.primary {
        grid-template-columns: 1fr;
    }
    
    .companies-tier.secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .companies-tier.secondary {
        grid-template-columns: 1fr;
    }
}

.company-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

/* Featured company card - VARDIX Group */
.company-card.featured {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.98) 20%, rgba(30, 41, 59, 0.9) 40%, rgba(51, 65, 85, 0.5) 70%, rgba(51, 65, 85, 0.2) 100%),
        url('images/vardix-office-bg.jpg') center/cover no-repeat;
    border: 2px solid rgba(14, 165, 233, 0.3);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

/* DreamLight R&D card background */
.company-card.dreamlight {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 25%, rgba(30, 41, 59, 0.85) 50%, rgba(51, 65, 85, 0.4) 75%, rgba(51, 65, 85, 0.1) 100%),
        url('images/dreamlight-bg.jpg') center/cover no-repeat;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.company-card.dreamlight:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 
        0 20px 40px rgba(138, 43, 226, 0.2),
        0 0 0 1px rgba(138, 43, 226, 0.3);
}

/* ROQED card background */
.company-card.roqed {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 25%, rgba(30, 41, 59, 0.85) 50%, rgba(51, 65, 85, 0.4) 75%, rgba(51, 65, 85, 0.1) 100%),
        url('images/roqed-bg.jpg') center/cover no-repeat;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.company-card.roqed:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 20px 40px rgba(34, 197, 94, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.3);
}

/* Dimedus card background */
.company-card.dimedus {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 25%, rgba(30, 41, 59, 0.85) 50%, rgba(51, 65, 85, 0.4) 75%, rgba(51, 65, 85, 0.1) 100%),
        url('images/dimedus-bg.jpg') center/cover no-repeat;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.company-card.dimedus:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 20px 40px rgba(239, 68, 68, 0.2),
        0 0 0 1px rgba(239, 68, 68, 0.3);
}

/* Varditec card background */
.company-card.varditec {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.95) 25%, rgba(30, 41, 59, 0.85) 50%, rgba(51, 65, 85, 0.4) 75%, rgba(51, 65, 85, 0.1) 100%),
        url('images/varditec-bg.jpg') center/cover no-repeat;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.company-card.varditec:hover {
    border-color: rgba(251, 146, 60, 0.5);
    box-shadow: 
        0 20px 40px rgba(251, 146, 60, 0.2),
        0 0 0 1px rgba(251, 146, 60, 0.3);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.company-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(14, 165, 233, 0.2);
}

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

/* Highlight animation for scrolled-to companies */
.company-card.highlight {
    animation: highlightPulse 2s ease-out;
    border-color: rgba(0, 255, 255, 0.6) !important;
    box-shadow: 
        0 20px 50px rgba(0, 255, 255, 0.3),
        0 0 80px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1) !important;
}

@keyframes highlightPulse {
    0% {
        transform: scale(1) translateY(0);
        box-shadow: 
            0 20px 50px rgba(0, 255, 255, 0.5),
            0 0 100px rgba(0, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.02) translateY(-5px);
        box-shadow: 
            0 25px 60px rgba(0, 255, 255, 0.6),
            0 0 120px rgba(0, 255, 255, 0.5);
    }
    100% {
        transform: scale(1) translateY(0);
        box-shadow: 
            0 20px 50px rgba(0, 255, 255, 0.3),
            0 0 80px rgba(0, 255, 255, 0.2);
    }
}

.company-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.company-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-card:hover .company-logo img {
    transform: scale(1.1);
}

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

.company-meta h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.company-year {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.company-role {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 500;
}

.company-description {
    margin-bottom: 24px;
}

.company-description p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-item {
    text-align: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.company-card:hover .highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(14, 165, 233, 0.2);
}

.highlight-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.highlight-label {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.company-tags .tag {
    padding: 6px 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.company-card:hover .company-tags .tag {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateY(10px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.company-link.visible {
    opacity: 1;
    transform: translateY(0);
}

.company-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.4);
    opacity: 1;
    color: var(--white);
}

.company-link::after {
    content: '↗';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.company-link:hover::after {
    transform: translate(2px, -2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .companies {
        padding: var(--section-padding-mobile) 0;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .company-card {
        padding: 24px;
    }
    
    .company-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .company-logo {
        width: 56px;
        height: 56px;
    }
    
    .company-meta h3 {
        font-size: 18px;
    }
    
    .company-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px 8px;
    }
    
    .highlight-number {
        font-size: 16px;
    }
    
    .highlight-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-card {
        padding: 20px;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .company-tags {
        gap: 6px;
    }
    
    .company-tags .tag {
        padding: 4px 8px;
        font-size: 11px;
    }
}