:root {
  --hbl-main: #0A0736;
  --hbl-surface: #07052a;
  --hbl-bg: #050318;
  --hbl-highlight: #47EDD1;
  --hbl-light-bg: #f4f6fb;
  --hbl-paper: #ffffff;
  --hbl-text: #f8fafc;
  --hbl-muted: #b9c0d4;
  --hbl-border: rgba(255,255,255,0.10);
  --hbl-border-strong: rgba(255,255,255,0.16);
  --hbl-shadow: 0 24px 80px rgba(0,0,0,0.35);
  --hbl-radius: 10px;
  --hbl-radius-lg: 24px;
  --hbl-container: 1180px;
  --hbl-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hbl-font);
  background: radial-gradient(circle at right -10% top 0, rgba(71,237,209,0.15), transparent 34rem), var(--hbl-bg);
  color: var(--hbl-text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.screen-reader-text { position: absolute; left: -9999px; }
.hbl-container { width: min(calc(100% - 40px), var(--hbl-container)); margin-inline: auto; }
.hbl-topbar { position: sticky; top: 0; z-index: 50; background: rgba(5,3,24,0.86); backdrop-filter: blur(18px); border-bottom: 1px solid var(--hbl-border); max-height: 64px; }
.hbl-topbar__inner { height: 64px; max-height: 64px; display: flex; align-items: center; gap: 24px; overflow: visible; }
.hbl-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; flex: 0 0 auto; min-width: 0; }
.hbl-brand img, .hbl-brand .custom-logo { max-height: 50px; width: auto; object-fit: contain; }
.hbl-brand .custom-logo-link { display: inline-flex; align-items: center; max-height: 50px; }
.hbl-brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--hbl-main); background: var(--hbl-highlight); }
.hbl-brand__text { font-size: 1.1rem; }
.hbl-nav { display: flex; align-items: center; margin-left: auto; }
.hbl-menu { display: flex; gap: 24px; align-items: center; list-style: none; padding: 0; margin: 0; }
.hbl-menu a { color: var(--hbl-muted); font-weight: 600; font-size: .95rem; }
.hbl-menu a:hover, .hbl-menu .current-menu-item > a { color: var(--hbl-text); }
.hbl-topbar__actions { display: flex; gap: 14px; align-items: center; flex: 0 0 auto; }
.hbl-button { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--hbl-highlight); background: var(--hbl-highlight); color: var(--hbl-main); border-radius: var(--hbl-radius); padding: 12px 18px; font-weight: 800; line-height: 1; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.hbl-button:hover { transform: translateY(-1px); }
.hbl-button--small { padding: 10px 14px; font-size: .92rem; }
.hbl-button--ghost { background: rgba(5,3,24,0.10); backdrop-filter: blur(6px); color: var(--hbl-highlight); border-color: var(--hbl-highlight); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hbl-lang { position: relative; }
.hbl-lang__toggle { display: inline-flex; gap: 8px; align-items: center; color: var(--hbl-text); background: rgba(255,255,255,0.04); border: 1px solid var(--hbl-border); border-radius: var(--hbl-radius); padding: 9px 10px; cursor: pointer; }
.hbl-lang__name { display: none; }
.hbl-lang__menu { position: absolute; right: 0; top: calc(100% + 10px); min-width: 170px; list-style: none; padding: 8px; margin: 0; background: var(--hbl-main); border: 1px solid var(--hbl-border-strong); border-radius: 14px; box-shadow: var(--hbl-shadow); display: none; }
.hbl-lang.is-open .hbl-lang__menu { display: block; }
.hbl-lang__menu a { display: flex; gap: 10px; align-items: center; padding: 9px 10px; border-radius: 10px; color: var(--hbl-muted); }
.hbl-lang__menu a:hover, .hbl-lang__menu a.is-current { background: rgba(255,255,255,0.06); color: var(--hbl-text); }
.hbl-nav-toggle { display: none; }
.hbl-hero { min-height: 650px; display: grid; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(10,7,54,0.98), rgba(5,3,24,0.86)); }
.hbl-hero--image::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(5,3,24,0.5), rgba(5,3,24,0.2), rgba(5,3,24,0.5)), var(--hbl-hero-image); background-size: cover; background-position: center; opacity: .95; }
.hbl-hero__inner { position: relative; z-index: 1; top: 10%; }
.hbl-hero__content { max-width: 760px; padding: 96px 0; }
.hbl-eyebrow { color: var(--hbl-highlight); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.04em; margin: 0 0 18px; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.35rem; }
.hbl-hero__subtitle, .hbl-page-hero p, .hbl-section-head p { color: var(--hbl-muted); font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 720px; }
.hbl-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hbl-page-hero { padding: 96px 0 42px; background: linear-gradient(180deg, rgba(10,7,54,0.75), rgba(5,3,24,0)); }
.hbl-content { padding: 72px 0; }
.hbl-content--page { max-width: 900px; }
.hbl-section { margin: 0 0 88px; }
.hbl-section-head { text-align: center; margin: 0 auto 36px; max-width: 780px; }
.hbl-lr { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hbl-lr--reverse .hbl-lr__media { order: 2; }
.hbl-lr__media { position: relative; min-height: 320px; border: 1px solid var(--hbl-border); border-radius: var(--hbl-radius-lg); background: linear-gradient(135deg, rgba(71,237,209,0.12), rgba(255,255,255,0.03)); overflow: hidden; box-shadow: var(--hbl-shadow); }
.hbl-lr__media img { width: 100%; height: 100%; object-fit: cover; }

.hbl-ai-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5,3,24,0.45);
  backdrop-filter: blur(4px);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .01em;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 600px) {
  .hbl-ai-badge { right: 8px; bottom: 8px; padding: 4px 9px; font-size: 12px; }
}
.hbl-lr__body { padding: 10px; }
.hbl-richtext { color: var(--hbl-muted); }
.hbl-richtext strong { color: var(--hbl-text); }
.hbl-richtext ul { padding-left: 1.2rem; }
.hbl-divider { width: 68px; height: 3px; background: var(--hbl-highlight); border-radius: 999px; margin: 0 0 22px; }
.hbl-text--narrow { max-width: 840px; margin-inline: auto; }
.hbl-feedback__grid, .hbl-pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hbl-quote, .hbl-plan, .hbl-contact, .hbl-page-content, .hbl-post-card { background: rgba(255,255,255,0.045); border: 1px solid var(--hbl-border); border-radius: var(--hbl-radius-lg); padding: 26px; box-shadow: 0 18px 50px rgba(0,0,0,0.18); }
.hbl-quote { transition: border-color 0.3s ease; }
.hbl-quote:hover { border-color: var(--hbl-highlight); }
.hbl-quote__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hbl-quote__top img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(71,237,209,0.35); }
.hbl-quote__top span { display: block; color: var(--hbl-muted); font-size: .9rem; }
.hbl-quote p { color: var(--hbl-text); margin-bottom: 0; }
.hbl-plan--highlight { border-color: rgba(71,237,209,0.55); box-shadow: 0 0 0 1px rgba(71,237,209,0.15), var(--hbl-shadow); }
.hbl-plan__price { color: var(--hbl-highlight); font-size: 2rem; font-weight: 900; margin: 8px 0 18px; }
.hbl-contact { width: 100%; max-width: 760px; margin-inline: auto; height: auto; }
.hbl-form { display: grid; gap: 16px; }
.hbl-form label { display: grid; gap: 7px; color: var(--hbl-muted); font-weight: 650; }
.hbl-form input, .hbl-form textarea { width: 100%; color: var(--hbl-text); background: rgba(5,3,24,0.72); border: 1px solid var(--hbl-border-strong); border-radius: var(--hbl-radius); padding: 13px 14px; font: inherit; }
.hbl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hbl-alert { padding: 12px 14px; border-radius: var(--hbl-radius); }
.hbl-alert--success { background: rgba(71,237,209,0.13); border: 1px solid rgba(71,237,209,0.35); }
.hbl-footer { border-top: 1px solid var(--hbl-border); padding: 54px 0 28px; background: var(--hbl-surface); color: var(--hbl-muted); }
.hbl-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 42px; }
.hbl-footer__brand { color: var(--hbl-text); font-weight: 900; font-size: 1.2rem; margin-bottom: 8px; }
.hbl-footer h2 { color: var(--hbl-text); font-size: 1rem; margin-bottom: 14px; }
.hbl-footer-menu, .hbl-socials { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.hbl-socials { display: flex; flex-wrap: wrap; gap: 12px; }
.hbl-footer a { color: var(--hbl-muted); }
.hbl-footer a:hover { color: var(--hbl-text); }
.hbl-footer__bottom { border-top: 1px solid var(--hbl-border); margin-top: 34px; padding-top: 22px; font-size: .9rem; text-align: center; }
@media (max-width: 900px) {
  .hbl-topbar { max-height: none; }
  .hbl-topbar__inner { height: 64px; max-height: 64px; padding: 0; position: relative; }
  .hbl-nav-toggle { display: inline-flex; margin-left: auto; color: var(--hbl-text); background: rgba(255,255,255,0.04); border: 1px solid var(--hbl-border); border-radius: var(--hbl-radius); padding: 9px 11px; }
  .hbl-nav { display: none; position: absolute; left: 0; right: 0; top: 64px; width: 100%; margin-left: 0; padding: 10px 0; background: rgba(5,3,24,0.98); border-bottom: 1px solid var(--hbl-border); }
  .hbl-nav.is-open { display: block; }
  .hbl-menu { flex-direction: column; align-items: stretch; gap: 6px; padding: 8px 0; }
  .hbl-menu a { display: block; padding: 10px 0; }
  .hbl-topbar__actions { margin-left: 0; }
  .hbl-lr, .hbl-feedback__grid, .hbl-pricing__grid, .hbl-footer__grid { grid-template-columns: 1fr; }
  .hbl-lr--reverse .hbl-lr__media { order: 0; }
  .hbl-hero { min-height: 540px; }
  .hbl-footer__grid { text-align: center; justify-items: center; }
  .hbl-socials { justify-content: center; }
}
@media (max-width: 560px) {
  .hbl-container { width: min(calc(100% - 28px), var(--hbl-container)); }
  .hbl-topbar__actions { width: auto; justify-content: flex-end; gap: 10px; }
  .hbl-button--small { padding: 9px 11px; }
  .hbl-hero__content { padding: 72px 0; }
  .hbl-section { margin-bottom: 64px; }
  .hbl-quote, .hbl-plan, .hbl-contact, .hbl-page-content { padding: 20px; }
}

.hbl-faq { max-width: 920px; margin-inline: auto; }
.hbl-faq__list { display: grid; gap: 14px; }
.hbl-faq-item { background: rgba(255,255,255,0.045); border: 1px solid var(--hbl-border); border-radius: var(--hbl-radius-lg); padding: 0; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,0.14); }
.hbl-faq-item[open] { border-color: rgba(71,237,209,0.42); }
.hbl-faq-item__summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; cursor: pointer; list-style: none; }
.hbl-faq-item__summary::-webkit-details-marker { display: none; }
.hbl-faq-item__question { color: var(--hbl-text); font-size: 1.08rem; font-weight: 850; }
.hbl-faq-item__icon { flex: 0 0 auto; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: var(--hbl-main); background: var(--hbl-highlight); font-weight: 900; transition: transform .18s ease; }
.hbl-faq-item[open] .hbl-faq-item__icon { transform: rotate(45deg); }
.hbl-faq-item__tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 24px 14px; }
.hbl-faq-item__tags span { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 10px; font-size: .78rem; font-weight: 800; color: var(--hbl-highlight); background: rgba(71,237,209,0.1); border: 1px solid rgba(71,237,209,0.2); }
.hbl-faq-item__answer { padding: 0 24px 22px; }
.hbl-faq-item__answer p:last-child { margin-bottom: 0; }
.hbl-faq__video { padding: 0 24px 24px; }
.hbl-faq__video iframe, .hbl-faq__video video { width: 100%; border: 0; border-radius: var(--hbl-radius); overflow: hidden; }

