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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0633 50%, #2d1b69 100%);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Futuristic Particle Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 255, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(120,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridPulse 8s ease-in-out infinite;
    z-index: -1;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(120, 255, 255, 0.8) 0%, rgba(255, 119, 198, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(120, 255, 255, 0.6);
}

.particle:nth-child(2n) {
    background: radial-gradient(circle, rgba(255, 119, 198, 0.8) 0%, rgba(120, 119, 198, 0.4) 50%, transparent 100%);
    animation: matrixFall 22s linear infinite;
    animation-delay: -5s;
    box-shadow: 0 0 8px rgba(255, 119, 198, 0.6);
}

.particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(120, 119, 198, 0.8) 0%, rgba(120, 255, 255, 0.4) 50%, transparent 100%);
    animation: energyPulse 16s ease-in-out infinite;
    animation-delay: -10s;
    box-shadow: 0 0 8px rgba(120, 119, 198, 0.6);
}

.particle:nth-child(4n) {
    width: 3px;
    height: 3px;
    background: #78ffff;
    box-shadow: 0 0 10px #78ffff, 0 0 20px #78ffff, 0 0 30px #78ffff;
    animation: dataStream 14s linear infinite;
    animation-delay: -3s;
    border-radius: 0;
}

.particle:nth-child(5n) {
    animation: quantumShift 20s ease-in-out infinite;
    animation-delay: -7s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.particle:nth-child(6n) {
    animation: neuralNetwork 25s ease-in-out infinite;
    animation-delay: -12s;
    border-radius: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

@keyframes matrixFall {
    0% {
        transform: translateY(-10vh) translateX(0) scale(1);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(0) translateX(5vw) scale(1.1);
    }
    15% {
        transform: translateY(20vh) translateX(10vw) scale(0.9);
    }
    30% {
        transform: translateY(40vh) translateX(15vw) scale(1.2);
    }
    50% {
        transform: translateY(60vh) translateX(20vw) scale(0.8);
    }
    70% {
        transform: translateY(80vh) translateX(25vw) scale(1.1);
    }
    90% {
        opacity: 1;
        transform: translateY(95vh) translateX(30vw) scale(0.9);
    }
    100% {
        transform: translateY(110vh) translateX(35vw) scale(0);
        opacity: 0;
    }
}

@keyframes energyPulse {
    0% {
        transform: translateY(50vh) translateX(0) scale(0.5);
        opacity: 0;
        filter: hue-rotate(0deg) brightness(1);
    }
    10% {
        opacity: 1;
        transform: translateY(45vh) translateX(8vw) scale(1);
        filter: hue-rotate(60deg) brightness(1.5);
    }
    25% {
        transform: translateY(40vh) translateX(20vw) scale(1.3);
        filter: hue-rotate(120deg) brightness(2);
    }
    50% {
        transform: translateY(35vh) translateX(35vw) scale(0.8);
        filter: hue-rotate(180deg) brightness(1.8);
    }
    75% {
        transform: translateY(30vh) translateX(55vw) scale(1.1);
        filter: hue-rotate(240deg) brightness(1.3);
    }
    90% {
        opacity: 1;
        transform: translateY(25vh) translateX(75vw) scale(1);
        filter: hue-rotate(300deg) brightness(1.6);
    }
    100% {
        transform: translateY(20vh) translateX(90vw) scale(0.3);
        opacity: 0;
        filter: hue-rotate(360deg) brightness(0.5);
    }
}

@keyframes dataStream {
    0% {
        transform: translateY(-5vh) translateX(0) scaleY(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(0) translateX(2vw) scaleY(1);
    }
    20% {
        transform: translateY(15vh) translateX(5vw) scaleY(1.2);
    }
    40% {
        transform: translateY(35vh) translateX(8vw) scaleY(0.8);
    }
    60% {
        transform: translateY(55vh) translateX(12vw) scaleY(1.1);
    }
    80% {
        transform: translateY(75vh) translateX(15vw) scaleY(0.9);
    }
    95% {
        opacity: 1;
        transform: translateY(90vh) translateX(18vw) scaleY(0.7);
    }
    100% {
        transform: translateY(100vh) translateX(20vw) scaleY(0);
        opacity: 0;
    }
}

@keyframes quantumShift {
    0% {
        transform: translateY(80vh) translateX(10vw) scale(0) rotate(0deg);
        opacity: 0;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }
    15% {
        opacity: 1;
        transform: translateY(70vh) translateX(20vw) scale(1) rotate(120deg);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }
    30% {
        transform: translateY(60vh) translateX(30vw) scale(1.2) rotate(240deg);
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }
    50% {
        transform: translateY(50vh) translateX(40vw) scale(0.8) rotate(360deg);
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }
    70% {
        transform: translateY(40vh) translateX(50vw) scale(1.1) rotate(480deg);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }
    85% {
        opacity: 1;
        transform: translateY(30vh) translateX(60vw) scale(1) rotate(600deg);
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }
    100% {
        transform: translateY(20vh) translateX(70vw) scale(0) rotate(720deg);
        opacity: 0;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }
}

@keyframes neuralNetwork {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(5vw) scale(0.5) rotate(45deg);
    }
    20% {
        transform: translateY(80vh) translateX(15vw) scale(1) rotate(90deg);
    }
    35% {
        transform: translateY(70vh) translateX(25vw) scale(1.2) rotate(135deg);
    }
    50% {
        transform: translateY(60vh) translateX(35vw) scale(0.8) rotate(180deg);
    }
    65% {
        transform: translateY(50vh) translateX(45vw) scale(1.1) rotate(225deg);
    }
    80% {
        transform: translateY(40vh) translateX(55vw) scale(0.9) rotate(270deg);
    }
    90% {
        opacity: 1;
        transform: translateY(30vh) translateX(65vw) scale(1) rotate(315deg);
    }
    100% {
        transform: translateY(20vh) translateX(75vw) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo-container {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-name:hover {
    transform: scale(1.02);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.centered-company-name {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: absolute;
    left: 95px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 8px 0;
}

.centered-company-name:hover {
    color: #ff6b35;
}

.centered-company-name a {
    color: inherit;
    text-decoration: none;
}

/* Responsive adjustments for company name */
@media (min-width: 901px) {
    .logo-container {
        display: flex !important;
        align-items: center !important;
    }
    
    .centered-company-name {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 901px) {
    .centered-company-name {
        font-size: 11px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        flex-direction: column !important;
        height: auto !important;
        padding: 12px 20px;
        align-items: center;
        gap: 10px;
    }
    
    .logo-container {
        position: static !important;
        left: auto !important;
        order: 1;
    }
    
    .centered-company-name {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        font-size: 11px;
        text-align: center;
        padding: 6px 12px;
        order: 2;
        margin: 0;
        width: auto;
        white-space: normal;
    }
    
    .nav-menu {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        justify-content: center;
        gap: 25px;
        order: 3;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 20px;
        gap: 8px;
    }
    
    .centered-company-name {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .centered-company-name {
        font-size: 8px !important;
        padding: 4px 6px;
        margin: 2px 0;
    }
    
    .nav-menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 4px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 4px 6px;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 6px 10px;
        gap: 12px;
    }
    
    .logo {
        height: 30px;
    }
    
    .centered-company-name {
        font-size: 7px !important;
        padding: 3px 4px;
        margin: 3px 0;
        letter-spacing: 0.3px;
    }
    
    .nav-menu {
        gap: 10px;
        margin-top: 6px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 3px 4px;
    }
}

.nav-menu {
    position: absolute;
    right: 40px;
    bottom: 0;
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0633 30%, #2d1b69 70%, #0a0a0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(120, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 50%);
    animation: heroGlow 6s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L10,10 M10,0 L10,20 M0,10 L20,10" stroke="rgba(120,255,255,0.1)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
    animation: circuitFlow 10s linear infinite;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes circuitFlow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-20px) translateY(-20px); }
}

.hero-content {
    max-width: 900px;
    z-index: 3;
    position: relative;
    animation: hologramFadeIn 1.5s ease-out;
}

.centered-company-name {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    padding: 8px 0;
}

.centered-company-name:hover {
    color: #ff6b35;
}

@keyframes hologramFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(25px) scale(0.95);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #1a1a1a;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(120, 255, 255, 0.3);
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #78ffff, #ff77c6, #7877c6);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes borderGlow {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(120, 255, 255, 0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    background-size: 200% 200%;
    color: #0a0a0f;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(120, 255, 255, 0.5),
        0 0 40px rgba(255, 119, 198, 0.3),
        0 0 60px rgba(120, 119, 198, 0.2);
    border: 1px solid rgba(120, 255, 255, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 30px rgba(120, 255, 255, 0.8),
        0 0 60px rgba(255, 119, 198, 0.5),
        0 0 90px rgba(120, 119, 198, 0.3);
    background-position: right center;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(120, 255, 255, 0.5),
            0 0 40px rgba(255, 119, 198, 0.3),
            0 0 60px rgba(120, 119, 198, 0.2);
    }
    50% {
        box-shadow:
            0 0 25px rgba(120, 255, 255, 0.7),
            0 0 50px rgba(255, 119, 198, 0.4),
            0 0 75px rgba(120, 119, 198, 0.3);
    }
}

/* Value Proposition Section */
.value-prop {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 6, 51, 0.8) 50%, rgba(45, 27, 105, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(120, 255, 255, 0.5) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(120, 255, 255, 0.3);
}

.value-prop::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 119, 198, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.6; }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow:
        0 0 20px rgba(120, 255, 255, 0.5),
        0 0 40px rgba(255, 119, 198, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #78ffff, #ff77c6, #7877c6);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(120, 255, 255, 0.6);
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1) hue-rotate(0deg); }
    50% { filter: brightness(1.2) hue-rotate(10deg); }
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(120, 255, 255, 0.3);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(120, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(120, 255, 255, 0.1), transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature:hover::before {
    left: 100%;
}

.feature:hover::after {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(120, 255, 255, 0.3),
        0 0 80px rgba(255, 119, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(120, 255, 255, 0.5);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(120, 255, 255, 0.5));
    transition: all 0.4s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(120, 255, 255, 0.8));
}

.feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(120, 255, 255, 0.5);
}

.feature p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(120, 255, 255, 0.3);
}

