/* Bhishak public catalog site — modern mobile-app-landing look.
   Layered on top of Crafto's elearning theme; scoped under
   `body.bhk-site` so nothing here leaks to the CEET public site.

   Design principles:
     - Mint (#16A8A8) as the single accent that carries the brand
     - Forest (#143C32) for depth + get-app conversion band
     - Soft sand (#F4F1EA) as sectional background contrast
     - 20–24 px rounded cards with layered soft shadows
     - Generous vertical rhythm (5–7 rem section padding)
     - Mobile-first — every section stacks cleanly < 768 px
*/

/* ── Design tokens ────────────────────────────────────────────── */
:root {
    --bhk-forest: #143c32;
    --bhk-forest-2: #1e5745;
    --bhk-mint: #16a8a8;
    --bhk-mint-2: #0e8e8e;
    --bhk-mint-soft: rgba(22, 168, 168, 0.10);
    --bhk-sand: #f6f2eb;
    --bhk-sand-2: #f9f6f0;
    --bhk-ink: #0f1a17;
    --bhk-body: #35443f;
    --bhk-muted: #6b7a76;
    --bhk-line: #e3ebe5;
    --bhk-shadow-sm: 0 4px 12px rgba(20, 60, 50, 0.06);
    --bhk-shadow-md: 0 12px 32px rgba(20, 60, 50, 0.08);
    --bhk-shadow-lg: 0 24px 56px rgba(20, 60, 50, 0.14);
    --bhk-radius: 20px;
    --bhk-radius-sm: 12px;
    --bhk-radius-lg: 28px;
}

body.bhk-site {
    color: var(--bhk-body);
    background: #ffffff;
    font-family: Ubuntu, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.bhk-site h1,
body.bhk-site h2,
body.bhk-site h3,
body.bhk-site h4,
body.bhk-site h5 { color: var(--bhk-ink); letter-spacing: -0.01em; }
body.bhk-site a { color: var(--bhk-mint-2); }
body.bhk-site a:hover { color: var(--bhk-forest); }

/* Section title accent line — used on every section headline. */
.bhk-site .bhk-section-title {
    color: var(--bhk-ink);
    display: inline-block;
    padding-bottom: 14px;
    position: relative;
    font-size: 2rem;
    line-height: 1.15;
}
.bhk-site .bhk-section-title::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: var(--bhk-mint);
    border-radius: 3px;
    margin: 12px auto 0;
}
.bhk-site .bhk-section-title.text-start::after,
.bhk-site .text-start .bhk-section-title::after { margin-left: 0; margin-right: auto; }

/* ═════════════════════════════════════════════════════════════
   NAV — sticky, translucent-white on scroll, mint hover accent
   ═════════════════════════════════════════════════════════════ */
/* Neutralise Crafto's sitewide `.navbar { position: fixed }`
   inside our nav scope so the outer sticky-top header owns
   sticky behaviour cleanly. */
.bhk-site .bhk-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--bhk-line);
    z-index: 1050;
}
.bhk-site .bhk-navbar .navbar {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
    background: transparent;
}
.bhk-site .bhk-navbar .navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    padding: 4px 0;
}
.bhk-site .bhk-brand-mark {
    color: var(--bhk-forest);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.02em;
}
.bhk-site .bhk-brand-tag {
    color: var(--bhk-muted);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 2px;
}
.bhk-site .bhk-navbar .nav-link {
    color: var(--bhk-forest);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.15s, color 0.15s;
}
.bhk-site .bhk-navbar .nav-link:hover,
.bhk-site .bhk-navbar .nav-link:focus {
    background: var(--bhk-mint-soft);
    color: var(--bhk-mint-2);
}

