.wow-list {
    display: flex;
    flex-direction: column;
    gap: 160px;
    max-width: 1200px;
    margin: 0 auto;
}

.wow-item {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    outline: none;
    opacity: 0;
    transform: translateY(120px) scale(0.96);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

    .wow-item.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .wow-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .wow-item::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 15%;
        transform: translateY(-50%);
        width: 400px;
        height: 400px;
        background: var(--color-accent);
        filter: blur(200px);
        opacity: 0;
        z-index: 0;
        pointer-events: none;
        transition: opacity 1s ease;
    }

    .wow-item:nth-child(even)::before {
        right: auto;
        left: 15%;
    }

    .wow-item:hover::before {
        opacity: 0.35;
    }

.wow-image-col {
    width: 65%;
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #050508;
    transform: translateZ(0);
}

.wow-image-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.wow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wow-glass-panel {
    width: 45%;
    margin-left: -10%;
    position: relative;
    z-index: 2;
    background: rgba(15, 16, 22, 0.65);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.wow-item:nth-child(even) .wow-glass-panel {
    margin-left: 0;
    margin-right: -10%;
}

.wow-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.wow-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.wow-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 8px;
    align-self: flex-start;
    transition: color 0.4s ease;
}

.wow-cta-line {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background: var(--color-accent);
    transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wow-cta svg {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wow-item:hover .wow-image-col {
    border-color: rgba(200,24,128,0.4);
    box-shadow: 0 35px 80px -15px rgba(200,24,128,0.3);
    transform: scale(1.02);
}

.wow-item:hover .wow-img {
    transform: scale(1.07);
}

.wow-item:hover .wow-glass-panel {
    background: rgba(20, 21, 28, 0.8);
    border-color: rgba(200,24,128,0.5);
    box-shadow: -20px 40px 80px -20px rgba(200,24,128,0.3);
    transform: translateY(-12px);
}

.wow-item:nth-child(even):hover .wow-glass-panel {
    box-shadow: 20px 40px 80px -20px rgba(200,24,128,0.3);
}

.wow-item:hover .wow-title {
    color: var(--color-white);
}

.wow-item:hover .wow-cta {
    color: var(--color-accent);
}

.wow-item:hover .wow-cta-line {
    width: 100%;
    background: var(--color-white);
}

.wow-item:hover .wow-cta svg {
    transform: translateX(8px);
}

@media (max-width: 991px) {
    .wow-title {
        font-size: 1.4rem;
        line-height: 1.45;
    }

    .wow-item, .wow-item:nth-child(even) {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .wow-image-col {
        width: 100%;
        border-radius: 16px;
    }

    .wow-glass-panel, .wow-item:nth-child(even) .wow-glass-panel {
        width: 92%;
        margin-left: 0;
        margin-right: 0;
        margin-top: -60px;
        padding: 40px 30px;
    }

    .wow-list {
        gap: 80px;
    }
}

.index-hero-section {
    padding: 160px 0 40px;
    position: relative;
}

.index-hero-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(200, 24, 128, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.index-hero-content {
    position: relative;
    z-index: 1;
}

    .index-hero-content .index-badge-hero,
    .index-hero-content .index-hero-title,
    .index-hero-content .index-hero-subtitle {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        animation: heroCopyFadeUp 0.8s var(--ease-smooth) forwards;
        will-change: opacity, transform;
    }

    .index-hero-content .index-badge-hero {
        animation-delay: 0.12s;
    }

    .index-hero-content .index-hero-title {
        animation-delay: 0.24s;
    }

    .index-hero-content .index-hero-subtitle {
        animation-delay: 0.38s;
    }

.index-badge-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 40px -24px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: visible;
    animation: none;
    will-change: auto;
    font-family: var(--font-primary);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    line-height: 1;
    text-transform: uppercase;
}

    .index-badge-hero::before,
    .index-badge-hero::after {
        content: none;
    }

.index-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.index-hero-subtitle {
    margin-bottom: 0;
}

.index-text-highlight {
    color: var(--color-accent-bright);
}

.index-list-section {
    padding: 0 0 160px;
}

.index-list-container {
    margin-top: 140px;
}

@media (max-width: 768px) {
    .index-list-container {
        margin-top: 60px;
    }

    .wow-list {
        gap: 60px;
    }
}
