/* ══════════════════════════════════════════
   BLADE RESEARCH HOMEPAGE — CSS
   Scoped to .blade-hp so it never bleeds
   into Divi or other page content.
══════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
.blade-hp {
    --gold:  #c9922b;
    --gold2: #f0b942;
    --teal:  #0d7377;
    --teal2: #14a9ae;
    --r:     14px;
    --r-sm:  8px;
    --r-lg:  20px;
    --ff-h:  'Georgia', serif;
    --ff-b:  -apple-system, 'Segoe UI', sans-serif;
    --ff-m:  'Courier New', monospace;

    /* Light mode */
    --bg:    #FFFFFF;
    --bg2:   #F8F9FC;
    --bg3:   #F0F2F8;
    --bg4:   #E4E8F2;
    --text:  #0A0E1A;
    --muted: #2D3748;
    --dim:   #5A6478;
    --bdr:   rgba(10,14,26,.13);
    --bdr2:  rgba(201,146,43,.35);
    --shad:  0 2px 20px rgba(10,14,26,.09);
    --dot-c: rgba(10,14,26,.07);
    --ln-c:  rgba(201,146,43,.25);

    font-family: var(--ff-b);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background .3s, color .3s;
}

/* Dark mode */
.blade-hp[data-theme="dark"] {
    --bg:    #0d1526;
    --bg2:   #162035;
    --bg3:   #1e2d4a;
    --bg4:   #243352;
    --text:  #e2e8f0;
    --muted: #8892a4;
    --dim:   #4a5568;
    --bdr:   rgba(255,255,255,.08);
    --bdr2:  rgba(240,185,66,.18);
    --shad:  0 4px 24px rgba(0,0,0,.3);
    --dot-c: rgba(255,255,255,.04);
    --ln-c:  rgba(240,185,66,.15);
}

.blade-hp *, .blade-hp *::before, .blade-hp *::after {
    box-sizing: border-box; margin: 0; padding: 0;
}
.blade-hp a { text-decoration: none; }
.blade-hp img { max-width: 100%; display: block; }

/* ─── SCROLLBAR ─── */
.blade-hp ::-webkit-scrollbar { width: 5px; }
.blade-hp ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── THEME TOGGLE ─── */
.bhp-theme-toggle {
    position: fixed; top: 16px; right: 80px; z-index: 10000;
    width: 36px; height: 36px; border-radius: var(--r-sm);
    background: var(--bg3); border: 1px solid var(--bdr);
    cursor: pointer; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s; color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.bhp-theme-toggle:hover { background: var(--bg4); border-color: var(--bdr2); transform: scale(1.05); }

/* ─── CONTAINER ─── */
.bhp-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.bhp-section { padding: 88px 0; }
.bhp-bg2 { background: var(--bg2); }

/* ─── SECTION LABELS ─── */
.bhp-s-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gold2); margin-bottom: 12px;
}
.bhp-s-label::before { content: ''; width: 18px; height: 2px; background: var(--gold2); border-radius: 1px; }
.bhp-s-h2 {
    font-family: var(--ff-h);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700; color: var(--text);
    line-height: 1.12; letter-spacing: -.3px;
    margin-bottom: 12px;
}
.bhp-s-h2 .bhp-g {
    background: linear-gradient(90deg, var(--gold2), var(--teal2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bhp-s-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 540px; }

/* ══════════════════════════════════════════
   HERO — viewport-fit, no scroll needed
   Uses CSS var --divi-offset injected by PHP
   (default 80px = Divi sticky header height)
══════════════════════════════════════════ */
.blade-hero {
    /* Exactly the remaining viewport after Divi header */
    min-height: calc(100vh - var(--divi-offset, 80px));
    max-height: calc(100vh - var(--divi-offset, 80px));
    display: flex; align-items: center;
    /* Top pad = just enough to clear header, bottom tight */
    padding: 20px 0 16px;
    position: relative; overflow: hidden;
    background: var(--bg);
    /* Prevent hero itself from scrolling internally */
    box-sizing: border-box;
}
.bhp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.bhp-hero-bg::before {
    content: ''; position: absolute;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle,rgba(201,146,43,.09) 0%,transparent 65%);
    top: -200px; right: -100px;
}
.bhp-hero-bg::after {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle,rgba(13,115,119,.07) 0%,transparent 65%);
    bottom: -100px; left: -50px;
}
.bhp-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(var(--dot-c) 1px, transparent 1px);
    background-size: 36px 36px; opacity: .6;
}
.bhp-line {
    position: absolute; top: 0; left: 50%;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--ln-c), transparent);
    transform: translateX(-50%);
}
.bhp-hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 36px; align-items: center; width: 100%;
}

