/* ═══════════════════════════════════════════════════════════════════
 * BBF CARE LANDING – FULL CSS
 * Pixel-perfect conversion từ React/Tailwind demo.
 *
 * Tailwind breakpoints:
 *   sm  = 640px
 *   md  = 768px
 *   lg  = 1024px
 *   xl  = 1280px
 *
 * Color tokens (stone / rose / amber / pink):
 *   stone-600 #57534e   stone-700 #44403c   stone-800 #292524   stone-900 #1c1917
 *   rose-50 #fff1f2   rose-100 #ffe4e6   rose-300 #fda4af
 *   rose-500 #f43f5e  rose-600 #e11d48   rose-700 #be123c
 *   amber-50 #fffbeb  amber-100 #fef3c7  amber-200 #fde68a
 *   amber-300 #fcd34d amber-400 #fbbf24
 *   pink-200 #fbcfe8  pink-400 #f472b6
 * ═══════════════════════════════════════════════════════════════════ */

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

/* ──────────────────────────────────────────────────────────────────
   RESET / WRAPPER
   ────────────────────────────────────────────────────────────────── */
.bbf-care-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #292524;
    /* text-stone-800 */
    line-height: 1.5;
    min-height: 100vh;
    background: linear-gradient(180deg, #fff1f2 0%, #fffbeb 50%, #ffffff 100%);
    /* from-rose-50 via-amber-50 to-white */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.bbf-care-wrapper *,
.bbf-care-wrapper *::before,
.bbf-care-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.bbf-care-wrapper h1,
.bbf-care-wrapper h2,
.bbf-care-wrapper h3,
.bbf-care-wrapper h4 {
    line-height: 1.2;
}

.bbf-care-wrapper p {
    margin: 0;
}

.bbf-care-wrapper a {
    text-decoration: none;
    color: black;
}

.bbf-care-wrapper button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.bbf-care-wrapper ul,
.bbf-care-wrapper ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bbf-care-wrapper img {
    max-width: 100%;
}

.bbf-care-container {
    max-width: 1280px;
    /* max-w-7xl */
    margin: 0 auto;
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 1: HERO
   React: px-5 py-20 md:px-10 lg:px-20, relative overflow-hidden
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    /* py-20=80  px-5=20 */
}

@media (min-width:768px) {
    .bbf-care-hero {
        padding: 80px 40px;
    }
}

/* md:px-10 */
@media (min-width:1024px) {
    .bbf-care-hero {
        padding: 80px 80px;
    }
}

/* lg:px-20 */

/* Blobs */
.bbf-care-blob {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
}

.bbf-care-blob-1 {
    width: 288px;
    height: 288px;
    /* h-72 w-72 */
    background: rgba(251, 207, 232, 0.4);
    /* bg-pink-200/40 */
    filter: blur(64px);
    /* blur-3xl */
    top: -96px;
    right: -96px;
    /* -top-24 -right-24 */
}

.bbf-care-blob-2 {
    width: 256px;
    height: 256px;
    /* h-64 w-64 */
    background: rgba(253, 230, 138, 0.5);
    /* bg-amber-200/50 */
    filter: blur(64px);
    top: 160px;
    left: -80px;
    /* top-40 -left-20 */
}

/* Hero grid */
.bbf-care-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    /* gap-12 */
    align-items: center;
}

@media (min-width:1024px) {

    /* lg:grid-cols-2 */
    .bbf-care-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero badge */
.bbf-care-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* gap-2 */
    padding: 8px 16px;
    /* px-4 py-2 */
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    /* bg-white/80 */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* shadow-sm */
    font-size: 14px;
    /* text-sm */
    font-weight: 500;
    /* font-medium */
    color: #be123c;
    /* text-rose-700 */
    margin-bottom: 20px;
    /* mb-5 */
}

.bbf-care-hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Hero title */
.bbf-care-hero-title {
    font-size: 36px;
    /* text-4xl */
    font-weight: 800;
    /* font-extrabold */
    letter-spacing: -0.025em;
    /* tracking-tight */
    color: #1c1917;
    /* text-stone-900 */
    line-height: 1.1;
}

.bbf-care-hero-title em {
    display: block;
    font-style: normal;
    color: #f43f5e;
    /* text-rose-500 */
}

