/* ============================================================
                   WinsBS Electronics Hero — Final Seamless + Mobile Optimized
                   Version: 2025.11.4
                   ============================================================ */

/* ===== Brand Tokens ===== */
body a{
    text-decoration: none;
}

.wb-hero {
    --brand-blue: #1851E0;
    --tech-blue: #1E3A8A;
    --tech-glow: rgba(30,58,138,.12);
    --ink: #0b1426;
    --ivory: #f8f9fb;
}

/* ===== Section Background (Tech Style + Seamless Bottom) ===== */
.wb-hero.wb-hero--tech {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 45%, #f9fafc 90%);
    background-image:
            radial-gradient(800px 400px at 90% -5%, var(--tech-glow) 0%, rgba(24,81,224,0) 70%),
            linear-gradient(180deg, #ffffff 0%, #f8f9fb 45%, #f9fafc 90%);
    overflow: hidden;
    z-index: 1;
}

/* Extend gradient beyond hero to eliminate “white gap” */
.wb-hero.wb-hero--tech::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: linear-gradient(180deg, #f9fafc 0%, #f9fafc 60%, #ffffff 100%);
    z-index: 0;
}

/* ===== Layout ===== */
.wb-hero__inner {
    max-width:1240px;
    margin:0 auto;
    padding: clamp(40px,7vw,90px) 24px 60px;
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== Copy Area ===== */
.wb-hero__copy h1 {
    font-size: clamp(30px,4.2vw,46px);
    line-height:1.15;
    margin:0 0 14px;
    color:var(--ink);
}
.wb-hero__sub {
    font-size:17px;
    line-height:1.65;
    color:#2a3550;
    margin:0 0 22px;
    max-width:640px;
}
.wb-hero__points {
    list-style:none;
    margin:0 0 20px;
    padding:0;
    display:grid;
    gap:8px;
}
.wb-hero__points li {
    position:relative;
    padding-left:22px;
    font-size:15px;
    color:#25354f;
}
.wb-hero__points li::before {
    content:"";
    position:absolute;
    left:0; top:7px;
    width:9px; height:9px;
    border-radius:50%;
    background:var(--brand-blue);
    box-shadow:0 0 0 4px rgba(24,81,224,.12);
}

/* ===== CTA Buttons ===== */
.wb-hero__ctas {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:10px;
}
section.wb-hero .wb-hero__ctas .wb-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:46px;
    padding:0 24px;
    border-radius:999px;
    font-size:15px;
    font-weight:600;
    border:1px solid transparent;
    transition:all 0.25s ease;
    line-height:1;
    cursor:pointer;
    text-decoration:none;
    flex: 1 1 auto;
    min-width: 160px;
}

/* Primary CTA */
section.wb-hero .wb-btn--quote {
    background:#fff;
    color:#000;
    border:1px solid var(--brand-blue);
    box-shadow:0 6px 16px rgba(24,81,224,0.12);
}
section.wb-hero .wb-btn--quote:hover {
    background:var(--brand-blue);
    color:#fff;
    transform:translateY(-2px) scale(1.02);
}

/* Secondary CTA */
section.wb-hero .wb-btn--ghost {
    background:var(--brand-blue);
    color:#fff;
    border:1px solid var(--brand-blue);
    box-shadow:0 6px 16px rgba(24,81,224,0.12);
}
section.wb-hero .wb-btn--ghost:hover {
    background:#fff;
    color:#1851E0;
    transform:translateY(-2px) scale(1.02);
}

/* ===== Meta Info ===== */
.wb-hero__meta {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    font-size:13px;
    color:#4b5a77;
    opacity:.95;
    margin-top:10px;
}
.wb-hero__meta .dot { opacity:.55; }

/* ===== Image Area ===== */
.wb-hero__media {
    position:relative;
    text-align:center;
}
.wb-hero__imgwrap {
    position:relative;
    border-radius:20px;
    overflow:hidden;
    max-width:620px;
    margin: 0 auto;
    box-shadow:0 16px 40px rgba(2,6,23,.1);
}
.wb-hero__imgwrap img {
    width:100%;
    height:auto;
    max-height: 420px;
    object-fit:cover;
    display:block;
    border-radius:20px;
}
.wb-hero__overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(24,81,224,.25) 0%, rgba(24,81,224,.08) 40%, rgba(255,255,255,0) 80%);
}

