/* ==========================================================================
   BECOME A VENDOR — landing page redesign
   Site palette: navy #1e3a5f, teal #2d7a8c, orange #ff6b35.
   Fonts: Sora (display) + Plus Jakarta Sans (body). Scoped under .bv.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

.bv {
    --bv-navy: #1e3a5f;
    --bv-navy-deep: #12293f;
    --bv-teal: #2d7a8c;
    --bv-teal-soft: #e7f1f4;
    --bv-orange: #ff6b35;
    --bv-orange-dark: #ec5828;
    --bv-bg: #f4f8fc;
    --bv-border: #e2eaf3;
    --bv-border-strong: #d3ddea;
    --bv-ink: #22303f;
    --bv-muted: #566579;
    --bv-faint: #8494a6;

    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bv-ink);
    background: #fff;
}
.bv *, .bv *::before, .bv *::after { box-sizing: border-box; }

.bv-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------------- HERO */
.bv-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 66px 20px 78px;
    background:
        radial-gradient(1100px 420px at 14% -30%, rgba(255, 107, 53, 0.30), transparent 60%),
        linear-gradient(125deg, var(--bv-navy-deep) 0%, var(--bv-navy) 46%, var(--bv-teal) 120%);
}
.bv-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.10) 0, transparent 40%),
        radial-gradient(circle at 70% 130%, rgba(255, 255, 255, 0.08) 0, transparent 44%);
    pointer-events: none;
}
.bv-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.bv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bv-teal);
}
.bv-hero .bv-eyebrow { color: #ffd9c9; margin-bottom: 14px; }

.bv-spots {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 107, 53, 0.16);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: #ffe4d8;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 20px;
}
.bv-spots i { color: var(--bv-orange); }
.bv-spots strong { color: #fff; }

.bv-hero h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}
.bv-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.55;
}

.bv-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.btn-bv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 13px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--bv-orange) 0%, var(--bv-orange-dark) 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 107, 53, 0.36);
    transition: transform 0.16s, box-shadow 0.16s, filter 0.16s;
}
.btn-bv:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255, 107, 53, 0.46); filter: brightness(1.03); color: #fff; }

.btn-bv-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    box-shadow: none;
}
.btn-bv-ghost:hover { background: rgba(255, 255, 255, 0.2); box-shadow: none; filter: none; }

.bv-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 26px;
}
.bv-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 14px;
    border-radius: 30px;
}
.bv-trust span i { color: #a9e5c9; }

/* ------------------------------------------------------------- SECTIONS */
.bv-section { padding: 66px 0; background: #fff; }
.bv-section--alt { background: var(--bv-bg); }

.bv-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.bv-head .bv-eyebrow { justify-content: center; margin-bottom: 12px; }
.bv-head h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    letter-spacing: -0.02em;
    color: var(--bv-navy);
    margin: 0 0 12px;
    line-height: 1.15;
}
.bv-head p { font-size: 1.02rem; color: var(--bv-muted); line-height: 1.6; margin: 0; }

/* ----------------------------------------------------------- AI SECTION */
.bv-ai { padding: 70px 0; background: linear-gradient(135deg, var(--bv-navy-deep) 0%, var(--bv-navy) 55%, var(--bv-teal) 130%); color: #fff; position: relative; overflow: hidden; }
.bv-ai::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 90% 10%, rgba(255, 107, 53, 0.22) 0, transparent 42%);
    pointer-events: none;
}
.bv-ai .bv-container { position: relative; z-index: 1; }
.bv-ai .bv-head h2 { color: #fff; }
.bv-ai .bv-head p { color: rgba(255, 255, 255, 0.82); }
.bv-ai .bv-eyebrow { color: #ffd9c9; }

.bv-ai-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}
.bv-ai-step {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    backdrop-filter: blur(4px);
}
.bv-ai-step-ic {
    width: 58px; height: 58px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: grid; place-items: center;
    font-size: 23px; color: #fff;
    background: linear-gradient(135deg, var(--bv-orange) 0%, var(--bv-orange-dark) 100%);
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.4);
}
.bv-ai-step h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.bv-ai-step p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); line-height: 1.5; margin: 0; }
.bv-ai-step-num {
    position: absolute; top: 14px; right: 16px;
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.bv-ai-extract {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
    max-width: 760px; margin: 0 auto;
}
.bv-ai-extract span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px 15px; border-radius: 30px;
}
.bv-ai-extract span i { color: #a9e5c9; }
.bv-ai-cta { text-align: center; margin-top: 34px; }

/* --------------------------------------------------------------- GRID CARDS */
.bv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bv-card {
    background: #fff;
    border: 1px solid var(--bv-border);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 6px 20px rgba(18, 41, 63, 0.05);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.bv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(18, 41, 63, 0.10); border-color: var(--bv-border-strong); }
.bv-card-ic {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 21px; color: #fff;
    background: linear-gradient(135deg, var(--bv-navy) 0%, var(--bv-teal) 100%);
    box-shadow: 0 8px 18px rgba(30, 58, 95, 0.22);
    margin-bottom: 16px;
}
.bv-card h3 { font-family: 'Sora', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--bv-navy); margin: 0 0 8px; }
.bv-card p { font-size: 0.92rem; color: var(--bv-muted); line-height: 1.55; margin: 0; }
.bv-card .bv-new { display: inline-block; margin-bottom: 10px; }

.bv-new {
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    color: #fff; background: linear-gradient(135deg, var(--bv-orange), var(--bv-orange-dark));
    padding: 3px 10px; border-radius: 20px;
}

