/* ByteHosty Professional Homepage - Enterprise Design */

:root {
    --bh-primary: #10b981;
    --bh-primary-dark: #047857;
    --bh-primary-light: #34d399;
    --bh-accent: #667eea;
    --bh-danger: #ef4444;
    --bh-warning: #f59e0b;
    --bh-bg: #0a0e1a;
    --bh-bg-alt: #0f1424;
    --bh-card: rgba(255, 255, 255, 0.03);
    --bh-card-hover: rgba(255, 255, 255, 0.05);
    --bh-border: rgba(255, 255, 255, 0.08);
    --bh-text: #ffffff;
    --bh-text-muted: #a8b6d1;
    --bh-text-dim: #6b7897;
    --bh-radius: 16px;
    --bh-radius-sm: 12px;
}

/* ============ GLOBAL ============ */
body.template-lagom2, body {
    background: var(--bh-bg) !important;
    color: var(--bh-text) !important;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
    animation: bg-drift 25s ease-in-out infinite;
}

@keyframes bg-drift {
    0%, 100% { background-position: 0% 0%, 100% 100%; }
    50% { background-position: 20% 30%, 80% 70%; }
}

/* Hide defaults */
.main-banner.banner-home,
.main-body > .container > .m-w-lg,
.main-body .sidebar,
aside.sidebar,
.homepage aside,
.homepage .col-md-3.sidebar-space,
.homepage .col-lg-3.sidebar-space {
    display: none !important;
}

.homepage .main-body {
    padding: 0 !important;
    background: transparent !important;
    position: relative;
    z-index: 1;
}
.homepage .main-body > .container { max-width: 100% !important; padding: 0 !important; }
.homepage .main-body > .container > .row { margin: 0 !important; }
.homepage .main-body > .container > .row > [class*="col-"] {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    width: 100% !important;
}

.bh-hero .container, .bh-metrics .container, .bh-trust .container,
.bh-plans .container, .bh-worldmap .container, .bh-features .container,
.bh-testimonials .container, .bh-compare .container, .bh-faq .container,
.bh-cta .container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    position: relative;
    z-index: 2;
}

.bh-hero, .bh-metrics, .bh-trust, .bh-plans, .bh-worldmap,
.bh-features, .bh-testimonials, .bh-compare, .bh-faq, .bh-cta {
    background: transparent !important;
    position: relative;
}

.bh-hero { padding: 120px 0 80px; overflow: hidden; }
.bh-metrics { padding: 50px 0; }
.bh-trust, .bh-plans, .bh-worldmap, .bh-features,
.bh-testimonials, .bh-compare, .bh-faq { padding: 100px 0; }
.bh-cta { padding: 60px 0 100px; }

/* ============ HERO - Simple background ============ */
.bh-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bh-hero-bg::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 500px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
        rgba(16, 185, 129, 0.25),
        rgba(16, 185, 129, 0.1) 40%,
        transparent 70%);
    filter: blur(80px);
    animation: soft-glow 8s ease-in-out infinite;
}

@keyframes soft-glow {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.bh-grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}

/* Hero Layout - 2 columns */
.bh-hero-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bh-hero-content { animation: fade-in-up 0.8s ease-out; }
.bh-hero-visual {
    animation: fade-in-up 1s ease-out 0.2s backwards;
    position: relative;
}

/* ============ REALISTIC SERVER RACK ============ */
.bh-server-scene {
    position: relative;
    width: 100%;
    height: 680px;
    perspective: 1400px;
}

/* Rotating glow ring behind everything */
.bh-server-scene::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 440px;
    height: 440px;
    transform: translate(-50%, -50%);
    background:
        conic-gradient(from 0deg,
            transparent, rgba(16, 185, 129, 0.12), transparent 25%,
            transparent, rgba(102, 126, 234, 0.1), transparent 50%,
            transparent, rgba(16, 185, 129, 0.12), transparent 75%,
            transparent, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 50%;
    filter: blur(30px);
    animation: ring-rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit ring - dashed circle around server */
.bh-server-scene::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%);
    border: 1.5px dashed rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    animation: ring-rotate 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.bh-scene-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

/* Main Server - Realistic 1U rack */
.bh-server-main {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 380px;
    transform: translate(-50%, -50%);
    animation: server-float 6s ease-in-out infinite;
}

