/* BizHub Landing v3 — refined palette & motion */
:root {
    /* Core palette — matches logo cyan → blue */
    --bh-ink: #050810;
    --bh-navy: #0a1020;
    --bh-slate: #141c2e;
    --bh-blue: #3b82f6;
    --bh-blue-deep: #2563eb;
    --bh-indigo: #6366f1;
    --bh-teal: #14b8a6;
    --bh-cyan: #22d3ee;
    --bh-cyan-bright: #67e8f9;

    /* Surfaces */
    --bh-surface: #ffffff;
    --bh-surface-2: #f4f7fc;
    --bh-surface-3: #e8eef8;
    --bh-text: #0f172a;
    --bh-text-muted: #64748b;
    --bh-border: rgba(15, 23, 42, 0.08);

    /* Gradients */
    --bh-gradient: linear-gradient(135deg, #22d3ee 0%, #3b82f6 45%, #6366f1 100%);
    --bh-gradient-hover: linear-gradient(135deg, #67e8f9 0%, #60a5fa 45%, #818cf8 100%);
    --bh-gradient-text: linear-gradient(120deg, #67e8f9 0%, #93c5fd 35%, #c4b5fd 70%, #22d3ee 100%);
    --bh-hero-bg: linear-gradient(160deg, #050810 0%, #0c1830 35%, #0a1628 65%, #060d18 100%);

    --bh-font: 'Cairo', 'Inter', sans-serif;
    --bh-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --bh-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --bh-nav-h: 78px;
    --bh-radius: 20px;
    --bh-radius-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--bh-nav-h);
}

body.bh-landing {
    font-family: var(--bh-font);
    overflow-x: hidden;
    background: var(--bh-surface);
    color: var(--bh-text);
    -webkit-font-smoothing: antialiased;
}

/* ── Scroll progress ── */
.bh-scroll-progress {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    height: 3px;
    width: 0%;
    background: var(--bh-gradient);
    z-index: 9999;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
    transition: width .08s linear;
}

/* ── Logo & brand lockup ── */
.bh-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: transform .3s var(--bh-ease), opacity .3s;
}

a.bh-brand:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.bh-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,.12);
    padding: 6px;
}

.bh-nav.is-scrolled .bh-brand__mark {
    background: linear-gradient(145deg, #fff, var(--bh-surface-2));
    border-color: var(--bh-border);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.bh-brand__img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent !important;
    -webkit-user-drag: none;
    user-select: none;
}

.bh-brand__copy {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
    line-height: 1.2;
}

.bh-brand__name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    white-space: nowrap;
}

.bh-nav.is-scrolled .bh-brand__name {
    color: var(--bh-text);
}

.bh-brand__en {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201, 184, 150, 0.75);
}

.bh-nav.is-scrolled .bh-brand__en {
    color: var(--bh-text-muted);
}

.bh-brand__tag {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

/* Nav */
.bh-brand--nav .bh-brand__copy { display: flex; }
.bh-brand--nav .bh-brand__en { display: none; }

@media (min-width: 768px) {
    .bh-brand--nav .bh-brand__copy { display: flex; }
    .bh-brand--nav .bh-brand__en { display: block; }
    .bh-brand--nav .bh-brand__img { height: 40px; width: 40px; }
}

@media (min-width: 992px) {
    .bh-brand--nav .bh-brand__en { display: block; }
}

/* Hero */
.bh-brand--hero {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.bh-brand--hero .bh-logo-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(340px, 78vw);
    aspect-ratio: 1;
    padding: 0;
}

.bh-logo-stage__pedestal {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 12%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(34, 211, 238, 0.25) 0%, transparent 70%);
    filter: blur(8px);
    animation: bh-pulse-glow 5s ease-in-out infinite;
}

.bh-brand__frame {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62%;
    aspect-ratio: 1;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(34, 211, 238, 0.08) inset,
        0 1px 0 rgba(255,255,255,.15) inset;
    padding: 1.25rem;
}

.bh-brand--hero .bh-brand__img {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 180px;
    filter: drop-shadow(0 16px 40px rgba(34, 211, 238, 0.3));
    animation: bh-float 7s ease-in-out infinite;
}

.bh-brand__copy--hero {
    text-align: center;
    align-items: center;
    gap: .35rem;
}

