/* ═══ Brand Landing Page ═══════════════════════════════════ */

/* Hero */
.bl-hero {
    background: linear-gradient(135deg, #1E2D6B 0%, #2D3A8C 55%, #3D4FC8 100%);
    border-radius: 1.25rem;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 1rem;
}

.bl-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,.22) 0%, transparent 70%);
    pointer-events: none;
}

.bl-hero::after {
    content: '';
    position: absolute;
    left: 20%;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
    pointer-events: none;
}

.bl-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.bl-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .22rem .8rem;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 800;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    margin-bottom: .85rem;
    letter-spacing: .2px;
}

.bl-hero h1 {
    font-weight: 900;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    color: #fff;
    margin-bottom: .75rem;
    letter-spacing: -.5px;
    line-height: 1.2;
}

.bl-hero p {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    margin-bottom: 1.6rem;
    line-height: 1.7;
}

.bl-hero-btns { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }

.btn-bl-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: .6rem;
    padding: .58rem 1.4rem;
    font-size: .88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    transition: all .16s;
    box-shadow: 0 3px 12px rgba(249,115,22,.35);
}
.btn-bl-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

.btn-bl-outline {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: .6rem;
    padding: .58rem 1.4rem;
    font-size: .88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    transition: all .16s;
}
.btn-bl-outline:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Stats bar */
.bl-stats {
    background: var(--primary-50);
    border-radius: .9rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.bl-stat-num { font-size: 1.6rem; font-weight: 900; color: #1E2D6B; line-height: 1; }
.bl-stat-lbl { font-size: .78rem; color: var(--text-muted); font-weight: 600; margin-top: .2rem; }

/* Benefits */
.bl-section-kicker {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #1E2D6B;
    display: block;
    margin-bottom: .4rem;
}
.bl-section-title { font-weight: 900; font-size: clamp(1.15rem, 2.5vw, 1.6rem); color: #111827; margin-bottom: .5rem; }
.bl-section-sub { color: var(--text-muted); font-size: .88rem; margin-bottom: 2rem; }
.bl-gradient { background: linear-gradient(90deg, #1E2D6B, #F97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.bl-benefit-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.35rem 1.3rem;
    transition: transform .16s, box-shadow .16s, border-color .16s;
    height: 100%;
}
.bl-benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: #BFDBFE; }
.bl-benefit-icon {
    width: 42px; height: 42px; border-radius: .75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; margin-bottom: .9rem;
}
.bl-benefit-card h3 { font-weight: 800; font-size: .92rem; margin-bottom: .4rem; color: #111827; }
.bl-benefit-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Process */
.bl-process-section {
    background: linear-gradient(135deg, #F0F4FF 0%, #FFF7ED 100%);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}
.bl-step-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin: 0 auto .9rem;
}
.bl-step-badge {
    position: absolute; top: -6px; right: -6px;
    width: 22px; height: 22px; border-radius: 50%;
    background: #1E2D6B; color: #fff;
    font-size: .65rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
.bl-step-wrap { position: relative; width: fit-content; margin: 0 auto; }
.bl-step-title { font-weight: 800; font-size: .9rem; color: #111827; margin-bottom: .4rem; }
.bl-step-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* CTA Banner */
.bl-cta {
    background: linear-gradient(135deg, #1E2D6B 0%, #3D4FC8 100%);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2rem;
}
.bl-cta h2 { color: #fff; font-weight: 900; font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .6rem; }
.bl-cta p { color: rgba(255,255,255,.72); font-size: .88rem; margin-bottom: 1.4rem; }

@media (max-width: 768px) {
    .bl-hero { padding: 2rem 1.2rem; }
    .bl-stats { padding: 1rem; }
    .bl-process-section { padding: 1.8rem 1.2rem; }
    .bl-cta { padding: 1.8rem 1.2rem; }
}