/* Eyebrow */
.bhp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,146,43,.12); border: 1.5px solid rgba(201,146,43,.35);
    border-radius: 24px; padding: 7px 18px;
    font-size: 11px; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: .9px; margin-bottom: 22px;
}
.bhp-blink-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    animation: bhpBlink 2s infinite;
}
@keyframes bhpBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* Headline */
.bhp-h1 {
    font-family: var(--ff-h);
    font-size: clamp(28px, 4.2vw, 56px);
    font-weight: 700; line-height: 1.12;
    letter-spacing: -.5px; color: var(--text);
    margin-bottom: 18px;
}
.bhp-h1-line3 { display: block; }
.bhp-grad {
    background: linear-gradient(90deg, var(--gold), var(--teal2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bhp-underline { position: relative; display: inline-block; }
.bhp-underline::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 2px;
}

/* Sub + pills */
.bhp-sub { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; max-width: 500px; }
.bhp-sub strong { color: var(--text); font-weight: 600; }
.bhp-quick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bhp-pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 600;
    background: var(--bg2); border: 1px solid var(--bdr);
    border-radius: 20px; padding: 5px 12px; color: var(--muted);
}

/* CTA buttons */
.bhp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.bhp-btn-primary {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0d1526; border: none; border-radius: var(--r-sm);
    font-family: var(--ff-b); font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all .22s;
    box-shadow: 0 6px 22px rgba(201,146,43,.35);
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.bhp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,146,43,.48); }
.bhp-btn-outline {
    padding: 14px 28px; background: transparent;
    color: var(--teal2); border: 1.5px solid rgba(20,169,174,.4);
    border-radius: var(--r-sm); font-family: var(--ff-b);
    font-size: 15px; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: all .22s;
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.bhp-btn-outline:hover { border-color: var(--teal2); background: rgba(20,169,174,.08); transform: translateY(-1px); }

/* Proof */
.bhp-proof { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bhp-avatars { display: flex; }
.bhp-avatars span {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2.5px solid var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; background: var(--bg3);
    margin-left: -8px;
}
.bhp-avatars span:first-child { margin-left: 0; }
.bhp-proof-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.bhp-proof-text strong { color: var(--gold); font-weight: 700; }

/* Hero right card */
.bhp-hero-right { position: relative; }
.bhp-card {
    background: var(--bg2); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 20px 56px rgba(0,0,0,.12);
    animation: bhpFloat 7s ease-in-out infinite;
}
@keyframes bhpFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.bhp-card-top {
    background: var(--bg3); padding: 12px 16px;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--bdr);
}
.bhp-dot { width: 10px; height: 10px; border-radius: 50%; }
.bhp-dot.red { background: #f87171; }
.bhp-dot.yellow { background: #fbbf24; }
.bhp-dot.green { background: #4ade80; }
.bhp-card-title { font-family: var(--ff-h); font-size: 13px; font-weight: 600; color: var(--gold); margin: 0 auto; }
.bhp-card-body { padding: 18px; }
.bhp-card-apps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.bhp-card-app {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; background: var(--bg);
    border-radius: var(--r-sm); border: 1px solid var(--bdr);
    transition: all .18s;
}
.bhp-card-app:hover { border-color: rgba(201,146,43,.3); transform: translateX(3px); }
.bhp-card-app-icon { font-size: 18px; flex-shrink: 0; }
.bhp-card-app-name { font-size: 12px; font-weight: 600; color: var(--text); }
.bhp-card-app-desc { font-size: 10px; color: var(--muted); }
.bhp-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.bhp-card-stat {
    text-align: center; padding: 10px 6px;
    background: var(--bg); border-radius: var(--r-sm);
    border: 1px solid var(--bdr);
}
.bhp-card-stat strong { display: block; font-family: var(--ff-h); font-size: 18px; font-weight: 700; color: var(--gold); line-height: 1; }
.bhp-card-stat span { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; display: block; }
.bhp-online-bar {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px;
    background: rgba(13,115,119,.08); border-radius: var(--r-sm);
    border: 1px solid rgba(20,169,174,.2); font-size: 11px;
    color: var(--teal2); font-weight: 600;
}
.bhp-online-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80; box-shadow: 0 0 8px #4ade80;
    flex-shrink: 0; animation: bhpBlink 2s infinite;
}
.bhp-float1 {
    position: absolute; top: -14px; right: -14px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0d1526; border-radius: 12px; padding: 8px 14px;
    font-size: 11px; font-weight: 700;
    box-shadow: 0 6px 20px rgba(201,146,43,.45);
    white-space: nowrap; z-index: 3;
    animation: bhpFloat 7s ease-in-out infinite .3s;
}
.bhp-float2 {
    position: absolute; bottom: -14px; left: -14px;
    background: var(--bg2); border: 1.5px solid rgba(20,169,174,.35);
    border-radius: 12px; padding: 8px 14px;
    font-size: 11px; font-weight: 600; color: var(--teal2);
    white-space: nowrap; z-index: 3;
    display: flex; align-items: center; gap: 6px;
    animation: bhpFloat 7s ease-in-out infinite 1s;
    box-shadow: 0 4px 16px rgba(13,21,38,.1);
}

/* ── BADGES ── */
.bhp-badge {
    font-size: 10px; font-weight: 700; padding: 2px 9px;
    border-radius: 10px; white-space: nowrap; margin-left: auto;
}
.bgold, .bhp-badge-gold { background: rgba(201,146,43,.15); color: var(--gold); border: 1px solid rgba(201,146,43,.25); }
.bteal, .bhp-badge-teal { background: rgba(13,115,119,.15); color: var(--teal2); border: 1px solid rgba(13,115,119,.25); }
.bdim,  .bhp-badge-dim  { background: rgba(255,255,255,.06); color: var(--muted); border: 1px solid var(--bdr); }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.bhp-marquee-wrap {
    background: var(--bg3); border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: 14px 0; overflow: hidden;
}
.bhp-marquee-track {
    display: flex; gap: 0;
    animation: bhpMarquee 28s linear infinite;
    width: max-content;
}
@keyframes bhpMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.bhp-marquee-item {
    display: flex; align-items: center; gap: 8px;
    padding: 0 28px; font-size: 12px; font-weight: 600;
    color: var(--muted); white-space: nowrap;
    border-right: 1px solid var(--bdr);
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.bhp-stats-bar {
    background: linear-gradient(135deg, var(--teal) 0%, var(--bg3) 50%, var(--bg3) 100%);
    padding: 40px 0; border-bottom: 1px solid var(--bdr);
}
.bhp-stats-grid {
    display: grid; grid-template-columns: repeat(6,1fr); gap: 0;
}
.bhp-stat { text-align: center; padding: 0 20px; border-right: 1px solid var(--bdr); }
.bhp-stat:last-child { border-right: none; }
.bhp-stat-num { font-family: var(--ff-h); font-size: 32px; font-weight: 700; color: var(--gold2); line-height: 1; margin-bottom: 4px; }
.bhp-stat-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; }

/* ══════════════════════════════════════════
   VS TABLE
══════════════════════════════════════════ */
.bhp-table-wrap {
    margin-top: 48px; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-lg); border: 1px solid var(--bdr);
    background: var(--bg3);
}
.bhp-vs-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.bhp-vs-table th {
    padding: 18px 20px; text-align: center;
    font-family: var(--ff-h); font-size: 14px; font-weight: 700;
    border-bottom: 1px solid var(--bdr); color: var(--muted);
}
.bhp-vs-table th:first-child { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; }
.bhp-vs-table th.blade-col { color: var(--gold2); background: rgba(201,146,43,.06); }
.bhp-vs-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--bdr);
    font-size: 13px; color: var(--muted); text-align: center; vertical-align: middle;
}
.bhp-vs-table td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.bhp-vs-table tr:last-child td { border-bottom: none; }
.bhp-vs-table td.blade-col { background: rgba(201,146,43,.04); }
.bhp-vs-table tr:hover td { background: rgba(255,255,255,.02); }