.bh-brand__copy--hero .bh-brand__name {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    font-weight: 800;
    background: linear-gradient(135deg, #f5efe6 0%, #fff 40%, #c9b896 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bh-brand__copy--hero .bh-brand__en {
    font-size: 0.68rem;
    letter-spacing: 0.4em;
}

.bh-brand__copy--hero .bh-brand__tag {
    margin-top: .25rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA */
.bh-brand--cta {
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.5rem;
}

.bh-brand--cta .bh-brand__mark {
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.bh-brand--cta .bh-brand__img { height: 64px; width: 64px; }
.bh-brand--cta .bh-brand__name { font-size: 1.35rem; }
.bh-brand--cta .bh-brand__en { color: rgba(201, 184, 150, 0.6); }

/* Footer */
.bh-brand--footer {
    vertical-align: middle;
    margin-inline-end: .5rem;
}

.bh-brand--footer .bh-brand__mark {
    padding: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.bh-brand--footer .bh-brand__img { height: 32px; width: 32px; }

/* Modal */
.bh-brand--modal {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.bh-brand--modal .bh-brand__mark {
    padding: 8px;
    border-radius: 16px;
    background: var(--bh-surface-2);
    border-color: var(--bh-border);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.bh-brand--modal .bh-brand__img { height: 56px; width: 56px; }
.bh-brand--modal .bh-brand__name { color: var(--bh-text); font-size: 1.15rem; }
.bh-brand--modal .bh-brand__en { color: var(--bh-text-muted); }

/* Drawer */
.bh-brand--drawer {
    flex: 1;
    min-width: 0;
}

.bh-brand--drawer .bh-brand__mark {
    padding: 5px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.bh-brand--drawer .bh-brand__img { height: 34px; width: 34px; }
.bh-brand--drawer .bh-brand__name { font-size: .95rem; }
.bh-brand--drawer .bh-brand__en { font-size: .58rem; }

/* Legacy aliases */
.bh-logo {
    display: block;
    height: auto;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    border: none;
    -webkit-user-drag: none;
    user-select: none;
}

.bh-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    line-height: 0;
}

.bh-logo-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.bh-logo-stage__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.2);
    animation: bh-ring-spin 20s linear infinite;
}

.bh-logo-stage__ring::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(34,211,238,.5), transparent 30%);
    animation: bh-ring-spin 4s linear infinite;
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.bh-logo-stage__ring--2 {
    inset: 12%;
    border-color: rgba(99, 102, 241, 0.15);
    animation-direction: reverse;
    animation-duration: 14s;
}

.bh-logo-stage__glow {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,.18) 0%, rgba(59,130,246,.08) 45%, transparent 70%);
    animation: bh-pulse-glow 5s ease-in-out infinite;
}

.bh-logo-stage .bh-logo,
.bh-brand__frame .bh-brand__img {
    position: relative;
    z-index: 2;
}

@keyframes bh-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes bh-pulse-glow {
    0%, 100% { opacity: .5; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes bh-ring-spin {
    to { transform: rotate(360deg); }
}

/* ── Navbar shell ── */
.bh-nav-shell {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1100;
    padding-top: var(--bh-safe-top);
    pointer-events: none;
}

.bh-nav-shell > * {
    pointer-events: auto;
}

.bh-nav {
    position: relative;
    inset-inline: 0;
    top: 0;
    z-index: 2;
    height: var(--bh-nav-h);
    display: flex;
    align-items: center;
    transition: background .45s var(--bh-ease), box-shadow .45s var(--bh-ease);
}

.bh-nav:not(.is-scrolled) {
    background: transparent;
}

.bh-nav:not(.is-scrolled) .bh-nav__link {
    color: rgba(255, 255, 255, 0.78);
}

.bh-nav:not(.is-scrolled) .bh-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.bh-nav:not(.is-scrolled) .bh-btn--ghost {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.bh-nav:not(.is-scrolled) .bh-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.bh-nav:not(.is-scrolled) .bh-lang {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-nav:not(.is-scrolled) .bh-lang a { color: rgba(255, 255, 255, 0.6); }
.bh-nav:not(.is-scrolled) .bh-nav__toggle {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bh-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    box-shadow: 0 1px 0 var(--bh-border), 0 12px 40px rgba(5, 8, 16, 0.06);
}

.bh-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    position: relative;
    z-index: 1102;
}

.bh-nav__brand,
.bh-nav .bh-brand--nav {
    flex-shrink: 0;
}

.bh-nav__brand:hover { transform: none; }

.bh-nav .bh-brand--nav:hover {
    transform: translateY(-1px);
}

.bh-nav__drawer-head {
    display: none;
}

.bh-nav__links {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bh-nav__link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .85rem;
    border-radius: 11px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--bh-text-muted);
    text-decoration: none;
    transition: all .3s var(--bh-ease);
    position: relative;
}

.bh-nav__link span {
    flex: 1;
    min-width: 0;
}

.bh-nav__link:hover,
.bh-nav__link.is-active {
    color: var(--bh-blue-deep);
    background: rgba(59, 130, 246, 0.08);
}

.bh-lang {
    display: inline-flex;
    background: var(--bh-surface-2);
    border-radius: 11px;
    padding: 3px;
    gap: 2px;
}

.bh-lang a {
    padding: 6px 13px;
    border-radius: 9px;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--bh-text-muted);
    transition: all .3s var(--bh-ease);
}

.bh-lang a.active {
    background: var(--bh-gradient);
    color: #fff;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.35);
}

/* Buttons */
.bh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .62rem 1.3rem;
    border-radius: 13px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--bh-ease), box-shadow .35s;
}

.bh-btn--primary {
    background: var(--bh-gradient);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255,255,255,.2);
}

.bh-btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s;
}

.bh-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.45);
    color: #fff;
}

.bh-btn--primary:hover::after { transform: translateX(100%); }

.bh-btn--ghost {
    background: transparent;
    color: var(--bh-text-muted);
    border: 1.5px solid var(--bh-border);
}

.bh-btn--ghost:hover {
    border-color: var(--bh-blue);
    color: var(--bh-blue-deep);
    background: rgba(59, 130, 246, 0.05);
}

.bh-btn--glass {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.bh-btn--glass:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.bh-btn--lg { padding: .95rem 2.1rem; font-size: 1rem; border-radius: 16px; }

/* ── Hero ── */
.bh-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--bh-nav-h) + 2.5rem) 0 5rem;
    color: #fff;
    overflow: hidden;
    background: var(--bh-hero-bg);
}