@keyframes server-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 14px)); }
}

.bh-server-front {
    background: linear-gradient(180deg, #232c4c, #0f1424);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -2px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Top sheen light sweep across server */
.bh-server-front > * { position: relative; z-index: 2; }

/* Screws on corners */
.bh-server-front::before,
.bh-server-front::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #666, #333);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.bh-server-front::before { top: 4px; left: 4px; }
.bh-server-front::after { top: 4px; right: 4px; }

/* Left panel: Brand + LEDs + Fans */
.bh-server-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-server-brand {
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 0 4px rgba(16, 185, 129, 0.3);
}

.bh-server-brand span {
    color: var(--bh-primary);
}

.bh-leds-row {
    display: flex;
    gap: 3px;
}

.bh-mini-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
}

.bh-mled-green {
    background: #10b981;
    box-shadow: 0 0 4px #10b981, 0 0 8px rgba(16, 185, 129, 0.6);
    animation: led-blink 1.2s ease-in-out infinite;
}

.bh-mled-green:nth-child(2) { animation-delay: 0.3s; }
.bh-mled-orange {
    background: #f59e0b;
    box-shadow: 0 0 4px #f59e0b, 0 0 8px rgba(245, 158, 11, 0.5);
    animation: led-blink 1.8s ease-in-out infinite;
}

@keyframes led-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Fans - rotating circles */
.bh-fans {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.bh-fan {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bh-fan span {
    width: 17px;
    height: 17px;
    display: block;
    background:
        conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.55), transparent, rgba(16, 185, 129, 0.55), transparent);
    border-radius: 50%;
    animation: fan-spin 1.5s linear infinite;
}

.bh-fan:nth-child(2) span { animation-duration: 1.2s; animation-direction: reverse; }

@keyframes fan-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Center Screen */
.bh-server-screen {
    background: #050810;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    padding: 8px 10px;
    box-shadow:
        inset 0 0 15px rgba(16, 185, 129, 0.1),
        inset 0 0 3px rgba(0, 0, 0, 0.8);
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    overflow: hidden;
}

/* Scan line moving across screen */
.bh-server-screen::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent);
    animation: scan-move 3s linear infinite;
    pointer-events: none;
}

@keyframes scan-move {
    0% { top: -40%; }
    100% { top: 100%; }
}

.bh-screen-line {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    line-height: 1;
    margin-top: 3px;
}

.bh-scr-label {
    color: var(--bh-text-dim);
    font-weight: 700;
    letter-spacing: 1px;
}

.bh-scr-value {
    color: var(--bh-primary-light);
    font-weight: 700;
}

.bh-screen-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.bh-screen-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
    animation: bar-shimmer 2s linear infinite;
    background-size: 200% 100%;
}

@keyframes bar-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.bh-screen-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    font-size: 10px;
}

.bh-scr-hostname {
    color: var(--bh-primary-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bh-scr-status {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--bh-primary);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 9px;
}

.bh-scr-status .bh-status-dot {
    width: 4px;
    height: 4px;
    background: var(--bh-primary);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--bh-primary);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Right Panel: Ports + Power */
.bh-server-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-ports {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.bh-port {
    width: 16px;
    height: 11px;
    background: linear-gradient(180deg, #1a1f2e, #0f1420);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.bh-port::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bh-port-active::after {
    background: #10b981;
    box-shadow: 0 0 3px #10b981;
    animation: port-blink 0.8s ease-in-out infinite;
}

.bh-port-active:nth-child(2)::after { animation-delay: 0.2s; }
.bh-port-active:nth-child(4)::after { animation-delay: 0.5s; }

@keyframes port-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.bh-power-btn {
    position: relative;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-power-ring {
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--bh-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    position: relative;
}

.bh-power-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--bh-primary);
    border-radius: 1px;
    box-shadow: 0 0 4px var(--bh-primary);
}

/* Server label under main server */
.bh-server-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 8px;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    z-index: 6;
}

/* Small Servers */
.bh-server-small {
    position: absolute;
    z-index: 2;
    width: 130px;
}

.bh-server-2 {
    top: 12%;
    right: 3%;
    animation: server-hover 5s ease-in-out infinite 0.5s;
}

.bh-server-3 {
    bottom: 12%;
    left: 3%;
    animation: server-hover 4.5s ease-in-out infinite 1s;
}

@keyframes server-hover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bh-mini-front {
    background: linear-gradient(180deg, #1a2035, #0d111e);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.bh-mini-led-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bh-mini-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bh-mini-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.bh-mini-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
    animation: bar-shimmer 2s linear infinite;
    background-size: 200% 100%;
}

.bh-mini-fan {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bh-mini-fan span {
    width: 12px;
    height: 12px;
    display: block;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.5), transparent, rgba(16, 185, 129, 0.5), transparent);
    border-radius: 50%;
    animation: fan-spin 1.8s linear infinite;
}

.bh-mini-label {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 20, 36, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--bh-primary-light);
    font-size: 8px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

/* Floor reflection under main server */
.bh-server-reflection {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.25), transparent 70%);
    filter: blur(12px);
    border-radius: 50%;
    animation: reflection-pulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes reflection-pulse {
    0%, 100% { opacity: 0.6; width: 90%; }
    50% { opacity: 0.9; width: 100%; }
}

