:root {
    /* =========================================
       🎨 BRAND COLORS
    ========================================= */

    /* Primary (Teal - Care & Trust) */
    --color-primary: #009192;
    --color-primary-hover: #007A7B;
    --color-primary-light: #33A7A8;
    --color-primary-soft: #E6F6F6;

    /* Secondary (Red - Action & Urgency) */
    --color-secondary: #E23C3C;
    --color-secondary-hover: #C73232;
    --color-secondary-soft: #FDEAEA;

    /* =========================================
       ⚪ NEUTRALS
    ========================================= */
    --color-background: #F7F9FB;
    --color-surface: #FFFFFF;
    --color-border: #E3E8EF;

    /* =========================================
       📝 TEXT
    ========================================= */
    --color-text-primary: #1F2A37;
    --color-text-secondary: #6B7280;
    --color-text-light: #FFFFFF;

    /* =========================================
       🎯 UI ELEMENTS
    ========================================= */

    /* Buttons */
    --btn-primary-bg: var(--color-primary);
    --btn-primary-hover: var(--color-primary-hover);
    --btn-primary-text: #FFFFFF;

    --btn-secondary-bg: var(--color-secondary);
    --btn-secondary-hover: var(--color-secondary-hover);
    --btn-secondary-text: #FFFFFF;

    /* Links */
    --link-color: var(--color-primary);
    --link-hover: var(--color-primary-hover);

    /* =========================================
       🧱 LAYOUT & DESIGN
    ========================================= */

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;

    /* Typography */
    --font-family-base: 'Poppins', 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* 'clip' blocks horizontal overflow like 'hidden' but
       does NOT create a scroll container, so position:sticky works. */
    overflow-x: clip;
}

body {
    font-family: var(--font-family-base);
    background: var(--color-background);
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}

/* =========================================
   TOP BAR
========================================= */
.top-bar {
    background: var(--color-primary);
    color: var(--color-text-light);
    font-size: 12.5px;
    padding: 6px 0;
    width: 100%;
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-inner > span {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.top-bar a:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.top-bar-contact i {
    font-size: 11px;
    opacity: 0.85;
    flex-shrink: 0;
}

/* =========================================
   MAIN NAVBAR
========================================= */
.main-nav {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 75px;
    /* Smart-sticky animation */
    transform: translateY(0);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

/* Deeper shadow when user has scrolled down */
.main-nav.nav-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

/* Slide nav out of view when scrolling down */
.main-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 8px;
    width: 100%;
}

/* =========================================
   LOGO
========================================= */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
}


/* =========================================
   NAV LINKS
========================================= */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    gap: 2px;
    flex: 1;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
    /* button resets */
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-base);
}

.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.open > a,
.nav-links > li.open > button {
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.nav-links > li > a:focus-visible,
.nav-links > li > button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.chevron {
    font-size: 10px;
    transition: transform 0.2s;
    opacity: 0.45;
    flex-shrink: 0;
}

.nav-links > li.open .chevron {
    transform: rotate(180deg);
    opacity: 0.9;
}

/* =========================================
   DROPDOWN
========================================= */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
    z-index: 999;
}

.nav-links > li.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 9px 13px;
    font-size: 13.5px;
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background 0.12s, color 0.12s;
}

.dropdown a:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.dropdown a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

/* =========================================
   CTA BUTTONS
========================================= */
.nav-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--color-primary);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-family-base);
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--color-primary-soft);
}

.btn-call:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn-call i {
    font-size: 13px;
}

.btn-get-care {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--btn-secondary-bg);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-family-base);
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-get-care:hover {
    background: var(--btn-secondary-hover);
}

.btn-get-care:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

.btn-get-care i {
    font-size: 13px;
}