/* ══════════════════════════════════════════
   APPS GRID
══════════════════════════════════════════ */
.bhp-apps-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.bhp-app-card {
    background: var(--bg2); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 28px;
    transition: all .25s; position: relative; overflow: hidden;
}
.bhp-app-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.2); border-color: rgba(240,185,66,.25); }
.bhp-soon { border-style: dashed; opacity: .85; }
.bhp-app-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.bhp-app-icon {
    width: 50px; height: 50px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.bhp-app-icon-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); }
.bhp-app-icon-teal { background: linear-gradient(135deg, var(--teal), var(--teal2)); }
.bhp-app-icon-dim  { background: linear-gradient(135deg, #1e2d4a, #243352); }
.bhp-app-name { font-family: var(--ff-h); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.bhp-app-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.bhp-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.bhp-app-pill {
    font-size: 10px; font-weight: 500;
    background: rgba(255,255,255,.05); color: var(--muted);
    padding: 3px 9px; border-radius: 20px; border: 1px solid var(--bdr);
}
.bhp-app-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--gold2);
}
.bhp-arrow { transition: transform .18s; }
.bhp-app-card:hover .bhp-arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════
   HOW WE BUILD
══════════════════════════════════════════ */
.bhp-build-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 48px; }
.bhp-steps { display: flex; flex-direction: column; gap: 0; }
.bhp-step { display: flex; gap: 18px; padding: 20px 0; position: relative; }
.bhp-step:not(:last-child)::after {
    content: ''; position: absolute; left: 17px; top: 50px; bottom: -20px;
    width: 2px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.bhp-step-n {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg); display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-h); font-size: 13px; font-weight: 700;
    flex-shrink: 0; box-shadow: 0 4px 12px rgba(201,146,43,.35);
}
.bhp-step-title { font-family: var(--ff-h); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.bhp-step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.bhp-experts-card {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 22px;
    box-shadow: var(--shad);
}
.bhp-experts-title {
    font-family: var(--ff-h); font-size: 14px; font-weight: 600;
    color: var(--gold); margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid var(--bdr);
}
.bhp-expert {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 12px; background: var(--bg2);
    border-radius: var(--r-sm); border: 1px solid var(--bdr);
    margin-bottom: 8px;
}
.bhp-expert-av {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--bg); flex-shrink: 0;
}
.bhp-expert-av.teal { background: linear-gradient(135deg, var(--teal), var(--teal2)); }
.bhp-expert-name { font-size: 12px; font-weight: 600; color: var(--text); }
.bhp-expert-role { font-size: 10px; color: var(--muted); }
.bhp-expert-status {
    margin-left: auto; font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 10px;
}
.st-online { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
.st-busy   { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.2); }
.bhp-experts-cta {
    background: rgba(13,115,119,.1); border: 1px solid rgba(20,169,174,.2);
    border-radius: var(--r-sm); padding: 12px 14px;
    font-size: 12px; color: var(--teal2); font-weight: 600; margin-top: 8px;
}