.bh-hero__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bh-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 10% 15%, rgba(34, 211, 238, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 90% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 55% 45%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    animation: bh-mesh 20s ease-in-out infinite alternate;
}

@keyframes bh-mesh {
    0% { transform: scale(1) translate(0, 0); opacity: 1; }
    100% { transform: scale(1.08) translate(-1.5%, 2%); opacity: .85; }
}

.bh-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 15%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 15%, transparent 72%);
}

.bh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform;
}

.bh-orb--1 { width: 480px; height: 480px; background: #22d3ee; top: -12%; inset-inline-end: -8%; opacity: .22; }
.bh-orb--2 { width: 380px; height: 380px; background: #6366f1; bottom: -5%; inset-inline-start: -10%; opacity: .18; }
.bh-orb--3 { width: 240px; height: 240px; background: #3b82f6; top: 40%; inset-inline-start: 35%; opacity: .12; }

.bh-hero__content { position: relative; z-index: 2; }

.bh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .4rem 1rem .4rem .75rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--bh-cyan-bright);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.22);
    backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
    animation: bh-fade-up .9s var(--bh-ease) both;
}

.bh-hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bh-cyan);
    box-shadow: 0 0 10px var(--bh-cyan);
    animation: bh-blink 2s ease-in-out infinite;
}

@keyframes bh-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}

.bh-hero__title {
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-bottom: 1.25rem;
    animation: bh-fade-up .9s var(--bh-ease) .08s both;
}

.bh-hero__title-accent {
    display: block;
    background: var(--bh-gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bh-shimmer 6s linear infinite;
}

@keyframes bh-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.bh-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    max-width: 32rem;
    margin-bottom: 2.25rem;
    animation: bh-fade-up .9s var(--bh-ease) .16s both;
}

.bh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    animation: bh-fade-up .9s var(--bh-ease) .24s both;
}

.bh-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
    margin-top: 3rem;
    max-width: 420px;
    animation: bh-fade-up .9s var(--bh-ease) .32s both;
}

@media (max-width: 480px) {
    .bh-hero__stats { grid-template-columns: 1fr; max-width: 100%; }
}

.bh-stat-pill {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: all .4s var(--bh-ease);
}

.bh-stat-pill:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.bh-stat-pill__val {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    background: var(--bh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bh-stat-pill__label {
    font-size: .72rem;
    color: rgba(255, 255, 255, 0.48);
    margin-top: .3rem;
    letter-spacing: .02em;
}

.bh-hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    animation: bh-fade-up 1s var(--bh-ease) .2s both;
}

.bh-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: bh-fade-up 1s var(--bh-ease) .6s both;
}

.bh-scroll-hint__chevron {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,.3);
    border-bottom: 2px solid rgba(255,255,255,.3);
    transform: rotate(45deg);
    animation: bh-bounce 2s ease-in-out infinite;
}

@keyframes bh-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

@keyframes bh-fade-up {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Sections ── */
.bh-section {
    padding: 6rem 0;
    position: relative;
}

.bh-section--light { background: var(--bh-surface); }
.bh-section--muted {
    background: var(--bh-surface-2);
    border-block: 1px solid var(--bh-border);
}

.bh-section--gradient {
    background: linear-gradient(180deg, var(--bh-surface-2) 0%, #eef4ff 50%, var(--bh-surface) 100%);
}

.bh-section__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.75rem;
}

.bh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--bh-blue-deep);
    margin-bottom: .85rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.bh-section__title {
    font-size: clamp(1.85rem, 3.8vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .85rem;
    color: var(--bh-text);
}

.bh-section__desc {
    color: var(--bh-text-muted);
    line-height: 1.75;
    margin: 0;
    font-size: 1.05rem;
}

/* Reveal */
.bh-reveal {
    opacity: 0;
    transform: translateY(36px) scale(.98);
    transition: opacity .75s var(--bh-ease), transform .75s var(--bh-ease);
}

.bh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bh-reveal--delay-1 { transition-delay: .1s; }
.bh-reveal--delay-2 { transition-delay: .2s; }
.bh-reveal--delay-3 { transition-delay: .3s; }

/* Cards */
.bh-card {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius);
    padding: 1.85rem;
    height: 100%;
    transition: transform .45s var(--bh-ease), box-shadow .45s, border-color .45s;
    position: relative;
    overflow: hidden;
}

.bh-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--bh-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--bh-ease);
}

html[dir="rtl"] .bh-card::before { transform-origin: right; }

.bh-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.15);
}

.bh-card:hover::before { transform: scaleX(1); }

.bh-card[data-tilt] { transform-style: preserve-3d; }

.bh-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34,211,238,.12), rgba(59,130,246,.12));
    color: var(--bh-blue-deep);
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    transition: transform .4s var(--bh-ease-spring);
}

.bh-card:hover .bh-card__icon { transform: scale(1.1) rotate(-4deg); }

.bh-step-num {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--bh-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Platforms */
.bh-platform {
    border-radius: var(--bh-radius-lg);
    overflow: hidden;
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    margin-bottom: 1.35rem;
    transition: transform .45s var(--bh-ease), box-shadow .45s;
    position: relative;
}

.bh-platform::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--platform-accent, var(--bh-gradient));
}

.bh-platform:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 24px 48px rgba(59, 130, 246, 0.1);
}

html[dir="rtl"] .bh-platform:hover { transform: translateY(-6px) translateX(-4px); }