/* =========================================
   HAMBURGER
========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    transition: background 0.15s;
}

.hamburger:hover {
    background: var(--color-primary-soft);
}

.hamburger:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: transform 0.22s, opacity 0.22s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   MOBILE MENU
========================================= */
.mobile-menu {
    display: none;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-inner {
    padding: 12px 20px 24px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu > .mobile-menu-inner > ul > li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu > .mobile-menu-inner > ul > li:last-child {
    border-bottom: none;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    cursor: pointer;
    /* button resets */
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-family-base);
}

.mobile-nav-item .chevron {
    width: 14px;
    height: 14px;
    opacity: 0.4;
    transition: transform 0.2s, opacity 0.2s;
}

.mobile-submenu {
    display: none;
    padding: 0 4px 8px 16px;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
}

.mobile-submenu a:hover {
    color: var(--color-primary);
}

.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-ctas .btn-get-care,
.mobile-ctas .btn-call {
    justify-content: center;
    padding: 13px;
    font-size: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

/* ── Tablet: hide tagline, keep contacts side by side ── */
@media (max-width: 768px) {
    .top-bar-inner > span {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
        padding: 0 16px;
    }

    .top-bar-contacts {
        gap: 12px;
    }
}

/* ── Small phones: show only phone icon, hide email ── */
@media (max-width: 480px) {
    .top-bar-contact:last-child {
        display: none;
    }

    .top-bar-contacts {
        gap: 8px;
    }
}

/* ── Desktop nav hidden on tablet/mobile ── */
@media (max-width: 1024px) {
    .nav-links,
    .nav-ctas {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .nav-inner {
        padding: 0 20px;
    }
}

/* ── Small / medium phones ── */
@media (max-width: 480px) {
    .nav-inner {
        padding: 0 16px;
        height: 75px;
    }

    .mobile-menu-inner {
        padding: 10px 16px 20px;
    }
}

/* ── Extra-small phones (< 360px) ── */
@media (max-width: 360px) {
    .top-bar {
        display: none;
    }

    .nav-inner {
        padding: 0 12px;
        height: 56px;
    }

    .hamburger {
        padding: 6px;
    }

    .hamburger span {
        width: 18px;
    }
}

/* =========================================
   Footer
========================================= */

/* ── Base ─────────────────────────────── */
.bh-footer {
    background: #0a2e2e;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-family-base);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow in background */
.bh-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 145, 146, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.bh-footer::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 60, 60, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Wave Divider ─────────────────────── */
.bh-footer__wave {
    line-height: 0;
    background: var(--color-background, #F7F9FB);
}

.bh-footer__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ── Body ─────────────────────────────── */
.bh-footer__body {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

/* ── Column Headings ──────────────────── */
.bh-footer__col-heading {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--color-primary-light, #33A7A8);
    margin-bottom: 16px;
    padding-bottom: 8px;
    position: relative;
}

.bh-footer__col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--color-primary, #009192);
    border-radius: 2px;
}

/* ── Navigation Links ─────────────────── */
.bh-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bh-footer__links li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.18s, transform 0.18s;
    position: relative;
}

.bh-footer__links li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent var(--color-primary, #009192);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s, transform 0.18s;
    flex-shrink: 0;
}

.bh-footer__links li a:hover {
    color: #fff;
    transform: translateX(6px);
}

.bh-footer__links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.bh-footer__links li a:focus-visible {
    outline: 2px solid var(--color-primary, #009192);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ── Contact List ─────────────────────── */
.bh-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.bh-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.bh-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(0, 145, 146, 0.18);
    flex-shrink: 0;
}

.bh-footer__contact-icon--top {
    align-self: flex-start;
    margin-top: 2px;
}

.bh-footer__contact-icon i {
    font-size: 12px;
    color: var(--color-primary-light, #33A7A8);
}

.bh-footer__contact-list a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.15s;
}

.bh-footer__contact-list a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── Social Media ─────────────────────── */
.bh-footer__social {
    display: flex;
    gap: 10px;
}

.bh-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.bh-footer__social-link:hover {
    background: var(--color-primary, #009192);
    border-color: var(--color-primary, #009192);
    color: #fff;
    transform: translateY(-3px);
}

.bh-footer__social-link:focus-visible {
    outline: 2px solid var(--color-primary, #009192);
    outline-offset: 2px;
}

/* ── CTA Box ──────────────────────────── */
.bh-footer__cta-box {
    background: rgba(0, 145, 146, 0.12);
    border: 1px solid rgba(0, 145, 146, 0.28);
    border-radius: var(--radius-lg, 14px);
    padding: 16px;
}

.bh-footer__cta-box p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    line-height: 1.4;
}

.bh-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--color-secondary, #E23C3C);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-base);
    border-radius: var(--radius-lg, 8px);
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    white-space: nowrap;
}

.bh-footer__cta-btn i {
    font-size: 12px;
}

.bh-footer__cta-btn:hover {
    background: var(--color-secondary-hover, #C73232);
    color: #fff;
    transform: translateY(-1px);
}

.bh-footer__cta-btn:focus-visible {
    outline: 2px solid var(--color-secondary, #E23C3C);
    outline-offset: 2px;
}

/* ── Divider line above bottom bar ────── */
.bh-footer__body + .bh-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Bottom Bar ───────────────────────── */
.bh-footer__bottom {
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}

.bh-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.44);
}

.bh-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bh-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.44);
    text-decoration: none;
    transition: color 0.15s;
}

.bh-footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   RESPONSIVE
========================================= */

/* ── Tablet ── */
@media (max-width: 991px) {
    .bh-footer__body {
        padding: 48px 0 32px;
    }

    .bh-footer__tagline {
        max-width: 100%;
    }
}

/* ── Mobile ── */
@media (max-width: 575px) {
    .bh-footer__body {
        padding: 40px 0 28px;
    }

    .bh-footer__wave svg {
        height: 40px;
    }

    .bh-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .bh-footer__social {
        justify-content: flex-start;
    }
}

/* =============================================
   HERO SECTION — BetterHands Home Care
   Depends on: variables in styles.css (root)
============================================= */

/* ── Section wrapper ────────────────────── */
.bh-hero {
    position: relative;
    background: linear-gradient(150deg, #E6F6F6 0%, #F7F9FB 55%, #ffffff 100%);
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 0;
}

/* ── Decorative background blobs ────────── */
.bh-hero__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bh-hero__blob--tl {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -160px;
    background: radial-gradient(circle, rgba(0, 145, 146, 0.10) 0%, transparent 70%);
}

.bh-hero__blob--br {
    width: 400px;
    height: 400px;
    bottom: 40px;
    right: -100px;
    background: radial-gradient(circle, rgba(226, 60, 60, 0.07) 0%, transparent 70%);
}

/* ── Container & row ────────────────────── */
.bh-hero__container {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

.bh-hero__row {
    min-height: 560px;
}

/* ── LEFT: content col ──────────────────── */
.bh-hero__content {
    padding: 20px 0 40px;
}

/* Trust pill */
.bh-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 145, 146, 0.30);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(0, 145, 146, 0.10);
}

.bh-hero__pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    animation: bh-pulse 2s ease-in-out infinite;
}

@keyframes bh-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(1.25); }
}

/* Headline */
.bh-hero__headline {
    font-family: var(--font-family-base);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bh-hero__headline-accent {
    color: var(--color-primary);
}

/* Subheadline */
.bh-hero__sub {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}

/* CTAs */
.bh-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.bh-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-lg);
    font-family: var(--font-family-base);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    border: 2px solid transparent;
}

