/* ═══════════════════════════════════════════
    DESIGN TOKENS
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --max-w:         1200px;
    --gutter:        clamp(20px, 5vw, 60px);

    --accent:        #6846c6;
    --accent-dark:   #4f34a3;
    --accent-light:  #ede8fb;
    --blue:          #2563eb;
    --ink:           #0e0e12;
    --ink-2:         #2c2c38;
    --ink-3:         #555564;
    --surface:       #f5f5f8;
    --surface-2:     #ededf3;
    --white:         #ffffff;
    --border:        rgba(0,0,0,.08);
    --success:       #059669;
    --success-light: #d1fae5;
    --error:         #dc2626;
    --error-light:   #fee2e2;

    --font-sans:  'inter', sans-serif;
    --font-serif: 'inter', sans-serif;
    --ease:       cubic-bezier(.22,1,.36,1);
}

/* ═══════════════════════════════════════════
    SHARED UTILITIES
═══════════════════════════════════════════ */
.bd-container {
    max-width: var(--max-w);
    margin: 0 auto;
}
.bd-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.bd-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    line-height: 1.15;
    margin: 0;
}

/* scroll reveal */
.bd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.bd-reveal.visible { opacity: 1; transform: none; }
.bd-reveal[data-delay="1"] { transition-delay: .1s; }
.bd-reveal[data-delay="2"] { transition-delay: .2s; }
.bd-reveal[data-delay="3"] { transition-delay: .3s; }
.bd-reveal[data-delay="4"] { transition-delay: .4s; }


/* ═══════════════════════════════════════════
    SECTION 1 — CONTACT INTRO STRIP
═══════════════════════════════════════════ */
.bc-intro {
    padding: 100px var(--gutter) 0;
    position: relative;
    overflow: hidden;
}
.bc-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 55% 80% at 100% 20%, rgba(104,70,198,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at -5% 80%,  rgba(37,99,235,.04)  0%, transparent 65%);
    pointer-events: none;
}
.bc-intro-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}
.bc-intro-eyebrow { margin-bottom: 20px; }
.bc-intro-title   { margin-bottom: 24px; }
.bc-intro-lead {
    font-size: 1.0625rem;
    color: var(--ink-3);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 40px;
}

/* quick-contact pill row */
.bc-quick-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bc-quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-size: .875rem;
    font-weight: 500;
    color: var(--ink-2);
    transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.bc-quick-pill:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}
.bc-quick-pill .material-icons-round {
    font-size: 17px;
    color: var(--accent);
}

/* intro illustration card */
.bc-intro-visual {
    position: relative;
}
.bc-intro-card {
    background: var(--ink);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.bc-intro-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 70% 80% at 110% -10%, rgba(104,70,198,.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at -20% 110%, rgba(37,99,235,.35) 0%, transparent 55%);
    pointer-events: none;
}
.bc-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
}
.bc-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}
.bc-card-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.bc-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bc-card-icon .material-icons-round {
    font-size: 18px;
    color: rgba(255,255,255,.85);
}
.bc-card-item-text strong {
    display: block;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.bc-card-item-text span {
    color: rgba(255,255,255,.5);
    font-size: .82rem;
}
.bc-card-divider {
    height: 1px;
    background: rgba(255,255,255,.07);
    margin: 8px 0;
    position: relative;
    z-index: 1;
}
.bc-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 8px 14px;
    background: rgba(104,70,198,.25);
    border: 1px solid rgba(104,70,198,.4);
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: #c4b5fd;
    position: relative;
    z-index: 1;
}
.bc-card-badge .material-icons-round { font-size: 15px; }


/* ═══════════════════════════════════════════
    SECTION 2 — MAIN CONTACT FORM + SIDEBAR
═══════════════════════════════════════════ */
.bc-main {
    padding: 80px var(--gutter) 100px;
}
.bc-main-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

/* ── Form ── */
.bc-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 44px;
}
.bc-form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.bc-form-sub {
    font-size: .95rem;
    color: var(--ink-3);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* field rows */
.bc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.bc-field { margin-bottom: 20px; }
.bc-field:last-of-type { margin-bottom: 0; }

.bc-field label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 8px;
    letter-spacing: .01em;
}
.bc-field label .bc-req {
    color: var(--accent);
    margin-left: 2px;
}

.bc-input,
.bc-select,
.bc-textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--ink);
    background: var(--surface);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 13px 16px;
    outline: none;
    transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