.bh-platform--hudoor { --platform-accent: linear-gradient(180deg, #14b8a6, #22d3ee); }
.bh-platform--taqyim { --platform-accent: linear-gradient(180deg, #3b82f6, #6366f1); }
.bh-platform--tashgheel { --platform-accent: linear-gradient(180deg, #6366f1, #a78bfa); }

.bh-platform__body { padding: 2.1rem 2.4rem; }

.bh-platform__tag {
    display: inline-block;
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .85rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--bh-blue-deep);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

/* Stats strip */
.bh-stats-strip {
    background: var(--bh-navy);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bh-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(34,211,238,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 50%, rgba(99,102,241,.1) 0%, transparent 60%);
}

.bh-stats-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.bh-stat-big {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    border-radius: var(--bh-radius);
    transition: background .3s;
}

.bh-stat-big:hover { background: rgba(255,255,255,.04); }

.bh-stat-big__num {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    background: var(--bh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sectors */
.bh-sector {
    border-radius: var(--bh-radius);
    padding: 2.25rem 1.5rem;
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    text-align: center;
    transition: all .4s var(--bh-ease);
    height: 100%;
    cursor: default;
}

.bh-sector:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.bh-sector__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    background: linear-gradient(135deg, rgba(34,211,238,.1), rgba(99,102,241,.1));
    color: var(--bh-blue-deep);
    transition: transform .4s var(--bh-ease-spring);
}

.bh-sector:hover .bh-sector__icon {
    transform: scale(1.12) rotate(5deg);
    background: var(--bh-gradient);
    color: #fff;
}

/* CTA */
.bh-cta {
    background: var(--bh-hero-bg);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bh-cta__inner { position: relative; z-index: 2; }

.bh-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.bh-footer .col-md-6:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem .65rem;
}

@media (min-width: 768px) {
    .bh-footer .col-md-6:first-child {
        justify-content: flex-start;
    }
}

/* Footer */
.bh-footer {
    background: var(--bh-ink);
    color: rgba(255, 255, 255, 0.5);
    padding: 2.25rem 0;
    font-size: .86rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bh-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color .2s;
}

.bh-footer a:hover { color: var(--bh-cyan); }

/* Modal */
.bh-modal .modal-content {
    border-radius: var(--bh-radius-lg) !important;
    border: 1px solid var(--bh-border) !important;
}

/* Mobile toggle */
.bh-nav__toggle {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    border: 1.5px solid var(--bh-border);
    background: var(--bh-surface);
    color: var(--bh-text);
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    z-index: 1103;
    -webkit-tap-highlight-color: transparent;
    transition: all .3s var(--bh-ease);
}

.bh-nav__toggle:active {
    transform: scale(0.94);
}

@media (min-width: 992px) {
    .bh-nav-shell {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding-inline: 1.5rem;
        height: calc(var(--bh-nav-h) + var(--bh-safe-top));
    }

    .bh-nav-shell.is-scrolled {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px) saturate(1.6);
        -webkit-backdrop-filter: blur(20px) saturate(1.6);
        box-shadow: 0 1px 0 var(--bh-border), 0 12px 40px rgba(5, 8, 16, 0.06);
    }

    .bh-nav {
        flex: 0 0 auto;
        height: var(--bh-nav-h);
        width: auto;
        padding-inline: 0;
    }

    .bh-nav__inner {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        padding-inline: 0 !important;
    }

    .bh-nav__collapse {
        display: flex !important;
        align-items: center;
        gap: 1.25rem;
        flex: 1;
        justify-content: flex-end;
        position: static;
        width: auto;
        max-width: 1140px;
        height: auto;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        overflow: visible;
    }

    .bh-nav__links { flex-direction: row; }
    .bh-nav__drawer-head { display: none !important; }
}

@media (max-width: 991px) {
    .bh-nav__toggle { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .bh-reveal { opacity: 1; transform: none; }
    .bh-loader { display: none !important; }
    body.bh-loading-active { overflow: auto !important; }
}

/* ── Landing v5: Luxury loader (no logo) ── */
body.bh-loading-active { overflow: hidden; }

.bh-loader {
    --bh-lux-gold: #c9b896;
    --bh-lux-gold-light: #e8dcc8;
    --bh-lux-ink: #030508;
    --bh-lux-ease: cubic-bezier(0.76, 0, 0.24, 1);
    --bh-lux-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bh-loader.is-done {
    pointer-events: none;
    visibility: hidden;
}

.bh-loader__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 45%, rgba(201, 184, 150, 0.07) 0%, transparent 55%),
        linear-gradient(168deg, #030508 0%, #0a0f18 38%, #060a12 72%, #020305 100%);
    z-index: 0;
}

.bh-loader__ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bh-loader__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: bh-lux-orb-in 2s var(--bh-lux-ease-out) forwards;
}

.bh-loader__orb--1 {
    width: 420px;
    height: 420px;
    top: 15%;
    left: 20%;
    background: rgba(201, 184, 150, 0.12);
    animation-delay: .1s;
}

.bh-loader__orb--2 {
    width: 360px;
    height: 360px;
    bottom: 10%;
    right: 15%;
    background: rgba(34, 211, 238, 0.06);
    animation-delay: .35s;
}

.bh-loader__orb--3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(99, 102, 241, 0.05);
    animation-delay: .55s;
}

@keyframes bh-lux-orb-in {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.bh-loader__orb--3 {
    animation-name: bh-lux-orb-center;
}

@keyframes bh-lux-orb-center {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.bh-loader__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bh-loader__stage {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    transition: opacity .7s var(--bh-lux-ease-out), transform .9s var(--bh-lux-ease-out), filter .7s ease;
}

.bh-loader.is-exiting .bh-loader__stage {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(6px);
}

.bh-loader__sigil {
    width: min(140px, 32vw);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: bh-lux-sigil 1.4s var(--bh-lux-ease-out) .15s forwards;
}

.bh-loader__sigil svg {
    width: 100%;
    height: auto;
    animation: bh-lux-sigil-spin 28s linear infinite;
}

@keyframes bh-lux-sigil {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bh-lux-sigil-spin {
    to { transform: rotate(360deg); }
}

.bh-loader__emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2rem);
    margin-bottom: 1.25rem;
}

.bh-loader__rule {
    display: block;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--bh-lux-gold-light), var(--bh-lux-gold), transparent);
    opacity: 0.7;
    flex-shrink: 0;
}

.bh-loader__rule--start {
    animation: bh-lux-rule-grow 1.1s var(--bh-lux-ease-out) .6s forwards;
}

.bh-loader__rule--end {
    animation: bh-lux-rule-grow 1.1s var(--bh-lux-ease-out) .75s forwards;
}

@keyframes bh-lux-rule-grow {
    from { width: 0; opacity: 0; }
    to { width: clamp(40px, 12vw, 72px); opacity: 0.7; }
}

.bh-loader__wordmark {
    overflow: hidden;
}

.bh-loader__title {
    font-size: clamp(2.4rem, 9vw, 3.75rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin: 0;
    background: linear-gradient(135deg, #f5efe6 0%, #ffffff 35%, #d4c4a8 70%, #b8a078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
    animation: bh-lux-title 1.3s var(--bh-lux-ease-out) .45s forwards;
}

.bh-loader__latin {
    font-size: clamp(0.65rem, 2vw, 0.78rem);
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(201, 184, 150, 0.55);
    margin: 0.65rem 0 0;
    padding-inline-start: 0.45em;
    opacity: 0;
    animation: bh-lux-sub 1s var(--bh-lux-ease-out) 1s forwards;
}

.bh-loader__tagline {
    font-size: clamp(0.82rem, 2.5vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.04em;
    margin: 0;
    opacity: 0;
    animation: bh-lux-sub 1s var(--bh-lux-ease-out) 1.15s forwards;
}

@keyframes bh-lux-title {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes bh-lux-sub {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.bh-loader__foot {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    z-index: 4;
    padding: 0 clamp(1.5rem, 6vw, 4rem) clamp(1.75rem, 5vw, 2.5rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: opacity .5s ease;
}

.bh-loader.is-exiting .bh-loader__foot {
    opacity: 0;
}

.bh-loader__progress {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.bh-loader__progress-fill {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--bh-lux-gold), #fff, var(--bh-lux-gold-light));
    box-shadow: 0 0 12px rgba(201, 184, 150, 0.45);
    transition: width .12s linear;
}

.bh-loader__pct {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(201, 184, 150, 0.45);
    min-width: 2ch;
    font-variant-numeric: tabular-nums;
}

.bh-loader__curtain {
    position: absolute;
    inset-inline: 0;
    height: 50.5%;
    background: var(--bh-lux-ink);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: transform 1.15s var(--bh-lux-ease), opacity .35s ease;
    will-change: transform;
}

.bh-loader.is-exiting {
    background: transparent;
}

.bh-loader.is-exiting .bh-loader__curtain {
    opacity: 1;
}

.bh-loader__curtain--top { top: 0; }
.bh-loader__curtain--bottom { bottom: 0; }

.bh-loader__curtain--top::after,
.bh-loader__curtain--bottom::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 184, 150, 0.35), transparent);
}

.bh-loader__curtain--top::after { bottom: 0; }
.bh-loader__curtain--bottom::before { top: 0; }

.bh-loader.is-exiting .bh-loader__curtain--top {
    transform: translateY(-100%);
}

.bh-loader.is-exiting .bh-loader__curtain--bottom {
    transform: translateY(100%);
}

.bh-loader.is-exiting .bh-loader__ambient,
.bh-loader.is-exiting .bh-loader__veil,
.bh-loader.is-exiting .bh-loader__grain {
    opacity: 0;
    transition: opacity .55s ease;
}

@media (prefers-reduced-motion: reduce) {
    .bh-loader__sigil svg { animation: none; }
    .bh-loader__title,
    .bh-loader__latin,
    .bh-loader__tagline,
    .bh-loader__sigil,
    .bh-loader__rule,
    .bh-loader__orb {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    .bh-loader__rule { width: 48px !important; }
}

/* ── Hero lead ── */
.bh-hero__lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.85;
    max-width: 580px;
    margin-bottom: 2rem;
}

/* ── Intro block ── */
.bh-intro-block {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius-lg);
    padding: 2.5rem 2.75rem;
    box-shadow: 0 24px 60px rgba(5, 8, 16, 0.06);
    position: relative;
    overflow: hidden;
}

.bh-intro-block::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 4px;
    height: 100%;
    background: var(--bh-gradient);
}

.bh-intro-block__p {
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--bh-text-muted);
    margin-bottom: 1.25rem;
}

/* ── Vision / Mission ── */
.bh-vm-card {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius-lg);
    padding: 2.25rem;
    height: 100%;
    transition: all .45s var(--bh-ease);
    position: relative;
    overflow: hidden;
}

.bh-vm-card::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: var(--bh-gradient);
}

.bh-vm-card--mission::after {
    background: linear-gradient(135deg, #006c35 0%, #14b8a6 100%);
}

.bh-vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(59, 130, 246, 0.12);
}

.bh-vm-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(34,211,238,.12), rgba(99,102,241,.12));
    color: var(--bh-blue-deep);
    margin-bottom: 1.25rem;
}