.bh-hero__btn--primary {
    background: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(226, 60, 60, 0.30);
}

.bh-hero__btn--primary:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(226, 60, 60, 0.38);
    color: #ffffff;
    text-decoration: none;
}

.bh-hero__btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.bh-hero__btn--outline:hover {
    background: var(--color-primary-soft);
    transform: translateY(-2px);
    color: var(--color-primary);
    text-decoration: none;
}

.bh-hero__btn i {
    font-size: 13px;
}

/* Trust badges row */
.bh-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
}

.bh-hero__badge i {
    font-size: 12px;
    color: var(--color-primary);
}

/* ── RIGHT: visual column ───────────────── */
.bh-hero__visual {
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

/* Card wrapper with floating chips */
.bh-hero__card-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}

/* Floating stat chips */
.bh-hero__chip {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-family-base);
    white-space: nowrap;
}

.bh-hero__chip > i {
    font-size: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.bh-hero__chip div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.bh-hero__chip strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.bh-hero__chip span {
    font-size: 11px;
    color: var(--color-text-secondary);
}

.bh-hero__chip--top {
    top: 24px;
    right: -20px;
}

.bh-hero__chip--bottom {
    bottom: 64px;
    left: -20px;
}

/* Swiper card */
.bh-hero__swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bh-hero__slide {
    position: relative;
    height: 480px;
    background: #d4e9e9;
}

/* Placeholder when image is missing */
.bh-hero__slide--placeholder {
    background: linear-gradient(135deg, #c8e6e6 0%, #e6f6f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-hero__slide--placeholder::before {
    content: '\f0f1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 72px;
    color: rgba(0, 145, 146, 0.30);
}

.bh-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Slide overlay caption */
.bh-hero__slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 46, 46, 0.88) 0%, transparent 100%);
    padding: 40px 20px 20px;
}

