.wc-section {
    width: 100%;
    padding: 40px 16px 48px;
    border-top: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    background: url("../../images/section-bg-6.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.wc-section::before,
.wc-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(2, 6, 23, 0.35) 0, transparent 62%);
    opacity: 0.25;
    pointer-events: none;
    filter: blur(4px);
    display: none;
}

.wc-section::before {
    top: -120px;
    left: -80px;
}

.wc-section::after {
    bottom: -140px;
    right: -80px;
    background: radial-gradient(circle, rgba(154, 52, 18, 0.28) 0, transparent 62%);
}

.wc-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.wc-header {
    text-align: center;
    margin-bottom: 28px;
}

.wc-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.wc-title .hero-highlight {
    color: #ea580c;
}

.wc-subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    color: #374151;
}

.wc-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 28px;
    align-items: center;
}

.wc-left {
    display: flex;
    flex-direction: column;
}

.wc-right {
    display: flex;
    justify-content: center;
}

.wc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.wc-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    color: #111827;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.wc-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(249, 115, 22, 0.20) 0, transparent 55%);
    opacity: 0;
    transform: translate3d(-10px, -10px, 0);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.wc-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(234, 88, 12, 0.55);
    background-color: #fff7ed;
}

.wc-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.wc-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #eff6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.wc-icon-img img {
    max-width: 24px;
    max-height: 24px;
    display: block;
}

.wc-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(249, 115, 22, 0.10);
    color: #9a3412;
    margin-bottom: 6px;
}

.wc-heading {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.wc-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #065f46;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.wc-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}

.wc-image-wrap {
    max-width: 360px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.wc-image-wrap::before {
    content: "";
    position: absolute;
    inset: 18% 6% 0 6%;
    border-radius: 32px;
    background: radial-gradient(circle at 25% 20%, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0) 62%);
    filter: blur(1px);
    opacity: 0.85;
    z-index: -1;
}

.wc-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .wc-layout {
        grid-template-columns: minmax(0, 1.2fr);
    }

    .wc-right {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .wc-section {
        padding-inline: 12px;
    }
    .wc-title {
        font-size: 22px;
    }
    .wc-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