.hbl-page-hero { position: relative; overflow: hidden; }
.hbl-page-hero--image::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(5,3,24,0.96), rgba(5,3,24,0.72), rgba(5,3,24,0.94)), var(--hbl-hero-image); background-size: cover; background-position: center; opacity: .92; }
.hbl-page-hero__inner { position: relative; z-index: 1; }
.hbl-page-hero__content { max-width: 840px; }
.hbl-page-hero__subtitle { color: var(--hbl-muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 720px; margin: 0; }
.hbl-page-hero .hbl-hero__actions { margin-top: 24px; }

/* Complete shortcode support - v0.2.0 */
.hbl-lr__media--placeholder {
  min-height: 320px;
  background:
    radial-gradient(circle at 30% 20%, rgba(71,237,209,0.22), transparent 34%),
    linear-gradient(135deg, rgba(71,237,209,0.10), rgba(255,255,255,0.025));
}
.hbl-button--full { width: 100%; margin-top: 18px; }
.hbl-plan ul { color: var(--hbl-muted); padding-left: 1.1rem; display: grid; gap: 8px; margin: 18px 0 0; }
.hbl-plain-text, .hbl-page-content-embed {
  max-width: 920px;
  margin-inline: auto;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--hbl-border);
  border-radius: var(--hbl-radius-lg);
  padding: 30px;
}
.hbl-alert--error { background: rgba(255,80,80,0.12); border: 1px solid rgba(255,80,80,0.35); }
.hbl-contact .hbl-alert { margin-bottom: 18px; }
.hbl-contact .hbl-button { justify-self: start; cursor: pointer; }
.hbl-feedback__grid:empty::before,
.hbl-pricing__grid:empty::before,
.hbl-faq__list:empty::before {
  content: "Add items inside this shortcode section.";
  color: var(--hbl-muted);
}

