/* ==========================================================================
   Become a Customer — light-tinted section with a white CTA card.
   ========================================================================== */

.section.becomeacustomer {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--color-brand-primary-25);
}

.bac-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px;
    background: var(--color-background);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ---- Left: text + button ----------------------------------------------- */
.bac-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 auto;
    max-width: 640px;
}
.bac-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bac-heading {
    margin: 0;
    color: var(--color-foreground);
}
.bac-subcopy {
    color: var(--color-foreground);
}
.bac-subcopy p { margin: 0; }
.bac-subcopy a { color: var(--color-navy); text-decoration: underline; }
.bac-subcopy a:hover { text-decoration: none; }

/* Layout only — colours/padding/hover come from the global .btn .btn-primary */
.bac-btn { align-self: flex-start; }

/* ---- Right: image ------------------------------------------------------- */
.bac-image {
    flex-shrink: 0;
    width: 44%;
    max-width: 540px;
}
.bac-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .bac-card { flex-direction: column; align-items: stretch; gap: 24px; }
    .bac-content { max-width: none; }
    .bac-image { width: 100%; max-width: none; }
}