@media (min-width:768px) {
    .bbf-care-hero-title {
        font-size: 60px;
    }
}

/* md:text-6xl */

/* Hero desc */
.bbf-care-hero-desc {
    margin-top: 24px;
    /* mt-6 */
    max-width: 672px;
    /* max-w-2xl */
    font-size: 18px;
    /* text-lg */
    line-height: 32px;
    /* leading-8 */
    color: #57534e;
    /* text-stone-600 */
}

/* Hero CTA */
.bbf-care-hero-cta {
    margin-top: 32px;
    /* mt-8 */
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* gap-3 */
}

@media (min-width:640px) {
    .bbf-care-hero-cta {
        flex-direction: row;
    }
}

.bbf-care-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 24px;
    /* px-6 py-6 */
    border-radius: 16px;
    /* rounded-2xl */
    background: #f43f5e;
    color: #fff;
    font-size: 16px;
    /* text-base */
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-lg */
    transition: opacity 0.2s, transform 0.15s;
}

.bbf-care-btn-primary:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-1px);
}

.bbf-care-btn-primary svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.bbf-care-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px;
    border-radius: 16px;
    border: 1px solid #e7e5e4;
    background: rgba(255, 255, 255, 0.7);
    /* bg-white/70 */
    color: #292524;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
}

.bbf-care-btn-secondary:hover {
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ── Hero Card (right side) ─────────────────────────────────────── */
.bbf-care-hero-card {
    border-radius: 32px;
    /* rounded-[2rem] */
    border: 1px solid rgba(255, 255, 255, 0.7);
    /* border-white/70 */
    background: rgba(255, 255, 255, 0.85);
    /* bg-white/85 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    backdrop-filter: blur(12px);
    padding: 24px;
    /* p-6 */
}

@media (min-width:768px) {
    .bbf-care-hero-card {
        padding: 32px;
    }
}

/* md:p-8 */

.bbf-care-hero-card-inner {
    border-radius: 24px;
    /* rounded-[1.5rem] */
    background: linear-gradient(to bottom right, #ffe4e6, #fef3c7);
    /* from-rose-100 to-amber-100 */
    padding: 24px;
    /* p-6 */
}

.bbf-care-hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    /* gap-4 */
    margin-bottom: 20px;
    /* mb-5 */
}

.bbf-care-hero-card-label {
    font-size: 14px;
    font-weight: 600;
    color: #e11d48;
}

/* text-sm font-semibold text-rose-600 */
.bbf-care-hero-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1c1917;
}

/* text-2xl font-bold */
.bbf-care-hero-card-icon {
    font-size: 40px;
    flex-shrink: 0;
}

/* h-10 w-10 */