.bh-vm-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.bh-vm-card__text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--bh-text-muted);
}

/* ── Service cards ── */
.bh-service-card {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all .45s var(--bh-ease);
}

.bh-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.18);
}

.bh-service-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.bh-service-card__num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--bh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .85;
}

.bh-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: var(--bh-gradient);
    color: #fff;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.bh-service-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .65rem;
}

.bh-service-card__desc {
    font-size: .95rem;
    color: var(--bh-text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.bh-service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .45rem;
}

.bh-service-card__list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .88rem;
    color: var(--bh-text);
    line-height: 1.5;
}

.bh-service-card__list li i {
    color: var(--bh-teal);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Dark section ── */
.bh-section--dark {
    background: var(--bh-hero-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bh-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34,211,238,.08), transparent);
    pointer-events: none;
}

.bh-eyebrow--light {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--bh-cyan) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ── Solution cards ── */
.bh-solution-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bh-radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .45s var(--bh-ease);
}

.bh-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--bh-solution-accent, var(--bh-cyan));
}

.bh-solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.bh-solution-card__num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bh-solution-accent, var(--bh-cyan));
    opacity: .9;
    display: block;
    margin-bottom: .35rem;
}

.bh-solution-card__tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 1rem;
}

.bh-solution-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: color-mix(in srgb, var(--bh-solution-accent, #22d3ee) 20%, transparent);
    color: var(--bh-solution-accent, var(--bh-cyan));
    margin-bottom: 1rem;
}

.bh-solution-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
}

