﻿/* Happymood Event Management — Landing */
:root {
    --bh-ink: #0F172A;
    --bh-navy: #0F172A;
    --bh-slate: #F1F5F9;
    --bh-magenta: #D91A6A;
    --bh-magenta-dim: rgba(217, 26, 106, 0.1);
    --bh-cyan: #0891B2;
    --bh-cyan-dim: rgba(8, 145, 178, 0.12);
    --bh-orange: #F59E0B;
    --bh-orange-dim: rgba(245, 158, 11, 0.14);
    --bh-yellow: #F59E0B;
    --bh-yellow-deep: #D97706;
    --bh-yellow-bright: #FBBF24;
    --bh-yellow-dim: rgba(245, 158, 11, 0.14);
    --bh-yellow-glow: rgba(217, 26, 106, 0.2);

    --bh-surface: #FFFFFF;
    --bh-surface-2: #F8FAFC;
    --bh-surface-3: #E2E8F0;
    --bh-text: #0F172A;
    --bh-text-muted: #64748B;
    --bh-border: rgba(15, 23, 42, 0.08);

    --bh-gradient: linear-gradient(135deg, #D91A6A 0%, #0891B2 50%, #F59E0B 100%);
    --bh-gradient-hover: linear-gradient(135deg, #B81558 0%, #0E7490 50%, #D97706 100%);
    --bh-gradient-text: linear-gradient(120deg, #D91A6A 0%, #0891B2 50%, #F59E0B 100%);
    --bh-hero-bg: linear-gradient(160deg, #FFFFFF 0%, #FDF2F8 25%, #ECFEFF 55%, #FFFBEB 100%);

    --bh-font: 'Montserrat', 'Nunito', 'Cairo', 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;
    --bh-shadow: 0 8px 32px rgba(34, 34, 34, 0.07);
    --bh-shadow-yellow: 0 12px 40px rgba(192, 28, 89, 0.15);
    --bh-shadow-brand: 0 12px 40px rgba(192, 28, 89, 0.15);
}

*, *::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(192, 28, 89, 0.5);
    transition: width .08s linear;
}

/* ── Logo ── */
.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--nav { height: 48px; max-width: 220px; }
.bh-logo--hero { max-height: min(140px, 22vh); max-width: min(360px, 85vw); width: auto; }
.bh-logo--cta { height: 68px; max-width: 150px; margin-inline: auto; }
.bh-logo--footer { height: 36px; max-width: 110px; opacity: .9; }
.bh-logo--modal { height: 76px; max-width: 150px; margin-inline: auto; }

.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(192, 28, 89, 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(255,209,51,.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(192, 28, 89, 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(255,209,51,.18) 0%, rgba(255,209,51,.06) 45%, transparent 70%);
    animation: bh-pulse-glow 5s ease-in-out infinite;
}

.bh-logo-stage .bh-logo {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(192, 28, 89, 0.25));
    animation: bh-float 7s ease-in-out infinite;
}

@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 ── */
.bh-nav {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1030;
    height: var(--bh-nav-h);
    display: flex;
    align-items: center;
    transition: all .45s var(--bh-ease);
}

.bh-nav:not(.is-scrolled) {
    background: transparent;
}

.bh-nav:not(.is-scrolled) .bh-nav__link {
    color: var(--bh-text-muted);
}

.bh-nav:not(.is-scrolled) .bh-nav__link:hover {
    color: var(--bh-navy);
    background: var(--bh-yellow-dim);
}

.bh-nav:not(.is-scrolled) .bh-btn--ghost {
    color: var(--bh-navy);
    border-color: var(--bh-border);
}

.bh-nav:not(.is-scrolled) .bh-btn--ghost:hover {
    background: var(--bh-yellow-dim);
    border-color: var(--bh-yellow);
    color: var(--bh-navy);
}

.bh-nav:not(.is-scrolled) .bh-lang {
    background: var(--bh-surface-2);
    border: 1px solid var(--bh-border);
}

.bh-nav:not(.is-scrolled) .bh-lang a { color: var(--bh-text-muted); }
.bh-nav:not(.is-scrolled) .bh-nav__toggle {
    border-color: var(--bh-border);
    background: var(--bh-surface);
    color: var(--bh-navy);
}

.bh-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    box-shadow: 0 1px 0 var(--bh-border), var(--bh-shadow);
    border-bottom: 2px solid var(--bh-yellow-dim);
}

.bh-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.bh-nav__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform .3s var(--bh-ease);
}

.bh-nav__brand:hover { transform: scale(1.03); }

.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: .4rem;
    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:hover,
.bh-nav__link.is-active {
    color: var(--bh-yellow);
    background: var(--bh-yellow-dim);
}

.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: var(--bh-navy);
    box-shadow: 0 2px 12px rgba(192, 28, 89, 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: var(--bh-shadow-brand), inset 0 1px 0 rgba(255,255,255,.25);
}

.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(192, 28, 89, 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-yellow);
    color: var(--bh-yellow-deep);
    background: rgba(192, 28, 89, 0.05);
}