/* Checklist */
.bbf-care-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* space-y-3 */
.bbf-care-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* gap-3 */
    padding: 16px;
    /* p-4 */
    border-radius: 16px;
    /* rounded-2xl */
    background: rgba(255, 255, 255, 0.8);
    /* bg-white/80 */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bbf-care-checklist-num {
    width: 32px;
    height: 32px;
    /* h-8 w-8 */
    border-radius: 9999px;
    background: #f43f5e;
    /* bg-rose-500 */
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bbf-care-checklist-text {
    font-weight: 500;
    color: #44403c;
    font-size: 15px;
}

/* font-medium text-stone-700 */


/* ══════════════════════════════════════════════════════════════════
   SECTION 2: NEEDS (5 cards)
   React: px-5 py-12 md:px-10 lg:px-20
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-section {
    padding: 48px 20px;
}

/* py-12 px-5 */
@media (min-width:768px) {
    .bbf-care-section {
        padding: 48px 40px;
    }
}

@media (min-width:1024px) {
    .bbf-care-section {
        padding: 48px 80px;
    }
}

.bbf-care-section--py16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

/* py-16 */
@media (min-width:768px) {
    .bbf-care-section--py16 {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width:1024px) {
    .bbf-care-section--py16 {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Section header centered */
.bbf-care-section-header {
    text-align: center;
    margin-bottom: 40px;
    /* mb-10 */
}

.bbf-care-section-label {
    font-size: 15px;
    font-weight: 600;
    color: #f43f5e;
    /* font-semibold text-rose-500 */
}

.bbf-care-section-title {
    margin-top: 8px;
    /* mt-2 */
    font-size: 30px;
    /* text-3xl */
    font-weight: 700;
    color: #1c1917;
}

@media (min-width:768px) {
    .bbf-care-section-title {
        font-size: 48px;
    }
}

/* md:text-5xl */

/* Needs grid */
.bbf-care-needs-grid {
    display: grid;
    gap: 20px;
    /* gap-5 */
    grid-template-columns: 1fr;
}

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

@media (min-width:1280px) {
    .bbf-care-needs-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Need card = Tailwind Card */
.bbf-care-need-card {
    height: 100%;
    /* h-full */
    border-radius: 24px;
    /* rounded-3xl */
    border: 1px solid #ffe4e6;
    /* border-rose-100 */
    background: rgba(255, 255, 255, 0.9);
    /* bg-white/90 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    /* shadow-lg */
    padding: 24px;
    /* p-6 */
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bbf-care-need-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.bbf-care-need-card--highlight {
    box-shadow: 0 0 0 2px #fda4af, 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ring-2 ring-rose-300 */

.bbf-care-need-badge {
    margin-bottom: 12px;
    /* mb-3 */
    width: fit-content;
    padding: 4px 12px;
    /* px-3 py-1 */
    border-radius: 9999px;
    background: #f43f5e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    /* text-xs font-bold */
}

.bbf-care-need-icon {
    width: 56px;
    height: 56px;
    /* h-14 w-14 */
    border-radius: 16px;
    /* rounded-2xl */
    background: #ffe4e6;
    /* bg-rose-100 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* mb-5 */
}

.bbf-care-need-icon svg {
    width: 28px;
    height: 28px;
    color: #f43f5e;
}

/* h-7 w-7 text-rose-500 */

.bbf-care-need-card h3 {
    font-size: 20px;
    /* text-xl */
    font-weight: 700;
    line-height: 28px;
    /* leading-7 */
    color: #1c1917;
}

.bbf-care-need-card p {
    margin-top: 16px;
    /* mt-4 */
    flex: 1;
    font-size: 14px;
    /* text-sm */
    line-height: 24px;
    /* leading-6 */
    color: #57534e;
    /* text-stone-600 */
}

.bbf-care-need-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    /* mt-6 */
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.bbf-care-need-btn--default {
    background: #f43f5e;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bbf-care-need-btn--default:hover {
    opacity: 0.9;
    color: #fff;
}

.bbf-care-need-btn--outline {
    border: 1px solid #e7e5e4;
    background: #fff;
    color: #292524;
}

.bbf-care-need-btn--outline:hover {
    border-color: #f43f5e;
    color: #f43f5e;
}


/* ══════════════════════════════════════════════════════════════════
   SECTION 3: TOY SPA (dark bg)
   React: px-5 py-16 md:px-10 lg:px-20
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-spa-section {
    padding: 64px 20px;
}

@media (min-width:768px) {
    .bbf-care-spa-section {
        padding: 64px 40px;
    }
}

@media (min-width:1024px) {
    .bbf-care-spa-section {
        padding: 64px 80px;
    }
}

.bbf-care-spa-box {
    border-radius: 36px;
    /* rounded-[2.25rem] */
    background: #1c1917;
    /* bg-stone-900 */
    color: #fff;
    padding: 24px;
    /* p-6 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width:768px) {
    .bbf-care-spa-box {
        padding: 40px;
    }
}

/* md:p-10 */

.bbf-care-spa-inner {
    display: grid;
    gap: 40px;
    /* gap-10 */
    grid-template-columns: 1fr;
}

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

/* Spa badge */
.bbf-care-spa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    /* bg-white/10 */
    font-size: 14px;
    font-weight: 600;
    color: #fef3c7;
    /* text-amber-100 */
    margin-bottom: 20px;
}

.bbf-care-spa-badge svg {
    width: 16px;
    height: 16px;
}

.bbf-care-spa-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

@media (min-width:768px) {
    .bbf-care-spa-title {
        font-size: 48px;
    }
}

.bbf-care-spa-desc {
    margin-top: 20px;
    /* mt-5 */
    font-size: 18px;
    /* text-lg */
    line-height: 32px;
    /* leading-8 */
    color: rgba(255, 255, 255, 0.75);
    /* text-white/75 */
}

/* Spa features 2x2 */
.bbf-care-spa-features {
    margin-top: 28px;
    /* mt-7 */
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

@media (min-width:640px) {
    .bbf-care-spa-features {
        grid-template-columns: 1fr 1fr;
    }
}

.bbf-care-spa-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    /* p-4 */
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 15px;
}

.bbf-care-spa-feature svg {
    width: 20px;
    height: 20px;
    color: #fde68a;
    flex-shrink: 0;
}

/* h-5 w-5 text-amber-200 */

/* Spa CTA button */
.bbf-care-spa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    /* mt-8 */
    padding: 24px 28px;
    /* px-7 py-6 */
    border-radius: 16px;
    background: #fff;
    color: #1c1917;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.bbf-care-spa-btn:hover {
    background: #fffbeb;
    color: #1c1917;
}

/* hover:bg-amber-50 */
.bbf-care-spa-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/* Spa right: process */
.bbf-care-spa-process {
    border-radius: 28px;
    /* rounded-[1.75rem] */
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    /* p-5 */
    backdrop-filter: blur(8px);
}

.bbf-care-spa-process h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    /* text-2xl font-bold mb-5 */
    color: white;
}

.bbf-care-spa-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bbf-care-spa-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.bbf-care-spa-step-num {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: #fcd34d;
    color: #1c1917;
    /* bg-amber-300 text-stone-900 */
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bbf-care-spa-step-text {
    font-weight: 600;
    font-size: 15px;
}

.bbf-care-spa-seal {
    margin-top: 20px;
    padding: 16px;
    border-radius: 16px;
    background: #fef3c7;
    color: #1c1917;
    /* bg-amber-100 text-stone-900 */
}

.bbf-care-spa-seal p {
    font-weight: 700;
    font-size: 15px;
}

/* ══ PRICING HEADER ══════════════════════════════════════════════ */
.bbf-care-pricing-header {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.bbf-care-pricing-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-top: 8px;
}

@media (min-width:768px) {
    .bbf-care-pricing-title {
        font-size: 34px;
    }
}

.bbf-care-pricing-subtitle {
    margin-top: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ══ PRICING GRID (4 cols) ══════════════════════════════════════ */
.bbf-care-pricing-grid {
    margin-top: 28px !important;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width:640px) {
    .bbf-care-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:1024px) {
    .bbf-care-pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ══ PRICING CARD BASE ══════════════════════════════════════════ */
.bbf-care-pricing-card {
    position: relative;
    border-radius: 24px;
    background: #fff;
    color: #292524;
    padding: 24px 20px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bbf-care-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Highlight (Family) */
.bbf-care-pricing-card--highlight {
    background: #fff;
    box-shadow: 0 0 0 2.5px #e11d48, 0 20px 50px rgba(225, 29, 72, 0.22);
    transform: scale(1.035);
    z-index: 2;
}

.bbf-care-pricing-card--highlight:hover {
    transform: scale(1.045) translateY(-5px);
}

/* Badge */
.bbf-care-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #e11d48;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 4px 14px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
}

/* Card top row: icon + name */
.bbf-care-pricing-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bbf-care-pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.bbf-care-pricing-name {
    font-size: 20px;
    font-weight: 800;
    color: #1c1917;
    line-height: 1.2;
}

.bbf-care-pricing-desc {
    font-size: 13px;
    font-weight: 500;
    color: #78716c;
    margin-top: 2px;
}

/* Price */
.bbf-care-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.bbf-care-price-amount {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width:768px) {
    .bbf-care-price-amount {
        font-size: 28px;
    }
}

.bbf-care-price-period {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Note text */
.bbf-care-pricing-note {
    font-size: 13px;
    color: #78716c;
    line-height: 1.55;
    margin-bottom: 16px;
    min-height: 38px;
}

/* Feature list */
.bbf-care-pricing-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bbf-care-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #44403c;
    font-weight: 500;
    line-height: 1.5;
}

.bbf-care-pricing-features li svg {
    width: 15px;
    height: 15px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA button */
.bbf-care-price-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    margin-top: auto;
}

.bbf-care-price-btn--outline {
    background: #fff;
}

.bbf-care-price-btn--outline:hover {
    filter: brightness(0.95);
    opacity: 0.9;
}

.bbf-care-price-btn--solid {
    color: #fff !important;
}

.bbf-care-price-btn--solid:hover {
    opacity: 0.9;
    color: #fff;
}

.bbf-care-price-btn--glow {
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

.bbf-care-price-btn--glow:hover {
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.5);
    transform: translateY(-1px);
}

/* Legacy plan styles (keep for backward compat) */
.bbf-care-spa-plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #ffe4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.bbf-care-spa-plan-icon svg {
    width: 24px;
    height: 24px;
    color: #f43f5e;
}

.bbf-care-spa-plan h4 {
    font-size: 20px;
    font-weight: 700;
}

.bbf-care-spa-plan-desc {
    margin-top: 4px;
    font-weight: 600;
    color: #f43f5e;
    font-size: 15px;
}

.bbf-care-spa-plan-note {
    margin-top: 12px;
    font-size: 14px;
    color: #57534e;
}


/* ══════════════════════════════════════════════════════════════════
   SECTION 4: JOURNEY
   React: px-5 py-16 md:px-10 lg:px-20
   Wrapper: rounded-[2rem] bg-white p-6 md:p-10 shadow-xl
   Inner: lg:grid-cols-3
   Steps: md:grid-cols-7
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-journey-section {
    padding: 64px 20px;
}

@media (min-width:768px) {
    .bbf-care-journey-section {
        padding: 64px 40px;
    }
}

@media (min-width:1024px) {
    .bbf-care-journey-section {
        padding: 64px 80px;
    }
}

.bbf-care-journey-wrap {
    border-radius: 32px;
    /* rounded-[2rem] */
    background: #fff;
    padding: 24px;
    /* p-6 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    /* shadow-xl */
}

@media (min-width:768px) {
    .bbf-care-journey-wrap {
        padding: 40px;
    }
}

/* md:p-10 */

.bbf-care-journey-inner {
    display: grid;
    gap: 40px;
    /* gap-10 */
    grid-template-columns: 1fr;
}

@media (min-width:1024px) {

    /* lg:grid-cols-3 */
    .bbf-care-journey-inner {
        grid-template-columns: 1fr 2fr;
    }
}

.bbf-care-journey-intro {}

.bbf-care-journey-intro h2 {
    margin-top: 8px;
    font-size: 30px;
    font-weight: 700;
    color: #1c1917;
    /* text-3xl font-bold */
}

.bbf-care-journey-intro p {
    margin-top: 16px;
    /* mt-4 */
    font-size: 15px;
    color: #57534e;
    line-height: 1.7;
}

/* Journey steps — 7 cols on md */
.bbf-care-journey-steps {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width:768px) {
    .bbf-care-journey-steps {
        grid-template-columns: repeat(7, 1fr);
    }
}

.bbf-care-journey-step {
    border-radius: 16px;
    background: #fffbeb;
    /* bg-amber-50 */
    padding: 16px;
    /* p-4 */
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bbf-care-journey-step-num {
    width: 36px;
    height: 36px;
    /* h-9 w-9 */
    border-radius: 9999px;
    background: #fbbf24;
    /* bg-amber-400 */
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    /* mx-auto mb-3 */
}

.bbf-care-journey-step-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    /* text-sm font-semibold leading-5 */
    color: #1c1917;
}


/* ══════════════════════════════════════════════════════════════════
   SECTION 5: BENEFITS
   React: px-5 py-12 md:px-10 lg:px-20
   Header: flex col md:row md:items-end justify-between gap-5
   Grid: md:grid-cols-3 xl:grid-cols-6 gap-4
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-benefits-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    /* gap-5 */
    margin-bottom: 40px;
    /* mb-10 */
}

@media (min-width:768px) {
    .bbf-care-benefits-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.bbf-care-benefits-header-title {}

.bbf-care-benefits-header-title h2 {
    margin-top: 8px;
    font-size: 30px;
    font-weight: 700;
}

@media (min-width:768px) {
    .bbf-care-benefits-header-title h2 {
        font-size: 48px;
    }
}

.bbf-care-benefits-header-desc {
    max-width: 576px;
    /* max-w-xl */
    font-size: 15px;
    color: #57534e;
    line-height: 1.7;
}

.bbf-care-benefits-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width:768px) {
    .bbf-care-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:1280px) {
    .bbf-care-benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.bbf-care-benefit-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    /* shadow-md */
    padding: 20px;
    /* p-5 */
    text-align: center;
    transition: transform 0.2s;
}

.bbf-care-benefit-card:hover {
    transform: translateY(-2px);
}

.bbf-care-benefit-icon {
    width: 56px;
    height: 56px;
    /* h-14 w-14 */
    border-radius: 16px;
    background: linear-gradient(to bottom right, #ffe4e6, #fef3c7);
    /* from-rose-100 to-amber-100 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    /* mx-auto mb-4 */
    font-size: 28px;
}

.bbf-care-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #f43f5e;
}

.bbf-care-benefit-name {
    font-weight: 700;
    line-height: 24px;
    font-size: 14px;
    color: #1c1917;
}

/* font-bold leading-6 */


/* ══════════════════════════════════════════════════════════════════
   SECTION 6: STORIES + ADVISORY (2 cols)
   React: px-5 py-16 md:px-10 lg:px-20
   Grid: lg:grid-cols-2 gap-6
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-stories-grid {
    display: grid;
    gap: 24px;
    /* gap-6 */
    grid-template-columns: 1fr;
}

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

/* Stories card = rose gradient */
.bbf-care-stories-card {
    border-radius: 32px;
    background: linear-gradient(to bottom right, #f43f5e, #f472b6);
    /* from-rose-500 to-pink-400 */
    color: #fff;
    padding: 32px;
    /* p-8 */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width:768px) {
    .bbf-care-stories-card {
        padding: 40px;
    }
}

/* md:p-10 */

.bbf-care-stories-card h2 {
    font-size: 30px;
    font-weight: 700;
}

.bbf-care-stories-card>p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    /* text-white/90 */
    font-size: 15px;
    line-height: 1.7;
}

.bbf-care-stories-tags {
    margin-top: 24px;
    /* mt-6 */
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

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

.bbf-care-stories-tag {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    /* bg-white/20 */
    backdrop-filter: blur(4px);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* Advisory card = dark */
.bbf-care-advisory-card {
    border-radius: 32px;
    background: #1c1917;
    color: #fff;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width:768px) {
    .bbf-care-advisory-card {
        padding: 40px;
    }
}

.bbf-care-advisory-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
}

.bbf-care-advisory-icon svg {
    width: 28px;
    height: 28px;
    color: #fde68a;
}

/* text-amber-200 */

.bbf-care-advisory-card h2 {
    font-size: 30px;
    font-weight: 700;
}

.bbf-care-advisory-card>p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.75);
    /* text-white/75 */
    font-size: 15px;
    line-height: 1.7;
}

.bbf-care-advisory-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    /* mt-7 */
    padding: 24px 24px;
    border-radius: 16px;
    background: #fff;
    color: #1c1917;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.bbf-care-advisory-btn:hover {
    background: #fffbeb;
    color: #1c1917;
}

.bbf-care-advisory-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}