.bh-hero__slide-caption {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 4px;
    line-height: 1.45;
}

.bh-hero__slide-caption i {
    font-size: 11px;
    margin-right: 4px;
    color: var(--color-primary-light);
    vertical-align: top;
    margin-top: 2px;
}

.bh-hero__slide-author {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Swiper pagination (custom dots) */
.bh-hero__pagination {
    position: absolute;
    bottom: 14px !important;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 20;
}

.bh-hero__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
}

.bh-hero__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Bottom wave */
.bh-hero__wave {
    line-height: 0;
    position: relative;
    z-index: 1;
}

.bh-hero__wave svg {
    display: block;
    width: 100%;
    height: 56px;
}

/* ── RESPONSIVE ─────────────────────────── */

/* Tablet */
@media (max-width: 991px) {
    .bh-hero {
        padding-top: 48px;
    }

    .bh-hero__row {
        min-height: auto;
    }

    .bh-hero__content {
        text-align: center;
        padding-bottom: 32px;
    }

    .bh-hero__pill {
        margin-left: auto;
        margin-right: auto;
        display: inline-flex;
    }

    .bh-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .bh-hero__ctas {
        justify-content: center;
    }

    .bh-hero__badges {
        justify-content: center;
    }

    .bh-hero__chip--top {
        right: 0;
    }

    .bh-hero__chip--bottom {
        left: 0;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .bh-hero {
        padding-top: 32px;
    }

    .bh-hero__headline {
        font-size: 28px;
    }

    .bh-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .bh-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .bh-hero__slide {
        height: 320px;
    }

    .bh-hero__chip--top,
    .bh-hero__chip--bottom {
        display: none;
    }

    .bh-hero__card-wrap {
        max-width: 100%;
    }
}

/* ============================================================
   SHARED SECTION UTILITIES
   Used by both Trust & Services sections
============================================================ */

.bh-section-badge {
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 6px 16px;
  border-radius: 50px;
}

.bh-section-title {
  font-family: var(--font-family-base);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.25;
}

.bh-accent {
  color: var(--color-primary);
}

.bh-section-sub {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   BUTTONS (shared between both sections)
============================================================ */

.bh-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.bh-btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 145, 146, 0.25);
}

.bh-btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 145, 146, 0.35);
  color: #fff;
}

.bh-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.bh-btn--outline:hover {
  background: var(--color-primary-soft);
  transform: translateY(-2px);
  color: var(--color-primary-hover);
}


/* ============================================================
   TRUST & CREDIBILITY SECTION
============================================================ */

.bh-trust {
  background: var(--color-background);
}

.bh-trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.bh-trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.bh-trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.bh-trust-card:hover .bh-trust-icon {
  background: var(--color-primary);
}