.bh-solution-card__desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bh-solution-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .35rem;
}

.bh-solution-card__list li {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .84rem;
    color: rgba(255, 255, 255, 0.72);
}

.bh-solution-card__list li i {
    color: var(--bh-solution-accent, var(--bh-cyan));
    font-size: 1.2rem;
}

/* ── Tech block ── */
.bh-tech-block {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: 0 16px 40px rgba(5, 8, 16, 0.05);
}

.bh-tech-block p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--bh-text-muted);
    margin-bottom: 1rem;
}

.bh-tech-block p:last-child { margin-bottom: 0; }

.bh-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.bh-tech-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 700;
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    color: var(--bh-text);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.bh-tech-pill i { color: var(--bh-teal); }

/* ── Platform cards ── */
.bh-platform-card {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all .45s var(--bh-ease);
    border-top: 3px solid var(--bh-platform-accent, var(--bh-blue));
}

.bh-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(59, 130, 246, 0.12);
}

.bh-platform-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: color-mix(in srgb, var(--bh-platform-accent, #3b82f6) 12%, white);
    color: var(--bh-platform-accent, var(--bh-blue-deep));
    margin-bottom: 1rem;
}

.bh-platform-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.bh-platform-card__desc {
    font-size: .92rem;
    color: var(--bh-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bh-platform-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .35rem;
}

.bh-platform-card__list li {
    display: flex;
    align-items: center;
    gap: .15rem;
    font-size: .86rem;
    color: var(--bh-text);
}

.bh-platform-card__list li i {
    color: var(--bh-platform-accent, var(--bh-blue));
    font-size: 1.1rem;
}

/* ── Quote card ── */
.bh-quote-card {
    background: var(--bh-surface);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius-lg);
    padding: 2rem 2.5rem;
    max-width: 640px;
    position: relative;
    box-shadow: 0 16px 40px rgba(5, 8, 16, 0.06);
}

.bh-quote-card__icon {
    font-size: 2rem;
    color: var(--bh-cyan);
    opacity: .5;
    display: block;
    margin-bottom: .75rem;
}

.bh-quote-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--bh-text-muted);
    font-weight: 500;
}

@media (max-width: 767px) {
    .bh-intro-block { padding: 1.75rem 1.5rem; }
    .bh-hero__lead { font-size: .95rem; }
    .bh-service-card__num { font-size: 2rem; }
}

/* ══════════════════════════════════════════
   Landing v6 — Luxury polish + Mobile
   ══════════════════════════════════════════ */

:root {
    --bh-lux-gold: #c9b896;
    --bh-lux-gold-light: #e8dcc8;
    --bh-lux-champagne: #f5efe6;
    --bh-safe-bottom: env(safe-area-inset-bottom, 0px);
    --bh-safe-top: env(safe-area-inset-top, 0px);
}

body.bh-landing {
    padding-bottom: calc(var(--bh-safe-bottom));
}

body.bh-nav-open {
    overflow: hidden;
    touch-action: none;
}

/* Loader extras */
.bh-loader__sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bh-loader__sparkles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--bh-lux-gold-light);
    opacity: 0;
    animation: bh-lux-sparkle 4s ease-in-out infinite;
}