/* ═════════════════════════════════════════════════════════════
   PLAY STORE BADGE — reused in nav / hero / get-app
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-play-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bhk-forest);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: var(--bhk-shadow-sm);
}
.bhk-site .bhk-play-badge:hover {
    background: var(--bhk-mint-2);
    transform: translateY(-1px);
    box-shadow: var(--bhk-shadow-md);
}
.bhk-site .bhk-play-badge__prompt {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}
.bhk-site .bhk-play-badge__store {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    padding-top: 2px;
}
.bhk-site .bhk-play-badge__store .fa-brands { font-size: 20px; }

/* Larger badge for hero + get-app blocks */
.bhk-site .bhk-play-badge:not(.bhk-play-badge--nav) {
    padding: 14px 22px;
    border-radius: 14px;
}
.bhk-site .bhk-play-badge:not(.bhk-play-badge--nav) .bhk-play-badge__store {
    font-size: 18px;
}
.bhk-site .bhk-play-badge:not(.bhk-play-badge--nav) .bhk-play-badge__store .fa-brands {
    font-size: 24px;
}

/* On dark backgrounds (get-app band) flip to mint fill */
.bhk-site .bhk-play-badge--onDark {
    background: var(--bhk-mint);
}
.bhk-site .bhk-play-badge--onDark:hover {
    background: #ffffff;
    color: var(--bhk-forest) !important;
}

/* ═════════════════════════════════════════════════════════════
   HERO — mint-tinted gradient backdrop + phone visual
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-hero {
    padding: 72px 0 88px;
    background:
        radial-gradient(1200px 600px at 90% 20%, rgba(22, 168, 168, 0.14) 0%, transparent 60%),
        radial-gradient(900px 500px at 10% 80%, rgba(20, 60, 50, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--bhk-sand-2) 0%, #ffffff 100%);
    overflow: hidden;
}
.bhk-site .bhk-hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bhk-mint-soft);
    color: var(--bhk-mint-2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 999px;
}
.bhk-site .bhk-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--bhk-ink);
    letter-spacing: -0.02em;
}
.bhk-site .bhk-hero-accent {
    color: var(--bhk-mint-2);
    background: linear-gradient(120deg, var(--bhk-mint) 0%, var(--bhk-forest-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bhk-site .bhk-hero-lede {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--bhk-body);
    max-width: 540px;
}
.bhk-site .col-lg-6.text-lg-start .bhk-hero-lede { margin-left: 0; margin-right: auto; }
.bhk-site .col-lg-6.text-center .bhk-hero-lede { margin: 0 auto; }

.bhk-site .bhk-hero-proof__item {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.bhk-site .bhk-hero-proof__item strong {
    color: var(--bhk-forest);
    font-size: 22px;
    font-weight: 700;
}
.bhk-site .bhk-hero-proof__item span {
    color: var(--bhk-muted);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.bhk-site .bhk-hero-visual {
    position: relative;
    display: block;
    max-width: 360px;
    margin: 0 auto;
    padding: 20px;
}
.bhk-site .bhk-hero-visual::before {
    /* Soft mint glow behind the phone mockup */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(22, 168, 168, 0.35), transparent 70%);
    filter: blur(24px);
    z-index: 0;
}
/* ── Phone-frame wrapper ──────────────────────────────────────
   Wraps every 540×1170 app screenshot in an Android-portrait
   bezel. The frame PNG is 906×1896 with ~4.5% side + 2.5%
   top/bottom bezels; the inner screen slot is positioned so a
   540×1170 screenshot lands exactly on the display area with
   object-fit: cover. Frame is applied as a decorative ::after
   overlay so the <img> stays semantically the content image. */
.bhk-site .bhk-phone-frame {
    position: relative;
    display: block;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 906 / 1896;
    margin: 0 auto;
    padding: 0;
    filter: drop-shadow(0 30px 60px rgba(20, 60, 50, 0.25));
    z-index: 1;
}
.bhk-site .bhk-phone-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/bhishak/phone-frame.png') center / 100% 100% no-repeat;
    pointer-events: none;
    z-index: 2;
}
.bhk-site .bhk-phone-frame__screen {
    /* Measured against the frame PNG's alpha channel: screen glass
       sits at 5.30% side / 2.53% top-bottom insets. Values match
       the visible bezel exactly so `object-fit: cover` scales the
       screenshot to fill the actual glass area — otherwise the
       overshoot pokes into the bezel and the ::after overlay masks
       the status bar, which reads as "squeezed" content. */
    position: absolute;
    top: 2.53%;
    left: 5.30%;
    width: 89.40%;
    height: 94.94%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 6%;
    background: #ffffff;
    z-index: 1;
}