/* ══════════════════════════════════════════
   FEATURES BENTO
══════════════════════════════════════════ */
.bhp-bento-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.bhp-bento {
    background: var(--bg2); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 24px; transition: all .22s; position: relative; overflow: hidden;
}
.bhp-bento:hover { border-color: rgba(240,185,66,.25); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
.bhp-bento.bhp-bento-teal { background: linear-gradient(135deg,rgba(13,115,119,.12) 0%,var(--bg2) 100%); border-color: rgba(20,169,174,.2); }
.bhp-span2 { grid-column: span 2; }
.bhp-bento-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.bhp-bento-title { font-family: var(--ff-h); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.bhp-bento-desc  { font-size: 12px; color: var(--muted); line-height: 1.65; }
.bhp-bento-pill {
    display: inline-block; font-size: 10px;
    background: rgba(201,146,43,.1); color: var(--gold2);
    padding: 2px 8px; border-radius: 10px;
    border: 1px solid rgba(201,146,43,.15); margin: 2px;
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.bhp-plans-top {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.bhp-billing-toggle { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bhp-btl { font-size: 13px; font-weight: 600; color: var(--dim); }
.bhp-btl.on { color: var(--gold2); }
.bhp-toggle {
    width: 48px; height: 26px; background: var(--bg4);
    border: 1px solid var(--bdr); border-radius: 13px;
    cursor: pointer; position: relative; transition: background .2s;
}
.bhp-toggle.on { background: var(--gold); }
.bhp-thumb {
    position: absolute; top: 3px; left: 3px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; transition: transform .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.bhp-toggle.on .bhp-thumb { transform: translateX(22px); }
.bhp-save-pill {
    font-size: 11px; font-weight: 700; color: #4ade80;
    background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2);
    padding: 2px 9px; border-radius: 10px;
}
.bhp-plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bhp-plan {
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 26px 22px;
    display: flex; flex-direction: column; position: relative;
    transition: all .22s;
}
.bhp-plan:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.15); }
.bhp-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(201,146,43,.3), 0 20px 60px rgba(0,0,0,.15);
    background: linear-gradient(160deg, rgba(201,146,43,.06) 0%, var(--bg3) 60%);
}
.bhp-plan-pop {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg); font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .8px;
    padding: 3px 14px; border-radius: 20px;
    box-shadow: 0 4px 12px rgba(201,146,43,.4); white-space: nowrap;
}
.bhp-plan-name { font-family: var(--ff-h); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.bhp-plan-tag { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.bhp-plan-price { display: flex; align-items: flex-end; gap: 3px; margin-bottom: 6px; }
.bhp-plan-price sup { font-size: 16px; color: var(--gold2); font-weight: 700; line-height: 2.4; }
.bhp-plan-price strong { font-family: var(--ff-h); font-size: 40px; font-weight: 700; color: var(--text); line-height: 1; }
.bhp-plan-price sub { font-size: 12px; color: var(--muted); line-height: 2.8; }
.bhp-plan-cycle { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.bhp-per-class {
    display: flex; align-items: center; gap: 7px;
    background: rgba(201,146,43,.08); border: 1px solid rgba(201,146,43,.2);
    border-radius: var(--r-sm); padding: 7px 12px;
    font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.4;
}
.bhp-per-class strong { color: var(--gold); font-weight: 700; }
.bhp-plan-feats { display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 20px; }
.bhp-feat { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: var(--muted); }
.bhp-feat-chk {
    width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; margin-top: 1px;
}
.bhp-feat-chk.gold { background: rgba(201,146,43,.15); color: var(--gold2); }
.bhp-feat-chk.teal { background: rgba(13,115,119,.18); color: var(--teal2); }
.bhp-feat-chk.dim  { background: rgba(255,255,255,.07); color: var(--muted); }
.bhp-plan-btn {
    width: 100%; padding: 12px; border-radius: var(--r-sm);
    font-family: var(--ff-b); font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all .2s; border: none;
    text-decoration: none; text-align: center; display: block;
    margin-bottom: 12px;
}
.bhp-btn-ghost { background: transparent; border: 1px solid var(--bdr); color: var(--muted); }
.bhp-btn-ghost:hover { border-color: var(--gold2); color: var(--gold2); background: rgba(201,146,43,.06); }
.bhp-btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--bg); box-shadow: 0 4px 16px rgba(201,146,43,.35); }
.bhp-btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(201,146,43,.45); color: var(--bg); }
.bhp-btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #fff; box-shadow: 0 4px 16px rgba(13,115,119,.35); }
.bhp-btn-teal:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(13,115,119,.45); color: #fff; }
.bhp-multi-class {
    font-size: 12px; color: var(--muted);
    background: rgba(201,146,43,.06); border: 1px dashed rgba(201,146,43,.3);
    border-radius: var(--r-sm); padding: 10px 12px; line-height: 1.55;
}
.bhp-multi-class a { color: var(--gold); font-weight: 700; margin-left: 4px; }

/* ══════════════════════════════════════════
   ORDERS
══════════════════════════════════════════ */
.bhp-orders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.bhp-order-card {
    background: var(--bg); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 32px 28px;
    position: relative; overflow: hidden; transition: all .25s;
}
.bhp-order-card:hover { transform: translateY(-4px); box-shadow: var(--shad); }
.bhp-order-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.bhp-order-card:first-child::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.bhp-order-card:last-child::before { background: linear-gradient(90deg, var(--teal), var(--teal2)); }
.bhp-order-badge {
    position: absolute; top: 20px; right: 20px;
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 10px; text-transform: uppercase;
}
.bhp-order-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 18px;
}
.bhp-order-title { font-family: var(--ff-h); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
.bhp-order-sub { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.bhp-orders-tip {
    display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap;
    margin-top: 24px; padding: 16px 20px;
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r); font-size: 13px; color: var(--muted);
}
.bhp-orders-tip strong { color: var(--text); }
.bhp-orders-tip a { color: var(--gold); font-weight: 700; margin-left: 6px; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.bhp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.bhp-testi {
    background: var(--bg2); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 24px; transition: all .22s;
}
.bhp-testi:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.15); border-color: rgba(201,146,43,.2); }
.bhp-stars { color: var(--gold2); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.bhp-testi-q {
    font-family: var(--ff-h); font-size: 14px; font-style: italic;
    color: var(--text); line-height: 1.7; margin-bottom: 16px;
    border-left: 2px solid var(--gold); padding-left: 12px;
}
.bhp-testi-author { display: flex; align-items: center; gap: 10px; }
.bhp-testi-av {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--bg);
}
.bhp-testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.bhp-testi-uni { font-size: 11px; color: var(--muted); }

/* ══════════════════════════════════════════
   HIRE
══════════════════════════════════════════ */
.bhp-hire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 48px; }
.bhp-hire-roles { display: flex; flex-direction: column; gap: 12px; }
.bhp-hire-role {
    display: flex; align-items: flex-start; gap: 14px; padding: 16px;
    background: var(--bg3); border: 1px solid var(--bdr);
    border-radius: var(--r); transition: all .2s;
}
.bhp-hire-role:hover { border-color: rgba(240,185,66,.25); transform: translateX(4px); }
.bhp-hire-icon {
    width: 40px; height: 40px; border-radius: 11px;
    background: var(--bg4); border: 1px solid var(--bdr);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.bhp-hire-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.bhp-hire-desc  { font-size: 12px; color: var(--muted); line-height: 1.55; }
.bhp-hire-cta {
    background: linear-gradient(145deg, var(--teal) 0%, var(--bg3) 100%);
    border: 1px solid rgba(20,169,174,.3);
    border-radius: var(--r-lg); padding: 32px; text-align: center;
}
.bhp-hire-cta h3 { font-family: var(--ff-h); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.25; }
.bhp-hire-cta p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.bhp-hire-locs { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-bottom: 22px; }
.bhp-hire-loc {
    display: flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--text);
}
.bhp-btn-hire {
    display: inline-block; padding: 13px 28px;
    background: var(--gold2); color: var(--bg);
    border-radius: var(--r-sm); font-family: var(--ff-b);
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: all .2s; box-shadow: 0 4px 16px rgba(201,146,43,.35);
}
.bhp-btn-hire:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,43,.45); color: var(--bg); }