/* ------------------------------------------------------- MULTILINGUAL BAND */
.bv-langs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.bv-lang {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.95rem; color: var(--bv-navy);
    background: #fff; border: 1.5px solid var(--bv-border-strong);
    padding: 9px 16px; border-radius: 12px;
}
.bv-lang b { color: var(--bv-teal); }

/* ------------------------------------------------------------- BUSINESS TYPES */
.bv-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bv-type {
    display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
    background: #fff; border: 1px solid var(--bv-border); border-radius: 16px;
    padding: 24px 16px; transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.bv-type:hover { transform: translateY(-3px); border-color: var(--bv-teal); box-shadow: 0 12px 26px rgba(18, 41, 63, 0.08); }
.bv-type i {
    width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
    font-size: 20px; color: var(--bv-teal); background: var(--bv-teal-soft);
}
.bv-type h4 { font-size: 0.95rem; font-weight: 600; color: var(--bv-navy); margin: 0; }
.bv-all-welcome { text-align: center; margin: 30px 0 0; font-size: 1.02rem; font-weight: 600; color: var(--bv-teal); }

/* ---------------------------------------------------------------- STEPS */
.bv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bv-step {
    position: relative; text-align: center;
    background: #fff; border: 1px solid var(--bv-border); border-radius: 18px; padding: 30px 22px 26px;
    box-shadow: 0 6px 20px rgba(18, 41, 63, 0.05);
}
.bv-step-num {
    width: 42px; height: 42px; margin: 0 auto 14px;
    border-radius: 12px; display: grid; place-items: center;
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff;
    background: linear-gradient(135deg, var(--bv-orange), var(--bv-orange-dark));
    box-shadow: 0 8px 18px rgba(255, 107, 53, 0.34);
}
.bv-step i { font-size: 26px; color: var(--bv-teal); margin-bottom: 10px; display: block; }
.bv-step h3 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--bv-navy); margin: 0 0 8px; }
.bv-step p { font-size: 0.92rem; color: var(--bv-muted); line-height: 1.55; margin: 0; }
.bv-step-badge { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--bv-teal); background: var(--bv-teal-soft); padding: 4px 12px; border-radius: 20px; }

/* ------------------------------------------------------------- FEATURES LIST */
.bv-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 22px; }
.bv-feature { display: flex; gap: 14px; align-items: flex-start; }
.bv-feature-ic {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    font-size: 18px; color: var(--bv-teal); background: var(--bv-teal-soft);
}
.bv-feature h4 { font-size: 1rem; font-weight: 700; color: var(--bv-navy); margin: 2px 0 5px; }
.bv-feature p { font-size: 0.88rem; color: var(--bv-muted); line-height: 1.5; margin: 0; }

/* ------------------------------------------------------------------ FAQ */
.bv-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.bv-faq-item {
    background: #fff; border: 1px solid var(--bv-border); border-radius: 14px; overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.bv-faq-item[open] { border-color: var(--bv-teal); box-shadow: 0 10px 26px rgba(18, 41, 63, 0.07); }
.bv-faq-item summary {
    list-style: none; cursor: pointer; padding: 18px 20px;
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem; font-weight: 600; color: var(--bv-navy);
}
.bv-faq-item summary::-webkit-details-marker { display: none; }
.bv-faq-q-ic { flex: 0 0 auto; color: var(--bv-teal); font-size: 16px; }
.bv-faq-item summary::after {
    content: "+"; margin-left: auto; font-size: 22px; font-weight: 400; color: var(--bv-faint);
    transition: transform 0.2s; line-height: 1;
}
.bv-faq-item[open] summary::after { transform: rotate(45deg); color: var(--bv-teal); }
.bv-faq-item p { margin: 0; padding: 0 20px 20px 46px; color: var(--bv-muted); font-size: 0.94rem; line-height: 1.6; }

/* ------------------------------------------------------------- FINAL CTA */
.bv-final {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    padding: 70px 24px;
    background:
        radial-gradient(800px 300px at 50% -30%, rgba(255, 107, 53, 0.28), transparent 60%),
        linear-gradient(125deg, var(--bv-navy-deep) 0%, var(--bv-navy) 55%, var(--bv-teal) 130%);
}
.bv-final h2 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.02em; margin: 0 0 24px; position: relative; z-index: 1; }
.bv-final .btn-bv { position: relative; z-index: 1; padding: 17px 40px; font-size: 1.08rem; }
.bv-final-benefits { position: relative; z-index: 1; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; }
.bv-final-benefits span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }
.bv-final-benefits span i { color: #a9e5c9; }
.bv-signin { position: relative; z-index: 1; margin: 22px 0 0; color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.bv-signin a { color: #ffd9c9; font-weight: 600; text-decoration: none; }
.bv-signin a:hover { text-decoration: underline; }

/* ------------------------------------------------------------- RESPONSIVE */
@media (max-width: 960px) {
    .bv-grid, .bv-features { grid-template-columns: repeat(2, 1fr); }
    .bv-ai-flow, .bv-steps { grid-template-columns: 1fr; }
    .bv-types { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
    .bv-section, .bv-ai, .bv-final { padding: 48px 0; }
    .bv-grid, .bv-features, .bv-types { grid-template-columns: 1fr 1fr; }
    .bv-hero { padding: 52px 18px 60px; }
    .bv-cta { flex-direction: column; }
    .bv-cta .btn-bv { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
    .bv-grid, .bv-features, .bv-types { grid-template-columns: 1fr; }
}