.bh-loader__sparkles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.bh-loader__sparkles span:nth-child(2) { top: 72%; left: 22%; animation-delay: .8s; }
.bh-loader__sparkles span:nth-child(3) { top: 28%; right: 15%; animation-delay: 1.4s; }
.bh-loader__sparkles span:nth-child(4) { bottom: 22%; right: 28%; animation-delay: 2s; }
.bh-loader__sparkles span:nth-child(5) { top: 48%; left: 48%; animation-delay: 2.6s; }

@keyframes bh-lux-sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.6; transform: scale(1); box-shadow: 0 0 8px rgba(232, 220, 200, 0.8); }
}

.bh-loader__corner {
    position: absolute;
    width: clamp(28px, 8vw, 48px);
    height: clamp(28px, 8vw, 48px);
    z-index: 3;
    opacity: 0;
    animation: bh-lux-corner 1.2s var(--bh-lux-ease-out, cubic-bezier(0.16, 1, 0.3, 1)) .3s forwards;
}

.bh-loader__corner::before,
.bh-loader__corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, var(--bh-lux-gold), transparent);
}

.bh-loader__corner--tl { top: max(1.25rem, var(--bh-safe-top)); inset-inline-start: 1.25rem; }
.bh-loader__corner--tr { top: max(1.25rem, var(--bh-safe-top)); inset-inline-end: 1.25rem; transform: scaleX(-1); }
.bh-loader__corner--bl { bottom: max(4.5rem, calc(3rem + var(--bh-safe-bottom))); inset-inline-start: 1.25rem; transform: scaleY(-1); }
.bh-loader__corner--br { bottom: max(4.5rem, calc(3rem + var(--bh-safe-bottom))); inset-inline-end: 1.25rem; transform: scale(-1); }

.bh-loader__corner::before { top: 0; inset-inline-start: 0; width: 100%; height: 1px; }
.bh-loader__corner::after { top: 0; inset-inline-start: 0; width: 1px; height: 100%; background: linear-gradient(180deg, var(--bh-lux-gold), transparent); }

@keyframes bh-lux-corner {
    from { opacity: 0; }
    to { opacity: 0.55; }
}

.bh-loader__shimmer {
    width: min(200px, 55vw);
    height: 1px;
    margin: 1.5rem auto 0;
    background: linear-gradient(90deg, transparent, var(--bh-lux-gold-light), transparent);
    opacity: 0;
    animation: bh-lux-shimmer-line 2.5s ease-in-out 1.3s infinite;
}

@keyframes bh-lux-shimmer-line {
    0%, 100% { opacity: 0; transform: scaleX(0.3); }
    50% { opacity: 0.7; transform: scaleX(1); }
}

.bh-loader__progress-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.bh-loader__pct {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    min-width: 3.5ch;
    justify-content: flex-end;
}

.bh-loader__pct-num {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(201, 184, 150, 0.65);
    font-variant-numeric: tabular-nums;
}

.bh-loader__pct-sym {
    font-size: 0.65rem;
    color: rgba(201, 184, 150, 0.35);
}

.bh-loader__foot {
    padding-bottom: max(1.75rem, calc(1rem + var(--bh-safe-bottom)));
}

.bh-loader__stage {
    padding: max(1.5rem, var(--bh-safe-top)) 1.25rem 2rem;
    max-width: 100%;
}

/* Nav backdrop + toggle icons */
.bh-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1085;
    background: rgba(3, 5, 8, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
}

.bh-nav__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.bh-nav__toggle-icon--close { display: none; }
.bh-nav.is-menu-open .bh-nav__toggle-icon--open { display: none; }
.bh-nav.is-menu-open .bh-nav__toggle-icon--close { display: block; }

.bh-nav.is-menu-open .bh-nav__toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Hero mobile mark */
.bh-hero__mobile-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: bh-fade-up .9s var(--bh-ease) both;
}

.bh-hero__mobile-mark__line {
    flex: 1;
    max-width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 184, 150, 0.5), transparent);
}

.bh-hero__mobile-mark__text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(201, 184, 150, 0.7);
}

.bh-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

/* Mobile dock */
.bh-mobile-dock {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 1020;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    padding: .55rem .75rem calc(.55rem + var(--bh-safe-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -8px 32px rgba(5, 8, 16, 0.08);
}

.bh-mobile-dock__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    padding: .45rem .25rem;
    min-height: 52px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--bh-text-muted);
    font-size: .68rem;
    font-weight: 700;
    transition: all .25s var(--bh-ease);
    -webkit-tap-highlight-color: transparent;
}

.bh-mobile-dock__item i {
    font-size: 1.15rem;
    line-height: 1;
}

.bh-mobile-dock__item:active,
.bh-mobile-dock__item.is-active {
    color: var(--bh-blue-deep);
    background: rgba(59, 130, 246, 0.08);
}

.bh-mobile-dock__item--accent {
    color: var(--bh-blue-deep);
}

.bh-mobile-dock__item--accent i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bh-gradient);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    margin-top: -4px;
}

