/* ═══════════════════════════════════════════════════════
   BEAR MY BRAND — healthcare.css
   Healthcare Branding Dedicated Page
   Palette: #000 · #060a10 · #0a0f18 · #1b70bb · #fff
═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --hb-blue        : #1b70bb;
  --hb-blue-dim    : rgba(27, 112, 187, .12);
  --hb-blue-glow   : rgba(27, 112, 187, .25);
  --hb-section-pad : clamp(80px, 10vw, 140px);
  --hb-border      : rgba(255, 255, 255, .07);
  --hb-border-blue : rgba(27, 112, 187, .35);
  --hb-white-50    : rgba(255, 255, 255, .5);
  --hb-white-35    : rgba(255, 255, 255, .35);
  --hb-white-20    : rgba(255, 255, 255, .2);
  --hb-white-07    : rgba(255, 255, 255, .07);
}

/* ─── Section Utilities ─────────────────────────────── */
.hb-section-dark   { background: #060a10; }
.hb-section-darker { background: #0a0f18; }

.hb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--hb-section-pad) clamp(24px, 5vw, 72px);
}

/* ─── Typography Atoms ──────────────────────────────── */
.hb-label {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color         : var(--hb-blue);
  margin-bottom : 16px;
  display       : block;
}

.hb-h2 {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(42px, 6vw, 88px);
  line-height   : .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color         : #fff;
  margin-bottom : 24px;
}

.hb-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size  : clamp(15px, 1.3vw, 17px);
  color      : rgba(255, 255, 255, .5);
  line-height: 1.7;
  max-width  : 600px;
}

.hb-section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ─── Shared Button Styles ──────────────────────────── */
.cta-btn-primary {
  display        : inline-flex;
  align-items    : center;
  gap            : 10px;
  padding        : 16px 32px;
  background     : var(--hb-blue);
  color          : #fff;
  font-family    : 'Barlow Condensed', sans-serif;
  font-weight    : 700;
  font-size      : 13px;
  letter-spacing : .16em;
  text-transform : uppercase;
  text-decoration: none;
  border-radius  : 2px;
  border         : 1.5px solid var(--hb-blue);
  transition     : background .28s, transform .28s;
  will-change    : transform;
}
.cta-btn-primary:hover {
  background: #155fa0;
  transform : translateY(-2px);
}

.cta-btn-ghost {
  display        : inline-flex;
  align-items    : center;
  gap            : 10px;
  padding        : 15px 32px;
  background     : transparent;
  color          : rgba(255, 255, 255, .75);
  font-family    : 'Barlow Condensed', sans-serif;
  font-weight    : 700;
  font-size      : 13px;
  letter-spacing : .16em;
  text-transform : uppercase;
  text-decoration: none;
  border-radius  : 2px;
  border         : 1.5px solid rgba(255, 255, 255, .18);
  transition     : border-color .28s, color .28s, transform .28s;
}
.cta-btn-ghost:hover {
  border-color: rgba(27, 112, 187, .55);
  color       : #fff;
  transform   : translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hb-hero {
  position  : relative;
  min-height: 100vh;
  display   : flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #000;
  overflow  : hidden;
}

.hb-hero__canvas,
.hb-hero__noise {
  position      : absolute;
  inset         : 0;
  width         : 100%;
  height        : 100%;
  pointer-events: none;
}
.hb-hero__canvas { z-index: 0; }
.hb-hero__noise  { z-index: 1; opacity: .035; }

.hb-orb1,
.hb-orb2 {
  position      : absolute;
  border-radius : 50%;
  pointer-events: none;
  z-index       : 1;
}
.hb-orb1 {
  top        : 3%;
  right      : -10%;
  width      : clamp(380px, 52vw, 780px);
  height     : clamp(380px, 52vw, 780px);
  background : radial-gradient(circle, rgba(27, 112, 187, .12) 0%, transparent 65%);
  animation  : orbFloat1 14s ease-in-out infinite;
}
.hb-orb2 {
  bottom     : -5%;
  left       : -6%;
  width      : clamp(260px, 34vw, 500px);
  height     : clamp(260px, 34vw, 500px);
  background : radial-gradient(circle, rgba(27, 112, 187, .06) 0%, transparent 65%);
  animation  : orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-20px, 18px) scale(1.04); }
  66%       { transform: translate(14px, -12px) scale(.97); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(18px, -22px) scale(1.05); }
  70%       { transform: translate(-10px, 10px) scale(.96); }
}

.hb-hero__inner {
  position  : relative;
  z-index   : 2;
  max-width : 1400px;
  margin    : 0 auto;
  padding   : calc(var(--nav-h, 88px) + 60px) clamp(24px, 5vw, 72px) 16px;
  width     : 100%;
}