/* ══════════════════════════════════════════
   CALCULATOR
══════════════════════════════════════════ */
.bhp-calc-card {
    background: var(--bg); border: 1px solid var(--bdr);
    border-radius: var(--r-lg); padding: 32px; margin-top: 48px;
    box-shadow: var(--shad);
}
.bhp-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.bhp-calc-field { display: flex; flex-direction: column; gap: 8px; }
.bhp-calc-label { font-size: 13px; font-weight: 600; color: var(--text); }
.bhp-calc-val {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg); padding: 2px 10px; border-radius: 10px;
    font-size: 12px; font-weight: 700; margin-left: 4px;
}
.bhp-slider {
    width: 100%; -webkit-appearance: none; appearance: none;
    height: 5px; border-radius: 3px; background: var(--bg3);
    outline: none; cursor: pointer;
}
.bhp-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    cursor: pointer; box-shadow: 0 2px 8px rgba(201,146,43,.4);
    border: 2px solid var(--bg);
}
.bhp-slider::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    cursor: pointer; box-shadow: 0 2px 8px rgba(201,146,43,.4);
    border: 2px solid var(--bg);
}
.bhp-range-lbl { display: flex; justify-content: space-between; font-size: 10px; color: var(--dim); }
.bhp-calc-results { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 24px; }
.bhp-calc-res {
    border-radius: var(--r); padding: 18px 16px;
    text-align: center; border: 1px solid var(--bdr);
}
.bhp-res-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.bhp-res-num { font-family: var(--ff-h); font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.bhp-res-sub { font-size: 10px; color: var(--muted); }
.res-cost  { background: rgba(248,113,113,.06); border-color: rgba(248,113,113,.15); }
.res-cost  .bhp-res-num { color: #f87171; }
.res-blade { background: rgba(13,115,119,.07); border-color: rgba(20,169,174,.18); }
.res-blade .bhp-res-num { color: var(--teal2); }
.res-save  { background: linear-gradient(135deg,rgba(201,146,43,.12),rgba(240,185,66,.06)); border-color: rgba(240,185,66,.25); }
.res-save  .bhp-res-num { color: var(--gold2); }
.res-year  { background: rgba(139,92,246,.07); border-color: rgba(139,92,246,.18); }
.res-year  .bhp-res-num { color: #a78bfa; }
.bhp-save-badge {
    display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 700;
    background: rgba(74,222,128,.12); color: #4ade80;
    border: 1px solid rgba(74,222,128,.2); padding: 2px 10px; border-radius: 10px;
}
.bhp-calc-cta {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid var(--bdr);
}
.bhp-calc-note { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.bhp-faq-inner { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.bhp-faq-contact {
    background: var(--bg2); border: 1px solid var(--bdr);
    border-left: 3px solid var(--teal2); border-radius: var(--r);
    padding: 14px 16px; font-size: 13px; color: var(--muted);
    margin-top: 24px; line-height: 1.6;
}
.bhp-faq-contact strong { color: var(--text); }
.bhp-faq-list { display: flex; flex-direction: column; }
.bhp-faq-item { border-bottom: 1px solid var(--bdr); }
.bhp-faq-item:first-child { border-top: 1px solid var(--bdr); }
.bhp-faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 18px 4px; display: flex; align-items: center;
    justify-content: space-between; gap: 16px; text-align: left;
    font-family: var(--ff-b); font-size: 14px; font-weight: 600;
    color: var(--text); transition: color .18s;
}
.bhp-faq-q:hover { color: var(--gold2); }
.bhp-faq-item[data-open="true"] .bhp-faq-q { color: var(--gold2); }
.bhp-faq-chev { font-size: 10px; color: var(--muted); transition: transform .25s; flex-shrink: 0; }
.bhp-faq-item[data-open="true"] .bhp-faq-chev { transform: rotate(180deg); color: var(--gold2); }
.bhp-faq-a { display: none; padding: 0 4px 18px; animation: bhpFaqFade .25s ease; }
.bhp-faq-item[data-open="true"] .bhp-faq-a { display: block; }
.bhp-faq-a p { font-size: 13px; color: var(--muted); line-height: 1.8; }
@keyframes bhpFaqFade { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════
   DISCLAIMER & FOOTER
══════════════════════════════════════════ */
.bhp-disclaimer {
    background: var(--bg3); border-top: 1px solid var(--bdr);
    padding: 18px 0; text-align: center;
}
.bhp-disclaimer p {
    font-size: 10px; color: var(--dim);
    max-width: 800px; margin: 0 auto; padding: 0 28px; line-height: 1.7;
}
.bhp-disclaimer strong { color: var(--muted); }
.bhp-footer { background: var(--bg2); border-top: 1px solid var(--bdr); padding: 48px 0 24px; }
.bhp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.bhp-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bhp-footer-mark {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    font-size: 17px; box-shadow: 0 4px 14px rgba(201,146,43,.4);
}
.bhp-footer-name { font-family: var(--ff-h); font-size: 16px; font-weight: 700; color: var(--gold2); }
.bhp-footer-domain { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.bhp-footer-brand p { font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 220px; }
.bhp-footer-h { font-family: var(--ff-h); font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .6px; }
.bhp-footer-links { display: flex; flex-direction: column; gap: 7px; }
.bhp-footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .18s; }
.bhp-footer-links a:hover { color: var(--gold2); }
.bhp-footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px; padding-top: 20px;
    border-top: 1px solid var(--bdr); font-size: 11px; color: var(--dim);
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.bhp-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 9998;
    display: flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    border-radius: 50px; padding: 13px 20px 13px 16px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
    transition: all .25s; white-space: nowrap;
    animation: bhpWaIn .6s ease .8s both;
}
@keyframes bhpWaIn { from{opacity:0;transform:translateY(20px) scale(.9)} to{opacity:1;transform:translateY(0) scale(1)} }
.bhp-wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.bhp-wa-label { font-family: var(--ff-b); font-size: 13px; font-weight: 700; }
.bhp-wa-pulse {
    position: absolute; top: -3px; right: -3px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #ff4444; border: 2px solid var(--bg);
    animation: bhpWaPulse 2s infinite;
}
@keyframes bhpWaPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15);box-shadow:0 0 0 6px rgba(255,68,68,0)} }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.bhp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.bhp-reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
   1024 → 900 → 768 → 640 → 480 → 380
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bhp-hero-inner  { grid-template-columns: 1fr; gap: 44px; }
    .bhp-hero-right  { max-width: 560px; margin: 0 auto; width: 100%; }
    .bhp-stats-grid  { grid-template-columns: repeat(3,1fr); }
    .bhp-stat:nth-child(3) { border-right: none; }
    .bhp-stat:nth-child(4),.bhp-stat:nth-child(5),.bhp-stat:nth-child(6) { border-top: 1px solid var(--bdr); }
    .bhp-bento-grid  { grid-template-columns: 1fr 1fr; }
    .bhp-span2        { grid-column: span 1; }
    .bhp-footer-grid  { grid-template-columns: 1fr 1fr; gap: 24px; }
    .bhp-plans-grid   { grid-template-columns: 1fr 1fr 1fr; }
    .bhp-faq-inner    { grid-template-columns: 280px 1fr; gap: 40px; }
    .bhp-calc-results { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 900px) {
    .blade-hero      { padding: 100px 0 52px; }
    .bhp-build-grid  { grid-template-columns: 1fr; gap: 36px; }
    .bhp-hire-grid   { grid-template-columns: 1fr; gap: 32px; }
    .bhp-plans-grid  { grid-template-columns: 1fr 1fr; }
    .bhp-testi-grid  { grid-template-columns: 1fr 1fr; }
    .bhp-apps-grid   { grid-template-columns: 1fr; }
    .bhp-faq-inner   { grid-template-columns: 1fr; gap: 28px; }
    .bhp-theme-toggle { right: 56px; }
}
@media (max-width: 768px) {
    .blade-hero      { padding: 88px 0 44px; min-height: unset; }
    .bhp-h1          { font-size: 30px; }
    .bhp-s-h2        { font-size: 26px; }
    .bhp-plans-top   { flex-direction: column; align-items: flex-start; }
    .bhp-testi-grid  { grid-template-columns: 1fr; }
    .bhp-stats-grid  { grid-template-columns: repeat(3,1fr); }
    .bhp-stat        { padding: 16px 8px; }
    .bhp-stat-num    { font-size: 26px; }
    .bhp-bento-grid  { grid-template-columns: 1fr; }
    .bhp-calc-row    { grid-template-columns: 1fr; gap: 16px; }
    .bhp-footer-grid { grid-template-columns: 1fr 1fr; }
    .bhp-theme-toggle { right: 48px; top: 12px; }
}
@media (max-width: 640px) {
    .bhp-section     { padding: 56px 0; }
    .bhp-container   { padding: 0 16px; }
    .blade-hero      { padding: 80px 0 40px; }
    .bhp-hero-inner  { gap: 32px; }
    .bhp-h1          { font-size: 26px; letter-spacing: -.2px; margin-bottom: 14px; }
    .bhp-eyebrow     { font-size: 10px; padding: 5px 13px; }
    .bhp-sub         { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
    .bhp-quick       { gap: 5px; margin-bottom: 16px; }
    .bhp-pill        { font-size: 10px; padding: 4px 9px; }
    .bhp-hero-btns   { flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .bhp-btn-primary,.bhp-btn-outline { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; }
    .bhp-proof-text  { font-size: 12px; }
    .bhp-float1,.bhp-float2 { display: none; }
    .bhp-stats-grid  { grid-template-columns: repeat(2,1fr); }
    .bhp-stat        { border-right: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
    .bhp-stat:nth-child(2) { border-right: none; }
    .bhp-stat:nth-child(5) { border-right: 1px solid var(--bdr); }
    .bhp-stat:nth-child(6) { border-right: none; }
    .bhp-stat:nth-child(5),.bhp-stat:nth-child(6) { border-bottom: none; }
    .bhp-stat-num    { font-size: 22px; }
    .bhp-plans-grid  { grid-template-columns: 1fr; }
    .bhp-bento       { padding: 18px; }
    .bhp-calc-card   { padding: 18px 14px; }
    .bhp-calc-results { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bhp-res-num     { font-size: 20px; }
    .bhp-calc-cta    { flex-direction: column; align-items: stretch; }
    .bhp-faq-q       { font-size: 13px; padding: 15px 0; }
    .bhp-orders-grid { grid-template-columns: 1fr; gap: 16px; }
    .bhp-order-card  { padding: 24px 18px; }
    .bhp-footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .bhp-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .bhp-wa          { padding: 14px; border-radius: 50%; right: 16px; bottom: 16px; gap: 0; }
    .bhp-wa-label    { display: none; }
    .bhp-marquee-item { padding: 0 18px; font-size: 11px; }
    .bhp-theme-toggle { right: 14px; top: 10px; width: 32px; height: 32px; }
    .bhp-hire-cta    { padding: 22px 16px; }
    .bhp-hire-cta h3 { font-size: 20px; }
}
@media (max-width: 480px) {
    .bhp-h1          { font-size: 23px; }
    .bhp-s-h2        { font-size: 21px; }
    .bhp-plan        { padding: 20px 14px; }
    .bhp-plan-price strong { font-size: 32px; }
    .bhp-testi       { padding: 18px; }
    .bhp-calc-results { grid-template-columns: 1fr; }
    .bhp-res-num     { font-size: 24px; }
}
@media (max-width: 380px) {
    .bhp-container   { padding: 0 12px; }
    .bhp-h1          { font-size: 20px; }
    .bhp-s-h2        { font-size: 19px; }
    .bhp-eyebrow     { display: none; }
    .bhp-quick       { display: none; }
    .bhp-sub         { font-size: 13px; }
    .bhp-btn-primary,.bhp-btn-outline { font-size: 13px; padding: 12px 16px; }
    .bhp-stat-num    { font-size: 20px; }
}
@media (hover: none) and (pointer: coarse) {
    .bhp-btn-primary,.bhp-btn-outline,.bhp-plan-btn,.bhp-btn-hire { min-height: 48px; }
    .bhp-faq-q { min-height: 48px; }
    .bhp-app-card:hover,.bhp-plan:hover,.bhp-testi:hover { transform: none; }
    .bhp-hire-role:hover { transform: none; }
    .bhp-card-app:hover { transform: none; }
}

/* ══════════════════════════════════════════
   HERO VIEWPORT-FIT OVERRIDES
   Compact spacing so ALL content is visible
   without scrolling on any screen size
══════════════════════════════════════════ */

/* Shrink eyebrow margin */
.bhp-eyebrow { margin-bottom: 12px; }

/* Headline — clamp tighter so it never overflows */
.bhp-h1 {
    font-size: clamp(22px, 3.2vw, 46px);
    margin-bottom: 10px;
    line-height: 1.1;
}

/* Sub text tighter */
.bhp-sub {
    font-size: clamp(12px, 1.4vw, 15px);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Pills row tighter */
.bhp-quick { margin-bottom: 14px; gap: 5px; }
.bhp-pill  { font-size: 10px; padding: 4px 10px; }

/* CTA buttons compact */
.bhp-hero-btns { margin-bottom: 16px; gap: 10px; }
.bhp-btn-primary { padding: 12px 22px; font-size: 14px; }
.bhp-btn-outline { padding: 11px 20px; font-size: 14px; }

/* Proof compact */
.bhp-proof { gap: 8px; }
.bhp-proof-text { font-size: 12px; line-height: 1.4; }
.bhp-avatars span { width: 28px; height: 28px; font-size: 12px; }

/* Hero card — scale down so it fits */
.bhp-card-body { padding: 12px; }
.bhp-card-apps { gap: 5px; margin-bottom: 10px; }
.bhp-card-app  { padding: 7px 10px; }
.bhp-card-app-icon { font-size: 15px; }
.bhp-card-app-name { font-size: 11px; }
.bhp-card-app-desc { font-size: 9px; }
.bhp-card-stats    { gap: 6px; margin-bottom: 8px; }
.bhp-card-stat     { padding: 7px 4px; }
.bhp-card-stat strong { font-size: 14px; }
.bhp-card-stat span   { font-size: 8px; }
.bhp-online-bar { padding: 7px 10px; font-size: 10px; }

/* ── TABLET (1024px) ── */
@media (max-width: 1024px) {
    .blade-hero {
        min-height: calc(100vh - var(--divi-offset, 80px));
        max-height: none; /* allow scroll on tablet portrait if needed */
        padding: 18px 0 14px;
    }
    .bhp-hero-inner { grid-template-columns: 1fr; gap: 24px; }
    .bhp-hero-right { max-width: 500px; margin: 0 auto; width: 100%; }
    .bhp-h1         { font-size: clamp(26px, 5vw, 38px); }
    .bhp-sub        { font-size: 14px; }
}

/* ── DESKTOP LARGE (keep everything tight) ── */
@media (min-width: 1280px) {
    .blade-hero { padding: 16px 0 12px; }
    .bhp-eyebrow { margin-bottom: 10px; }
    .bhp-h1      { font-size: clamp(32px, 3vw, 50px); margin-bottom: 8px; }
    .bhp-sub     { margin-bottom: 12px; }
    .bhp-quick   { margin-bottom: 12px; }
    .bhp-hero-btns { margin-bottom: 14px; }
}

/* ── MOBILE HERO — single column, everything visible ── */
@media (max-width: 768px) {
    .blade-hero {
        min-height: unset;
        max-height: unset;
        padding: 16px 0 24px;
        /* On mobile show BOTH columns stacked,
           card is hidden to save space */
    }
    .bhp-hero-inner { grid-template-columns: 1fr; gap: 20px; }
    .bhp-hero-right { display: none; } /* hide card on mobile — left col only */
    .bhp-h1         { font-size: clamp(28px, 7vw, 36px); line-height: 1.1; margin-bottom: 10px; }
    .bhp-eyebrow    { margin-bottom: 10px; }
    .bhp-sub        { font-size: 14px; margin-bottom: 12px; }
    .bhp-quick      { margin-bottom: 12px; }
    .bhp-hero-btns  { flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
    .bhp-btn-primary,.bhp-btn-outline { width: auto; padding: 11px 18px; font-size: 13px; }
    .bhp-proof      { gap: 8px; }
}

@media (max-width: 640px) {
    .blade-hero { padding: 12px 0 20px; }
    .bhp-h1     { font-size: clamp(24px, 8vw, 32px); }
    .bhp-sub    { font-size: 13px; }
    .bhp-hero-btns  { flex-direction: column; }
    .bhp-btn-primary,.bhp-btn-outline { width: 100%; justify-content: center; }
    .bhp-quick  { display: flex; flex-wrap: wrap; }
    .bhp-pill   { font-size: 10px; }
}

@media (max-width: 480px) {
    .bhp-h1 { font-size: 22px; }
    .bhp-sub { font-size: 13px; line-height: 1.5; }
}

@media (max-width: 380px) {
    .bhp-h1  { font-size: 20px; }
    .bhp-sub { font-size: 12px; }
    .bhp-eyebrow { font-size: 9px; padding: 4px 10px; }
    .bhp-quick   { display: none; }
}

/* ══════════════════════════════════════════
   HERO VISUAL IMPROVEMENTS v2
══════════════════════════════════════════ */

/* ── H1 Beautiful Multi-Colour Typography ── */
.bhp-h1 {
    font-size: clamp(26px, 3.8vw, 52px);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}

/* Line 1: clean dark text */
.bhp-h1-plain {
    color: var(--text);
    font-weight: 800;
}

/* Line 2: rich gold + animated underline */
.bhp-h1-highlight {
    color: var(--gold);
    font-weight: 800;
    display: inline;
}
.bhp-h1-highlight .bhp-underline {
    color: var(--gold);
    position: relative;
    display: inline;
}
.bhp-h1-highlight .bhp-underline::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2), var(--teal2));
    border-radius: 2px;
    animation: bhpUnderlineGrow 1.2s ease forwards;
}
@keyframes bhpUnderlineGrow {
    from { width: 0; opacity: 0; }
    to   { width: 100%; opacity: 1; }
}

.bhp-h1-dash { color: var(--text); font-weight: 800; }

/* Line 3: stunning multi-stop gradient + animated shine */
.bhp-h1-line3 {
    display: block;
    margin-top: 4px;
    font-style: italic;
}
.bhp-grad-shine {
    background: linear-gradient(
        110deg,
        var(--teal)  0%,
        var(--teal2) 30%,
        var(--gold2) 55%,
        var(--gold)  75%,
        var(--teal2) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bhpShine 4s linear infinite;
    font-style: italic;
    font-weight: 700;
}
@keyframes bhpShine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── CTA Primary Button — bright, unmissable ── */
.bhp-btn-primary {
    background: linear-gradient(135deg, #e8a020, #f5c842) !important;
    color: #0d1526 !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 24px rgba(201,146,43,.55), 0 2px 8px rgba(0,0,0,.18) !important;
    border: 2px solid rgba(255,255,255,.3) !important;
    letter-spacing: .2px;
    position: relative;
    overflow: hidden;
}
.bhp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    animation: bhpBtnSheen 3s ease-in-out infinite;
}
@keyframes bhpBtnSheen {
    0%   { left: -100%; }
    50%  { left: 150%; }
    100% { left: 150%; }
}
.bhp-btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 36px rgba(201,146,43,.65), 0 4px 12px rgba(0,0,0,.2) !important;
    color: #0d1526 !important;
}

/* ── Secondary Button — clear teal style ── */
.bhp-btn-outline {
    background: rgba(20,169,174,.1) !important;
    color: var(--teal2) !important;
    border: 2px solid var(--teal2) !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
}
.bhp-btn-outline:hover {
    background: var(--teal2) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

/* ── Proof section — flags always visible ── */
.bhp-proof {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bhp-proof-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bhp-proof-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    font-weight: 500;
}
.bhp-proof-text strong { color: var(--gold); font-weight: 800; }

/* Flag row — ALWAYS visible on all screens */
.bhp-proof-flags {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 14px;
    background: var(--bg2);
    border: 1px solid var(--bdr2);
    border-radius: 30px;
    width: fit-content;
}
.bhp-flag-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.bhp-flag-item span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}
.bhp-flag-sep {
    color: var(--bdr2);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

/* ── Feature Pills — more colourful ── */
.bhp-pill {
    background: var(--bg2) !important;
    border: 1px solid var(--bdr2) !important;
    color: var(--text) !important;
    font-weight: 600 !important;
    transition: all .18s;
}
.bhp-pill:hover {
    background: rgba(201,146,43,.1) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

/* Alternate pill colour (every other) */
.bhp-quick .bhp-pill:nth-child(even) {
    border-color: rgba(20,169,174,.35) !important;
}
.bhp-quick .bhp-pill:nth-child(even):hover {
    background: rgba(20,169,174,.1) !important;
    border-color: var(--teal2) !important;
    color: var(--teal2) !important;
}

/* ── Hero card — subtle glow ── */
.bhp-card {
    box-shadow: 0 24px 60px rgba(0,0,0,.14), 0 0 0 1px rgba(201,146,43,.12) !important;
}
.bhp-card-app:hover {
    background: rgba(201,146,43,.05) !important;
}

/* ── RESPONSIVE: flags stay visible everywhere ── */
@media (max-width: 768px) {
    .bhp-proof-flags {
        padding: 6px 12px;
        gap: 6px;
    }
    .bhp-flag-item { font-size: 12px; }
    .bhp-flag-item span { font-size: 10px; }
}

@media (max-width: 480px) {
    .bhp-proof-flags { gap: 4px; padding: 6px 10px; }
    .bhp-flag-item { font-size: 11px; }
    .bhp-flag-sep { display: none; }
}

/* ── Dark mode H1 tweaks ── */
.blade-hp[data-theme="dark"] .bhp-h1-plain  { color: #e2e8f0; }
.blade-hp[data-theme="dark"] .bhp-h1-dash   { color: #e2e8f0; }
.blade-hp[data-theme="dark"] .bhp-h1-highlight { color: var(--gold2); }
.blade-hp[data-theme="dark"] .bhp-h1-highlight .bhp-underline { color: var(--gold2); }
.blade-hp[data-theme="dark"] .bhp-proof-flags { background: var(--bg3); border-color: rgba(240,185,66,.2); }