/* ============ FLOATING TECH & SERVICE CHIPS ============ */
.bh-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(15, 20, 36, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(16, 185, 129, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 4;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    min-width: 120px;
}

.bh-chip:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.2);
}

.bh-chip-icon {
    font-size: 22px;
    line-height: 1;
}

.bh-chip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bh-chip-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--bh-text-dim);
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.bh-chip-name {
    font-size: 12px;
    font-weight: 700;
    color: white;
    line-height: 1;
    white-space: nowrap;
}

/* Category color accent on left border */
.bh-chip-tech { border-left: 2px solid #60a5fa; }
.bh-chip-service { border-left: 2px solid #34d399; }
.bh-chip-usecase { border-left: 2px solid #f472b6; }

/* Chip positions - placed around server, using corners and side edges */
.bh-pos-tl { top: 30px; left: 0; animation: chip-float-a 5s ease-in-out infinite; }
.bh-pos-tm { top: -5px; left: 50%; transform: translateX(-50%); animation: chip-float-b 6s ease-in-out infinite 0.5s; }
.bh-pos-tr { top: 30px; right: 0; animation: chip-float-a 5s ease-in-out infinite 1s; }

.bh-pos-lm { top: 46%; left: -8px; transform: translateY(-50%); animation: chip-float-c 5.5s ease-in-out infinite 0.7s; }
.bh-pos-rm { top: 46%; right: -8px; transform: translateY(-50%); animation: chip-float-c 5.5s ease-in-out infinite 1.5s; }

.bh-pos-bl { bottom: 30px; left: 0; animation: chip-float-a 5.5s ease-in-out infinite 1.2s; }
.bh-pos-bm { bottom: -5px; left: 50%; transform: translateX(-50%); animation: chip-float-b 6s ease-in-out infinite 2s; }
.bh-pos-br { bottom: 30px; right: 0; animation: chip-float-a 5s ease-in-out infinite 1.8s; }

@keyframes chip-float-a {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes chip-float-b {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes chip-float-c {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 6px)); }
}

/* Small floating side badges (smaller than chips) */
.bh-side-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(15, 20, 36, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: var(--bh-text-muted);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.bh-side-badge:hover {
    background: rgba(15, 20, 36, 0.95);
    border-color: rgba(16, 185, 129, 0.3);
    color: white;
}

.bh-sb-icon { font-size: 13px; line-height: 1; }

.bh-side-1 { top: 22%; left: 18%; animation: chip-float-a 4s ease-in-out infinite 0.3s; }
.bh-side-2 { top: 22%; right: 18%; animation: chip-float-a 4.5s ease-in-out infinite 0.8s; }
.bh-side-3 { bottom: 22%; left: 18%; animation: chip-float-a 5s ease-in-out infinite 1.5s; }
.bh-side-4 { bottom: 22%; right: 18%; animation: chip-float-a 4.2s ease-in-out infinite 2s; }

.bh-network-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bh-float-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bh-primary-light);
    font-size: 20px;
    backdrop-filter: blur(10px);
    z-index: 4;
}

.bh-float-1 { top: 5%; left: 15%; animation: icon-float 4s ease-in-out infinite; }
.bh-float-2 { top: 20%; right: 25%; animation: icon-float 4.5s ease-in-out infinite 0.5s; }
.bh-float-3 { bottom: 8%; right: 15%; animation: icon-float 5s ease-in-out infinite 1s; }

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.bh-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--bh-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--bh-primary);
}