.bh-btn--glass {
    background: #fff;
    color: var(--bh-navy);
    border: 1.5px solid var(--bh-border);
    box-shadow: var(--bh-shadow);
}

.bh-btn--glass:hover {
    background: var(--bh-yellow-dim);
    border-color: var(--bh-yellow);
    color: var(--bh-navy);
    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: var(--bh-text);
    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(192, 28, 89, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 90% 80%, rgba(192, 28, 89, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 55% 45%, rgba(46, 46, 62, 0.04) 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(46,46,62,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,46,62,.04) 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: #C01C59; top: -12%; inset-inline-end: -8%; opacity: .12; }
.bh-orb--2 { width: 380px; height: 380px; background: #3AB0D5; bottom: -5%; inset-inline-start: -10%; opacity: .1; }
.bh-orb--3 { width: 240px; height: 240px; background: #FDB833; 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: 700;
    color: var(--bh-navy);
    background: var(--bh-yellow-dim);
    border: 1px solid rgba(192, 28, 89, 0.45);
    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-yellow);
    box-shadow: 0 0 10px var(--bh-yellow);
    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: var(--bh-text-muted);
    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: #fff;
    border: 1px solid var(--bh-border);
    box-shadow: var(--bh-shadow);
    transition: all .4s var(--bh-ease);
}

.bh-stat-pill:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(192, 28, 89, 0.5);
    box-shadow: var(--bh-shadow-yellow);
}

.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: var(--bh-text-muted);
    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: var(--bh-text-muted);
    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(46,46,62,.25);
    border-bottom: 2px solid rgba(46,46,62,.25);
    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-2); }
.bh-section--muted {
    background: var(--bh-surface-2);
    border-block: 1px solid var(--bh-border);
}

.bh-section--gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9E6 50%, #FFFFFF 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-yellow-deep);
    margin-bottom: .85rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(192, 28, 89, 0.08);
    border: 1px solid rgba(192, 28, 89, 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(192, 28, 89, 0.1);
    border-color: rgba(192, 28, 89, 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-yellow-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(192, 28, 89, 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(192, 28, 89, 0.1);
}

html[dir="rtl"] .bh-platform:hover { transform: translateY(-6px) translateX(-4px); }

.bh-platform--hudoor { --platform-accent: linear-gradient(180deg, #C01C59, #FFE066); }
.bh-platform--taqyim { --platform-accent: linear-gradient(180deg, #FFC107, #C01C59); }
.bh-platform--tashgheel { --platform-accent: linear-gradient(180deg, #222222, #C01C59); }

.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(192, 28, 89, 0.08);
    color: var(--bh-yellow-deep);
    border: 1px solid rgba(192, 28, 89, 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(192, 28, 89, 0.12);
    border-color: rgba(192, 28, 89, 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: var(--bh-yellow-dim);
    color: var(--bh-yellow-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: var(--bh-navy);
}

/* CTA */
.bh-cta {
    background: var(--bh-gradient);
    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;
}

/* Footer */
.bh-footer {
    background: var(--bh-surface);
    color: var(--bh-text-muted);
    padding: 2.25rem 0;
    font-size: .86rem;
    border-top: 1px solid var(--bh-border);
}

.bh-footer a {
    color: var(--bh-text-muted);
    text-decoration: none;
    transition: color .2s;
}

.bh-footer a:hover { color: var(--bh-yellow-deep); }

/* Modal */
.bh-modal .modal-content {
    border-radius: var(--bh-radius-lg) !important;
    border: 1px solid var(--bh-border) !important;
}

/* Mobile */
.bh-nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--bh-border);
    background: var(--bh-surface);
    color: var(--bh-text-muted);
    display: none;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .bh-nav__collapse {
        display: flex !important;
        align-items: center;
        gap: 1.25rem;
        flex: 1;
        justify-content: flex-end;
    }
    .bh-nav__links { flex-direction: row; }
}

@media (max-width: 991px) {
    .bh-nav__toggle { display: inline-flex; }
    .bh-nav__collapse {
        position: absolute;
        top: var(--bh-nav-h);
        inset-inline: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--bh-border);
        padding: 1.25rem;
        box-shadow: 0 20px 48px rgba(5, 8, 16, 0.1);
        display: none;
    }
    .bh-nav.is-scrolled .bh-nav__collapse,
    .bh-nav__collapse.is-open { display: block; }
    .bh-nav:not(.is-scrolled) .bh-nav__collapse {
        background: rgba(10, 16, 32, 0.95);
        border-color: rgba(255,255,255,.08);
    }
    .bh-nav:not(.is-scrolled) .bh-nav__collapse .bh-nav__link { color: rgba(255,255,255,.75); }
    .bh-nav__links { flex-direction: column; align-items: stretch; margin-bottom: 1rem; }
    .bh-nav__link { padding: .75rem 1rem; }
    .bh-nav__actions { flex-direction: column; gap: .75rem; }
    .bh-hero__visual { margin-top: 2.5rem; }
    .bh-scroll-hint { display: none; }
}

@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; }
}