/* Eyebrow */
.hb-eyebrow {
  display       : inline-flex;
  align-items   : center;
  gap           : 10px;
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color         : var(--hb-blue);
  margin-bottom : 28px;
  opacity       : 0;
  transform     : translateY(20px);
}
.hb-eyebrow::before {
  content      : '';
  display      : inline-block;
  width        : 30px;
  height       : 1px;
  background   : var(--hb-blue);
}

/* H1 */
.hb-h1 {
  display       : flex;
  flex-direction: column;
  margin-bottom : clamp(16px, 2vw, 28px);
}

.h1r {
  display    : block;
  line-height: .88;
}

.h1r .h1-mask {
  display : block;
  overflow: hidden;
}

.h1r .h1w {
  display: block;
  transform: translateY(105%);
}

.h1r .h1w span {
  display       : block;
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.hb-h1r--sm .h1w span {
  font-size     : clamp(36px, 5.5vw, 78px);
  color         : rgba(255, 255, 255, .45);
  letter-spacing: .08em;
  white-space   : nowrap;
}

.hb-h1r--blue .h1w span {
  font-size  : clamp(80px, 13vw, 200px);
  color      : var(--hb-blue);
  white-space: nowrap;
}

.hb-h1r--lg .h1w span {
  font-size  : clamp(80px, 13vw, 200px);
  color      : #fff;
  white-space: nowrap;
}

.hb-blue-word {
  font-style: normal;
  color     : var(--hb-blue);
}

/* Hero Sub */
.hb-hero__sub {
  font-family   : 'Barlow', sans-serif;
  font-weight   : 300;
  font-size     : clamp(14px, 1.4vw, 18px);
  color         : rgba(255, 255, 255, .55);
  line-height   : 1.75;
  white-space   : nowrap;
  max-width     : none;
  margin-bottom : 16px;
  opacity       : 0;
  transform     : translateY(24px);
}

/* CTAs */
.hb-hero__ctas {
  display    : flex;
  align-items: center;
  gap        : 16px;
  flex-wrap  : wrap;
  margin-bottom: clamp(16px, 2vw, 24px);
  opacity    : 0;
  transform  : translateY(20px);
}

/* Hero Stats Bar */
.hb-hero__stats {
  display        : flex;
  align-items    : center;
  gap            : 0;
  padding        : 28px 0 0;
  border-top     : 1px solid rgba(255, 255, 255, .07);
  opacity        : 0;
  transform      : translateY(16px);
}

.hb-stat {
  flex          : 1;
  display       : flex;
  flex-direction: column;
  gap           : 6px;
  padding       : 0 clamp(16px, 3vw, 40px) 0 0;
}
.hb-stat:first-child { padding-left: 0; }

.hb-stat-num {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(28px, 4vw, 52px);
  color         : #fff;
  line-height   : 1;
  letter-spacing: -.02em;
}

.hb-stat-label {
  font-family   : 'Barlow', sans-serif;
  font-weight   : 300;
  font-size     : 11px;
  color         : rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hb-stat-sep {
  width      : 1px;
  height     : 48px;
  background : rgba(255, 255, 255, .1);
  flex-shrink: 0;
  margin     : 0 clamp(16px, 3vw, 40px);
}

/* ═══════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════ */
.ticker {
  background  : #060a10;
  border-top  : 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  overflow    : hidden;
  padding     : 14px 0;
  white-space : nowrap;
}

.ticker-track {
  display        : inline-flex;
  align-items    : center;
  gap            : 0;
  animation      : tickerScroll 28s linear infinite;
  will-change    : transform;
}

.ticker-item {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color         : rgba(255, 255, 255, .28);
  padding       : 0 20px;
  transition    : color .3s;
}

.ticker-dot {
  color      : var(--hb-blue);
  font-size  : 16px;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.hb-process {
  overflow: hidden;
}

.hb-steps {
  display  : flex;
  gap      : 0;
  flex-wrap: wrap;
  border   : 1px solid rgba(255, 255, 255, .06);
  border-radius: 2px;
  overflow : hidden;
}

.hb-step {
  flex      : 1;
  min-width : 200px;
  padding   : 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  position  : relative;
  transition: background .3s, border-color .3s;
  cursor    : default;
}

.hb-step--last {
  border-right: none;
}

.hb-step:hover {
  background  : rgba(27, 112, 187, .04);
  border-color: rgba(27, 112, 187, .25);
}

.hb-step__num {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 10px;
  letter-spacing: .22em;
  color         : rgba(255, 255, 255, .18);
  text-transform: uppercase;
  margin-bottom : 16px;
}

.hb-step__title {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(18px, 2vw, 24px);
  color         : #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom : 12px;
  transition    : color .3s;
}

.hb-step:hover .hb-step__title {
  color: var(--hb-blue);
}

.hb-step__desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size  : 13px;
  color      : rgba(255, 255, 255, .38);
  line-height: 1.75;
}

.hb-step__arrow {
  display   : block;
  font-size : 20px;
  color     : rgba(27, 112, 187, .3);
  margin-top: 20px;
  transition: color .3s, transform .3s;
}
.hb-step:hover .hb-step__arrow {
  color    : var(--hb-blue);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   DOCTORS
═══════════════════════════════════════════════════════ */
.hb-doctors {
  background: #000;
}

.hb-doc-grid {
  display              : grid;
  grid-template-columns: repeat(4, 1fr);
  gap                  : 20px;
}

.hb-doc-card {
  background : #0a0f18;
  border     : 1px solid rgba(255, 255, 255, .07);
  border-radius: 2px;
  overflow   : hidden;
  position   : relative;
  display    : flex;
  flex-direction: column;
  transition : border-color .3s, transform .35s cubic-bezier(.22, 1, .36, 1);
  padding-bottom: 20px;
}

.hb-doc-card:hover {
  border-color: rgba(27, 112, 187, .38);
  transform   : translateY(-5px);
}

.hb-doc-photo {
  height         : 200px;
  background     : linear-gradient(160deg, #0d1829 0%, #07101d 100%);
  display        : flex;
  align-items    : center;
  justify-content: center;
  position       : relative;
  overflow       : hidden;
}

.hb-doc-photo img {
  width           : 100%;
  height          : 100%;
  object-fit      : cover;
  object-position : top center;
  position        : absolute;
  inset           : 0;
}

.hb-doc-avatar {
  width          : 80px;
  height         : 80px;
  border-radius  : 50%;
  background     : linear-gradient(135deg, #1b70bb 0%, #0d3f6d 100%);
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-family    : 'Barlow Condensed', sans-serif;
  font-weight    : 900;
  font-size      : 28px;
  color          : rgba(255, 255, 255, .9);
  letter-spacing : .04em;
  z-index        : 1;
  border         : 2px solid rgba(27, 112, 187, .35);
  transition     : transform .35s cubic-bezier(.22, 1, .36, 1);
}

.hb-doc-card:hover .hb-doc-avatar {
  transform: scale(1.05);
}

.hb-doc-badge {
  position      : absolute;
  top           : 12px;
  right         : 12px;
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size      : 8px;
  letter-spacing: .2em;
  color         : #3be0a0;
  border        : 1px solid rgba(59, 224, 160, .3);
  background    : rgba(59, 224, 160, .06);
  padding       : 3px 8px;
  border-radius : 2px;
  text-transform: uppercase;
}

.hb-doc-info {
  padding: 16px 18px 10px;
  flex   : 1;
}

.hb-doc-name {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : 17px;
  color         : #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom : 5px;
  line-height   : 1.1;
}

.hb-doc-spec {
  font-family  : 'Barlow', sans-serif;
  font-weight  : 300;
  font-size    : 12px;
  color        : rgba(255, 255, 255, .48);
  margin-bottom: 7px;
  line-height  : 1.5;
}

.hb-doc-loc {
  font-family : 'Barlow', sans-serif;
  font-weight : 400;
  font-size   : 11px;
  color       : rgba(255, 255, 255, .3);
  display     : flex;
  align-items : center;
  gap         : 5px;
  line-height : 1.4;
}
.hb-doc-loc i {
  color    : var(--hb-blue);
  font-size: 9px;
  flex-shrink: 0;
}

.hb-doc-social {
  display    : flex;
  gap        : 7px;
  padding    : 0 18px;
  margin-top : 14px;
  flex-wrap  : wrap;
}

.hb-doc-soc {
  width          : 30px;
  height         : 30px;
  border-radius  : 50%;
  border         : 1px solid rgba(255, 255, 255, .1);
  display        : flex;
  align-items    : center;
  justify-content: center;
  color          : rgba(255, 255, 255, .32);
  font-size      : 10px;
  text-decoration: none;
  transition     : background .25s, border-color .25s, color .25s, transform .25s;
}
.hb-doc-soc:hover {
  background  : rgba(27, 112, 187, .18);
  border-color: rgba(27, 112, 187, .5);
  color       : var(--hb-blue);
  transform   : translateY(-2px);
}

.hb-doc-soc--web {
  border-color: rgba(27, 112, 187, .2);
  color       : rgba(27, 112, 187, .5);
}
.hb-doc-soc--web:hover {
  background  : rgba(27, 112, 187, .22);
  border-color: var(--hb-blue);
  color       : var(--hb-blue);
}

/* ═══════════════════════════════════════════════════════
   CLINICS & CENTRES (inside doctors section)
═══════════════════════════════════════════════════════ */
.hb-centre-card {
  display       : flex;
  align-items   : stretch;
  background    : #0a0f18;
  border        : 1px solid rgba(27, 112, 187, .18);
  border-radius : 2px;
  overflow      : hidden;
  width         : 100%;
  margin-top    : 40px;
  transition    : border-color .3s, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.hb-centre-card:hover {
  border-color: rgba(27, 112, 187, .42);
  transform   : translateY(-4px);
}

.hb-centre-img {
  width      : calc(50% - 10px);
  flex-shrink: 0;
  overflow   : hidden;
  min-height : 280px;
}

.hb-centre-img img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center;
  display        : block;
}

.hb-centre-body {
  padding       : 28px 40px 24px;
  display       : flex;
  flex-direction: column;
  justify-content: center;
  gap           : 10px;
  flex          : 1;
}

.hb-centre-badge {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color         : var(--hb-blue);
  border        : 1px solid rgba(27, 112, 187, .3);
  background    : rgba(27, 112, 187, .08);
  padding       : 3px 10px;
  border-radius : 2px;
  display       : inline-block;
  width         : fit-content;
}

.hb-centre-name {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(18px, 2vw, 24px);
  color         : #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height   : 1.15;
  margin        : 0;
}

.hb-centre-loc {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size  : 12px;
  color      : rgba(255, 255, 255, .35);
  display    : flex;
  align-items: center;
  gap        : 6px;
}
.hb-centre-loc i {
  color    : var(--hb-blue);
  font-size: 10px;
}

.hb-centre-social {
  display  : flex;
  gap      : 7px;
  flex-wrap: wrap;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .hb-centre-card {
    flex-direction: column;
    max-width     : 100%;
  }
  .hb-centre-img {
    width : 100%;
    height: 200px;
    position: relative;
  }
  .hb-centre-img img {
    position: absolute;
  }
}

/* ═══════════════════════════════════════════════════════
   VIDEOS
═══════════════════════════════════════════════════════ */
.hb-videos {
  overflow: hidden;
}

/* Reels sub-section */
.hb-reels {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.hb-reels__label,
.hb-vids__label {
  display       : flex;
  align-items   : center;
  gap           : 10px;
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color         : rgba(255, 255, 255, .3);
  margin-bottom : 24px;
}
.hb-reels__label i,
.hb-vids__label i {
  color    : var(--hb-blue);
  font-size: 13px;
}

.hb-reels-track {
  overflow-x     : scroll;
  overflow-y     : hidden;
  width          : 100%;
  scrollbar-width: none;
  cursor         : grab;
  user-select    : none;
}
.hb-reels-track::-webkit-scrollbar { display: none; }
.hb-reels-track.is-dragging { cursor: grabbing; }

.hb-reels-inner {
  display: flex;
  gap    : 14px;
  width  : max-content;
}

/* Reel video modal */
.hb-reel-modal {
  position      : fixed;
  inset         : 0;
  z-index       : 99998;
  display       : flex;
  align-items   : center;
  justify-content: center;
  opacity       : 0;
  pointer-events: none;
  transition    : opacity .3s ease;
}
.hb-reel-modal.is-open {
  opacity       : 1;
  pointer-events: auto;
}
.hb-reel-modal__backdrop {
  position  : absolute;
  inset     : 0;
  background: rgba(0, 0, 0, .88);
  cursor    : pointer;
}
.hb-reel-modal__box {
  position    : relative;
  width       : min(340px, 88vw);
  aspect-ratio: 9 / 16;
  z-index     : 1;
  border-radius: 12px;
  overflow    : hidden;
  box-shadow  : 0 24px 80px rgba(0, 0, 0, .8);
}

/* 16:9 wide variant for long-form videos */
.hb-reel-modal.is-wide .hb-reel-modal__box {
  width       : min(880px, 92vw);
  aspect-ratio: 16 / 9;
}
.hb-reel-modal__close {
  position       : absolute;
  top            : -44px;
  right          : 0;
  width          : 34px;
  height         : 34px;
  border         : 1px solid rgba(255,255,255,.2);
  background     : rgba(255,255,255,.08);
  color          : #fff;
  font-size      : 20px;
  border-radius  : 50%;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transition     : background .2s;
}
.hb-reel-modal__close:hover { background: rgba(255,255,255,.18); }
.hb-reel-modal__box iframe {
  width : 100%;
  height: 100%;
  border: none;
  display: block;
}

.hb-reel-card {
  flex-shrink    : 0;
  width          : 175px;
  aspect-ratio   : 9 / 16;
  text-decoration: none;
  background     : #0a0f18;
  border         : 1px solid rgba(255, 255, 255, .08);
  border-radius  : 8px;
  overflow       : hidden;
  position       : relative;
  scroll-snap-align: start;
  transition     : border-color .3s, transform .3s;
}

.hb-reel-card:hover {
  border-color: rgba(27, 112, 187, .4);
  transform   : translateY(-4px);
}

.hb-reel-card img {
  width           : 100%;
  height          : 100%;
  object-fit      : cover;
  object-position : top center;
  display         : block;
}

.hb-reel-overlay {
  position       : absolute;
  top            : 0;
  left           : 0;
  right          : 0;
  height         : 52px;
  background     : linear-gradient(to bottom, rgba(0, 0, 0, .75) 0%, transparent 100%);
  display        : flex;
  align-items    : center;
  padding        : 10px 12px;
  pointer-events : none;
  z-index        : 2;
}

.hb-reel-play {
  position       : absolute;
  inset          : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  opacity        : 0;
  transition     : opacity .25s ease;
  z-index        : 3;
}
.hb-reel-play i {
  font-size  : 40px;
  color      : #fff;
  filter     : drop-shadow(0 2px 8px rgba(0,0,0,.6));
}
.hb-reel-card:hover .hb-reel-play { opacity: 1; }

.hb-reel-badge {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 8px;
  letter-spacing: .22em;
  color         : rgba(255, 255, 255, .9);
  border        : 1px solid rgba(255, 255, 255, .3);
  padding       : 2px 7px;
  border-radius : 2px;
  text-transform: uppercase;
}



/* Long-form videos */
.hb-vids {
  margin-top: 0;
}

/* Carousel wrapper */
.hb-vid-carousel { position: relative; }

.hb-vid-viewport {
  overflow: hidden;
}

.hb-vid-track {
  display   : flex;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.hb-vid-slide {
  flex                 : 0 0 100%;
  display              : grid;
  grid-template-columns: repeat(2, 1fr);
  gap                  : 24px;
}

/* Nav */
.hb-vid-carousel-nav {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 20px;
  margin-top     : 22px;
}

.hb-vid-arr {
  width          : 40px;
  height         : 40px;
  border-radius  : 50%;
  border         : 1px solid rgba(27, 112, 187, .3);
  background     : rgba(27, 112, 187, .08);
  color          : rgba(255, 255, 255, .6);
  font-size      : 13px;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transition     : background .2s, border-color .2s, color .2s;
}
.hb-vid-arr:hover {
  background  : rgba(27, 112, 187, .22);
  border-color: rgba(27, 112, 187, .6);
  color       : #fff;
}

.hb-vid-dots {
  display: flex;
  gap    : 8px;
}
.hb-vid-dot {
  width        : 8px;
  height       : 8px;
  border-radius: 50%;
  border       : none;
  background   : rgba(255, 255, 255, .2);
  cursor       : pointer;
  padding      : 0;
  transition   : background .25s, transform .25s;
}
.hb-vid-dot.active {
  background: var(--hb-blue);
  transform : scale(1.3);
}

.hb-vid-card {
  border       : 1px solid rgba(255, 255, 255, .07);
  border-radius: 2px;
  overflow     : hidden;
  transition   : border-color .3s, transform .3s;
}

.hb-vid-card:hover {
  border-color: rgba(27, 112, 187, .3);
  transform   : translateY(-3px);
}

.hb-vid-wrap {
  position    : relative;
  aspect-ratio: 16 / 9;
  overflow    : hidden;
  background  : #0a0f18;
}

.hb-vid-wrap iframe {
  position: absolute;
  inset   : 0;
  width   : 100%;
  height  : 100%;
  border  : none;
  display : block;
}

.hb-vid-thumb { text-decoration: none; display: block; }

.hb-vid-wrap img {
  position       : absolute;
  inset          : 0;
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  object-position: center;
  display        : block;
  transition     : transform .4s ease;
}
.hb-vid-thumb:hover .hb-vid-wrap img { transform: scale(1.04); }

.hb-vid-play {
  position       : absolute;
  inset          : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  background     : rgba(0, 0, 0, .3);
  transition     : background .25s ease;
  z-index        : 2;
}
.hb-vid-play i {
  font-size  : 52px;
  color      : #fff;
  filter     : drop-shadow(0 2px 12px rgba(0,0,0,.5));
  transition : transform .25s ease;
}
.hb-vid-thumb:hover .hb-vid-play { background: rgba(0, 0, 0, .15); }
.hb-vid-thumb:hover .hb-vid-play i { transform: scale(1.12); }

.hb-vid-title {
  padding    : 12px 16px 14px;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size  : 13px;
  color      : rgba(255, 255, 255, .55);
  line-height: 1.5;
  background : #0a0f18;
}

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.hb-pricing {
  background: #000;
}

.hb-pricing-note {
  display       : inline-flex;
  align-items   : center;
  gap           : 9px;
  margin-top    : 20px;
  padding       : 10px 18px;
  border        : 1px solid rgba(255, 165, 0, .22);
  background    : rgba(255, 165, 0, .05);
  color         : rgba(255, 165, 0, .75);
  font-family   : 'Barlow', sans-serif;
  font-weight   : 400;
  font-size     : 12px;
  border-radius : 2px;
  line-height   : 1.5;
}
.hb-pricing-note i {
  font-size : 12px;
  flex-shrink: 0;
}
.hb-pricing-note strong { font-weight: 600; }

.hb-plan-grid {
  display              : grid;
  grid-template-columns: repeat(4, 1fr);
  gap                  : 16px;
  align-items          : start;
}

.hb-plan {
  background    : #0a0f18;
  border        : 1px solid rgba(255, 255, 255, .07);
  border-radius : 2px;
  padding       : 36px 28px 28px;
  position      : relative;
  display       : flex;
  flex-direction: column;
  transition    : border-color .3s, transform .3s;
}

.hb-plan:hover {
  border-color: rgba(27, 112, 187, .3);
  transform   : translateY(-4px);
}

.hb-plan--featured {
  border-color: rgba(27, 112, 187, .5);
  background  : linear-gradient(160deg, #0d1a2d 0%, #0a0f18 100%);
  box-shadow  : 0 0 70px rgba(27, 112, 187, .13);
  transform   : translateY(-6px);
}
.hb-plan--featured:hover {
  transform: translateY(-10px);
}

.hb-plan__badge {
  position     : absolute;
  top          : -1px;
  left         : 50%;
  transform    : translateX(-50%);
  background   : var(--hb-blue);
  font-family  : 'Barlow Condensed', sans-serif;
  font-weight  : 700;
  font-size    : 9px;
  letter-spacing: .22em;
  color        : #fff;
  padding      : 5px 16px;
  border-radius: 0 0 4px 4px;
  white-space  : nowrap;
  text-transform: uppercase;
}

.hb-plan__name {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 11px;
  letter-spacing: .18em;
  color         : rgba(255, 255, 255, .4);
  text-transform: uppercase;
  margin-bottom : 2px;
}

.hb-plan__tier {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : 22px;
  color         : #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom : 14px;
}

.hb-plan__tier--feat {
  color: var(--hb-blue);
}

.hb-plan__price {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(28px, 3vw, 42px);
  color         : #fff;
  line-height   : 1;
  margin-bottom : 6px;
  letter-spacing: -.01em;
}

.hb-plan__price span {
  font-size    : 0.42em;
  color        : rgba(255, 255, 255, .4);
  font-weight  : 400;
  letter-spacing: .06em;
}

.hb-plan__note {
  font-family   : 'Barlow', sans-serif;
  font-weight   : 300;
  font-size     : 11px;
  color         : rgba(255, 255, 255, .28);
  line-height   : 1.6;
  margin-bottom : 20px;
  padding-bottom: 20px;
  border-bottom : 1px solid rgba(255, 255, 255, .06);
}

.hb-plan__features {
  list-style    : none;
  flex          : 1;
  display       : flex;
  flex-direction: column;
  gap           : 9px;
  margin-bottom : 26px;
}

.hb-plan__feat {
  display    : flex;
  align-items: flex-start;
  gap        : 9px;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size  : 12px;
  color      : rgba(255, 255, 255, .58);
  line-height: 1.5;
}

.hb-plan__feat i {
  color     : var(--hb-blue);
  font-size : 9px;
  margin-top: 3px;
  flex-shrink: 0;
}

.hb-plan__cta {
  display      : block;
  text-align   : center;
  padding      : 13px 20px;
  border       : 1.5px solid rgba(27, 112, 187, .38);
  color        : var(--hb-blue);
  font-family  : 'Barlow Condensed', sans-serif;
  font-weight  : 700;
  font-size    : 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition   : background .25s, color .25s, border-color .25s;
  margin-top   : auto;
}

.hb-plan__cta:hover {
  background  : rgba(27, 112, 187, .1);
  border-color: var(--hb-blue);
}

.hb-plan--featured .hb-plan__cta {
  background  : var(--hb-blue);
  color       : #fff;
  border-color: var(--hb-blue);
}
.hb-plan--featured .hb-plan__cta:hover {
  background  : #155fa0;
  border-color: #155fa0;
}

/* ═══════════════════════════════════════════════════════
   WEBSITE DEVELOPMENT
═══════════════════════════════════════════════════════ */
.hb-webdev {
  overflow: hidden;
}

.hb-web-note {
  display       : inline-flex;
  align-items   : center;
  gap           : 9px;
  padding       : 9px 18px;
  border        : 1px solid rgba(255, 165, 0, .22);
  background    : rgba(255, 165, 0, .05);
  color         : rgba(255, 165, 0, .7);
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius : 2px;
  margin-bottom : 32px;
}
.hb-web-note i { font-size: 11px; }

.hb-web-tech {
  display       : inline-flex;
  align-items   : center;
  gap           : 10px;
  padding       : 9px 18px;
  border        : 1px solid rgba(27, 112, 187, .22);
  background    : rgba(27, 112, 187, .05);
  color         : rgba(27, 112, 187, .7);
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius : 2px;
  margin-bottom : 52px;
}
.hb-web-tech i { font-size: 14px; }

.hb-web-grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 20px;
  align-items          : start;
}

.hb-web-card {
  background    : #0a0f18;
  border        : 1px solid rgba(255, 255, 255, .07);
  border-radius : 2px;
  padding       : 32px 28px 28px;
  display       : flex;
  flex-direction: column;
  transition    : border-color .3s, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.hb-web-card:hover {
  border-color: rgba(27, 112, 187, .35);
  transform   : translateY(-5px);
}

.hb-web-card--custom {
  border        : 1.5px dashed rgba(27, 112, 187, .25);
  background    : #000;
  text-align    : center;
  align-items   : center;
  position      : relative;
  overflow      : hidden;
}

.hb-web-card--custom canvas {
  position: absolute;
  inset    : 0;
  width    : 100%;
  height   : 100%;
  z-index  : 0;
}

.hb-web-card--custom > *:not(canvas) {
  position: relative;
  z-index : 2;
}

.hb-web-icon {
  width          : 50px;
  height         : 50px;
  border-radius  : 50%;
  background     : linear-gradient(135deg, rgba(27, 112, 187, .3) 0%, rgba(27, 112, 187, .1) 100%);
  border         : 1px solid rgba(27, 112, 187, .28);
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 20px;
  color          : var(--hb-blue);
  margin-bottom  : 22px;
  transition     : background .3s, transform .3s;
}
.hb-web-card:hover .hb-web-icon {
  background: linear-gradient(135deg, rgba(27, 112, 187, .5) 0%, rgba(27, 112, 187, .2) 100%);
  transform : scale(1.06);
}

.hb-web-icon--custom {
  background: transparent;
  border    : 1.5px dashed rgba(27, 112, 187, .35);
}

.hb-web-name {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 17px;
  color         : #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom : 8px;
  line-height   : 1.15;
}

.hb-web-price {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(24px, 2.5vw, 32px);
  color         : var(--hb-blue);
  margin-bottom : 4px;
  letter-spacing: -.01em;
}

.hb-web-price--custom {
  font-size: clamp(22px, 2.2vw, 28px);
  color    : rgba(255, 255, 255, .7);
}

.hb-web-label {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 700;
  font-size     : 9px;
  letter-spacing: .22em;
  color         : rgba(255, 255, 255, .28);
  text-transform: uppercase;
  margin-bottom : 16px;
}

.hb-web-includes {
  font-family  : 'Barlow', sans-serif;
  font-weight  : 400;
  font-size    : 11px;
  color        : rgba(27, 112, 187, .75);
  margin-bottom: 18px;
  line-height  : 1.6;
  padding      : 8px 12px;
  border-left  : 2px solid rgba(27, 112, 187, .3);
  background   : rgba(27, 112, 187, .04);
}

.hb-web-features {
  list-style    : none;
  display       : flex;
  flex-direction: column;
  gap           : 8px;
  margin-bottom : 24px;
  flex          : 1;
}

.hb-web-features li {
  display    : flex;
  align-items: center;
  gap        : 9px;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size  : 12px;
  color      : rgba(255, 255, 255, .55);
}

.hb-web-features li i {
  color     : var(--hb-blue);
  font-size : 9px;
  flex-shrink: 0;
}

.hb-web-custom-desc {
  font-family  : 'Barlow', sans-serif;
  font-weight  : 300;
  font-size    : 13px;
  color        : rgba(255, 255, 255, .4);
  line-height  : 1.7;
  margin-bottom: 28px;
  flex         : 1;
}

.hb-web-cta {
  display      : block;
  text-align   : center;
  padding      : 12px 20px;
  border       : 1.5px solid rgba(27, 112, 187, .38);
  color        : var(--hb-blue);
  font-family  : 'Barlow Condensed', sans-serif;
  font-weight  : 700;
  font-size    : 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition   : background .25s, color .25s, border-color .25s;
  margin-top   : auto;
}

.hb-web-cta:hover {
  background  : rgba(27, 112, 187, .12);
  border-color: var(--hb-blue);
}

.hb-web-cta--custom {
  background  : var(--hb-blue);
  color       : #fff;
  border-color: var(--hb-blue);
}
.hb-web-cta--custom:hover {
  background  : #155fa0;
  border-color: #155fa0;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.hb-cta {
  position  : relative;
  min-height: 80vh;
  background: #000;
  overflow  : hidden;
  display   : flex;
  align-items: center;
}

.hb-cta__orb1,
.hb-cta__orb2,
.hb-cta__orb3 {
  position      : absolute;
  border-radius : 50%;
  pointer-events: none;
}

.hb-cta__orb1 {
  top       : 20%;
  left      : -5%;
  width     : clamp(300px, 40vw, 600px);
  height    : clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(27, 112, 187, .1) 0%, transparent 60%);
  animation : orbFloat1 16s ease-in-out infinite;
}

.hb-cta__orb2 {
  bottom     : 10%;
  right      : -5%;
  width      : clamp(250px, 35vw, 500px);
  height     : clamp(250px, 35vw, 500px);
  background : radial-gradient(circle, rgba(27, 112, 187, .08) 0%, transparent 60%);
  animation  : orbFloat2 20s ease-in-out infinite;
}

.hb-cta__orb3 {
  top       : 40%;
  left      : 50%;
  transform : translateX(-50%);
  width     : clamp(200px, 30vw, 400px);
  height    : clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, rgba(27, 112, 187, .06) 0%, transparent 60%);
  animation : orbFloat1 22s ease-in-out infinite reverse;
}

.hb-cta__inner {
  text-align: center;
  position  : relative;
  z-index   : 2;
  display   : flex;
  flex-direction: column;
  align-items: center;
}

.hb-cta__heading {
  font-family   : 'Barlow Condensed', sans-serif;
  font-weight   : 900;
  font-size     : clamp(56px, 9vw, 128px);
  line-height   : .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color         : #fff;
  margin-bottom : 28px;
}

.hb-cta__blue {
  color: var(--hb-blue);
}

.hb-cta__sub {
  font-family  : 'Barlow', sans-serif;
  font-weight  : 300;
  font-size    : clamp(15px, 1.4vw, 18px);
  color        : rgba(255, 255, 255, .45);
  line-height  : 1.75;
  margin-bottom: 44px;
  max-width    : 520px;
}

.hb-cta__actions {
  display    : flex;
  align-items: center;
  gap        : 20px;
  flex-wrap  : wrap;
  justify-content: center;
}

.hb-cta__email {
  display        : inline-flex;
  align-items    : center;
  gap            : 8px;
  font-family    : 'Barlow', sans-serif;
  font-weight    : 400;
  font-size      : 14px;
  color          : rgba(255, 255, 255, .38);
  text-decoration: none;
  transition     : color .25s;
}
.hb-cta__email:hover {
  color: rgba(255, 255, 255, .75);
}
.hb-cta__email i {
  color    : var(--hb-blue);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Large desktop — 4-col grids work fine up here */

@media (max-width: 1280px) {
  .hb-plan--featured {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hb-doc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hb-doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-vid-grid {
    grid-template-columns: 1fr;
  }

  .hb-h1r--blue .h1w span,
  .hb-h1r--lg .h1w span {
    font-size  : clamp(60px, 14vw, 120px);
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .hb-plan-grid,
  .hb-web-grid {
    grid-template-columns: 1fr;
  }

  .hb-hero__stats {
    flex-wrap : wrap;
    gap       : 24px;
  }

  .hb-stat-sep {
    display: none;
  }

  .hb-stat {
    flex      : 0 0 calc(50% - 12px);
    padding   : 0;
  }

  .hb-steps {
    flex-direction: column;
  }

  .hb-step {
    border-right  : none;
    border-bottom : 1px solid rgba(255, 255, 255, .06);
    min-width     : unset;
  }
  .hb-step--last {
    border-bottom: none;
  }

  .hb-cta__heading {
    font-size: clamp(48px, 16vw, 90px);
  }
}

@media (max-width: 600px) {
  .hb-h1r--sm .h1w span,
  .hb-h1r--blue .h1w span,
  .hb-h1r--lg .h1w span {
    white-space: normal;
  }

  .hb-hero__sub {
    white-space: normal;
    font-size  : 13px;
  }

  .hb-doc-grid {
    grid-template-columns: 1fr;
  }

  .hb-hero__ctas {
    flex-direction: column;
    align-items   : flex-start;
  }

  .cta-btn-primary,
  .cta-btn-ghost {
    width     : 100%;
    justify-content: center;
  }

  .hb-reel-card {
    width: 148px;
  }

  .hb-stat-num {
    font-size: clamp(26px, 8vw, 40px);
  }
}

/* ─── Utility: data-reveal initial state ───────────── */
[data-reveal] {
  opacity  : 0;
  transform: translateY(44px);
}