/* Refinements - testimonials slider, pricing table, compact FAQ */
.hbl-feedback__viewport {
  overflow: hidden;
}
.hbl-feedback__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.hbl-feedback--slider .hbl-feedback__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.hbl-feedback--slider .hbl-feedback__track::-webkit-scrollbar { display: none; }
.hbl-feedback--slider .hbl-quote {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}
.hbl-slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.hbl-slider-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--hbl-border-strong);
  background: rgba(255,255,255,0.06);
  color: var(--hbl-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.hbl-slider-button:hover { background: rgba(71,237,209,0.14); border-color: rgba(71,237,209,0.45); }

.hbl-pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hbl-border);
  border-radius: var(--hbl-radius-lg);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
.hbl-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.hbl-pricing-table th,
.hbl-pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--hbl-border);
  text-align: center;
  vertical-align: middle;
}
.hbl-pricing-table th:first-child,
.hbl-pricing-table td:first-child,
.hbl-pricing-table tbody th {
  text-align: left;
  color: var(--hbl-text);
  width: 28%;
}
.hbl-pricing-table thead th {
  background: rgba(255,255,255,0.045);
  color: var(--hbl-text);
}
.hbl-pricing-table tbody td {
  color: var(--hbl-muted);
}
.hbl-pricing-table tbody tr:hover td,
.hbl-pricing-table tbody tr:hover th {
  background: rgba(255,255,255,0.025);
}
.hbl-pricing-table .is-highlight {
  background: rgba(71,237,209,0.075);
}
.hbl-pricing-table thead .is-highlight {
  box-shadow: inset 0 3px 0 var(--hbl-highlight);
}
.hbl-pricing-table__plan,
.hbl-pricing-table__price {
  display: block;
}
.hbl-pricing-table__plan {
  font-weight: 900;
  font-size: 1.15rem;
}
.hbl-pricing-table__price {
  margin-top: 8px;
  color: var(--hbl-highlight);
  font-weight: 900;
  font-size: 1.35rem;
}
.hbl-pricing-table tfoot th,
.hbl-pricing-table tfoot td {
  border-bottom: 0;
  background: rgba(255,255,255,0.025);
}

.hbl-faq__list { gap: 8px; }
.hbl-faq-item { border-radius: var(--hbl-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
.hbl-faq-item__summary { padding: 15px 18px; }
.hbl-faq-item__question { font-size: 1rem; }
.hbl-faq-item__icon { width: 26px; height: 26px; }
.hbl-faq-item__tags { padding: 0 18px 9px; gap: 6px; }
.hbl-faq-item__tags span { padding: 4px 8px; font-size: .72rem; }
.hbl-faq-item__answer { padding: 0 18px 16px; }
.hbl-faq__video { padding: 0 18px 18px; }

@media (max-width: 900px) {
  .hbl-feedback__track { grid-template-columns: 1fr; }
  .hbl-feedback--slider .hbl-quote { flex-basis: min(82vw, 420px); }
}

/* Gutenberg block/button refinements - v0.3.0 */
.hbl-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.hbl-text .hbl-section-actions {
  justify-content: center;
}
.hbl-lr__body .hbl-section-actions {
  justify-content: flex-start;
}

/* HBLytics block polish - v1.2.0 */
.hbl-section--spacing-compact { margin-bottom: 52px; }
.hbl-section--spacing-normal { margin-bottom: 88px; }
.hbl-section--spacing-large { margin-bottom: 128px; }
.hbl-section--bg-highlight,
.hbl-section--bg-dark {
  border: 1px solid var(--hbl-border);
  border-radius: var(--hbl-radius-lg);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.16);
}
.hbl-section--bg-highlight { background: linear-gradient(135deg, rgba(71,237,209,0.12), rgba(255,255,255,0.035)); }
.hbl-section--bg-dark { background: rgba(255,255,255,0.045); }
.hbl-text { text-align: center; }
.hbl-text--center { text-align: center; }
.hbl-text--left { text-align: left; }
.hbl-text--center .hbl-richtext { max-width: 720px; margin-inline: auto; }
.hbl-text--left .hbl-richtext { max-width: 760px; }
.hbl-text--center .hbl-divider { margin-left: auto; margin-right: auto; }
.hbl-text--left .hbl-divider { margin-left: 0; margin-right: 0; }
.hbl-text--center .hbl-section-actions { justify-content: center; }
.hbl-text--left .hbl-section-actions { justify-content: flex-start; }
.hbl-divider--short { width: 68px; }
.hbl-divider--full { width: min(360px, 100%); }
.hbl-lr--image-right .hbl-lr__media { order: 2; }
.hbl-lr--image-right .hbl-lr__body { order: 1; }
.hbl-lr--image-left .hbl-lr__media { order: 1; }
.hbl-lr--image-left .hbl-lr__body { order: 2; }
.hbl-lr--aspect-16-9 .hbl-lr__media { aspect-ratio: 16 / 9; min-height: auto; }
.hbl-lr--aspect-4-3 .hbl-lr__media { aspect-ratio: 4 / 3; min-height: auto; }
.hbl-lr--aspect-square .hbl-lr__media { aspect-ratio: 1 / 1; min-height: auto; }
@media (max-width: 900px) {
  .hbl-lr--image-right .hbl-lr__media,
  .hbl-lr--image-left .hbl-lr__media { order: 1; }
  .hbl-lr--image-right .hbl-lr__body,
  .hbl-lr--image-left .hbl-lr__body { order: 2; }
  .hbl-section--spacing-large { margin-bottom: 88px; }
}

/* Full-screen marketing sections - v1.3.0 */
:root {
  --hbl-topbar-height: 64px;
}

.hbl-hero {
  min-height: calc(100vh - var(--hbl-topbar-height));
}

.hbl-hero__content {
  max-width: 900px;
  padding: clamp(84px, 11vh, 150px) 0;
}

.hbl-hero h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 6.2vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}