/* ===== Desktop Feature Bar ===== */
.wb-hero__featurebar {
    max-width:1200px;
    margin:0 auto;
    padding:28px 24px 70px;
    border-top:1px solid rgba(24,81,224,.08);
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:1;
    background:transparent;
}
.wb-hero__featurebar .feature-item h4 {
    font-size:16px;
    font-weight:600;
    color:var(--brand-blue);
    margin:0 0 6px;
}
.wb-hero__featurebar .feature-item p {
    font-size:14px;
    color:#1a2235;
    margin:0;
    line-height:1.55;
}

/* ===== Mobile Cards ===== */
.wb-hero__features--mobile { display:none; }
.feature-card {
    background:#fff;
    border-radius:12px;
    border:1px solid rgba(24,81,224,.12);
    box-shadow:0 4px 12px rgba(2,6,23,.06);
    padding:14px 16px;
    margin-bottom:10px;
}
.feature-card h4 {
    font-size:15px;
    margin:0 0 6px;
    color:var(--brand-blue);
    font-weight:600;
}
.feature-card p {
    font-size:13px;
    line-height:1.5;
    color:#1a2235;
    margin:0;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width:1024px) {
    .wb-hero__inner {
        grid-template-columns:1fr;
        gap:40px;
    }
    .wb-hero__media {
        order:-2;
    }
    .wb-hero__imgwrap {
        max-width: 90%;
        max-height: 360px;
    }
    .wb-hero__featurebar { display:none; }
    .wb-hero__features--mobile { display:block; }
}

@media (max-width:768px) {
    .wb-hero__inner {
        padding: 60px 20px 40px;
    }
    .wb-hero__copy h1 {
        font-size: 26px;
        line-height:1.25;
    }
    .wb-hero__sub {
        font-size:15px;
        line-height:1.6;
    }
    .wb-hero__points li {
        font-size:14px;
    }
    .wb-hero__ctas {
        flex-direction:column;
    }
    section.wb-hero .wb-hero__ctas .wb-btn {
        width:100%;
        text-align:center;
    }
    .wb-hero__imgwrap {
        max-width:100%;
        max-height: 300px;
    }
    .feature-card h4 { font-size:14.5px; }
    .feature-card p { font-size:13px; }
}

@media (max-width:480px) {
    .wb-hero__inner {
        padding: 50px 18px 36px;
    }
    .wb-hero__copy h1 {
        font-size: 24px;
    }
    .wb-hero__sub {
        font-size:14.5px;
    }
    .wb-hero__points li {
        font-size:13.5px;
    }
    .wb-hero__meta {
        font-size:12.5px;
    }
}

/* ============================================================
                  WinsBS — Why WinsBS Is Different for Electronics Fulfillment (Global Edition)
                  Version: 2025.11 | No Background | Hover Blue → White
                  ============================================================ */
.wb-diff {
    padding: clamp(60px, 8vw, 100px) 24px;
    border-top: 1px solid rgba(24,81,224,.08);
    background: none;
}
.wb-diff .container {
    max-width: 1220px;
    margin: 0 auto;
}

/* ===== Heading ===== */
.wb-diff__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}
.wb-diff__head h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #0b1426;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}
.wb-diff__sub {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3853;
    opacity: 0.95;
}

/* ===== Grid ===== */
.wb-diff__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .wb-diff__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .wb-diff__grid { grid-template-columns: 1fr; }
}

