/* ═══════════════════════════════════════════════════════
   BBF Connect Landing Page – Vanilla CSS
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.bbf-connect-wrap {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    background-color: #fff7fb;
    line-height: 1.5;
    width: 100%;
}

.bbf-connect-wrap * {
    box-sizing: border-box;
}

/* ── Layout ─────────────────────────────────────────── */
.bbf-cx-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bbf-cx-section {
    padding: 3.5rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────── */
.bbf-cx-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #fce7f3;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.bbf-cx-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.bbf-cx-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bbf-cx-logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: #ec4899;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 1px 4px rgba(236,72,153,0.3);
}

.bbf-cx-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bbf-cx-logo-sub {
    font-size: 0.75rem;
    color: #94a3b8;
}

.bbf-cx-nav {
    display: none;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

@media (min-width: 1024px) {
    .bbf-cx-nav { display: flex; }
}

.bbf-cx-nav a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.bbf-cx-nav a:hover { color: #db2777; }

.bbf-cx-btn-chat {
    background: #ec4899;
    color: white;
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(236,72,153,0.3);
}

.bbf-cx-btn-chat:hover { transform: translateY(-2px); }

/* ── Hero ────────────────────────────────────────────── */
.bbf-cx-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff0f8 0%, #fff7fb 50%, #fffef5 100%);
}

.bbf-cx-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(244,114,182,0.18) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(251,191,36,0.12) 0%, transparent 30%);
    pointer-events: none;
}

.bbf-cx-hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .bbf-cx-hero-inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.bbf-cx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #fce7f3;
    color: #be185d;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bbf-cx-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
    .bbf-cx-hero-title { font-size: 3.5rem; }
}

.bbf-cx-hero-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 2rem;
}

.bbf-cx-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ── Card Panel (hero right) ─────────────────────────── */
.bbf-cx-hero-panel {
    background: white;
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(236,72,153,0.1);
    border: 1px solid #fce7f3;
}

.bbf-cx-eco-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bbf-cx-eco-mini-card {
    background: #fff7fb;
    border: 1px solid #fce7f3;
    border-radius: 1.25rem;
    padding: 0.875rem 0.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bbf-cx-eco-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236,72,153,0.1);
}

.bbf-cx-eco-mini-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.375rem;
}

.bbf-cx-eco-mini-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
}

.bbf-cx-hero-promo {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    border-radius: 1.5rem;
    padding: 1.5rem;
    color: white;
}

.bbf-cx-hero-promo-label {
    font-size: 0.8125rem;
    font-weight: 600;
    opacity: 0.9;
}

.bbf-cx-hero-promo-title {
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.bbf-cx-hero-promo-desc {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* ── Quick need bar ─────────────────────────────────── */
.bbf-cx-quickneed {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #fce7f3;
}

.bbf-cx-section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ec4899;
}

.bbf-cx-section-title {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 0;
}

.bbf-cx-section-desc {
    color: #475569;
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.7;
}

.bbf-cx-need-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.bbf-cx-need-pill {
    border: 1.5px solid #fce7f3;
    background: #fff0f7;
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #be185d;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.bbf-cx-need-pill:hover,
.bbf-cx-need-pill.active {
    background: #ec4899;
    color: white;
    border-color: #ec4899;
    transform: translateY(-1px);
}

/* ── Ecosystems Grid ─────────────────────────────────── */
.bbf-cx-eco-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .bbf-cx-eco-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
    .bbf-cx-eco-grid { grid-template-columns: repeat(4, 1fr); }
}

.bbf-cx-eco-card {
    background: white;
    border-radius: 1.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #fce7f3;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.bbf-cx-eco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(236,72,153,0.12);
}

.bbf-cx-eco-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #fff0f7;
    border: 1px solid #fce7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bbf-cx-eco-card-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.5rem;
}

.bbf-cx-eco-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.75rem;
}

.bbf-cx-eco-card-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
    flex: 1;
    min-height: 5rem;
    margin: 0 0 1.25rem;
}

.bbf-cx-eco-card-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 1rem;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}

.bbf-cx-eco-card:hover .bbf-cx-eco-card-btn {
    background: #ec4899;
}

/* ── Why Connect ─────────────────────────────────────── */
.bbf-cx-why-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .bbf-cx-why-grid { grid-template-columns: repeat(2, 1fr); }
}

.bbf-cx-why-card {
    background: white;
    border-radius: 1.75rem;
    padding: 1.5rem;
    border: 1px solid #fce7f3;
}

.bbf-cx-why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.bbf-cx-why-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

/* ── Suggest ─────────────────────────────────────────── */
.bbf-cx-suggest-wrap {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #fce7f3;
}