.bh-trust-icon i {
  font-size: 26px;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.bh-trust-card:hover .bh-trust-icon i {
  color: #fff;
}

.bh-trust-stat {
  font-family: var(--font-family-base);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.bh-trust-label {
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.bh-trust-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Accent top-border strip */
.bh-trust-card::before {
  content: '';
  display: block;
  height: 4px;
  width: 50px;
  background: var(--color-primary);
  border-radius: 4px;
  margin: 0 auto 20px;
  transition: width 0.3s ease;
}

.bh-trust-card:hover::before {
  width: 80px;
}


/* ============================================================
   SERVICES OVERVIEW SECTION
============================================================ */

.bh-services {
  background: #fff;
}

.bh-service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bh-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width 0.35s ease;
}

.bh-service-card:hover::after {
  width: 100%;
}

.bh-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

/* ── Service image wrapper ── */
.bh-service-img-wrap {
  width: auto; /* full card width */
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 0 !important;
}

.bh-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.bh-service-card:hover .bh-service-img {
  transform: scale(1.06);
}

/* Title & desc now need horizontal padding since card padding-top is 0 */
.bh-service-card .bh-service-title,
.bh-service-card .bh-service-desc {
  padding-left: 28px;
  padding-right: 28px;
}

.bh-service-card .bh-service-title {
  padding-top: 22px;
}

.bh-service-title {
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.bh-service-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */

@media (max-width: 575.98px) {
  .bh-trust-stat {
    font-size: 2rem;
  }

  .bh-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
  }

  .bh-btn--outline {
    margin-bottom: 0;
  }
}

/* ============================================================
   HOW IT WORKS SECTION — bh-hiw
   BetterHands Home Care
============================================================ */

.bh-hiw {
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.bh-hiw::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 145, 146, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(0, 145, 146, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Timeline layout ── */
.bh-hiw__timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical spine line */
.bh-hiw__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(0,145,146,0.12));
  transform: translateX(-50%);
  z-index: 0;
}

/* ── Each step row ── */
.bh-hiw__step {
  display: grid;
  grid-template-columns: 1fr 450px 1fr;
  align-items: center;
  gap: 0 24px;
  position: relative;
  z-index: 1;
  padding: 20px 0;
  width: 100%;
}

/* Alternate steps: card on left, icon in middle */
.bh-hiw__step--alt {
  direction: rtl;
}

.bh-hiw__step--alt > * {
  direction: ltr;
}

/* The connector horizontal dashes (decorative) */
.bh-hiw__connector {
  display: none; /* hidden — used only if you want explicit lines */
}

/* ── Icon column ── */
.bh-hiw__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.bh-hiw__number {
  font-family: var(--font-family-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-radius: 50px;
  padding: 2px 10px;
  line-height: 1.8;
}

.bh-hiw__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 6px rgba(0, 145, 146, 0.1), var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bh-hiw__icon i {
  font-size: 24px;
  color: var(--color-primary);
  transition: color 0.25s ease;
}

/* Final step icon: filled */
.bh-hiw__icon--final {
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(0, 145, 146, 0.15), var(--shadow-md);
}

.bh-hiw__icon--final i {
  color: #fff;
}

/* ── Card column ── */
.bh-hiw__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bh-hiw__card::before {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  background: var(--color-primary);
  border-radius: 4px;
  margin-bottom: 14px;
  transition: width 0.3s ease;
}

.bh-hiw__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 145, 146, 0.3);
}

.bh-hiw__card:hover::before {
  width: 60px;
}

/* Arrow pointer toward the center spine */
.bh-hiw__card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--color-surface);
  filter: drop-shadow(2px 0 1px rgba(0,0,0,0.06));
}

/* Alt steps: arrow flips to left side */
.bh-hiw__step--alt .bh-hiw__card::after {
  right: auto;
  left: -10px;
  border-left: none;
  border-right: 10px solid var(--color-surface);
}

/* Final card: accent styling */
.bh-hiw__card--final {
  border-color: rgba(0, 145, 146, 0.35);
  background: linear-gradient(135deg, #fff 80%, var(--color-primary-soft) 100%);
}

.bh-hiw__title {
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.bh-hiw__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.bh-hiw__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 3px 12px;
  border-radius: 50px;
}

.bh-hiw__tag--accent {
  background: var(--color-primary);
  color: #fff;
}

/* ── Hover: icon glow effect ── */
.bh-hiw__step:hover .bh-hiw__icon:not(.bh-hiw__icon--final) {
  background: var(--color-primary);
  transform: scale(1.08);
  box-shadow: 0 0 0 10px rgba(0, 145, 146, 0.12), var(--shadow-lg);
}

.bh-hiw__step:hover .bh-hiw__icon:not(.bh-hiw__icon--final) i {
  color: #fff;
}


/* ============================================================
   WHO WE HELP SECTION — bh-who
============================================================ */

.bh-who {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.bh-who__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bh-who__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--color-primary);
}

