.works-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section {
    background: #090909;

}

.feature-box {
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(215, 179, 65, 0.25);
}

.feature-box-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.feature-box-content {
    flex: 1.1;
}

.feature-box-visual {
    flex: 0.9;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-box-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.feature-box .eyebrow {
    margin-bottom: 10px;

}

.feature-box h2 {
    line-height: 1.15;
    margin-bottom: 24px;
}

.feature-box h2 span {
    color: var(--gold-light);
}

.feature-list ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.feature-list ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.feature-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #F3C155;
    border-radius: 50%;
    color: #F3C155;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
}

.feature-check img {
    width: 11px;
    height: 11px;

}

@media (max-width: 1024px) {
    .feature-box-inner {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .works-section {
        padding: 70px 0;
    }
}