/* ===== Card ===== */
.diff-card {
    background: #fff;
    border: 1px solid rgba(24,81,224,.12);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(2,6,23,.06);
    transition: all .25s ease;
    overflow: hidden;
    position: relative;
}
.diff-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,81,224,0.06) 0%, rgba(24,81,224,0) 60%);
    opacity: 0;
    transition: opacity .3s ease;
}
.diff-card:hover::before { opacity: 1; }
.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(24,81,224,.15);
}
.diff-card h3 {
    font-size: 18px;
    color: #1851E0;
    font-weight: 600;
    margin-bottom: 10px;
}
.diff-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2235;
    margin: 0;
}

/* ===== CTA ===== */
.wb-diff__cta {
    text-align: center;
    margin-top: 60px;
}
.wb-diff__cta .wb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #1851E0;
    background: #fff;
    color: #000;
    box-shadow: 0 6px 16px rgba(24,81,224,0.12);
    transition: all .25s ease;
}
.wb-diff__cta .wb-btn:hover {
    background: #1851E0;
    color: #000;
    box-shadow: 0 8px 22px rgba(24,81,224,0.25);
    transform: translateY(-2px) scale(1.02);
}
.wb-diff__cta .wb-btn:active {
    transform: scale(0.97);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .diff-card,
    .wb-diff__cta .wb-btn {
        transition: none !important;
        transform: none !important;
    }
}

/* ============================================================
                   WinsBS — Electronics Fulfillment Painpoints (Global Edition)
                   Version 2025.11 | SEO-Optimized + Mobile-Friendly
                   ============================================================ */

.wb-painpoints {
    background: linear-gradient(180deg,#ffffff 0%,#f8faff 100%);
    padding: clamp(70px,8vw,120px) 24px;
    border-top: 1px solid rgba(24,81,224,.08);
}
.wb-painpoints .container {
    max-width: 1220px;
    margin: 0 auto;
}

/* Header */
.wb-pain__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}
.wb-pain__head h2 {
    font-size: clamp(28px,4vw,38px);
    font-weight: 700;
    color: #0b1426;
    margin-bottom: 14px;
}
.wb-pain__sub {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3853;
    opacity: .95;
}

/* Grid */
.wb-pain__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 36px;
}
@media (max-width: 1024px){ .wb-pain__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px){ .wb-pain__grid { grid-template-columns: 1fr; } }

/* Card */
.pain-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid rgba(24,81,224,.12);
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 4px 18px rgba(2,6,23,.06);
    transition: all .3s ease;
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(24,81,224,.15);
}
.pain-card--more {
    background: linear-gradient(180deg,rgba(24,81,224,.05) 0%,#fff 100%);
}

/* Icon */
.pain-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24,81,224,.08);
    color: #1851E0;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 16px;
    transition: all .3s ease;
}
.pain-card:hover .pain-icon {
    background: #1851E0;
    color: #fff;
    transform: scale(1.05);
}

/* Text */
.pain-body h3 {
    font-size: 18px;
    color: #0b1426;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
}
.pain-body p {
    font-size: 15px;
    color: #1a2235;
    line-height: 1.7;
    flex-grow: 1;
}

/* CTA */
.pain-footer { margin-top: 24px; }
.pain-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #1851E0;
    background: #1851E0;
    color: #fff;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(24,81,224,.15);
}
.pain-cta:hover {
    background: #fff;
    color: #1851E0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(24,81,224,.25);
}
.pain-cta--button {
    height: 46px;
    font-size: 15px;
    background: #1851E0;
    color: #fff;
    border-radius: 999px;
    padding: 0 26px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(24,81,224,.18);
}
.pain-cta--button:hover {
    background: #fff;
    color: #1851E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(24,81,224,.25);
}

/* Responsive */
@media (max-width:700px){
    .pain-cta { width:100%; justify-content:center; }
}

.wb-categories {
    background: #fff;
    padding: clamp(70px, 8vw, 110px) 24px;
    border-top: 1px solid rgba(24,81,224,.08);
    color: #0b1426;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
.wb-categories .container {
    max-width: 1220px;
    margin: 0 auto;
}

/* Header */
.wb-cat__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.wb-cat__head h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #0b1426;
    margin-bottom: 14px;
}
.wb-cat__sub {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3853;
    opacity: .95;
}