.bh-who__shape--1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -180px;
}

.bh-who__shape--2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  left: -100px;
}

/* Stats row next to header */
.bh-who__hero-stat-wrap {
  display: flex;
  gap: 12px;
}

.bh-who__hero-stat {
  flex: 1;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.bh-who__hero-stat .bh-trust-label {
  display: block;
  font-size: 13px;
  margin-bottom: 0;
}

/* ── Audience cards ── */
.bh-who__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bh-who__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width 0.35s ease;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.bh-who__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,145,146,0.3);
}

.bh-who__card:hover::after {
  width: 100%;
}

/* Accent card (respite) */
.bh-who__card--accent {
  background: var(--color-primary);
  border-color: transparent;
}

.bh-who__card--accent::after {
  background: rgba(255,255,255,0.35);
}

.bh-who__card--accent:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0,145,146,0.3);
}

/* Icon wrap */
.bh-who__card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.bh-who__card:hover .bh-who__card-icon-wrap {
  background: var(--color-primary);
  transform: scale(1.08);
}

.bh-who__card:hover .bh-who__card-icon-wrap .bh-who__card-icon {
  color: #fff;
}

.bh-who__card-icon-wrap--light {
  background: rgba(255,255,255,0.2);
}

.bh-who__card--accent:hover .bh-who__card-icon-wrap {
  background: rgba(255,255,255,0.3);
}

.bh-who__card-icon {
  font-size: 24px;
  color: var(--color-primary);
  transition: color 0.25s ease;
}

.bh-who__card-icon--light {
  color: #fff;
}

/* Decorative illustration placeholder areas */
.bh-who__card-img-wrap {
  margin-bottom: 18px;
}

.bh-who__card-illustration {
  width: 100%;
  height: 8px;
  border-radius: 50px;
  background: var(--color-primary-soft);
  position: relative;
  overflow: hidden;
}

.bh-who__card-illustration::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50px;
  transition: width 0.5s ease;
}

.bh-who__card-illustration--seniors::after  { width: 85%; }
.bh-who__card-illustration--surgery::after  { width: 72%; }
.bh-who__card-illustration--chronic::after  { width: 78%; }
.bh-who__card-illustration--respite::after  { background: rgba(255,255,255,0.7); width: 90%; }

