/* ============================================================
      WinsBS Apparel Hero — Full CSS (Layout + CTA + Responsive + Motion)
      Version: 2025.11
      ============================================================ */

/* ===== Brand Tokens ===== */
.wb-hero {
    --brand-blue: #1851E0;
    --brand-blue-dark: #0f40c2;
    --ink: #0b1426;
    --ivory: #fbfbfd;
    --sky-glow: rgba(24,81,224,.08);
}

/* ===== Section Background ===== */
.wb-hero.wb-hero--sky {
    background: var(--ivory);
    background-image:
            radial-gradient(900px 500px at 90% -10%, var(--sky-glow) 0%, rgba(24,81,224,0) 70%),
            linear-gradient(180deg,#fff 0%,#fff 20%,rgba(255,255,255,0) 100%);
}

/* ===== 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;
}

/* ===== Copy ===== */
.wb-hero__copy h1 {
    font-size: clamp(30px,4.4vw,48px);
    line-height:1.15;
    margin:0 0 14px;
    color:var(--ink);
}
.wb-hero__sub {
    font-size:17px;
    line-height:1.65;
    color:#24314a;
    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 (High Specificity + Motion + Accessibility)
   ============================================================ */
.wb-hero__ctas {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:10px;
}

/* 通用按钮基础样式 */
section.wb-hero .wb-hero__ctas .wb-btn {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    height:46px !important;
    padding:0 24px !important;
    border-radius:999px !important;
    font-size:15px !important;
    font-weight:600 !important;
    text-decoration:none !important;
    border:1px solid transparent !important;
    cursor:pointer !important;
    transition:all 0.25s ease !important;
    transform:translateY(0) !important;
    will-change: transform, box-shadow, background, color, border;
    line-height:1 !important;
    box-sizing:border-box !important;
    white-space:nowrap !important;
}

/* --- Primary CTA: Get a Free Quote --- */
section.wb-hero .wb-hero__ctas .wb-btn--quote {
    background:#ffffff !important;               /* 默认白底 */
    color:#000000 !important;                    /* 默认黑字 */
    border:1px solid #1851E0 !important;
    box-shadow:0 6px 16px rgba(24,81,224,0.12) !important;
}
section.wb-hero .wb-hero__ctas .wb-btn--quote:hover,
section.wb-hero .wb-hero__ctas .wb-btn--quote:focus {
    background:#1851E0 !important;               /* Hover 蓝底 */
    color:#000000 !important;                    /* 黑字 */
    border-color:#1851E0 !important;
    box-shadow:0 8px 22px rgba(24,81,224,0.25) !important;
    transform:translateY(-2px) scale(1.02) !important;
}
section.wb-hero .wb-hero__ctas .wb-btn--quote:active {
    transform:scale(0.97) !important;
    box-shadow:0 4px 10px rgba(24,81,224,0.25) !important;
}

/* --- Secondary CTA: Talk to an Expert --- */
section.wb-hero .wb-hero__ctas .wb-btn--ghost {
    background:#1851E0 !important;               /* 默认蓝底 */
    color:#ffffff !important;                    /* 默认白字 */
    border:1px solid #1851E0 !important;
    box-shadow:0 6px 16px rgba(24,81,224,0.12) !important;
}
section.wb-hero .wb-hero__ctas .wb-btn--ghost:hover,
section.wb-hero .wb-hero__ctas .wb-btn--ghost:focus {
    background:#ffffff !important;               /* Hover 白底 */
    color:#000000 !important;                    /* 黑字 */
    border-color:#1851E0 !important;
    box-shadow:0 8px 22px rgba(24,81,224,0.25) !important;
    transform:translateY(-2px) scale(1.02) !important;
}
section.wb-hero .wb-hero__ctas .wb-btn--ghost:active {
    transform:scale(0.97) !important;
    box-shadow:0 4px 10px rgba(24,81,224,0.25) !important;
}

/* Hover 状态统一清除文字下划线 */
section.wb-hero .wb-hero__ctas .wb-btn:hover,
section.wb-hero .wb-hero__ctas .wb-btn:focus {
    text-decoration:none !important;
    outline:none !important;
}

/* 无动画偏好支持 */
@media (prefers-reduced-motion: reduce) {
    section.wb-hero .wb-hero__ctas .wb-btn {
        transition:none !important;
        transform:none !important;
    }
}

/* 移动端自适应按钮 */
@media (max-width:768px) {
    section.wb-hero .wb-hero__ctas {
        flex-direction:column !important;
        align-items:stretch !important;
    }
    section.wb-hero .wb-hero__ctas .wb-btn {
        width:100% !important;
        text-align:center !important;
        justify-content:center !important;
    }
}

/* ============================================================
   Meta + Image Area
   ============================================================ */
.wb-hero__meta {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    font-size:13px;
    color:#4b5a77;
    opacity:.95;
}
.wb-hero__meta .dot { opacity:.55; }

/* ===== Image Area ===== */
.wb-hero__media { position:relative; }
.wb-hero__imgwrap {
    position:relative;
    width:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 16px 40px rgba(2,6,23,.1);
}
.wb-hero__imgwrap img {
    width:100%;
    height:auto;
    object-fit:cover;
    aspect-ratio:16/10;  /* 保持轻比例 */
    display:block;
}
.wb-hero__overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(24,81,224,.35) 0%, rgba(24,81,224,.1) 38%, rgba(255,255,255,0) 78%);
    pointer-events:none;
}

/* ============================================================
   Horizontal Feature Bar (Desktop)
   ============================================================ */
.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;
}
.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 Feature 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 Adjustments
   ============================================================ */