.bbf-cx-suggest-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .bbf-cx-suggest-grid { grid-template-columns: 1fr 1fr; }
}

.bbf-cx-suggest-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
}

.bbf-cx-age-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bbf-cx-age-pill {
    border: 1.5px solid #fce7f3;
    background: #fff0f7;
    border-radius: 9999px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #be185d;
    cursor: pointer;
    transition: background 0.2s;
}

.bbf-cx-age-pill:hover, .bbf-cx-age-pill.active {
    background: #ec4899;
    color: white;
    border-color: #ec4899;
}

.bbf-cx-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .bbf-cx-skills-grid { grid-template-columns: repeat(3, 1fr); }
}

.bbf-cx-skill-tag {
    background: #fff7fb;
    border: 1px solid #fce7f3;
    border-radius: 1rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.bbf-cx-skill-tag:hover, .bbf-cx-skill-tag.active {
    background: #fce7f3;
    transform: scale(1.02);
}

/* ── Stories ─────────────────────────────────────────── */
.bbf-cx-stories-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (min-width: 1024px) {
    .bbf-cx-stories-grid { grid-template-columns: repeat(3, 1fr); }
}

.bbf-cx-story-card {
    background: white;
    border-radius: 1.75rem;
    padding: 1.5rem;
    border: 1px solid #fce7f3;
}

.bbf-cx-story-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bbf-cx-story-avatar {
    width: 3rem;
    height: 3rem;
    background: #fce7f3;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #db2777;
    flex-shrink: 0;
}

.bbf-cx-story-name { font-weight: 600; font-size: 0.9375rem; }
.bbf-cx-story-sub  { font-size: 0.8125rem; color: #94a3b8; }

.bbf-cx-story-quote {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #334155;
    font-style: italic;
}

/* ── Skills 6 ────────────────────────────────────────── */
.bbf-cx-6skills {
    background: linear-gradient(135deg, #fff0f7, #fffbef);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #fce7f3;
}

.bbf-cx-6skills-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .bbf-cx-6skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .bbf-cx-6skills-grid { grid-template-columns: repeat(3, 1fr); }
}

.bbf-cx-skill-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 700;
    border: 1px solid #fce7f3;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Contact ─────────────────────────────────────────── */
.bbf-cx-contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .bbf-cx-contact-grid { grid-template-columns: 1fr 1fr; }
}

.bbf-cx-contact-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #fce7f3;
}

.bbf-cx-contact-info p { margin: 0.625rem 0; font-size: 0.9rem; line-height: 1.6; color: #334155; }
.bbf-cx-contact-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.bbf-cx-form { display: grid; gap: 0.875rem; margin-top: 1.5rem; }

.bbf-cx-form input,
.bbf-cx-form textarea {
    width: 100%;
    border: 1.5px solid #fce7f3;
    border-radius: 1rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.bbf-cx-form input:focus,
.bbf-cx-form textarea:focus {
    border-color: #ec4899;
}

.bbf-cx-form textarea { min-height: 120px; }

/* Feedback */
.bbf-cx-form-feedback {
    display: none;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.bbf-cx-form-feedback.success {
    background: rgba(34,197,94,0.12);
    color: #15803d;
    border: 1px solid rgba(34,197,94,0.3);
}

.bbf-cx-form-feedback.error {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border: 1px solid rgba(239,68,68,0.25);
}

/* ── CTA Banner ─────────────────────────────────────── */
.bbf-cx-cta {
    background: #0f172a;
    border-radius: 2.25rem;
    padding: 3.5rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.bbf-cx-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
    .bbf-cx-cta h2 { font-size: 2.75rem; }
}

.bbf-cx-cta p {
    font-size: 1.0625rem;
    line-height: 1.75;
    opacity: 0.8;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.bbf-cx-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ── Button styles ───────────────────────────────────── */
.bbf-cx-btn-primary {
    background: #ec4899;
    color: white;
    border: none;
    border-radius: 1rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(236,72,153,0.35);
}

.bbf-cx-btn-primary:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 20px rgba(236,72,153,0.4);
}

.bbf-cx-btn-outline-pink {
    background: white;
    color: #db2777;
    border: 1.5px solid #fce7f3;
    border-radius: 1rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.bbf-cx-btn-outline-pink:hover {
    border-color: #ec4899;
    color: #db2777;
}

.bbf-cx-btn-outline-white {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 1rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.bbf-cx-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.bbf-cx-btn-dark {
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.bbf-cx-btn-dark:hover { background: #1e293b; }

/* ── Utility ─────────────────────────────────────────── */
.text-center { text-align: center; }