.bh-dot-1 { top: 10%; left: 40%; animation: dot-pulse 3s ease-in-out infinite; }
.bh-dot-2 { top: 40%; right: 10%; animation: dot-pulse 3.5s ease-in-out infinite 0.5s; }
.bh-dot-3 { bottom: 25%; left: 30%; animation: dot-pulse 4s ease-in-out infinite 1s; }
.bh-dot-4 { bottom: 5%; right: 40%; animation: dot-pulse 3s ease-in-out infinite 1.5s; }

@keyframes dot-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.bh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--bh-primary-light);
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
}

.bh-badge-dot {
    width: 8px; height: 8px;
    background: var(--bh-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.bh-hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 24px;
    color: white;
    letter-spacing: -1.5px;
}

.bh-highlight {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.bh-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, #34d399, transparent);
    border-radius: 3px;
    opacity: 0.6;
    animation: highlight-slide 3s ease-in-out infinite;
}

@keyframes highlight-slide {
    0%, 100% { transform: translateX(-10%); opacity: 0.4; }
    50% { transform: translateX(10%); opacity: 0.9; }
}

.bh-hero-subtitle {
    font-size: 19px;
    color: var(--bh-text-muted);
    margin: 0 0 36px;
    line-height: 1.6;
    max-width: 540px;
}

.bh-hero-subtitle strong {
    color: var(--bh-primary-light);
    font-weight: 700;
}

.bh-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bh-btn-primary, .bh-btn-outline {
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    justify-content: center;
}

.bh-btn-primary {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    position: relative;
    overflow: hidden;
}

.bh-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.bh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
    color: white;
}

.bh-btn-primary:hover::before { left: 100%; }
.bh-btn-primary i { transition: transform 0.3s; }
.bh-btn-primary:hover i { transform: translateX(4px); }

.bh-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.bh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.4);
    color: white;
}

.bh-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bh-hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bh-text-muted);
    font-size: 14px;
}

.bh-hero-features i {
    color: var(--bh-primary);
    font-size: 12px;
}

/* Trust Strip - Technology logos */
.bh-trust-strip {
    position: relative;
    padding-top: 40px;
    border-top: 1px solid var(--bh-border);
    text-align: center;
}

.bh-trust-label {
    color: var(--bh-text-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.bh-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bh-trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bh-text-muted);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 4px;
    transition: all 0.3s;
    opacity: 0.7;
}

.bh-trust-logo:hover {
    color: var(--bh-primary-light);
    opacity: 1;
}

.bh-logo-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bh-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bh-primary-light);
    font-size: 16px;
    transition: all 0.3s;
}

.bh-trust-logo:hover .bh-logo-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

/* ============ PREMIUM SERVER SHOWCASE ============ */
.bh-hero-visual {
    position: relative;
    animation: fade-in-up 1s ease-out 0.3s backwards;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-showcase-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35), transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Central Server */
.bh-central-server {
    position: relative;
    width: 240px;
    background: linear-gradient(180deg, #1e2a44, #0d1120);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 0;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 3;
    animation: server-hover 5s ease-in-out infinite;
}

@keyframes server-hover {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-12px) rotateY(2deg); }
}

.bh-cs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-cs-leds {
    display: flex;
    gap: 6px;
}

.bh-cs-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.bh-cs-led.bh-led-active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981, 0 0 20px rgba(16, 185, 129, 0.5);
    animation: led-pulse 1.5s ease-in-out infinite;
}

.bh-cs-led.bh-led-active:nth-child(2) { animation-delay: 0.3s; }
.bh-cs-led.bh-led-active:nth-child(3) { animation-delay: 0.6s; }

@keyframes led-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bh-cs-name {
    display: flex;
    gap: 3px;
    align-items: baseline;
    font-family: 'Courier New', Monaco, monospace;
}

.bh-cs-brand {
    color: white;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
}

