.software-hero {
    padding-top: 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.software-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content-left {
    padding-right: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

.feature-item i {
    font-size: 1.5rem;
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.feature-item span {
    color: #a0a0ff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-description {
    color: #a0a0ff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
    max-width: 600px;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid rgba(0, 240, 255, 0.3);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #00f0ff, #7700ff);
    animation: lineGrow 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes lineGrow {
    from { height: 0; }
    to { height: 100%; }
}

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

.hero-image-right {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-right::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(0, 240, 255, 0.2) 0%,
        rgba(119, 0, 255, 0.15) 40%,
        transparent 70%
    );
    filter: blur(30px);
    animation: heroGlow 4s ease-in-out infinite;
}

.hero-image-right img {
    position: relative;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatImage 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

@media screen and (max-width: 768px) {
    .software-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        justify-content: center;
    }

    .hero-description {
        font-size: 1.1rem;
        padding-left: 1.5rem;
        margin: 1.5rem auto;
        text-align: left;
    }

    .hero-image-right {
        height: 300px;
        order: -1;
    }
}

.analytics-showcase {
    padding: 6rem 0;
    background: rgba(13, 17, 35, 0.5);
}

.analytics-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.analytics-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.analytics-card:hover {
    transform: translateY(-10px);
}

.analytics-card:nth-child(even) {
    direction: rtl;
}

.analytics-card:nth-child(even) .preview-overlay,
.analytics-card:nth-child(even) .analytics-content {
    direction: ltr;
}

.analytics-preview {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.analytics-card:hover .analytics-preview img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 17, 35, 0.95),
        rgba(13, 17, 35, 0.7)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.analytics-card:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay h3 {
    color: #00f0ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.preview-overlay p {
    color: #a0a0ff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.analytics-content {
    padding: 2rem;
}

.analytics-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00f0ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.analytics-content p {
    color: #a0a0ff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.analytics-features {
    list-style: none;
    margin-bottom: 2rem;
}

.analytics-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a0a0ff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.analytics-features i {
    color: #00f0ff;
    font-size: 1.2rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badges span {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.tech-badges span:hover {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::before {
    content: attr(class);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #00f0ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
}

.section-title {
    background: linear-gradient(90deg, #00f0ff, #7700ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    color: #a0a0ff;
    margin: 1.5rem 0;
    position: relative;
    padding-left: 3rem;
    opacity: 0;
    animation: fadeInSlide 1s ease-out forwards;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #00f0ff, transparent);
    transform: translateY(-50%);
}

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

@media screen and (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .analytics-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .analytics-preview {
        height: 300px;
    }

    .analytics-card:nth-child(even) {
        direction: ltr;
    }

    .analytics-content {
        padding: 1rem;
        text-align: center;
    }

    .analytics-features li {
        justify-content: center;
    }

    .tech-badges {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .section-title::before {
        font-size: 0.8rem;
        top: -15px;
    }

    .subtitle {
        font-size: 1.4rem;
        padding-left: 0;
        text-align: center;
    }

    .subtitle::before {
        display: none;
    }
}
