.section-whats-for {
    padding: 60px 15px;
    text-align: center;
}

@media (min-width: 769px) {
    .section-whats-for {
        padding-top: 10px;
    }
}

.section-whats-for-title {
    font-size: 1.8rem;
    margin: 0 0 36px;
}

.whats-for-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.whats-for-image-col {
    flex: 1;
    position: relative;
    aspect-ratio: 1.595 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.whats-for-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.595 / 1;
    transform: rotate(5deg);
    transform-style: preserve-3d;
}

.whats-for-ring {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, white 0deg, white 330deg, #0286fb 345deg, white 360deg);
    animation: ring-rotate 4s linear infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.whats-for-layout:hover .whats-for-ring {
    opacity: 0;
}

.whats-for-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.whats-for-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.whats-for-slide .slide-bg,
.whats-for-slide .slide-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

.whats-for-slide .slide-bg {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.whats-for-slide .slide-fg {
    z-index: 2;
}

.slide-bg-wrap,
.slide-fg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.slide-fg-wrap {
    z-index: 2;
}

.slide-bg-wrap {
    z-index: 1;
}

.whats-for-slide .slide-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.whats-for-slide .slide-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

.whats-for-image-frame {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    border: 1px solid #eee;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@keyframes ring-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.whats-for-rows-box {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.whats-for-row {
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.whats-for-row:last-child {
    border-bottom: none;
}

.whats-for-row:hover {
    background: #fafafa;
}

.whats-for-row.active {
    background: #f0f8ff;
    border-left: 4px solid #0286fb;
}

.whats-for-row h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.whats-for-row p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .whats-for-layout {
        flex-direction: column;
    }
    .whats-for-image-col {
        aspect-ratio: 1.595 / 1;
        width: 100%;
    }
}