.bh-cs-model {
    color: var(--bh-primary-light);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Screen inside server */
.bh-cs-screen {
    margin: 10px 14px;
    background: #050810;
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    padding: 10px;
    box-shadow:
        inset 0 0 20px rgba(16, 185, 129, 0.15),
        inset 0 0 3px rgba(0, 0, 0, 0.8);
}

.bh-cs-screen-inner {
    position: relative;
}

.bh-cs-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-family: 'Courier New', Monaco, monospace;
    font-size: 9px;
}

.bh-cs-online {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--bh-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.bh-cs-online .bh-status-dot {
    width: 5px;
    height: 5px;
    background: var(--bh-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--bh-primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

.bh-cs-uptime {
    color: var(--bh-primary-light);
    font-weight: 700;
}

.bh-cs-graph {
    height: 40px;
    margin-bottom: 6px;
}

.bh-cs-graph svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bh-cs-graph-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-graph 2s ease-out 0.5s forwards, redraw-graph 6s ease-in-out infinite 3s;
}

@keyframes draw-graph {
    to { stroke-dashoffset: 0; }
}

@keyframes redraw-graph {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: -50; }
}

.bh-cs-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.bh-cs-bar {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.bh-cs-bar span {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #10b981, rgba(16, 185, 129, 0.2));
    border-radius: 2px;
    animation: bar-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.bh-cs-bar:nth-child(2) span { animation-delay: 0.2s; }
.bh-cs-bar:nth-child(3) span { animation-delay: 0.4s; }
.bh-cs-bar:nth-child(4) span { animation-delay: 0.6s; }
.bh-cs-bar:nth-child(5) span { animation-delay: 0.8s; }

@keyframes bar-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(0.85); }
}

/* Server body with slots */
.bh-cs-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.bh-cs-slot {
    height: 6px;
    background: linear-gradient(90deg,
        rgba(16, 185, 129, 0.4),
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.05));
    border-radius: 3px;
    background-size: 200% 100%;
    animation: slot-scan 3s linear infinite;
    position: relative;
    overflow: hidden;
}

.bh-cs-slot:nth-child(2) { animation-delay: 0.5s; }
.bh-cs-slot:nth-child(3) { animation-delay: 1s; }
.bh-cs-slot:nth-child(4) { animation-delay: 1.5s; }

@keyframes slot-scan {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Bottom bar */
.bh-cs-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-cs-power {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: power-blink 2s ease-in-out infinite;
}

@keyframes power-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.bh-cs-label {
    color: var(--bh-primary-light);
    font-family: 'Courier New', Monaco, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bh-cs-net {
    display: flex;
    gap: 3px;
    align-items: center;
}

.bh-cs-net span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.4);
}

.bh-cs-net span:nth-child(1) { animation: net-blink 1.2s ease-in-out infinite; }
.bh-cs-net span:nth-child(2) { animation: net-blink 1.2s ease-in-out infinite 0.3s; }
.bh-cs-net span:nth-child(3) { animation: net-blink 1.2s ease-in-out infinite 0.6s; }

@keyframes net-blink {
    0%, 100% { background: rgba(16, 185, 129, 0.3); }
    50% { background: #10b981; box-shadow: 0 0 4px #10b981; }
}

/* Floating spec cards */
.bh-spec {
    position: absolute;
    background: rgba(15, 20, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(16, 185, 129, 0.1);
    z-index: 4;
    min-width: 155px;
}

.bh-spec-1 { top: 8%; left: 5%; animation: spec-float 4s ease-in-out infinite; }
.bh-spec-2 { top: 8%; right: 5%; animation: spec-float 4s ease-in-out infinite 1s; }
.bh-spec-3 { bottom: 8%; left: 5%; animation: spec-float 4s ease-in-out infinite 2s; }
.bh-spec-4 { bottom: 8%; right: 5%; animation: spec-float 4s ease-in-out infinite 3s; }

@keyframes spec-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bh-spec-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bh-primary-light);
    font-size: 18px;
    flex-shrink: 0;
}

.bh-spec-info { flex: 1; }

.bh-spec-value {
    color: white;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
}

.bh-spec-label {
    color: var(--bh-text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 2px;
}

/* Connection lines behind server */
.bh-showcase-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Small particles */
.bh-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bh-primary);
    box-shadow: 0 0 8px var(--bh-primary);
    z-index: 2;
}