/* Data Center Showcase */
.datacenter-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 6, 51, 0.9) 50%, rgba(45, 27, 105, 0.95) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.datacenter-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(120, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
}

.datacenter-showcase .section-title {
    color: white;
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.datacenter-showcase .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.showcase-item:hover .dc-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff 0%, #ff6b35 50%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.stat-number.animated {
    animation: numberGlow 0.5s ease-out;
}

@keyframes numberGlow {
    0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4); }
    100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.solution-type {
    margin-bottom: 100px;
    text-align: center;
    position: relative;
}

.solution-type:last-child {
    margin-bottom: 0;
}

.solution-type h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    position: relative;
}

.capacity {
    color: #ff6b35;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-left: 30px;
    font-weight: 700;
}

.solution-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.solution-icons img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.solution-icons img:hover {
    transform: scale(1.1) rotate(5deg);
}

.solution-type p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Comparison Section */
.comparison {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 6, 51, 0.9) 50%, rgba(45, 27, 105, 0.95) 100%);
    color: white;
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.legacy-dc, .nextgen-dc {
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.legacy-dc:hover, .nextgen-dc:hover {
    transform: translateY(-10px);
}

.legacy-dc {
    background: linear-gradient(145deg, rgba(254, 215, 215, 0.9), rgba(255, 245, 245, 0.9));
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.nextgen-dc {
    background: linear-gradient(145deg, rgba(154, 230, 180, 0.9), rgba(240, 255, 244, 0.9));
    border: 2px solid rgba(56, 161, 105, 0.3);
    box-shadow: 0 20px 40px rgba(56, 161, 105, 0.1);
}

.legacy-dc::before, .nextgen-dc::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.legacy-dc:hover::before, .nextgen-dc:hover::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.legacy-dc h3, .nextgen-dc h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.legacy-dc h4, .nextgen-dc h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legacy-dc h3, .legacy-dc h4 {
    color: #dc2626;
}

.nextgen-dc h3, .nextgen-dc h4 {
    color: #059669;
}

.comparison-image {
    width: 250px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.legacy-dc ul, .nextgen-dc ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.legacy-dc li, .nextgen-dc li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.legacy-dc li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.nextgen-dc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
    font-size: 1.2rem;
}

/* News Section */
.news {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.news .section-title {
    color: #000000;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-shadow: none;
}

.news .section-subtitle {
    color: #000000;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.news-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.news-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: #f8fafc;
}

.news-item:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 40px;
    position: relative;
}

.news-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.news-date {
    font-size: 0.85rem;
    color: #64748b;
    margin-left: 15px;
    font-weight: 500;
}

.news-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0 15px;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.news-item p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #e55a2b;
    transform: translateX(5px);
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1.5" fill="rgba(255,107,53,0.3)"/><circle cx="70" cy="70" r="2" fill="rgba(102,126,234,0.3)"/><circle cx="50" cy="20" r="1" fill="rgba(0,255,136,0.3)"/></svg>') repeat;
    animation: float 35s ease-in-out infinite;
}

.contact .section-title {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.submit-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.success-message {
    color: #00ff88;
    font-weight: 600;
    margin-top: 25px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 6, 51, 0.9) 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(120, 255, 255, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(120, 255, 255, 0.5) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(120, 255, 255, 0.3);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.8), transparent);
    pointer-events: none;
}

