/* ================================================
   WHY CHOOSE US — Premium Glassmorphic Section
   ================================================ */
.wcu-section {
    position: relative;
    padding: 80px 0 20px;
    overflow: hidden;
    background: transparent;
}

.wcu-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ambient Blobs & Noise */
.wcu-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    filter: blur(100px);
}

.wcu-blob--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.wcu-blob--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.wcu-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

/* ================================================
   HEADER LAYOUT (Grid)
   ================================================ */
.wcu-header-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* ── LEFT: Stats ── */
.wcu-stats-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.wcu-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    min-width: 180px;
    animation: floatCard 6s ease-in-out infinite;
}

.wcu-stat-card.delay-2 {
    animation-delay: 3s;
    margin-left: 2rem;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* ── CENTER: Title ── */
.wcu-title-col {
    text-align: center;
    position: relative;
}

.wcu-main-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

.wcu-title-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.3));
}

.wcu-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* Trust Badge Style */
.wcu-trust-badge {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wcu-trust-star {
    color: #eab308;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(234, 179, 8, 0.5));
}

/* ── RIGHT: Info & CTA ── */
.wcu-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1.5rem;
}

.wcu-desc-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

.wcu-cta-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.wcu-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.25);
    background: #f0f0f0;
}

/* ================================================
   MARQUEE
   ================================================ */
.wcu-marquee-strip {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0;
    margin-bottom: 2rem;
    transform: rotate(-2deg) scale(1.05);
    /* Slight angle like ref */
    backdrop-filter: blur(4px);
    z-index: 1;
    overflow: hidden;
}

.wcu-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    gap: 4rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4rem;
    letter-spacing: 1px;
}

.marquee-star {
    color: #eab308;
    /* Gold star */
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.6));
}

/* ================================================
   CARDS GRID & ANIMATIONS
   ================================================ */
.wcu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Single Card */
.wcu-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* Border handled by inset shadow + wcu-card__border-glow now */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);

    opacity: 0;
    transform: translateY(30px);
}

.wcu-card.wcu-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.wcu-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* New: Subtle border glow pulse */
.wcu-card__border-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    filter: blur(40px);
    transition: opacity 0.4s ease;
}

.wcu-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.wcu-card-content {
    position: relative;
    z-index: 2;
}

.wcu-card-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
}

.wcu-card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.wcu-hover-glow {
    position: absolute;
    bottom: -30px;
    left: 15%;
    right: 15%;
    height: 60px;
    filter: blur(35px);
    opacity: 0.3;
    /* Always visible a little bit now */
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scaleX(0.9);
    }

    50% {
        opacity: 0.4;
        transform: scaleX(1.1);
    }
}

/* Hover Effects */
@media (hover: hover) {
    .wcu-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .wcu-card:hover .wcu-icon-box {
        transform: scale(1.1) rotate(-3deg) translateY(-4px);
    }

    .wcu-card:hover .wcu-hover-glow {
        opacity: 0.8;
        animation: none;
        /* Stabilize on hover */
    }

    .wcu-card:hover .wcu-card__border-glow {
        opacity: 0.15;
        /* Highlights the whole card body */
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .wcu-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .wcu-stats-col {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .wcu-stat-card.delay-2 {
        margin-left: 0;
    }

    .wcu-info-col {
        align-items: center;
        text-align: center;
    }

    .wcu-desc-text {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .wcu-cards-grid {
        grid-template-columns: 1fr;
    }

    .wcu-main-title {
        font-size: 3rem;
    }

    .wcu-stats-col {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Fix: Fallback  always show wcu-cards after short delay (no JS dependency) */
@keyframes wcu-card-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wcu-card {
    animation: wcu-card-reveal 0.6s ease forwards;
    animation-delay: 0.3s;
}

.wcu-card:nth-child(2) {
    animation-delay: 0.5s;
}

.wcu-card:nth-child(3) {
    animation-delay: 0.7s;
}

/* Mobile: comfortable spacing between Premium and Reviews */
@media (max-width: 768px) {
    .wcu-section {
        padding: 50px 0 30px !important;
    }

    .wcu-cards-grid {
        gap: 1rem;
    }

    .wcu-card {
        padding: 1.5rem 1.2rem;
    }

    .wcu-marquee-strip {
        margin-bottom: 1rem !important;
    }

    .wcu-header-grid {
        margin-bottom: 1rem !important;
        gap: 1rem;
    }

    .reviews-section {
        padding-top: 20px !important;
    }

    .rev-subtitle {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .wcu-section {
        padding: 40px 0 20px !important;
    }

    .wcu-header-grid {
        gap: 0.75rem;
        margin-bottom: 0.75rem !important;
    }

    .wcu-marquee-strip {
        margin-bottom: 0.75rem !important;
    }

    .wcu-cards-grid {
        gap: 0.75rem;
    }
}