/* Size modifiers — each slot tunes the frame's max-width. Height
   is derived from aspect-ratio so we no longer set max-height. */
.bhk-site .bhk-hero-mobile { max-width: 320px; }

/* ═════════════════════════════════════════════════════════════
   METRICS — trust bar band directly below the hero
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-metrics {
    padding: 24px 0 32px;
    background: #ffffff;
    border-bottom: 1px solid var(--bhk-line);
}
.bhk-site .bhk-metric-card {
    display: flex;
    flex-direction: column;
    padding: 12px 8px;
}
.bhk-site .bhk-metric-value {
    color: var(--bhk-mint-2);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
}
.bhk-site .bhk-metric-label {
    color: var(--bhk-muted);
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-top: 4px;
}

/* ═════════════════════════════════════════════════════════════
   PRESCRIPTION STUDIO — flagship section, sits after the trust
   bar. Two-column: left is the pitch + 4 differentiator pills +
   Play Store CTA, right is a phone mockup.
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-studio {
    padding: 96px 0;
    background:
        radial-gradient(700px 400px at 90% 90%, rgba(22, 168, 168, 0.12) 0%, transparent 70%),
        var(--bhk-sand-2);
    overflow: hidden;
}
.bhk-site .bhk-studio-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bhk-mint-soft);
    color: var(--bhk-mint-2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 999px;
}
.bhk-site .bhk-studio-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--bhk-ink);
}
.bhk-site .bhk-studio-lede {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--bhk-body);
    max-width: 560px;
}
.bhk-site .bhk-studio-features {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.bhk-site .bhk-studio-features li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--bhk-line);
    border-radius: 14px;
    box-shadow: var(--bhk-shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s;
}
.bhk-site .bhk-studio-features li:hover {
    transform: translateY(-2px);
    box-shadow: var(--bhk-shadow-md);
}
.bhk-site .bhk-studio-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bhk-mint) 0%, var(--bhk-forest-2) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 6px 14px rgba(22, 168, 168, 0.24);
}
.bhk-site .bhk-studio-features li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bhk-site .bhk-studio-features li strong {
    color: var(--bhk-forest);
    font-weight: 700;
    font-size: 15px;
}
.bhk-site .bhk-studio-features li span {
    color: var(--bhk-body);
    font-size: 14px;
    line-height: 1.55;
}
.bhk-site .bhk-studio-visual {
    position: relative;
    display: block;
    max-width: 360px;
    margin: 0 auto;
    padding: 20px;
}
.bhk-site .bhk-studio-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(22, 168, 168, 0.28), transparent 70%);
    filter: blur(20px);
    z-index: 0;
}
.bhk-site .bhk-studio-mobile { max-width: 320px; }

/* ═════════════════════════════════════════════════════════════
   ABOUT (What's inside) — 6 category cards
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-about {
    padding: 88px 0;
    background: #ffffff;
}
.bhk-site .bhk-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px 24px;
    background: #ffffff;
    border: 1px solid var(--bhk-line);
    border-radius: var(--bhk-radius);
    box-shadow: var(--bhk-shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.bhk-site .bhk-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bhk-shadow-md);
    border-color: transparent;
}
.bhk-site .bhk-category-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 1;
}
.bhk-site .bhk-category-icon i { line-height: 1; }
/* Tone wells — pastel-tinted background + a darker-matching
   glyph colour so each card carries a distinct chromatic
   signature while all four remain within the mint/forest/sand
   brand family. */
