/* ============================================================
   WIN LAB — Why Choose Us Section
   ============================================================ */

.wc-section {
    background: #161616;
    padding: 6rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

/* Diagonal texture lines */
.wc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        rgba(255,255,255,0.018) 0px,
        rgba(255,255,255,0.018) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

/* Radial glow top-center */
.wc-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(232,118,26,0.06) 0%,
        transparent 65%);
    pointer-events: none;
}

/* ── Inner ── */
.wc-section__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ── Scroll reveal ── */
.wc-section__reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1) var(--wc-delay, 0ms),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1) var(--wc-delay, 0ms);
}

.wc-section__reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Header ── */
.wc-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.wc-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #E8761A;
    margin-bottom: 1rem;
}

.wc-section__badge-dot {
    width: 8px;
    height: 8px;
    background: #E8761A;
    border-radius: 1px;
    flex-shrink: 0;
}

.wc-section__heading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 1rem;
}

.wc-section__subtext {
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ── Stats bar ── */
.wc-section__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    margin-bottom: 4rem;
    padding: 0.5rem 0;
    overflow: hidden;
}

.wc-section__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    flex: 1;
    min-width: 140px;
    gap: 0.3rem;
}

/* Vertical separator */
.wc-section__stat-sep {
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.wc-section__stat-value {
    font-family: 'Barlow Condensed', monospace;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #E8761A;
    letter-spacing: -0.02em;
    line-height: 1;
}

.wc-section__stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

@media (max-width: 640px) {
    .wc-section__stats {
        gap: 0;
    }

    .wc-section__stat {
        flex-basis: 50%;
        padding: 1.25rem 1rem;
    }

    /* Hide separators on mobile — grid handles it */
    .wc-section__stat-sep {
        display: none;
    }
}

/* ── Reason cards grid ── */
.wc-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .wc-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .wc-section__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Individual card ── */
.wc-section__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem 1.5rem 2rem;
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 260ms ease,
        background 260ms ease,
        box-shadow 260ms ease;
}

.wc-section__card:hover {
    transform: translateY(-5px);
    border-color: rgba(232,118,26,0.35);
    background: #232323;
    box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}

/* Animated orange bottom line on hover */
.wc-section__card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #E8761A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wc-section__card:hover .wc-section__card-line {
    transform: scaleX(1);
}

/* Icon */
.wc-section__card-icon {
    width: 38px;
    height: 38px;
    color: #E8761A;
    flex-shrink: 0;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wc-section__card-icon svg {
    width: 100%;
    height: 100%;
}

.wc-section__card:hover .wc-section__card-icon {
    transform: scale(1.1) rotate(-4deg);
}

/* Card text */
.wc-section__card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wc-section__card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.01em;
    transition: color 260ms ease;
}

.wc-section__card:hover .wc-section__card-title {
    color: #ffffff;
}

.wc-section__card-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 0.83rem;
    line-height: 1.68;
    color: rgba(255,255,255,0.42);
    margin: 0;
    transition: color 260ms ease;
}

.wc-section__card:hover .wc-section__card-desc {
    color: rgba(255,255,255,0.62);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .wc-section__reveal,
    .wc-section__card,
    .wc-section__card-icon,
    .wc-section__card-line {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}