.bh-p-1 { top: 20%; left: 25%; animation: particle-float 5s ease-in-out infinite; }
.bh-p-2 { top: 30%; right: 20%; animation: particle-float 4s ease-in-out infinite 1s; }
.bh-p-3 { top: 60%; left: 20%; animation: particle-float 6s ease-in-out infinite 2s; }
.bh-p-4 { top: 70%; right: 25%; animation: particle-float 4.5s ease-in-out infinite 0.5s; }
.bh-p-5 { top: 45%; left: 45%; animation: particle-float 5.5s ease-in-out infinite 1.5s; }

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(15px, -15px); opacity: 1; }
}

/* Floating cards next to server */
.bh-floating-card {
    position: absolute;
    background: rgba(15, 20, 36, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.bh-fc-1 { top: -20px; right: -30px; animation: fc-float 4s ease-in-out infinite; }
.bh-fc-2 { bottom: -20px; left: -30px; animation: fc-float 4s ease-in-out infinite 2s; }

@keyframes fc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bh-fc-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bh-primary-light);
    font-size: 20px;
}

.bh-fc-title {
    font-size: 11px;
    color: var(--bh-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bh-fc-value {
    font-size: 15px;
    color: white;
    font-weight: 700;
    margin-top: 2px;
}

/* ============ TRUST METRICS BAR ============ */
.bh-metrics-grid {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
    gap: 20px;
}

.bh-metric { text-align: center; flex: 1; min-width: 140px; }

.bh-metric-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    line-height: 1;
}

.bh-metric-label {
    color: var(--bh-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.bh-metric-divider {
    width: 1px;
    height: 40px;
    background: var(--bh-border);
}

/* ============ REVEAL ============ */
.bh-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bh-reveal.bh-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SECTION HEADER ============ */
.bh-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bh-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--bh-primary-light);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.bh-tag-dot {
    width: 6px; height: 6px;
    background: var(--bh-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.bh-section-title {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.bh-section-subtitle {
    font-size: 18px;
    color: var(--bh-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ UNIFIED CARDS ============ */
.bh-trust-card, .bh-feature, .bh-plan-card,
.bh-faq-item, .bh-testimonial {
    background: var(--bh-card);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.bh-trust-card:hover, .bh-feature:hover,
.bh-plan-card:hover, .bh-testimonial:hover {
    background: var(--bh-card-hover);
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
}

/* ============ TRUST BADGES ============ */
.bh-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.bh-trust-card { padding: 36px 28px; text-align: center; }

.bh-trust-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(4, 120, 87, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bh-primary-light);
    font-size: 26px;
    transition: all 0.3s;
}

.bh-trust-card:hover .bh-trust-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.bh-trust-card h3 {
    font-size: 18px; font-weight: 700;
    color: white; margin: 0 0 10px;
}

.bh-trust-card p {
    color: var(--bh-text-muted);
    font-size: 14px; line-height: 1.6; margin: 0;
}

/* ============ PLANS ============ */
.bh-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bh-plan-card { padding: 40px 32px; text-align: center; color: white; }

.bh-plan-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(4, 120, 87, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bh-primary-light);
    font-size: 24px;
}

.bh-plan-featured {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.35);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.15);
}

.bh-plan-featured:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(16, 185, 129, 0.25);
}

.bh-plan-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    z-index: 2;
}

.bh-plan-name {
    font-size: 22px; font-weight: 700;
    color: white; margin-bottom: 20px;
}

.bh-plan-price { margin-bottom: 32px; }

.bh-currency {
    font-size: 22px; font-weight: 600;
    vertical-align: super;
    color: var(--bh-primary-light);
}

.bh-amount {
    font-size: 56px; font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bh-period { font-size: 16px; color: var(--bh-text-dim); }

.bh-plan-features {
    list-style: none; padding: 0;
    margin: 0 0 32px; text-align: left;
}

.bh-plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bh-border);
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--bh-text-muted);
}

.bh-plan-features li i {
    color: var(--bh-primary);
    flex-shrink: 0;
}

.btn-block { display: block; width: 100%; }

/* ============ WORLD MAP ============ */
.bh-map-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius);
    padding: 40px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.bh-world-svg {
    width: 100%;
    height: 400px;
    display: block;
}