/* ══════════════════════════════════════════════════════════════════
   SECTION 7: CTA BOTTOM
   React: px-5 pb-20 pt-10 md:px-10 lg:px-20
   Wrapper: max-w-5xl rounded-[2rem] bg-gradient-to-r from-amber-100 to-rose-100
            p-8 md:p-12 shadow-xl
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-cta-section {
    padding: 40px 20px 80px;
}

/* pt-10 pb-20 px-5 */
@media (min-width:768px) {
    .bbf-care-cta-section {
        padding: 40px 40px 80px;
    }
}

@media (min-width:1024px) {
    .bbf-care-cta-section {
        padding: 40px 80px 80px;
    }
}

.bbf-care-cta-box {
    max-width: 1024px;
    /* max-w-5xl */
    margin: 0 auto;
    border-radius: 32px;
    background: linear-gradient(to right, #fef3c7, #ffe4e6);
    /* from-amber-100 to-rose-100 */
    padding: 32px;
    /* p-8 */
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width:768px) {
    .bbf-care-cta-box {
        padding: 48px;
    }
}

/* md:p-12 */

.bbf-care-cta-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1c1917;
}

@media (min-width:768px) {
    .bbf-care-cta-box h2 {
        font-size: 48px;
    }
}

.bbf-care-cta-box>p {
    max-width: 768px;
    /* max-w-3xl */
    margin: 20px auto 0;
    /* mx-auto mt-5 */
    font-size: 18px;
    color: #44403c;
    line-height: 1.7;
}