.bc-input::placeholder,
.bc-textarea::placeholder { color: #aaa; }

.bc-input:hover,
.bc-select:hover,
.bc-textarea:hover {
    background: var(--surface-2);
}
.bc-input:focus,
.bc-select:focus,
.bc-textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(104,70,198,.1);
}
.bc-input.bc-error,
.bc-select.bc-error,
.bc-textarea.bc-error {
    border-color: var(--error);
    background: var(--error-light);
}
.bc-field-error {
    display: none;
    font-size: .8rem;
    color: var(--error);
    margin-top: 6px;
    font-weight: 500;
}
.bc-field-error.visible { display: block; }

/* select wrapper */
.bc-select-wrap {
    position: relative;
}
.bc-select-wrap::after {
    content: 'expand_more';
    font-family: 'Material Icons Round';
    font-size: 20px;
    color: var(--ink-3);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.bc-select { padding-right: 40px; cursor: pointer; }

.bc-textarea { resize: vertical; min-height: 140px; line-height: 1.7; }

/* checkboxes */
.bc-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.bc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: .9rem;
    color: var(--ink-2);
    user-select: none;
}
.bc-checkbox-label input[type="checkbox"] { display: none; }
.bc-checkbox-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(0,0,0,.2);
    background: var(--surface);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}
.bc-checkbox-box .material-icons-round {
    font-size: 13px;
    color: #fff;
    opacity: 0;
    transition: opacity .15s;
}
.bc-checkbox-label input[type="checkbox"]:checked + .bc-checkbox-box {
    background: var(--accent);
    border-color: var(--accent);
}
.bc-checkbox-label input[type="checkbox"]:checked + .bc-checkbox-box .material-icons-round {
    opacity: 1;
}

/* submit */
.bc-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.bc-privacy-note {
    font-size: .8rem;
    color: var(--ink-3);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.bc-privacy-note .material-icons-round { font-size: 15px; color: var(--accent); margin-top: 1px; flex-shrink: 0; }
.bc-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.bc-btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(104,70,198,.3);
}
.bc-btn-submit:active { transform: scale(.98); }
.bc-btn-submit .material-icons-round { font-size: 18px; }
.bc-btn-submit.loading { opacity: .75; pointer-events: none; }

/* success message */
.bc-success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    gap: 16px;
}
.bc-success-msg.visible { display: flex; }
.bc-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--success-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bc-success-icon .material-icons-round { font-size: 32px; color: var(--success); }
.bc-success-msg h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink);
}
.bc-success-msg p {
    color: var(--ink-3);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 340px;
}
.bc-success-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-sans);
}

/* ── Sidebar ── */
.bc-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* contact info card */
.bc-info-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 28px;
}
.bc-info-card-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 20px;
}
.bc-contact-entries {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bc-contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.bc-entry-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bc-entry-icon .material-icons-round { font-size: 18px; color: var(--accent); }
.bc-entry-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 3px;
}
.bc-entry-val {
    font-size: .9rem;
    color: var(--ink-2);
    font-weight: 500;
}
.bc-entry-val a {
    color: var(--ink-2);
    transition: color .2s;
}
.bc-entry-val a:hover { color: var(--accent); }

/* response time card */
.bc-response-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.bc-response-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 70% at 110% -10%, rgba(255,255,255,.12) 0%, transparent 55%);
    pointer-events: none;
}
.bc-response-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 16px;
    position: relative;
}
.bc-response-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.bc-response-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.bc-response-item-name {
    font-size: .875rem;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 8px;
}
.bc-response-item-name .material-icons-round { font-size: 15px; }
.bc-response-badge {
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.15);
    color: #fff;
    white-space: nowrap;
}
.bc-response-badge.fast { background: rgba(16,185,129,.25); color: #6ee7b7; }
.bc-response-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 4px 0;
    position: relative;
}

/* social card */
.bc-social-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 24px 28px;
}
.bc-social-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 16px;
}
.bc-social-row {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}
.bc-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.bc-social-btn .material-icons-round { font-size: 16px; }
.bc-social-btn:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}