.bh-map-locations {
    position: absolute;
    top: 40px; left: 40px; right: 40px; bottom: 40px;
    pointer-events: none;
}

.bh-loc {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    z-index: 3;
}

.bh-loc-dot {
    width: 12px;
    height: 12px;
    background: var(--bh-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--bh-primary), 0 0 40px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 2;
}

.bh-loc-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    border: 2px solid var(--bh-primary);
    border-radius: 50%;
    animation: loc-pulse 2s ease-out infinite;
    opacity: 0.6;
}

.bh-loc:nth-child(2) .bh-loc-pulse { animation-delay: 0.3s; }
.bh-loc:nth-child(3) .bh-loc-pulse { animation-delay: 0.6s; }
.bh-loc:nth-child(4) .bh-loc-pulse { animation-delay: 0.9s; }
.bh-loc:nth-child(5) .bh-loc-pulse { animation-delay: 1.2s; }
.bh-loc:nth-child(6) .bh-loc-pulse { animation-delay: 1.5s; }

@keyframes loc-pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.bh-loc-tooltip {
    position: absolute;
    top: -32px; left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 20, 36, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.bh-loc:hover .bh-loc-tooltip { opacity: 1; }

.bh-map-stats {
    position: absolute;
    bottom: 20px; right: 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.bh-map-stat {
    background: rgba(15, 20, 36, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.bh-status-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--bh-primary-light);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bh-status-dot {
    width: 6px; height: 6px;
    background: var(--bh-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.bh-map-stat-value {
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin-top: 4px;
}

.bh-locations-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.bh-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bh-border);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.bh-location-chip:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-2px);
}

.bh-location-chip span { font-size: 18px; }

/* ============ FEATURES ============ */
.bh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bh-feature { padding: 32px; }

.bh-feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(4, 120, 87, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--bh-primary-light);
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.bh-feature:hover .bh-feature-icon {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    transform: scale(1.1);
}

.bh-feature h4 {
    font-size: 18px; font-weight: 700;
    color: white; margin: 0 0 12px;
}

.bh-feature p {
    color: var(--bh-text-muted);
    font-size: 14px; line-height: 1.6; margin: 0;
}

/* ============ TESTIMONIALS ============ */
.bh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bh-testimonial { padding: 32px; position: relative; }

.bh-testi-stars {
    display: flex;
    gap: 4px;
    color: var(--bh-primary);
    margin-bottom: 16px;
    font-size: 16px;
}

.bh-testi-quote {
    color: var(--bh-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.bh-testi-quote strong {
    color: var(--bh-primary-light);
    font-weight: 700;
    font-style: normal;
}

.bh-testi-metric {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.bh-testi-metric-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.bh-testi-metric-label {
    font-size: 11px;
    color: var(--bh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bh-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--bh-border);
}

.bh-testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.bh-testi-name {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.bh-testi-role {
    color: var(--bh-text-dim);
    font-size: 12px;
}

/* ============ COMPARE TABLE ============ */
.bh-compare-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bh-border);
    border-radius: var(--bh-radius);
    padding: 8px;
    backdrop-filter: blur(20px);
    overflow-x: auto;
}

.bh-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.bh-compare-table th,
.bh-compare-table td {
    padding: 16px 24px;
    text-align: center;
    color: var(--bh-text);
}

.bh-compare-table thead th {
    color: var(--bh-text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
}

.bh-compare-feature-col { text-align: left !important; }

.bh-compare-us-col {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05)) !important;
    border-left: 1px solid rgba(16, 185, 129, 0.3);
    border-right: 1px solid rgba(16, 185, 129, 0.3);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px 10px 0 0;
}

.bh-compare-us-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--bh-primary-light) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.bh-compare-us-label i {
    color: var(--bh-primary);
    font-size: 18px;
}

.bh-compare-table tbody tr {
    border-top: 1px solid var(--bh-border);
    transition: background 0.2s;
}

.bh-compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.bh-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--bh-text);
}

.bh-compare-us {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent) !important;
    color: var(--bh-primary-light) !important;
    font-weight: 700;
    border-left: 1px solid rgba(16, 185, 129, 0.3);
    border-right: 1px solid rgba(16, 185, 129, 0.3);
}

.bh-compare-us i.lm-check {
    color: var(--bh-primary) !important;
    font-size: 22px;
}