.bhk-site .bhk-tone-teal   { background: rgba(22, 168, 168, 0.12); color: var(--bhk-mint-2); }
.bhk-site .bhk-tone-mint   { background: rgba(30, 180, 140, 0.14); color: #0f8a70; }
.bhk-site .bhk-tone-forest { background: rgba(20, 60, 50, 0.10);   color: var(--bhk-forest); }
.bhk-site .bhk-tone-sand   { background: rgba(196, 148, 62, 0.15); color: #a06a1c; }
.bhk-site .bhk-category-title {
    color: var(--bhk-forest);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.bhk-site .bhk-category-body {
    color: var(--bhk-body);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex-grow: 1;
}
.bhk-site .bhk-category-more {
    color: var(--bhk-mint-2);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.15s, transform 0.15s;
}
.bhk-site .bhk-category-card:hover .bhk-category-more {
    color: var(--bhk-forest);
    transform: translateX(2px);
}

/* ═════════════════════════════════════════════════════════════
   FEATURES — 6 highlight tiles
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-features {
    padding: 88px 0;
    background: var(--bhk-sand);
}
.bhk-site .bhk-feature-card {
    padding: 28px 24px;
    background: #ffffff;
    border-radius: var(--bhk-radius);
    box-shadow: var(--bhk-shadow-sm);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bhk-site .bhk-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bhk-shadow-md);
}
.bhk-site .bhk-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bhk-mint) 0%, var(--bhk-forest-2) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(22, 168, 168, 0.28);
}
.bhk-site .bhk-feature-title {
    color: var(--bhk-forest);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.bhk-site .bhk-feature-body {
    color: var(--bhk-body);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ═════════════════════════════════════════════════════════════
   SCREENSHOTS — desktop grid, mobile horizontal snap-scroll
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-screenshots {
    padding: 88px 0;
    background: #ffffff;
}
.bhk-site .bhk-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 8px 0;
}
.bhk-site .bhk-screenshot-item {
    position: relative;
    transition: transform 0.2s;
    cursor: zoom-in;
    outline: none;
}
.bhk-site .bhk-screenshot-item:hover { transform: translateY(-4px); }
.bhk-site .bhk-screenshot-item:focus-visible {
    outline: 2px solid var(--bhk-mint);
    outline-offset: 6px;
    border-radius: 12px;
}
.bhk-site .bhk-screenshot-item .bhk-phone-frame { max-width: 220px; }

/* Lightbox overlay — full-viewport backdrop for click-to-zoom on
   the "See it in action" screenshots. Single instance in the DOM;
   the JS in _screenshots.html.twig toggles `.bhk-lightbox--open`
   and swaps the img src. Kept CSS-only so a repaint isn't
   observable when opening; the transition class handles the
   fade-in. */
.bhk-site .bhk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: rgba(15, 26, 23, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.bhk-site .bhk-lightbox--open {
    display: flex;
    opacity: 1;
    animation: bhk-lightbox-fade 0.2s ease;
}
@keyframes bhk-lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.bhk-site .bhk-lightbox__img {
    display: block;
    max-width: min(100%, 480px);
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    animation: bhk-lightbox-pop 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes bhk-lightbox-pop {
    from { transform: scale(0.88); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.bhk-site .bhk-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}
.bhk-site .bhk-lightbox__close:hover,
.bhk-site .bhk-lightbox__close:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    outline: none;
}

/* ═════════════════════════════════════════════════════════════
   VIDEO
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-video {
    padding: 88px 0;
    background: var(--bhk-sand-2);
}
.bhk-site .bhk-video-frame {
    border-radius: var(--bhk-radius-lg);
    overflow: hidden;
    box-shadow: var(--bhk-shadow-lg);
    background: #000;
}
.bhk-site .bhk-video-frame iframe { border: 0; }

/* ═════════════════════════════════════════════════════════════
   GET THE APP — forest conversion band
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-getapp {
    padding: 96px 0;
    background:
        radial-gradient(600px 400px at 20% 20%, rgba(22, 168, 168, 0.20) 0%, transparent 70%),
        radial-gradient(500px 320px at 80% 80%, rgba(22, 168, 168, 0.12) 0%, transparent 70%),
        var(--bhk-forest);
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    overflow: hidden;
}
.bhk-site .bhk-getapp-title {
    color: #ffffff;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.bhk-site .bhk-getapp-lede {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 28px;
}
.bhk-site .bhk-getapp-mobile {
    max-width: 240px;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.35));
}

/* ═════════════════════════════════════════════════════════════
   TESTIMONIALS — magazine-style cards with big pull quote
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-testimonials {
    padding: 88px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bhk-sand) 100%);
}
.bhk-site .bhk-testimonial-card {
    position: relative;
    padding: 44px 32px 28px;
    margin: 0;
    background: #ffffff;
    border-radius: var(--bhk-radius);
    box-shadow: var(--bhk-shadow-md);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.bhk-site .bhk-testimonial-card:hover {
    box-shadow: var(--bhk-shadow-lg);
    transform: translateY(-3px);
}
.bhk-site .bhk-testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -6px;
    left: 22px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 108px;
    line-height: 1;
    color: var(--bhk-mint);
    opacity: 0.30;
    pointer-events: none;
}
.bhk-site .bhk-testimonial-quote {
    margin: 0 0 24px 0;
    padding: 0;
    color: var(--bhk-ink);
    font-size: 15.5px;
    line-height: 1.7;
    font-weight: 400;
    flex-grow: 1;
}
.bhk-site .bhk-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--bhk-line);
}
.bhk-site .bhk-testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bhk-mint) 0%, var(--bhk-forest) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(22, 168, 168, 0.30);
}
.bhk-site .bhk-testimonial-author {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.bhk-site .bhk-testimonial-author strong {
    color: var(--bhk-forest);
    font-size: 15px;
    font-weight: 700;
}
.bhk-site .bhk-testimonial-role {
    color: var(--bhk-muted);
    font-size: 13px;
}

/* ═════════════════════════════════════════════════════════════
   CONTACT — 3 tiles, tap-friendly
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-contact {
    padding: 88px 0;
    background: #ffffff;
}
.bhk-site .bhk-contact-card {
    display: block;
    height: 100%;
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid var(--bhk-line);
    border-radius: var(--bhk-radius);
    text-decoration: none;
    color: var(--bhk-body);
    box-shadow: var(--bhk-shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-align: center;
}
.bhk-site .bhk-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bhk-shadow-md);
    border-color: transparent;
}
.bhk-site .bhk-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--bhk-mint-soft);
    color: var(--bhk-mint-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}
.bhk-site .bhk-contact-card h5 {
    color: var(--bhk-forest);
    font-weight: 700;
    margin-bottom: 8px;
}
.bhk-site .bhk-contact-card p {
    color: var(--bhk-body);
    margin: 0;
    line-height: 1.5;
}

/* ═════════════════════════════════════════════════════════════
   CATALOG SURFACES (medicines / diseases / investigations)
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-catalog {
    padding: 72px 0;
    background: #ffffff;
}
/* Catalog list + detail side-panel phone frames — narrower than
   the hero + studio slots so they sit balanced in the col-lg-3
   aside. */
.bhk-site .bhk-catalog .bhk-phone-frame,
.bhk-site .bhk-detail .bhk-phone-frame { max-width: 240px; }
.bhk-site .bhk-catalog-item {
    padding: 18px 20px !important;
    background: #ffffff;
    border: 1px solid var(--bhk-line) !important;
    border-radius: var(--bhk-radius-sm);
    box-shadow: var(--bhk-shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.bhk-site .bhk-catalog-item:hover {
    transform: translateY(-2px);
    border-color: var(--bhk-mint) !important;
    box-shadow: var(--bhk-shadow-md);
}
.bhk-site .bhk-catalog-item a {
    color: var(--bhk-forest);
    text-decoration: none;
}
.bhk-site .bhk-catalog-item a:hover { color: var(--bhk-mint-2); }

.bhk-site .bhk-catalog-category {
    padding: 24px !important;
    border: 1px solid var(--bhk-line) !important;
    border-radius: var(--bhk-radius);
    background: #ffffff;
    box-shadow: var(--bhk-shadow-sm);
}
.bhk-site .bhk-catalog-category h4 {
    color: var(--bhk-forest);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bhk-mint);
    margin-bottom: 14px;
}

/* ═════════════════════════════════════════════════════════════
   DETAIL PAGES (medicine / disease / investigation)
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-detail {
    padding: 72px 0;
    background: #ffffff;
}
.bhk-site .bhk-detail-block h4 {
    color: var(--bhk-forest);
    font-weight: 700;
}
.bhk-site .bhk-rich {
    color: var(--bhk-body);
    line-height: 1.75;
}
.bhk-site .bhk-rich p { margin-bottom: 0.85rem; }
.bhk-site .bhk-rich ul,
.bhk-site .bhk-rich ol { padding-left: 1.3rem; margin-bottom: 0.85rem; }

.bhk-site .bhk-detail-teaser {
    background: var(--bhk-sand) !important;
    border-radius: var(--bhk-radius);
    border-left: 4px solid var(--bhk-mint);
    box-shadow: var(--bhk-shadow-sm);
}
.bhk-site .bhk-detail-teaser h5 {
    color: var(--bhk-forest);
    font-weight: 700;
}

.bhk-site .bhk-btn-download {
    background: var(--bhk-forest);
    color: #ffffff !important;
    border: 1px solid var(--bhk-forest);
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 12px;
    transition: background 0.15s, border-color 0.15s;
}
.bhk-site .bhk-btn-download:hover {
    background: var(--bhk-mint-2);
    border-color: var(--bhk-mint-2);
}

/* ═════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════ */
.bhk-site .bhk-footer {
    background: var(--bhk-forest);
    color: rgba(255, 255, 255, 0.82);
    padding: 56px 0 40px;
}
.bhk-site .bhk-footer ul a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.bhk-site .bhk-footer ul a:hover { color: var(--bhk-mint); }
.bhk-site .bhk-footer .bhk-footer-socials a {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 6px;
    transition: background 0.15s, color 0.15s;
}
.bhk-site .bhk-footer .bhk-footer-socials a:hover {
    background: var(--bhk-mint);
    color: var(--bhk-forest);
}
.bhk-site .bhk-footer h4 a {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
}
.bhk-site .bhk-footer .small a { color: var(--bhk-mint); }

/* ═════════════════════════════════════════════════════════════
   MOBILE — first-class stack
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    /* Nav collapse on mobile — links wrap into a stacked panel
       with soft mint separators */
    .bhk-site .bhk-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid var(--bhk-line);
        box-shadow: var(--bhk-shadow-md);
    }
    .bhk-site .bhk-navbar .navbar-nav .nav-item {
        border-bottom: 1px solid var(--bhk-line);
    }
    .bhk-site .bhk-navbar .navbar-nav .nav-item:last-child { border: 0; }
    .bhk-site .bhk-navbar .nav-link { border-radius: 6px; }

    /* Screenshots swipe-scroll on smaller viewports */
    .bhk-site .bhk-screenshot-grid {
        grid-template-columns: repeat(6, 220px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 8px 4px 16px;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .bhk-site .bhk-screenshot-item { scroll-snap-align: start; }
}

@media (max-width: 767.98px) {
    .bhk-site .bhk-hero { padding: 56px 0 64px; }
    .bhk-site .bhk-hero-visual { padding: 12px; margin-top: 12px; }
    .bhk-site .bhk-hero-mobile { max-width: 200px; }
    .bhk-site .bhk-hero-lede { font-size: 1.05rem; }
    .bhk-site .bhk-hero-proof__item strong { font-size: 20px; }
    .bhk-site .bhk-about,
    .bhk-site .bhk-features,
    .bhk-site .bhk-screenshots,
    .bhk-site .bhk-video,
    .bhk-site .bhk-testimonials,
    .bhk-site .bhk-contact {
        padding: 56px 0;
    }
    .bhk-site .bhk-studio { padding: 64px 0; }
    .bhk-site .bhk-studio-visual { padding: 12px; margin-bottom: 12px; }
    .bhk-site .bhk-studio-mobile { max-width: 200px; }
    .bhk-site .bhk-getapp { padding: 72px 0; }
    .bhk-site .bhk-getapp-lede { font-size: 1rem; }
    .bhk-site .bhk-section-title { font-size: 1.65rem; }
    .bhk-site .bhk-metric-value { font-size: 1.7rem; }
    .bhk-site .bhk-metrics { padding: 20px 0 24px; }
    .bhk-site .bhk-testimonial-card { padding: 40px 22px 24px; }
    .bhk-site .bhk-testimonial-card::before {
        font-size: 84px;
        top: -2px;
        left: 14px;
    }
}