/* ═══════════════════════════════════════════
    SECTION 3 — OFFICE LOCATIONS
═══════════════════════════════════════════ */
.bc-locations {
    padding: 0 var(--gutter) 100px;
}
.bc-locations-header {
    margin-bottom: 40px;
}
.bc-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bc-location-card {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bc-location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.bc-location-map {
    height: 160px;
    position: relative;
    background: var(--surface);
    overflow: hidden;
}
/* SVG map illustration */
.bc-location-map svg {
    width: 100%;
    height: 100%;
}
.bc-location-body {
    padding: 24px;
}
.bc-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bc-location-tag .material-icons-round { font-size: 13px; }
.bc-location-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.bc-location-address {
    font-size: .875rem;
    color: var(--ink-3);
    line-height: 1.7;
    margin-bottom: 16px;
}
.bc-location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap .2s var(--ease);
}
.bc-location-link:hover { gap: 10px; }
.bc-location-link .material-icons-round { font-size: 16px; }


/* ═══════════════════════════════════════════
    SECTION 4 — FAQ STRIP
═══════════════════════════════════════════ */
.bc-faq {
    padding: 100px var(--gutter);
    background: #f8f9fb;
}
.bc-faq-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}
.bc-faq-sticky {
    position: sticky;
    top: 100px;
}
.bc-faq-desc {
    font-size: .9375rem;
    color: var(--ink-3);
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 28px;
}
.bc-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap .2s var(--ease);
}
.bc-faq-cta:hover { gap: 14px; }
.bc-faq-cta .material-icons-round { font-size: 18px; }

.bc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
}
.bc-faq-item {
    border-bottom: 1px solid var(--border);
}
.bc-faq-item:last-child { border-bottom: none; }

.bc-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: var(--font-sans);
    font-size: .975rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s;
}
.bc-faq-q:hover { background: var(--surface); }
.bc-faq-q .material-icons-round {
    font-size: 20px;
    color: var(--ink-3);
    flex-shrink: 0;
    transition: transform .3s var(--ease), color .2s;
}
.bc-faq-item.open .bc-faq-q .material-icons-round {
    transform: rotate(180deg);
    color: var(--accent);
}
.bc-faq-item.open .bc-faq-q { color: var(--accent); }

.bc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .3s var(--ease);
}
.bc-faq-item.open .bc-faq-a { max-height: 400px; }
.bc-faq-a-inner {
    padding: 0 28px 24px;
    font-size: .9rem;
    color: var(--ink-3);
    line-height: 1.8;
}


/* ═══════════════════════════════════════════
    SECTION 5 — BOTTOM CTA STRIP
═══════════════════════════════════════════ */
.bc-bottom-cta {
    padding: 0 var(--gutter) 100px;
    background: #fff;
}
.bc-bottom-cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    background: var(--ink);
    border-radius: 24px;
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.bc-bottom-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 55% 90% at 100% 50%, rgba(104,70,198,.4) 0%, transparent 60%),
    radial-gradient(ellipse 35% 60% at 0%   50%, rgba(37,99,235,.2)  0%, transparent 60%);
    pointer-events: none;
}
.bc-cta-text { position: relative; }
.bc-cta-tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
}
.bc-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.bc-cta-sub {
    font-size: .95rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    max-width: 460px;
}
.bc-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}
.bc-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: var(--white);
    color: var(--ink);
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    white-space: nowrap;
}
.bc-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.bc-cta-btn-primary .material-icons-round { font-size: 17px; }
.bc-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 15px 24px;
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.85);
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    transition: background .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
}
.bc-cta-btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
}


/* ═══════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bc-intro-inner        { grid-template-columns: 1fr; gap: 48px; }
    .bc-intro-visual       { display: none; }
    .bc-main-grid          { grid-template-columns: 1fr; }
    .bc-sidebar            { position: static; }
    .bc-faq-inner          { grid-template-columns: 1fr; gap: 40px; }
    .bc-faq-sticky         { position: static; }
    .bc-locations-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bc-intro              { padding: 72px var(--gutter) 0; }
    .bc-field-row          { grid-template-columns: 1fr; }
    .bc-form-wrap          { padding: 32px 24px; }
    .bc-submit-row         { flex-direction: column; align-items: stretch; }
    .bc-btn-submit         { justify-content: center; }
    .bc-locations-grid     { grid-template-columns: 1fr; }
    .bc-bottom-cta-inner   { flex-direction: column; align-items: flex-start; padding: 48px 32px; gap: 32px; }
    .bc-cta-actions        { flex-direction: column; width: 100%; }
    .bc-cta-btn-primary,
    .bc-cta-btn-ghost      { justify-content: center; width: 100%; }
    .bc-quick-row          { gap: 8px; }
}

@media (max-width: 480px) {
    .bc-intro-card         { display: none; }
    .bc-social-row         { flex-wrap: wrap; }
}