.bh-compare-others {
    color: var(--bh-text-dim) !important;
}

.bh-compare-others i.lm-close {
    color: var(--bh-danger);
    font-size: 20px;
}

.bh-price-us {
    font-size: 20px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

/* ============ FAQ ============ */
.bh-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bh-faq-item {
    margin-bottom: 12px;
    overflow: hidden;
}

.bh-faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    user-select: none;
    transition: color 0.3s;
}

.bh-faq-item summary:hover { color: var(--bh-primary-light); }
.bh-faq-item summary::-webkit-details-marker { display: none; }

.bh-faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: var(--bh-primary);
    font-weight: 300;
    transition: transform 0.3s;
    line-height: 1;
}

.bh-faq-item[open] summary::after { transform: rotate(45deg); }
.bh-faq-item[open] { border-color: rgba(16, 185, 129, 0.3); }

.bh-faq-item p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--bh-text-muted);
    line-height: 1.7;
}

/* ============ CTA ============ */
.bh-cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(102, 126, 234, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.bh-cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent 70%);
    animation: orb-float 15s ease-in-out infinite;
    pointer-events: none;
}

.bh-cta-content { position: relative; z-index: 2; }

.bh-cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 12px;
    color: white;
    letter-spacing: -0.5px;
}

.bh-cta-box p {
    font-size: 18px;
    color: var(--bh-text-muted);
    margin: 0 0 32px;
}

.bh-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bh-cta-note {
    color: var(--bh-text-dim);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bh-cta-note i { color: var(--bh-primary); }

/* ============ FOOTER & HEADER ============ */
.footer, .main-footer, footer {
    background: var(--bh-bg) !important;
    color: var(--bh-text-muted) !important;
    border-top: 1px solid var(--bh-border) !important;
    position: relative;
    z-index: 1;
}

.navbar, .header, .main-header {
    background: rgba(10, 14, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bh-border);
}

.navbar a, .header a, .main-header a { color: var(--bh-text) !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .bh-hero-title { font-size: 44px; }
    .bh-metric-value { font-size: 30px; }
}

@media (max-width: 992px) {
    .bh-hero-wrap { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .bh-hero-visual { order: -1; }
    .bh-server-scene { height: 560px; }
    .bh-server-main { width: 320px; }
    .bh-side-badge { display: none; }
    .bh-chip { min-width: auto; padding: 8px 10px; }
    .bh-chip-icon { font-size: 18px; }
    .bh-chip-name { font-size: 11px; }
    .bh-hero-subtitle { margin-left: auto; margin-right: auto; }
    .bh-hero-cta { justify-content: center; }
    .bh-hero-features { justify-content: center; }
    .bh-hero-title { font-size: 40px; }
    .bh-hero-subtitle { font-size: 16px; }
    .bh-section-title { font-size: 32px; }
    .bh-plans-grid { grid-template-columns: 1fr; }
    .bh-plan-featured { transform: none; }
    .bh-plan-featured:hover { transform: translateY(-6px); }
    .bh-features-grid { grid-template-columns: repeat(2, 1fr); }
    .bh-testimonials-grid { grid-template-columns: 1fr; }
    .bh-metrics-grid { flex-direction: column; }
    .bh-metric-divider { display: none; }
    .bh-hero, .bh-trust, .bh-plans, .bh-worldmap, .bh-features,
    .bh-testimonials, .bh-compare, .bh-faq { padding: 70px 0; }
    .bh-map-wrap { padding: 20px; }
    .bh-world-svg { height: 280px; }
    .bh-floating-card { display: none; }
}

@media (max-width: 640px) {
    .bh-hero { padding: 90px 0 60px; }
    .bh-hero-title { font-size: 34px; }
    .bh-hero-subtitle { font-size: 16px; }
    .bh-section-title { font-size: 28px; }
    .bh-features-grid { grid-template-columns: 1fr; }
    .bh-metric-value { font-size: 26px; }
    .bh-cta-box { padding: 50px 24px; }
    .bh-cta-box h2 { font-size: 28px; }
    .bh-terminal-body { padding: 16px; font-size: 12px; }
    .bh-compare-table th,
    .bh-compare-table td { padding: 12px 8px; font-size: 13px; }
}