/* ── Mobile breakpoints ── */
@media (max-width: 991px) {
    :root { --bh-nav-h: 64px; }

    .bh-nav {
        height: var(--bh-nav-h);
        background: rgba(3, 5, 8, 0.94) !important;
        border-bottom: 1px solid rgba(201, 184, 150, 0.12);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }

    .bh-nav-shell {
        height: calc(var(--bh-nav-h) + var(--bh-safe-top));
    }

    .bh-nav-shell.is-scrolled .bh-nav {
        background: rgba(255, 255, 255, 0.97) !important;
        border-bottom-color: var(--bh-border);
        box-shadow: 0 4px 20px rgba(5, 8, 16, 0.08);
    }

    .bh-nav.is-scrolled .bh-nav__toggle {
        background: var(--bh-surface-2);
        border-color: var(--bh-border);
        color: var(--bh-text);
    }

    .bh-brand--nav .bh-brand__img { height: 34px; width: 34px; }
    .bh-brand--nav .bh-brand__name { font-size: .92rem; }
    .bh-brand--nav .bh-brand__en { display: none; }
    .bh-brand--nav .bh-brand__mark { padding: 0; border-radius: 0; background: transparent; border: none; box-shadow: none; }

    .bh-nav__toggle {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .bh-nav.is-menu-open .bh-nav__toggle {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(201, 184, 150, 0.35);
        color: #fff;
    }

    /* Mobile drawer — see landing-drawer.css */

    .bh-hero {
        min-height: auto;
        padding: calc(var(--bh-nav-h) + 1.25rem + var(--bh-safe-top)) 0 4.5rem;
    }

    .bh-scroll-hint { display: none; }

    .bh-hero__visual {
        margin-top: 0;
        margin-bottom: .5rem;
    }

    .bh-brand--hero .bh-logo-stage {
        width: min(280px, 72vw);
    }

    .bh-brand--hero .bh-brand__frame {
        width: 66%;
        border-radius: 22px;
        padding: 1rem;
    }

    .bh-brand--hero .bh-brand__img {
        max-width: 140px;
        max-height: 140px;
    }

    .bh-brand__copy--hero .bh-brand__tag {
        font-size: 0.75rem;
        max-width: 260px;
        line-height: 1.5;
    }

    .bh-hero__title {
        font-size: clamp(1.75rem, 7.5vw, 2.35rem);
        text-align: center;
    }

    .bh-hero__subtitle,
    .bh-hero__lead {
        text-align: center;
        margin-inline: auto;
    }

    .bh-hero__badge {
        display: flex;
        margin-inline: auto;
        margin-bottom: 1.1rem;
        font-size: .74rem;
    }

    .bh-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bh-hero__actions .bh-btn {
        width: 100%;
        justify-content: center;
        min-height: 50px;
    }

    .bh-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        margin-top: 2rem;
        gap: .5rem;
    }

    .bh-stat-pill {
        padding: .75rem .5rem;
        text-align: center;
    }

    .bh-stat-pill__val { font-size: 1.35rem; }
    .bh-stat-pill__label { font-size: .62rem; line-height: 1.3; }

    .bh-section {
        padding: 3.5rem 0;
    }

    .bh-section__head {
        text-align: center;
        margin-bottom: 2rem;
    }

    .bh-section__title {
        font-size: clamp(1.5rem, 5.5vw, 1.85rem);
    }

    .bh-section__desc {
        font-size: .95rem;
    }

    .bh-service-card,
    .bh-solution-card,
    .bh-platform-card,
    .bh-vm-card {
        padding: 1.5rem;
    }

    .bh-service-card__list,
    .bh-solution-card__list,
    .bh-platform-card__list {
        gap: .35rem;
    }

    .bh-tech-pills {
        justify-content: center;
    }

    .bh-tech-pill {
        font-size: .8rem;
        padding: .5rem .85rem;
    }

    .bh-quote-card {
        padding: 1.5rem;
    }

    .bh-cta {
        padding: 4rem 0 calc(5rem + var(--bh-safe-bottom));
    }

    .bh-cta__actions {
        flex-direction: column;
        align-items: stretch;
        padding-inline: .5rem;
    }

    .bh-cta__actions .bh-btn {
        width: 100%;
        margin: 0 !important;
    }

    .bh-footer {
        padding-bottom: calc(5rem + var(--bh-safe-bottom));
        text-align: center;
    }

    .bh-footer .col-md-6 { text-align: center !important; }

    .bh-orb--1 { width: 260px; height: 260px; }
    .bh-orb--2 { width: 220px; height: 220px; }
    .bh-orb--3 { display: none; }

    .bh-loader__emblem {
        flex-direction: column;
        gap: .75rem;
    }

    .bh-loader__rule { display: none; }

    .bh-loader__title {
        font-size: clamp(2rem, 11vw, 2.75rem);
    }

    .bh-loader__latin {
        letter-spacing: 0.3em;
        font-size: 0.62rem;
    }

    .bh-loader__tagline {
        font-size: 0.78rem;
        padding-inline: 1rem;
        line-height: 1.6;
    }

    .bh-loader__sigil {
        width: min(110px, 28vw);
        margin-bottom: 1.5rem;
    }

    .bh-loader__corner { opacity: 0.35; }

    .bh-loader__orb--1 { width: 240px; height: 240px; }
    .bh-loader__orb--2 { width: 200px; height: 200px; }
    .bh-loader__orb--3 { display: none; }
}

@media (max-width: 575px) {
    .bh-hero__stats {
        grid-template-columns: 1fr;
        max-width: 220px;
        margin-inline: auto;
    }

    .bh-stat-pill {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: start;
        padding: .85rem 1rem;
    }

    .bh-stat-pill__label { margin-top: 0; }

    .bh-intro-block__p {
        font-size: .95rem;
        line-height: 1.85;
    }

    .bh-modal .modal-body {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 380px) {
    .bh-mobile-dock__item span { font-size: .62rem; }
    .bh-loader__sigil { width: 90px; }
}