.bbf-care-cta-btns {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

@media (min-width:640px) {
    .bbf-care-cta-btns {
        flex-direction: row;
    }
}


/* ══════════════════════════════════════════════════════════════════
   ORDER FORM SECTION
   ══════════════════════════════════════════════════════════════════ */
.bbf-care-order-section {
    padding: 64px 20px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.04), rgba(251, 207, 232, 0.15));
}

@media (min-width:768px) {
    .bbf-care-order-section {
        padding: 64px 40px;
    }
}

@media (min-width:1024px) {
    .bbf-care-order-section {
        padding: 64px 80px;
    }
}

.bbf-care-order-inner {
    max-width: 800px;
    margin: 0 auto;
}

.bbf-care-pkg-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.bbf-care-pkg-pick-btn {
    padding: 16px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.bbf-care-pkg-pick-btn:hover {
    border-color: #fda4af;
    background: #fff1f2;
}

.bbf-care-pkg-pick-btn.active {
    border-color: #f43f5e;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
}

.bbf-care-pkg-name {
    font-size: 15px;
    font-weight: 900;
    color: #1c1917;
}

.bbf-care-pkg-pct {
    font-size: 13px;
    font-weight: 700;
    color: #f43f5e;
    margin-top: 4px;
}

.bbf-care-login-notice {
    padding: 14px 18px;
    border-radius: 16px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bbf-care-login-notice a {
    color: #f43f5e;
    font-weight: 900;
    text-decoration: underline;
}

.bbf-care-order-form {
    display: grid;
    gap: 16px;
}

.bbf-care-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width:639px) {
    .bbf-care-form-row {
        grid-template-columns: 1fr;
    }
}

.bbf-care-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bbf-care-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #292524;
}