@media (max-width:979px) {
    .wb-hero__inner {
        grid-template-columns:1fr;
        gap:36px;
    }
    .wb-hero__media { order:-2; }
    .wb-hero__featurebar { display:none; }
    .wb-hero__features--mobile { display:block; }
}

/* ============================================================
           WinsBS — Why WinsBS Is Different for Apparel Brands
           Font Awesome Enabled | Hover Blue → White Text
           Version: 2025.11
           ============================================================ */

/* ===== Section Container ===== */
.wb-diff {
    background: #ffffff;
    padding: clamp(60px, 8vw, 100px) 24px;
    border-top: 1px solid rgba(24,81,224,.08);
}
.wb-diff .container {
    max-width: 1220px;
    margin: 0 auto;
}

/* ===== Section 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 Layout ===== */
.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 Styling ===== */
.diff-card {
    position: relative;
    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;
    z-index: 0;
}
.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;
    pointer-events: none;
}
.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;
    margin: 0 0 10px;
    font-weight: 600;
}
.diff-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2235;
    margin: 0;
}

/* ===== Warehouse Links ===== */
.warehouse-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin: 0 3px 2px 0;
    background: rgba(24,81,224,0.07);
    color: #1851E0;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(24,81,224,0.12);
    box-shadow: inset 0 0 0 1px rgba(24,81,224,0.05);
    transition: all .25s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.warehouse-link i {
    font-size: 14px;
    opacity: 0.9;
    transition: transform .25s ease;
}

/* Hover 状态：蓝底 + 白字 + 图标动效 */
.warehouse-link:hover {
    background: #1851E0;
    color: #ffffff;
    border-color: #1851E0;
    box-shadow: 0 4px 10px rgba(24,81,224,0.3);
    transform: translateY(-1px) scale(1.03);
}
.warehouse-link:hover i {
    transform: rotate(-8deg) scale(1.15);
    color: #ffffff;
}
.warehouse-link:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(24,81,224,0.25);
    opacity: 0.9;
}

/* ===== Price Highlight ===== */
.price-highlight {
    color: #1851E0;
    font-weight: 700;
    font-size: 16px;
    background: rgba(24,81,224,0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ===== CTA Area ===== */
.wb-diff__cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== CTA Button (Same as Hero) ===== */
.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;
    text-decoration: none;
    border: 1px solid #1851E0;
    cursor: pointer;
    transition: all .25s ease;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 6px 16px rgba(24,81,224,0.12);
}
.wb-diff__cta .wb-btn:hover {
    background: #1851E0;
    color: #000000;
    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);
    box-shadow: 0 4px 10px rgba(24,81,224,0.25);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .diff-card,
    .warehouse-link,
    .wb-diff__cta .wb-btn {
        transition: none !important;
        transform: none !important;
    }
}

/* ===== Mobile Responsive Enhancement ===== */
@media (max-width: 768px) {
    .warehouse-link {
        display: inline-flex;
        width: auto;
        padding: 6px 12px;
    }
}

/* ============================================================
          WinsBS — Apparel Painpoints (Full Alignment Edition)
          Version 2025.11
          ============================================================ */

.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 Layout ===== */
.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 Structure ===== */
.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);
}

/* ===== Typography Alignment ===== */
.pain-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pain-body h3 {
    font-size: 18px;
    color: #0b1426;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 48px; /* 保持标题行高一致 */
    display: flex;
    align-items: flex-end;
}
.pain-body p {
    font-size: 15px;
    color: #1a2235;
    line-height: 1.7;
    flex-grow: 1;
    min-height: 120px; /* 控制正文块高度统一 */
}

/* ===== CTA Alignment ===== */
.pain-footer {
    display: flex;
    align-items: flex-end;
    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;
    font-weight: 600;
    background: #1851E0;
    color: #fff;
    border: 1px solid #1851E0;
    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 Adjustments ===== */
@media (max-width: 700px) {
    .pain-body h3 { min-height: auto; }
    .pain-body p { min-height: auto; }
    .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 Base */
.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);
}

/* Subtle category accent */
.cat-suit { background: linear-gradient(160deg,#f4f6fb 0%,#ffffff 60%); }
.cat-tee { background: linear-gradient(160deg,#f8fbff 0%,#ffffff 60%); }
.cat-lolita { background: linear-gradient(160deg,#fff7fb 0%,#ffffff 60%); }
.cat-workwear { background: linear-gradient(160deg,#f5faff 0%,#ffffff 60%); }
.cat-active { background: linear-gradient(160deg,#f3fff9 0%,#ffffff 60%); }
.cat-pod { background: linear-gradient(160deg,#fffdf5 0%,#ffffff 60%); }

.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 56px;
}
.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;
}

/* ===== 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: 240px;
}
.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;
}

/* 半透明两侧视觉 */
.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);
}

/* CTA */
.feed-cta {
    text-align: center;
    margin-top: 60px;
}
.feed-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);
}
.feed-btn:hover {
    background: #fff;
    color: #1851E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24,81,224,.25);
}

/* 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-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.open {
    border-color: rgba(24,81,224,.2);
    box-shadow: 0 8px 24px rgba(24,81,224,.08);
}

/* 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 .3s ease;
}
.faq-question::after {
    content: '+';
    font-size: 22px;
    color: #1851E0;
    transition: transform .3s ease;
}
.faq-item.open .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

/* 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;
    color: #1a2235;
    line-height: 1.7;
    margin: 0;
}
.faq-answer a {
    color: #1851E0;
    text-decoration: none;
    border-bottom: 1px solid rgba(24,81,224,.2);
}
.faq-answer a:hover {
    color: #0f40c2;
    border-bottom-color: rgba(24,81,224,.4);
}

/* 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);
}