.footer-logo {
    height: 45px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(120, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(120, 255, 255, 0.9));
}

.footer p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(120, 255, 255, 0.3);
}

.back-to-top {
    color: #78ffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.back-to-top::after {
    content: '↑';
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    color: #f7931e;
    transform: translateY(-2px);
}

.back-to-top:hover::after {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        position: fixed;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-icons {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        flex-direction: column;
        max-width: 400px;
    }
    
    .showcase-item {
        margin-bottom: 20px;
    }
    
    .solution-type h2 {
        font-size: 2rem;
    }
    
    .capacity {
        font-size: 1.3rem;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-image {
        height: 200px;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .legacy-dc, .nextgen-dc {
        padding: 30px 25px;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 6, 51, 0.9) 50%, rgba(45, 27, 105, 0.95) 100%);
    color: white;
    position: relative;
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    color: #0a0a0f;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 20px rgba(120, 255, 255, 0.5),
        0 0 40px rgba(255, 119, 198, 0.3);
}

.blog-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-author {
    display: flex;
    justify-content: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(120, 255, 255, 0.5);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-role {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-content {
    padding: 80px 0;
    background: #ffffff;
}

.blog-article {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    margin-bottom: 60px;
}

.blog-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #f8fafc;
}

.community-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.community-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.community-img:hover {
    transform: scale(1.02);
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #1a1a1a;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 1.1rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 30px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a5568;
}

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

.content-highlight {
    background: linear-gradient(135deg, rgba(120, 255, 255, 0.05), rgba(255, 119, 198, 0.05));
    border-left: 4px solid #78ffff;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
}

.content-highlight h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 6, 51, 0.9) 50%, rgba(45, 27, 105, 0.95) 100%);
    border-radius: 20px;
    color: white;
}

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

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.impact-stat .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.share-section h4,
.related-posts h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: linear-gradient(45deg, #78ffff 0%, #ff77c6 50%, #7877c6 100%);
    color: white;
    border-color: transparent;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 15px;
}

.related-posts a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: #78ffff;
}

.blog-sidebar {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.sidebar-widget p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-link,
.sidebar-cta {
    display: inline-block;
    color: #78ffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar-link:hover,
.sidebar-cta:hover {
    color: #ff77c6;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
}

.sidebar-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-posts a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.post-title {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.sidebar-posts a:hover .post-title {
    color: #78ffff;
}

.post-date {
    display: block;
    font-size: 0.8rem;
    color: #718096;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-article {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1.2rem;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .article-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        justify-content: center;
    }
}

/* Development Plan Section */
.development {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0633 50%, #2d1b69 100%);
    color: white;
    position: relative;
}

.development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.development .container {
    position: relative;
    z-index: 2;
}

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

.development-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.development .read-more {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.development .read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Timeline Styles */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid rgba(255, 255, 255, 0.1);
}

.timeline-item h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.timeline-item p {
    color: #1a1a1a;
    margin: 0;
    font-size: 1rem;
}

/* Related Posts Section */
.related-posts {
    padding: 80px 0;
    background: #f8fafc;
}

.related-posts h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.related-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-image {
    transform: scale(1.05);
}

.related-content {
    padding: 25px;
}

.related-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.related-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.related-content a:hover {
    color: #e55a2b;
}