.bbf-care-input {
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid #d6d3d1;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    background: #fafaf9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bbf-care-input:focus {
    border-color: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
    background: #fff;
}

.bbf-care-price-preview {
    padding: 16px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1px solid #fda4af;
}

.bbf-care-preview-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.bbf-care-preview-row+.bbf-care-preview-row {
    margin-top: 8px;
}

.bbf-care-preview-row strong.rose {
    color: #e11d48;
    font-size: 18px;
}

.bbf-care-submit-btn {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.3);
    transition: opacity 0.2s, transform 0.15s;
}

.bbf-care-submit-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.bbf-care-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bbf-care-form-msg {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

.bbf-care-form-msg--success {
    background: #fff1f2;
    border: 1px solid #fda4af;
    color: #be123c;
}

.bbf-care-form-msg--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}


/* ══════════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════════ */

/* Scroll-to trigger */
.bbf-care-scroll-to {
    cursor: pointer;
}

/* Fade-in on scroll animation */
.bbf-care-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bbf-care-animate.bbf-care-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Payment info box inserted by JS */
.bbf-care-payment-info-box {
    margin-top: 16px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1px solid #fda4af;
}

.bbf-care-payment-info-box h4 {
    font-weight: 900;
    font-size: 16px;
    color: #be123c;
    margin-bottom: 12px;
}

.bbf-care-payment-info-box code {
    background: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
}

.bbf-care-payment-info-box img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    border: 2px solid #fda4af;
    margin-top: 12px;
    display: block;
}

/* ══════════════════════════════════════════════════════════════════
   PULSE ANIMATION (triggered when pricing card selects a package)
   ══════════════════════════════════════════════════════════════════ */
@keyframes bbf-care-pulse-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.5);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(244, 63, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
    }
}

.bbf-care-pkg-pick-btn.bbf-care-pulse {
    animation: bbf-care-pulse-anim 0.6s ease-out 2;
}

/* Better package picker grid for 3+ packages */
@media (min-width:768px) {
    .bbf-care-pkg-picker {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Select-package link from pricing card */
.bbf-care-select-package {
    cursor: pointer;
}

/* Pricing card with data-package-id hover effect */
.bbf-care-pricing-card[data-package-id]:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}