/* Stats */
.wb-cat__stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #1851E0;
    margin-bottom: 4px;
}
.stat .label {
    font-size: 14px;
    color: #1a2235;
    opacity: .85;
}

/* Grid */
.wb-cat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .wb-cat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wb-cat__grid { grid-template-columns: 1fr; } }

/* Card */
.cat-card {
    border-radius: 18px;
    padding: 36px 26px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,.06);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
    border-color: rgba(24,81,224,.15);
}
.cat-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b1426;
    margin-bottom: 10px;
}
.cat-card p {
    font-size: 15px;
    color: #1a2235;
    line-height: 1.7;
    margin-bottom: 20px;
}
.cat-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    background: #1851E0;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
    border: 1px solid #1851E0;
}
.cat-cta:hover {
    background: #fff;
    color: #1851E0;
    transform: translateY(-2px);
}

/* Accent backgrounds */
.cat-suit { background: linear-gradient(160deg,#f5f8ff 0%,#ffffff 60%); }
.cat-tee { background: linear-gradient(160deg,#f3f9ff 0%,#ffffff 60%); }
.cat-lolita { background: linear-gradient(160deg,#f9fbff 0%,#ffffff 60%); }
.cat-workwear { background: linear-gradient(160deg,#f7fbff 0%,#ffffff 60%); }
.cat-active { background: linear-gradient(160deg,#f4fbff 0%,#ffffff 60%); }
.cat-pod { background: linear-gradient(160deg,#f5faff 0%,#ffffff 60%); }

/* ============================================================
                   WinsBS — Global Electronics Testimonials + Rating Summary
                   Version: 2025.11 (China-Origin Global Edition)
                   ============================================================ */
.wb-feedback {
    background: #fff;
    padding: clamp(80px,8vw,120px) 24px;
    border-top: 1px solid rgba(24,81,224,.05);
    color: #0b1426;
    font-family: "Inter","Helvetica Neue",Arial,sans-serif;
    overflow: hidden;
}
.wb-feedback .container { max-width: 1220px; margin: 0 auto; }

/* Header */
.wb-feed__head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 32px;
}
.wb-feed__head h2 {
    font-size: clamp(28px,4vw,38px);
    font-weight: 700;
    color: #0b1426;
    margin-bottom: 14px;
}
.wb-feed__head p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3853;
    opacity: .95;
}

/* Rating Summary */
.rating-summary {
    text-align: center;
    margin-bottom: 50px;
}
.rating-summary .stars {
    font-size: 26px;
    color: #f7b500;
    letter-spacing: 3px;
    text-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.rating-summary .score {
    font-size: 15px;
    color: #1a2235;
    margin-top: 4px;
    opacity: .9;
}

/* Carousel */
.feed-carousel { position: relative; overflow: hidden; }
.feed-track {
    display: flex;
    gap: 24px;
    transition: transform .6s ease;
}
.feed-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fafafa;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: left;
    transition: all .3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
    min-height: 260px;
}
.feed-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(24,81,224,.1);
}
.feed-card blockquote {
    font-size: 16px;
    color: #1a2235;
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 16px;
}
.feed-card .meta {
    font-size: 14px;
    color: #4b5a77;
    opacity: .9;
}

/* Fade sides */
.feed-carousel::before,
.feed-carousel::after {
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    pointer-events:none;
    z-index:2;
}
.feed-carousel::before {
    left:0;
    background:linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.feed-carousel::after {
    right:0;
    background:linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

/* Controls */
.feed-controls {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 44px;
}
.feed-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    color: #0b1426;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}
.feed-controls button:hover {
    border-color: #1851E0;
    color: #1851E0;
    transform: translateY(-2px) scale(1.05);
}

/* Responsive */
@media (max-width: 980px){ .feed-card{flex: 0 0 calc(50% - 12px);} }
@media (max-width: 700px){
    .feed-card{flex: 0 0 100%;}
    .feed-carousel::before,.feed-carousel::after{display:none;}
}

/* ===================== */
.wb-case {
    background: linear-gradient(180deg,#f9fbff 0%,#ffffff 100%);
    padding: clamp(80px,8vw,120px) 24px;
    border-top: 1px solid rgba(24,81,224,.08);
    font-family: "Inter","Helvetica Neue",Arial,sans-serif;
    color: #0b1426;
}
.wb-case .container {
    max-width: 1180px;
    margin: 0 auto;
}

/* Header */
.wb-case__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.wb-case__head h2 {
    font-size: clamp(28px,4vw,38px);
    font-weight: 700;
    color: #0b1426;
    margin-bottom: 14px;
}
.wb-case__sub {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3853;
    opacity: .95;
}

/* Grid Layout */
.wb-case__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .wb-case__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Image Container */
.case-thumb {
    position: relative;
}
.case-imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(24,81,224,.12);
}
.case-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.case-imgwrap img:hover {
    transform: scale(1.03);
}

/* Content */
.case-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1851E0;
    margin-bottom: 16px;
}
.case-content ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}
.case-content ul li {
    font-size: 15px;
    color: #1a2235;
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}
.case-content ul li::before {
    content: "•";
    color: #1851E0;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1.4;
}

/* CTA */
.case-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #1851E0;
    border: 1px solid #1851E0;
    transition: all .25s ease;
    box-shadow: 0 6px 16px rgba(24,81,224,.15);
}
.case-cta:hover {
    background: #fff;
    color: #1851E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(24,81,224,.25);
}

/* ============================================================
                   WinsBS — Global Electronics FAQ (Stable Color Logic + China-Origin Edition)
                   ============================================================ */
.wb-faq {
    background: #f9fafc;
    padding: clamp(90px,8vw,130px) 24px;
    border-top: 1px solid rgba(24,81,224,.05);
    font-family: "Inter","Helvetica Neue",Arial,sans-serif;
    color: #0b1426;
}
.wb-faq .container { max-width: 880px; margin: 0 auto; }

/* Header */
.wb-faq__head { text-align: center; margin-bottom: 50px; }
.wb-faq__head h2 {
    font-size: clamp(28px,4vw,38px);
    font-weight: 700;
    color: #0b1426;
    margin-bottom: 14px;
}
.wb-faq__head p {
    font-size: 17px;
    color: #2c3853;
    line-height: 1.7;
    opacity: .9;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 12px rgba(0,0,0,.03);
    overflow: hidden;
    transition: all .3s ease;
}
.faq-item:hover {
    border-color: rgba(24,81,224,.25);
    box-shadow: 0 8px 22px rgba(24,81,224,.1);
    background: #f9fbff;
}
.faq-item.open {
    background: #1851E0;
    border-color: #1851E0;
    box-shadow: 0 10px 28px rgba(24,81,224,.25);
    transform: translateY(-1px);
}

/* Question */
.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    padding: 22px 24px;
    color: #0b1426;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .25s ease;
}
.faq-question:hover { color: #1851E0; }
.faq-item.open .faq-question { color: #fff; }
.faq-item:not(.open):hover .faq-question { color: #1851E0; }
.faq-question::after {
    content: '+';
    font-size: 22px;
    color: #1851E0;
    transition: transform .3s ease, color .3s ease;
}
.faq-item.open .faq-question::after {
    content: '–';
    transform: rotate(180deg);
    color: #fff;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2235;
    margin: 0;
}
.faq-item.open .faq-answer p { color: #fff; }

/* CTA */
.faq-cta { text-align: center; margin-top: 60px; }
.faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 999px;
    background: #1851E0;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #1851E0;
    transition: all .25s ease;
    box-shadow: 0 6px 18px rgba(24,81,224,.18);
}
.faq-btn:hover {
    background: #fff;
    color: #1851E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24,81,224,.25);
}

/* Responsive */
@media (max-width:700px){
    .faq-question{font-size:16px;}
    .faq-answer p{font-size:14.5px;}
}