/* Card content */
.bh-who__card-title {
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.bh-who__card-title--light {
  color: #fff;
}

.bh-who__card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.bh-who__card-desc--light {
  color: rgba(255,255,255,0.85);
}

/* Checklist */
.bh-who__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bh-who__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.bh-who__list li i {
  font-size: 13px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.bh-who__list--light li {
  color: rgba(255,255,255,0.9);
}

.bh-who__list--light li i {
  color: rgba(255,255,255,0.85);
}

/* Card link */
.bh-who__link {
  font-family: var(--font-family-base);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s ease, color 0.15s ease;
}

.bh-who__link:hover {
  color: var(--color-primary-hover);
  gap: 8px;
}

.bh-who__link--light {
  color: #fff;
}

.bh-who__link--light:hover {
  color: rgba(255,255,255,0.8);
}

/* ── Reassurance bar ── */
.bh-who__bar {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 8px 32px rgba(0, 145, 146, 0.25);
}

.bh-who__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bh-who__bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.bh-who__bar-item i {
  font-size: 20px;
  opacity: 0.85;
}

.bh-who__bar-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}


/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */

/* Tablet & below: linearise the timeline */
@media (max-width: 767.98px) {
  .bh-hiw__timeline::before {
    left: 34px;
    transform: none;
    top: 20px;
    bottom: 20px;
  }

  .bh-hiw__step {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto;
    gap: 0 16px;
    padding: 14px 0;
  }

  /* Alt steps: reset direction */
  .bh-hiw__step--alt {
    direction: ltr;
  }

  /* Icon is always the first column */
  .bh-hiw__icon-wrap {
    grid-row: 1;
    grid-column: 1;
    align-items: center;
  }

  .bh-hiw__card {
    grid-row: 1;
    grid-column: 2;
  }

  /* Remove right-pointing arrows */
  .bh-hiw__card::after,
  .bh-hiw__step--alt .bh-hiw__card::after {
    display: none;
  }

  .bh-who__bar-divider {
    display: none;
  }

  .bh-who__bar-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .bh-hiw__icon {
    width: 54px;
    height: 54px;
  }

  .bh-hiw__icon i {
    font-size: 20px;
  }

  .bh-hiw__card {
    padding: 18px 18px;
  }

  .bh-who__bar {
    padding: 20px 20px;
  }
}

/* ============================================================
   CALL TO ACTION SECTION — bh-cta
   BetterHands Home Care
   Depends on: existing CSS variables in styles.css
============================================================ */

/* ── Section shell ── */
.bh-cta {
  position: relative;
  background: var(--color-primary);
  padding: 0;
  overflow: hidden;
}

/* ── Wave dividers ── */
.bh-cta__wave {
  line-height: 0;
  width: 100%;
}

.bh-cta__wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.bh-cta__wave--top  { margin-bottom: -1px; }
.bh-cta__wave--bottom { margin-top: -1px; }

/* ── Decorative background layers ── */
.bh-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Large soft circles for depth */
.bh-cta__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.bh-cta__bg-circle--1 {
  width: 600px;
  height: 600px;
  top: -220px;
  left: -160px;
}

.bh-cta__bg-circle--2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -100px;
  background: rgba(255, 255, 255, 0.04);
}

.bh-cta__bg-circle--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 55%;
  background: rgba(226, 60, 60, 0.12);
}

/* Subtle grid texture */
.bh-cta__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Inner content wrapper ── */
.bh-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}

/* ── Eyebrow badge ── */
.bh-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.bh-cta__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: bh-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes bh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── Headline ── */
.bh-cta__headline {
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.bh-cta__headline-break {
  display: block;
}

.bh-cta__headline-accent {
  display: block;
  position: relative;
  color: #fff;
}

/* Animated underline on the accent line */
.bh-cta__headline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
}

/* ── Sub-copy ── */
.bh-cta__sub {
  font-family: var(--font-family-base);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ── Trust micro-signals ── */
.bh-cta__signals {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 40px;
}

.bh-cta__signal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-family-base);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.bh-cta__signal i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* ── CTA buttons ── */
.bh-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.bh-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform    0.2s ease,
    box-shadow   0.2s ease,
    background   0.2s ease,
    color        0.2s ease,
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Shimmer sweep on hover */
.bh-cta__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  transition: left 0.45s ease;
}

.bh-cta__btn:hover::before {
  left: 160%;
}

/* Primary button — white fill */
.bh-cta__btn--primary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.bh-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  color: var(--color-primary-hover);
}

/* Ghost button — outlined */
.bh-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.bh-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  transform: translateY(-3px);
}

/* Button sub-parts */
.bh-cta__btn-icon {
  display: flex;
  align-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bh-cta__btn-label {
  line-height: 1;
}

.bh-cta__btn-arrow {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.bh-cta__btn--primary:hover .bh-cta__btn-arrow {
  transform: translateX(4px);
}



@keyframes bh-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.bh-cta__float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.bh-cta__float-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bh-cta__float-text strong {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.bh-cta__float-text span {
  font-family: var(--font-family-base);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 767.98px) {
  .bh-cta__inner {
    padding: 56px 20px 64px;
  }

  .bh-cta__headline {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .bh-cta__sub {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .bh-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bh-cta__btn {
    justify-content: center;
    width: 100%;
  }

  .bh-cta__signals {
    flex-direction: column;
    gap: 8px;
  }
}

.bh-cg-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-family-base);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  border: none;
}
.bh-cg-hero__btn--primary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(226,60,60,.38);
}
.bh-cg-hero__btn--primary:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(226,60,60,.45);
  color: #fff;
}
.bh-cg-hero__btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.bh-cg-hero__btn--ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-3px);
  color: #fff;
}