.hbl-hero__subtitle {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hbl-content > .hbl-section {
  min-height: calc(100vh - var(--hbl-topbar-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(48px, 8vh, 96px);
}

.hbl-content > .hbl-section--bg-highlight,
.hbl-content > .hbl-section--bg-dark {
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(48px, 8vh, 96px);
}

.hbl-section--spacing-compact,
.hbl-section--spacing-normal,
.hbl-section--spacing-large {
  margin-bottom: 0;
}

.hbl-text h2,
.hbl-lr__body h2,
.hbl-section-head h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hbl-section-head .hbl-divider {
    margin-left: auto;
    margin-right: auto;
}

.hbl-text .hbl-richtext {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

@media (max-width: 900px) {
  .hbl-hero {
    min-height: calc(100svh - var(--hbl-topbar-height));
  }
  .hbl-content > .hbl-section {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hbl-hero h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }
}


/* HBLytics polish update - v1.4.0 */
.hbl-hero .hbl-eyebrow,
.hbl-page-hero .hbl-eyebrow {
  margin-bottom: 16px;
}

.hbl-hero__title-divider,
.hbl-page-hero__title-divider {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--hbl-highlight);
  margin: 0 0 22px;
}

.hbl-hero h1,
.hbl-page-hero h1 {
  margin-bottom: 18px;
}

.hbl-text .hbl-eyebrow,
.hbl-lr__body .hbl-eyebrow {
  margin-bottom: 16px;
}

.hbl-text h2,
.hbl-lr__body h2 {
  margin-bottom: 16px;
}

.hbl-text .hbl-divider,
.hbl-lr__body .hbl-divider {
  margin-top: 0;
  margin-bottom: 16px;
}

.hbl-text .hbl-richtext,
.hbl-lr__body .hbl-richtext {
  margin-top: 0;
}

.hbl-text .hbl-richtext p:first-child,
.hbl-lr__body .hbl-richtext p:first-child {
  margin-top: 0;
}

.hbl-lr {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
}

.hbl-lr__media,
.hbl-lr__body {
  min-width: 0;
}

.hbl-lr__media {
  width: 100%;
  height: 100%;
  min-height: min(560px, 62vh);
}

.hbl-lr__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hbl-lr__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.hbl-lr--image-left .hbl-lr__body {
  justify-self: start;
}

.hbl-lr--image-right .hbl-lr__body {
  justify-self: end;
}

@media (max-width: 900px) {
  .hbl-lr {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hbl-lr__media {
    min-height: 260px;
  }
  .hbl-lr__body {
    max-width: none;
    justify-self: stretch;
  }
}

/* Mobile overlay menu and robust image/text layout - v1.5.0 */
.hbl-nav--desktop { display: flex; }
.hbl-topbar__actions--desktop { display: flex; }
.hbl-mobile-overlay { display: none; }

.hbl-lr {
  grid-template-columns: minmax(0, calc(50% - (clamp(32px, 5vw, 64px) / 2))) minmax(0, calc(50% - (clamp(32px, 5vw, 64px) / 2)));
}
.hbl-lr--image-left .hbl-lr__media,
.hbl-lr--image-left .hbl-lr__body,
.hbl-lr--image-right .hbl-lr__media,
.hbl-lr--image-right .hbl-lr__body {
  order: initial;
}
.hbl-lr__media {
  align-self: stretch;
}
.hbl-lr__body {
  width: 100%;
}

@media (max-width: 900px) {
  body.hbl-mobile-menu-open { overflow: hidden; }
  .hbl-nav--desktop,
  .hbl-topbar__actions--desktop { display: none; }
  .hbl-topbar { max-height: 64px; }
  .hbl-nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--hbl-text);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--hbl-border);
    border-radius: var(--hbl-radius);
    padding: 0;
    cursor: pointer;
  }
  .hbl-nav-toggle__bar {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(2) { opacity: 0; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hbl-mobile-overlay {
    position: fixed;
    inset: 64px 0 0;
    z-index: 49;
    display: block;
    background:
      radial-gradient(circle at right top, rgba(71,237,209,0.16), transparent 28rem),
      rgba(5,3,24,0.98);
    backdrop-filter: blur(18px);
    overflow-y: auto;
    border-top: 1px solid var(--hbl-border);
  }
  .hbl-mobile-overlay[hidden] { display: none; }
  .hbl-mobile-overlay__inner {
    min-height: calc(100svh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .hbl-nav--mobile { display: block; margin: 0; }
  .hbl-menu--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
  }
  .hbl-menu--mobile a {
    display: block;
    padding: 8px 0;
    color: var(--hbl-text);
    font-size: clamp(1.7rem, 7vw, 3rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.045em;
    text-align: center;
  }
  .hbl-mobile-overlay__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  .hbl-mobile-overlay .hbl-lang__name { display: inline; }
  .hbl-mobile-overlay .hbl-lang__menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hbl-lr {
    grid-template-columns: 1fr;
  }
  .hbl-lr .hbl-lr__media { order: 1; }
  .hbl-lr .hbl-lr__body { order: 2; }
}


/* Strict responsive fixes - v1.6.0
   Image/Text remains two-column until below 600px. Mobile menu uses a reliable fullscreen overlay. */
@media (min-width: 601px) {
  .hbl-lr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(32px, 5vw, 64px) !important;
    align-items: stretch !important;
  }
  .hbl-lr--image-left .hbl-lr__media { order: 1 !important; grid-column: 1 !important; }
  .hbl-lr--image-left .hbl-lr__body { order: 2 !important; grid-column: 2 !important; }
  .hbl-lr--image-right .hbl-lr__body { order: 1 !important; grid-column: 1 !important; }
  .hbl-lr--image-right .hbl-lr__media { order: 2 !important; grid-column: 2 !important; }
  .hbl-lr__media,
  .hbl-lr__body {
    min-width: 0 !important;
    width: 100% !important;
  }
  .hbl-lr__media {
    height: 100% !important;
    min-height: min(560px, 62vh) !important;
  }
}

@media (max-width: 600px) {
  .hbl-lr {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .hbl-lr .hbl-lr__media {
    order: 1 !important;
    grid-column: 1 !important;
    width: 100% !important;
    min-height: 240px !important;
  }
  .hbl-lr .hbl-lr__body {
    order: 2 !important;
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 900px) {
  html.hbl-mobile-menu-open,
  body.hbl-mobile-menu-open {
    overflow: hidden !important;
  }
  .hbl-nav--desktop,
  .hbl-topbar__actions--desktop {
    display: none !important;
  }
  .hbl-nav-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    color: var(--hbl-text) !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid var(--hbl-border) !important;
    border-radius: var(--hbl-radius) !important;
    padding: 0 !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1002 !important;
  }
  .hbl-nav-toggle__bar {
    display: block !important;
    width: 21px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform .18s ease, opacity .18s ease !important;
  }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(2) { opacity: 0 !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }
  .hbl-mobile-overlay {
    position: fixed !important;
    inset: 64px 0 0 !important;
    z-index: 1000 !important;
    display: block !important;
    background: radial-gradient(circle at right top, rgba(71,237,209,0.16), transparent 28rem), rgba(5,3,24,0.98) !important;
    backdrop-filter: blur(18px) !important;
    overflow-y: auto !important;
    border-top: 1px solid var(--hbl-border) !important;
  }
  .hbl-mobile-overlay[hidden] {
    display: none !important;
  }
  .hbl-mobile-overlay__inner {
    min-height: calc(100svh - 64px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 34px !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .hbl-nav--mobile {
    display: block !important;
    margin: 0 !important;
  }
  .hbl-menu--mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .hbl-menu--mobile a {
    display: block !important;
    padding: 8px 0 !important;
    color: var(--hbl-text) !important;
    font-size: clamp(1.7rem, 7vw, 3rem) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.045em !important;
    text-align: center !important;
  }
  .hbl-mobile-overlay__actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
  }
}

/* HBLytics fixes v1.7.0: mobile overlay, smaller logo, image/text alignment + aspect ratio */
@media (max-width: 900px) {
  .hbl-brand img,
  .hbl-brand .custom-logo {
    max-height: 34px !important;
    width: auto !important;
  }
  .hbl-brand .custom-logo-link {
    max-height: 34px !important;
  }
  .hbl-brand__mark {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
    font-size: .9rem !important;
  }
  .hbl-nav-toggle {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    border-radius: 0 !important;
  }
  .hbl-nav-toggle:focus,
  .hbl-nav-toggle:focus-visible,
  .hbl-nav-toggle:hover,
  .hbl-nav-toggle:active {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
  }
  .hbl-mobile-overlay {
    display: none !important;
    position: fixed !important;
    inset: 64px 0 0 0 !important;
    z-index: 9999 !important;
  }
  body.hbl-mobile-menu-open .hbl-mobile-overlay,
  html.hbl-mobile-menu-open .hbl-mobile-overlay,
  .hbl-mobile-overlay.is-open {
    display: block !important;
  }
  .hbl-mobile-overlay[hidden].is-open {
    display: block !important;
  }
}

@media (min-width: 601px) {
  .hbl-lr {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(32px, 5vw, 64px) !important;
    align-items: center !important;
  }
  .hbl-lr__media {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    align-self: center !important;
  }
  .hbl-lr--aspect-auto .hbl-lr__media {
    min-height: min(460px, 54vh) !important;
    height: 100% !important;
  }
  .hbl-lr--aspect-16-9 .hbl-lr__media { aspect-ratio: 16 / 9 !important; }
  .hbl-lr--aspect-4-3 .hbl-lr__media { aspect-ratio: 4 / 3 !important; }
  .hbl-lr--aspect-square .hbl-lr__media { aspect-ratio: 1 / 1 !important; }
  .hbl-lr--aspect-16-9 .hbl-lr__media,
  .hbl-lr--aspect-4-3 .hbl-lr__media,
  .hbl-lr--aspect-square .hbl-lr__media {
    min-height: 0 !important;
    height: auto !important;
  }
  .hbl-lr__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hbl-lr--image-left .hbl-lr__body {
    text-align: left !important;
    justify-self: stretch !important;
  }
  .hbl-lr--image-left .hbl-divider {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .hbl-lr--image-left .hbl-section-actions {
    justify-content: flex-start !important;
  }
  .hbl-lr--image-right .hbl-lr__body {
    text-align: right !important;
    justify-self: stretch !important;
  }
  .hbl-lr--image-right .hbl-divider {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .hbl-lr--image-right .hbl-section-actions {
    justify-content: flex-end !important;
  }
  .hbl-lr__body h2,
  .hbl-lr__body .hbl-eyebrow,
  .hbl-lr__body .hbl-richtext {
    text-align: inherit !important;
  }
}

@media (max-width: 600px) {
  .hbl-lr__body,
  .hbl-lr--image-left .hbl-lr__body,
  .hbl-lr--image-right .hbl-lr__body {
    text-align: left !important;
  }
  .hbl-lr .hbl-divider {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .hbl-lr .hbl-section-actions {
    justify-content: flex-start !important;
  }
}


/* HBLytics hard fixes - v1.7.0
   - reliable mobile overlay menu
   - logo width correction
   - Image/Text 60/40 layout, aspect ratios, and alignment fixes */

/* Logo: prevent generic img { width:100% } or WP custom logo rules from making it too large. */
.hbl-brand,
.hbl-brand .custom-logo-link {
  max-width: 220px !important;
}
.hbl-brand img,
.hbl-brand .custom-logo {
  width: 70% !important;
  max-width: 220px !important;
  max-height: 46px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Mobile menu: controlled only by html/body open classes. */
.hbl-mobile-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
html.hbl-mobile-menu-open .hbl-mobile-overlay,
body.hbl-mobile-menu-open .hbl-mobile-overlay,
.hbl-mobile-overlay.is-open {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (max-width: 900px) {
  .hbl-nav--desktop,
  .hbl-topbar__actions--desktop {
    display: none !important;
  }
  .hbl-brand,
  .hbl-brand .custom-logo-link {
    max-width: 165px !important;
  }
  .hbl-brand img,
  .hbl-brand .custom-logo {
    width: 70% !important;
    max-width: 165px !important;
    max-height: 34px !important;
  }
  .hbl-nav-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    color: var(--hbl-text) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1002 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }
  .hbl-nav-toggle:focus,
  .hbl-nav-toggle:active {
    border: 0 !important;
    box-shadow: none !important;
    outline: 2px solid transparent !important;
  }
  .hbl-nav-toggle__bar {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform .18s ease, opacity .18s ease !important;
  }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(2) { opacity: 0 !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  .hbl-mobile-overlay {
    position: fixed !important;
    inset: 64px 0 0 0 !important;
    z-index: 1000 !important;
    background: radial-gradient(circle at right top, rgba(71,237,209,0.16), transparent 28rem), rgba(5,3,24,0.985) !important;
    backdrop-filter: blur(18px) !important;
    overflow-y: auto !important;
    border-top: 1px solid var(--hbl-border) !important;
  }
  html.hbl-mobile-menu-open,
  body.hbl-mobile-menu-open {
    overflow: hidden !important;
  }
}

/* HBLytics authoritative fixes v1.8.0 */
:root {
  --hbl-container: 1280px;
}

/* Logo: avoid WP width/height attributes and global img width rules making it too large. */
.hbl-brand,
.hbl-brand .custom-logo-link,
.hbl-brand__fallback {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  max-width: min(70vw, 210px) !important;
  height: 64px !important;
}
.hbl-brand img.custom-logo,
.hbl-topbar .custom-logo,
.hbl-topbar img.custom-logo {
  width: auto !important;
  max-width: 100% !important;
  height: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
}

/* Sections: use 80% viewport minimum instead of full viewport. */
.hbl-block-section,
.hbl-section.hbl-block-section,
.hbl-text-section,
.hbl-lr-section,
.hbl-feedback-section,
.hbl-pricing-section,
.hbl-faq-section,
.hbl-contact-section {
  min-height: 80vh !important;
  min-height: 80svh !important;
}
.hbl-hero {
  min-height: calc(100vh - var(--hbl-topbar-height, 64px)) !important;
  min-height: calc(100svh - var(--hbl-topbar-height, 64px)) !important;
}

/* Mobile menu: hide desktop nav/actions, show hamburger, open fullscreen overlay. */
.hbl-mobile-overlay {
  display: none !important;
}
@media (max-width: 900px) {
  .hbl-topbar { overflow: visible !important; }
  .hbl-topbar__inner { height: 64px !important; max-height: 64px !important; overflow: visible !important; }
  .hbl-nav--desktop,
  .hbl-topbar__actions--desktop {
    display: none !important;
  }
  .hbl-nav-toggle {
    display: inline-flex !important;
    margin-left: auto !important;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    color: var(--hbl-text) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1201 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }
  .hbl-nav-toggle__bar {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform .18s ease, opacity .18s ease !important;
  }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(2) { opacity: 0 !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  .hbl-mobile-overlay {
    position: fixed !important;
    inset: 64px 0 0 0 !important;
    width: 100vw !important;
    height: calc(100vh - 64px) !important;
    height: calc(100svh - 64px) !important;
    z-index: 1200 !important;
    background: radial-gradient(circle at right top, rgba(71,237,209,0.16), transparent 28rem), rgba(5,3,24,0.985) !important;
    backdrop-filter: blur(18px) !important;
    overflow-y: auto !important;
    border-top: 1px solid var(--hbl-border) !important;
  }
  html.hbl-mobile-menu-open .hbl-mobile-overlay,
  body.hbl-mobile-menu-open .hbl-mobile-overlay,
  .hbl-mobile-overlay.is-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .hbl-mobile-overlay__inner {
    min-height: calc(100svh - 64px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 32px !important;
    padding-block: 40px !important;
  }
  .hbl-mobile-overlay .hbl-nav,
  .hbl-mobile-overlay .hbl-nav--mobile {
    display: block !important;
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }
  .hbl-menu--mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .hbl-menu--mobile a {
    display: block !important;
    color: var(--hbl-text) !important;
    font-size: clamp(1.8rem, 8vw, 3.2rem) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    text-align: center !important;
    padding: 0 !important;
  }
  .hbl-mobile-overlay__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
  html.hbl-mobile-menu-open,
  body.hbl-mobile-menu-open {
    overflow: hidden !important;
  }
}

/* HBLytics authoritative patch v2.0.0 - 2026-06-23
   This block is intentionally last in the file so it overrides earlier theme CSS. */
:root {
  --hbl-container: 1280px !important;
  --hbl-topbar-height: 64px;
}

.hbl-container {
  width: min(calc(100% - 40px), var(--hbl-container)) !important;
}

/* Header logo: override WP image width/height attributes and global img rules. */
.hbl-topbar .hbl-brand,
.hbl-topbar .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  height: var(--hbl-topbar-height) !important;
  max-height: var(--hbl-topbar-height) !important;
  max-width: 170px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.hbl-topbar .custom-logo-link img,
.hbl-topbar img.custom-logo,
.hbl-brand img.custom-logo,
img.custom-logo {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
}

/* Sections: not full screen; keep breathing room. */
.hbl-section,
.hbl-block-section,
.hbl-text,
.hbl-lr,
.hbl-feedback,
.hbl-pricing,
.hbl-faq,
.hbl-contact {
  min-height: 80vh !important;
  min-height: 80svh !important;
}

/* Image/Text: 55 image / 45 text on all widths above 600px. */
@media (min-width: 601px) {
  .hbl-lr {
    display: grid !important;
    align-items: center !important;
    gap: clamp(28px, 4vw, 56px) !important;
  }
  .hbl-lr--image-left {
    grid-template-columns: minmax(0, 55fr) minmax(0, 45fr) !important;
  }
  .hbl-lr--image-right {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr) !important;
  }
  .hbl-lr--image-left .hbl-lr__media {
    grid-column: 1 !important;
    order: 1 !important;
  }
  .hbl-lr--image-left .hbl-lr__body {
    grid-column: 2 !important;
    order: 2 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  .hbl-lr--image-right .hbl-lr__body {
    grid-column: 1 !important;
    order: 1 !important;
    text-align: right !important;
    align-items: flex-end !important;
  }
  .hbl-lr--image-right .hbl-lr__media {
    grid-column: 2 !important;
    order: 2 !important;
  }
  .hbl-lr__body h2,
  .hbl-lr h2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: inherit !important;
    max-width: none !important;
  }
  .hbl-lr--image-right .hbl-divider {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .hbl-lr--image-left .hbl-divider {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .hbl-lr__media {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 340px !important;
    overflow: hidden !important;
  }
  .hbl-lr__media img,
  .hbl-lr__media video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .hbl-lr--aspect-auto .hbl-lr__media { aspect-ratio: auto !important; }
  .hbl-lr--aspect-auto .hbl-lr__media img,
  .hbl-lr--aspect-auto .hbl-lr__media video { height: auto !important; }
  .hbl-lr--aspect-16-9 .hbl-lr__media { aspect-ratio: 16 / 9 !important; }
  .hbl-lr--aspect-4-3 .hbl-lr__media { aspect-ratio: 4 / 3 !important; }
  .hbl-lr--aspect-square .hbl-lr__media { aspect-ratio: 1 / 1 !important; }
}
@media (max-width: 600px) {
  .hbl-lr {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .hbl-lr .hbl-lr__media {
    grid-column: 1 !important;
    order: 1 !important;
    width: 100% !important;
  }
  .hbl-lr .hbl-lr__body {
    grid-column: 1 !important;
    order: 2 !important;
    text-align: center !important;
    align-items: center !important;
  }
  .hbl-lr .hbl-lr__body h2,
  .hbl-lr h2 {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .hbl-lr .hbl-divider {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hbl-lr .hbl-buttons {
    justify-content: center !important;
  }
}

/* Mobile menu: explicit overlay behavior. */
.hbl-nav-toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.hbl-mobile-overlay {
  display: none !important;
}
@media (max-width: 900px) {
  .hbl-nav--desktop,
  .hbl-topbar__actions--desktop {
    display: none !important;
  }
  .hbl-nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    margin-left: auto !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    color: var(--hbl-text) !important;
    cursor: pointer !important;
    z-index: 100001 !important;
    position: relative !important;
  }
  .hbl-nav-toggle__bar {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: currentColor !important;
    border-radius: 999px !important;
  }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(2) { opacity: 0 !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  .hbl-mobile-overlay {
    position: fixed !important;
    inset: var(--hbl-topbar-height) 0 0 0 !important;
    width: 100vw !important;
    height: calc(100vh - var(--hbl-topbar-height)) !important;
    height: calc(100svh - var(--hbl-topbar-height)) !important;
    z-index: 100000 !important;
    background: radial-gradient(circle at 80% 0%, rgba(71,237,209,.18), transparent 320px), rgba(5,3,24,.99) !important;
    overflow-y: auto !important;
    border-top: 1px solid var(--hbl-border) !important;
    pointer-events: auto !important;
  }
  html.hbl-mobile-menu-open .hbl-mobile-overlay,
  body.hbl-mobile-menu-open .hbl-mobile-overlay,
  .hbl-mobile-overlay.is-open,
  .hbl-mobile-overlay[aria-hidden="false"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .hbl-mobile-overlay__inner {
    min-height: calc(100svh - var(--hbl-topbar-height)) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    padding-block: 40px !important;
  }
  .hbl-menu--mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  .hbl-menu--mobile a {
    color: var(--hbl-text) !important;
    font-size: clamp(1.7rem, 8vw, 3rem) !important;
    font-weight: 850 !important;
    text-align: center !important;
  }
  .hbl-mobile-overlay__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
}
@media (min-width: 901px) {
  .hbl-nav-toggle,
  .hbl-mobile-overlay {
    display: none !important;
  }
}

/* HBLytics final mobile menu + mobile text/image overrides, v2.1.0 */
.hbl-mobile-overlay {
  display: none !important;
}

@media (max-width: 900px) {
  .hbl-nav--desktop,
  .hbl-topbar__actions--desktop {
    display: none !important;
  }

  .hbl-nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--hbl-text) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 160 !important;
  }

  .hbl-nav-toggle:focus,
  .hbl-nav-toggle:focus-visible,
  .hbl-nav-toggle:hover,
  .hbl-nav-toggle:active {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .hbl-nav-toggle__bar {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 99px !important;
    background: currentColor !important;
    position: absolute !important;
    left: 10px !important;
    transition: transform 160ms ease, opacity 160ms ease !important;
  }
  .hbl-nav-toggle__bar:nth-child(1) { top: 13px !important; }
  .hbl-nav-toggle__bar:nth-child(2) { top: 21px !important; }
  .hbl-nav-toggle__bar:nth-child(3) { top: 29px !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(2) { opacity: 0 !important; }
  .hbl-nav-toggle.is-open .hbl-nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }

  #hbl-mobile-menu-overlay.hbl-mobile-overlay,
  #hbl-mobile-overlay.hbl-mobile-overlay {
    display: none !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 64px) !important;
    min-height: calc(100vh - 64px) !important;
    z-index: 100 !important;
    overflow-y: auto !important;
    background: rgba(6, 12, 24, 0.98) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  #hbl-mobile-menu-overlay.hbl-mobile-overlay.is-visible,
  #hbl-mobile-menu-overlay.hbl-mobile-overlay.is-open,
  #hbl-mobile-menu-overlay.hbl-mobile-overlay[aria-hidden="false"],
  #hbl-mobile-overlay.hbl-mobile-overlay.is-visible,
  #hbl-mobile-overlay.hbl-mobile-overlay.is-open,
  #hbl-mobile-overlay.hbl-mobile-overlay[aria-hidden="false"] {
    display: block !important;
  }

  .hbl-mobile-overlay__inner {
    min-height: calc(100vh - 64px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
    padding: 32px 24px !important;
    text-align: center !important;
  }

  .hbl-menu--mobile,
  .hbl-mobile-overlay .hbl-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .hbl-mobile-overlay .hbl-menu a {
    font-size: 1.35rem !important;
    color: var(--hbl-text) !important;
    text-decoration: none !important;
  }

  .hbl-mobile-overlay__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
  }

  body.hbl-mobile-menu-open {
    overflow: hidden !important;
  }

  .hbl-lr,
  .hbl-lr--image-left,
  .hbl-lr--image-right {
    text-align: center !important;
  }

  .hbl-lr__body,
  .hbl-lr--image-left .hbl-lr__body,
  .hbl-lr--image-right .hbl-lr__body {
    text-align: center !important;
    align-items: center !important;
  }

  .hbl-lr__body h2,
  .hbl-lr__body p,
  .hbl-lr__body .hbl-eyebrow,
  .hbl-lr__body .hbl-divider {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hbl-lr .hbl-section-actions {
    justify-content: center !important;
  }
}

/* Social icon links - v2.2.0 */
.hbl-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hbl-border);
  color: var(--hbl-muted);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  flex-shrink: 0;
}
.hbl-social-link:hover {
  background: rgba(71,237,209,0.14);
  border-color: rgba(71,237,209,0.45);
  color: var(--hbl-highlight);
  transform: translateY(-2px);
}
.hbl-socials--center {
  justify-content: center;
}

/* Mobile overlay footer - v2.2.0 */
@media (max-width: 900px) {
  .hbl-mobile-overlay__footer {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--hbl-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hbl-mobile-overlay__tagline {
    font-size: .82rem;
    color: var(--hbl-muted);
    margin: 0;
    text-align: center;
  }
}

/* Contact card: must not inherit section min-height - v2.2.0 */
.hbl-contact {
  min-height: 0 !important;
  height: auto !important;
}

/* Richtext links and Legal block - v2.3.0 */
.hbl-richtext a {
  color: var(--hbl-highlight);
  text-underline-offset: 3px;
  transition: opacity .18s ease;
}
.hbl-richtext a:hover {
  opacity: 0.72;
}

.hbl-legal {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(40px, 6vh, 72px) 0;
}
.hbl-legal .hbl-richtext {
  font-size: .95rem;
  line-height: 1.75;
}
.hbl-legal .hbl-richtext h2,
.hbl-legal .hbl-richtext h3 {
  margin-top: 2em;
  letter-spacing: -0.02em;
}
.hbl-legal .hbl-richtext h2:first-child,
.hbl-legal .hbl-richtext h3:first-child {
  margin-top: 0;
}
.hbl-legal .hbl-richtext p:first-child {
  margin-top: 0;
}

/* Divider reveal animation */
@keyframes hbl-divider-grow {
  0%   { transform: scaleX(0); animation-timing-function: ease-out; }
  65%  { transform: scaleX(1.5); animation-timing-function: ease-in-out; }
  100% { transform: scaleX(1); }
}

.hbl-divider,
.hbl-hero__title-divider,
.hbl-page-hero__title-divider {
  transform: scaleX(0);
  transform-origin: center;
}
.hbl-divider.is-visible,
.hbl-hero__title-divider.is-visible,
.hbl-page-hero__title-divider.is-visible {
  animation: hbl-divider-grow 1.1s forwards;
}

/* Left-aligned: grow to the right */
.hbl-text--left .hbl-divider,
.hbl-lr--image-left .hbl-divider,
.hbl-hero__title-divider,
.hbl-page-hero__title-divider {
  transform-origin: left;
}

/* Right-aligned: grow to the left */
.hbl-lr--image-right .hbl-divider {
  transform-origin: right;
}

/* At ≤600px all lr dividers are left-aligned */
@media (max-width: 600px) {
  .hbl-lr .hbl-divider { transform-origin: left; }
}

/* ============================================================
   HBLytics Feature Orbit Block - v1.0.0
   ============================================================ */

/* Material Symbols base — sized per context below */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-family: 'Material Symbols Rounded', sans-serif;
  line-height: 1;
  display: inline-block;
  user-select: none;
  vertical-align: middle;
}

/* Orbit stage: arc + floating items */
.hbl-orbit__stage {
  position: relative;
  width: 100%;
  /* viewBox 800×440 → ideal height = width × 440/800 = width × 0.55
     clamp keeps it sensible across breakpoints                         */
  height: clamp(220px, 32vw, 400px);
  margin-bottom: 0;
  overflow: visible;
}
.hbl-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hbl-orbit__9m-path {
  fill: none;
  stroke: rgba(71,237,209,0.16);
  stroke-width: 1;
  stroke-dasharray: 7 9;
  stroke-linecap: round;
}
.hbl-orbit__6m-path {
  fill: none;
  stroke: rgba(71,237,209,0.42);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.hbl-orbit__items {
  position: absolute;
  inset: 0;
  overflow: visible;
}

/* Orbit item buttons (positioned by JS on the 6m handball path) */
.hbl-orbit__item {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--hbl-border);
  border-radius: 50%;
  color: var(--hbl-muted);
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
  z-index: 2;
}
.hbl-orbit__item:hover {
  background: rgba(71,237,209,0.08);
  border-color: rgba(71,237,209,0.4);
  color: var(--hbl-text);
  transform: translate(-50%, -50%) scale(1.07);
}
.hbl-orbit__item.is-active {
  background: rgba(71,237,209,0.13);
  border-color: rgba(71,237,209,0.65);
  color: var(--hbl-highlight);
  box-shadow: 0 0 0 4px rgba(71,237,209,0.10), 0 8px 28px rgba(71,237,209,0.18);
}
.hbl-orbit__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hbl-orbit__item-icon .material-symbols-rounded { font-size: 22px; }
.hbl-orbit__item-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Mobile tabs */
.hbl-orbit__tabs {
  display: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 8px;
  padding: 2px 0 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hbl-orbit__tabs::-webkit-scrollbar { display: none; }
.hbl-orbit__tab {
  display: inline-flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hbl-border);
  border-radius: var(--hbl-radius);
  color: var(--hbl-muted);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  scroll-snap-align: start;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  min-width: 76px;
  line-height: 1.2;
}
.hbl-orbit__tab:hover {
  background: rgba(71,237,209,0.08);
  border-color: rgba(71,237,209,0.4);
  color: var(--hbl-text);
}
.hbl-orbit__tab.is-active {
  background: rgba(71,237,209,0.13);
  border-color: rgba(71,237,209,0.6);
  color: var(--hbl-highlight);
}
.hbl-orbit__tab-icon { display: flex; align-items: center; justify-content: center; }
.hbl-orbit__tab-icon .material-symbols-rounded { font-size: 16px; }

/* Prev/next arrows: absolute overlay on the stage */
.hbl-orbit__arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hbl-border-strong);
  background: rgba(15,17,24,0.55);
  backdrop-filter: blur(6px);
  color: var(--hbl-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, border-color .18s ease;
}
.hbl-orbit__arrow--prev { left: 10%; }
.hbl-orbit__arrow--next { right: 10%; }
.hbl-orbit__arrow:hover {
  background: rgba(71,237,209,0.14);
  border-color: rgba(71,237,209,0.5);
}
.hbl-orbit__arrow svg { width: 16px; height: 16px; }

/* Selected item info: absolute overlay in the 6m interior
   SVG (400, 160) in viewBox 800×440 → left: 50%, top: 36%   */
.hbl-orbit__preview {
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  pointer-events: none;
  z-index: 3;
  max-width: 200px;
  width: 200px;
}
.hbl-orbit__preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(71,237,209,0.14);
  border: 1.5px solid rgba(71,237,209,0.45);
  color: var(--hbl-highlight);
  box-shadow: 0 0 0 8px rgba(71,237,209,0.05);
}
.hbl-orbit__preview-icon .material-symbols-rounded { font-size: 24px; }
.hbl-orbit__preview-body { width: 100%; }
.hbl-orbit__preview-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--hbl-text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hbl-orbit__preview-teaser {
  font-size: 0.78rem;
  color: var(--hbl-muted);
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Content panels */
.hbl-orbit__panels { position: relative; margin-top: 80px; }
.hbl-orbit__panel { display: none; }
.hbl-orbit__panel.is-active { display: block; }

.hbl-orbit--ready .hbl-orbit__panel.is-active {
  animation: hbl-orbit-panel-in 0.32s ease forwards;
}
@keyframes hbl-orbit-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hbl-orbit__panel-body {
  display: grid;
  gap: 40px;
  align-items: center;
}
.hbl-orbit__panel-body--media {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.hbl-orbit__panel-body--img-right .hbl-orbit__panel-media { order: 2; }
.hbl-orbit__panel-body--img-right .hbl-orbit__panel-text  { order: 1; }
.hbl-orbit__panel-text .hbl-divider { transform-origin: left; }
.hbl-orbit__panel-media {
  position: relative;
  border-radius: var(--hbl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hbl-border);
  background: rgba(71,237,209,0.05);
  box-shadow: var(--hbl-shadow);
}
.hbl-orbit__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hbl-orbit__panel-text h3 {
  color: var(--hbl-text);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  margin-bottom: 12px;
}
.hbl-orbit__bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 9px;
}
.hbl-orbit__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--hbl-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hbl-orbit__bullets li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hbl-highlight);
  margin-top: 8px;
}

/* Responsive: hide orbit stage on mobile, show tabs */
@media (max-width: 700px) {
  .hbl-orbit__stage { display: none; }
  .hbl-orbit__tabs  { display: flex; }
}
@media (max-width: 600px) {
  .hbl-orbit__panel-body--media {
    grid-template-columns: 1fr;
  }
  .hbl-orbit__preview {
    flex-wrap: wrap;
    gap: 12px;
  }
}
