*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, picture { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.hbc-Container { max-width: var(--maxw); padding: 0 20px; margin: 0 auto; }
.hbc-Section { padding: 64px 0; position: relative; }
.hbc-Section.-tight { padding: 40px 0; }
.hbc-Section.-paper2 { background: var(--paper-2); }
.hbc-Section > .hbc-Container > h2 + .lede { margin-top: 10px; }
.hbc-Section > .hbc-Container > h2 + p + .grid,
.hbc-Section > .hbc-Container > h2 + .grid { margin-top: 28px; }

h1, h2, h3, h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); margin-bottom: 6px; }
h3 { font-size: 1.15rem; font-weight: 500; font-style: normal; }
h4 { font-size: 0.95rem; font-weight: 500; font-style: normal; }
p { max-width: 65ch; }
.lede { font-size: 1.1rem; line-height: 1.7; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

.hbc-Divider { height: 1px; background: var(--line); margin: 32px 0; }
.hbc-Divider.-torn {
  height: 8px; background: transparent;
  background-image: linear-gradient(135deg, transparent 6px, var(--line) 6px, var(--line) 7px, transparent 7px);
  background-size: 12px 8px; background-repeat: repeat-x;
}

.hbc-Header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(246,242,232,.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  transition: transform .3s ease;
}
.hbc-Header.-hidden { transform: translateY(-100%); }
.hbc-Header > .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hbc-Header > .row > .left { display: flex; align-items: center; gap: 22px; min-width: 0; }
.hbc-Header > .row > .center { justify-self: center; }
.hbc-Header > .row > .right { justify-self: end; display: flex; gap: 8px; align-items: center; }

.hbc-Logo { display: inline-flex; align-items: center; gap: 10px; font-style: italic; font-size: 1.05rem; color: var(--ink); }
.hbc-Logo > .dots { display: inline-flex; gap: 3px; align-items: center; }
.hbc-Logo > .dots > i { display: block; border-radius: 50%; background: var(--brand); }
.hbc-Logo > .dots > i:nth-child(1) { width: 7px; height: 7px; opacity: .7; }
.hbc-Logo > .dots > i:nth-child(2) { width: 11px; height: 11px; }
.hbc-Logo > .dots > i:nth-child(3) { width: 5px; height: 5px; opacity: .55; }
.hbc-Logo > .dots > i:nth-child(4) { width: 9px; height: 9px; opacity: .85; background: var(--ink); }
.hbc-Logo > .word { font-weight: 500; letter-spacing: -0.01em; }

.hbc-Nav { display: flex; gap: 22px; }
.hbc-Nav > a { font-size: 0.94rem; color: var(--ink-soft); position: relative; padding: 6px 0; }
.hbc-Nav > a:hover { color: var(--ink); text-decoration: none; }
.hbc-Nav > a[aria-current="page"] { color: var(--ink); }
.hbc-Nav > a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand);
}

.hbc-LangSwitch { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 100px; padding: 2px; background: var(--surface); }
.hbc-LangSwitch > a { padding: 4px 12px; font-size: 0.8rem; border-radius: 100px; }
.hbc-LangSwitch > a:hover { text-decoration: none; }
.hbc-LangSwitch > a[aria-current="true"] { background: var(--ink); color: var(--surface); }

.hbc-Burger {
  display: none;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.hbc-Burger > svg { width: 18px; height: 18px; }

.hbc-Button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: var(--ink); color: var(--surface);
  font-size: 0.97rem; font-weight: 500;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  font-family: inherit;
  white-space: nowrap;
}
.hbc-Button:hover { background: #0a0d10; text-decoration: none; }
.hbc-Button.-brand { background: var(--brand); }
.hbc-Button.-brand:hover { background: var(--brand-dark); }
.hbc-Button.-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.hbc-Button.-ghost:hover { background: var(--surface); border-color: var(--ink); }
.hbc-Button.-sm { height: 38px; padding: 0 16px; font-size: 0.88rem; }
.hbc-Button.-block { width: 100%; }
.hbc-Button.-lg { height: 54px; padding: 0 28px; font-size: 1.02rem; }

.hbc-Hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hbc-Hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,23,26,0.025) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
  opacity: .55;
}
.hbc-Hero > .inner { display: grid; gap: 24px; max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hbc-Hero .eyebrow {
  display: inline-block; align-self: center;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-dark); padding: 6px 14px;
  background: var(--brand-soft); border-radius: 100px;
  font-style: normal; font-weight: 500;
}
.hbc-Hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); }
.hbc-Hero h1 > em { font-style: italic; color: var(--brand-dark); }
.hbc-Hero .lede { max-width: 56ch; margin: 0 auto; }
.hbc-Hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.hbc-Hero .meta { font-size: 0.85rem; color: var(--ink-soft); }
.hbc-Hero .kpi { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.hbc-Hero.-home .kpi { margin-top: 26px; margin-bottom: 8px; }

.hbc-Hero.-split { padding: 60px 0 56px; }
.hbc-Hero.-split > .inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; text-align: start; max-width: var(--maxw); align-items: center; }
.hbc-Hero.-split .eyebrow { align-self: start; }
.hbc-Hero.-split .actions { justify-content: flex-start; }
.hbc-Hero.-split .lede { margin: 0; }

.hbc-NeedCard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-paper);
}
.hbc-NeedCard > .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.hbc-NeedCard > .head > h3 { font-style: italic; font-size: 1.05rem; font-weight: 500; }
.hbc-NeedCard > .head > .tag { font-size: 0.75rem; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; }
.hbc-NeedCard > ul { list-style: none; display: grid; gap: 12px; }
.hbc-NeedCard > ul > li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 0.94rem; }
.hbc-NeedCard > ul > li > svg { width: 20px; height: 20px; color: var(--brand); margin-top: 2px; }
.hbc-NeedCard > ul > li > .body > .label { display: block; color: var(--ink-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.hbc-NeedCard > ul > li > .body > .val { display: block; color: var(--ink); }

.hbc-Card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-paper);
  position: relative;
}
.hbc-Card.-pad-lg { padding: 36px; }
.hbc-Card.-pad-sm { padding: 20px; }
.hbc-Card.-flat { box-shadow: none; }
.hbc-Card > h3 + p, .hbc-Card > h2 + p { margin-top: 8px; color: var(--ink-soft); }
.hbc-Card > .icon { width: 28px; height: 28px; color: var(--brand); margin-bottom: 16px; }
.hbc-Card.-frame { padding: 6px; }
.hbc-Card.-frame > .frame-in { border: 1px dashed var(--line); border-radius: calc(var(--radius-lg) - 4px); padding: 26px; }

.hbc-Grid { display: grid; gap: 20px; }
.hbc-Grid.-c2 { grid-template-columns: repeat(2, 1fr); }
.hbc-Grid.-c3 { grid-template-columns: repeat(3, 1fr); }
.hbc-Grid.-c4 { grid-template-columns: repeat(4, 1fr); }

.hbc-Steps { list-style: none; counter-reset: step; display: grid; gap: 22px; }
.hbc-Steps > li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; counter-increment: step; }
.hbc-Steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brand);
  font-feature-settings: "tnum";
  font-weight: 400;
  line-height: 1;
}
.hbc-Steps > li > .body { padding-top: 4px; }
.hbc-Steps > li > .body > h3 { font-style: normal; font-weight: 500; font-size: 1.05rem; margin-bottom: 4px; }
.hbc-Steps > li > .body > p { font-size: 0.95rem; color: var(--ink-soft); }

.hbc-Field { display: grid; gap: 6px; margin-bottom: 18px; }
.hbc-Field > label { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.hbc-Field > .hint { font-size: 0.8rem; color: var(--ink-soft); }
.hbc-Field > .err { font-size: 0.82rem; color: var(--danger); display: none; }
.hbc-Field.-invalid > .err { display: block; }
.hbc-Field input,
.hbc-Field select,
.hbc-Field textarea {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.hbc-Field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%2314171a' stroke-width='1.5' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
[dir="rtl"] .hbc-Field select { background-position: left 14px center; padding-right: 14px; padding-left: 38px; }
.hbc-Field textarea { min-height: 120px; resize: vertical; }
.hbc-Field input:focus,
.hbc-Field select:focus,
.hbc-Field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
  outline: none;
}
.hbc-Field.-invalid input,
.hbc-Field.-invalid select,
.hbc-Field.-invalid textarea { border-color: var(--danger); }

.hbc-FieldRow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hbc-Chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)); gap: 10px; margin-bottom: 14px; }
.hbc-Chips > label {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer; font-weight: 500;
  transition: all .12s;
  text-align: center;
}
.hbc-Chips > label > input { position: absolute; opacity: 0; pointer-events: none; }
.hbc-Chips > label:hover { border-color: var(--ink-soft); }
.hbc-Chips > label.is-on,
.hbc-Chips > label:has(input:checked) {
  background: var(--brand);
  color: var(--surface);
  border-color: var(--brand-dark);
}

.hbc-Faq { display: grid; }
.hbc-Faq > details {
  border-bottom: 1px solid var(--line);
}
.hbc-Faq > details > summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-weight: 500;
  font-size: 1.02rem;
  gap: 16px;
}
.hbc-Faq > details > summary::-webkit-details-marker { display: none; }
.hbc-Faq > details > summary::after {
  content: "+";
  display: inline-block;
  width: 26px; height: 26px;
  text-align: center; line-height: 24px;
  font-style: normal;
  color: var(--brand);
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.hbc-Faq > details[open] > summary::after { content: "\2212"; background: var(--brand); color: var(--surface); border-color: var(--brand); }
.hbc-Faq > details > .answer {
  padding: 0 0 22px 0;
  color: var(--ink-soft);
}
.hbc-Faq > details > .answer > p + p { margin-top: 10px; }

.hbc-Footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  margin-top: 80px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hbc-Footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.hbc-Footer .cols h4 { font-style: normal; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.hbc-Footer .cols ul { list-style: none; display: grid; gap: 8px; }
.hbc-Footer .cols a:hover { color: var(--ink); }
.hbc-Footer .brand { display: grid; gap: 14px; max-width: 320px; }
.hbc-Footer .brand p { font-size: 0.88rem; color: var(--ink-soft); }
.hbc-Footer .bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 0.82rem;
  align-items: center;
}
.hbc-Footer .bottom .trust { display: inline-flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hbc-Footer .bottom .trust > span { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.hbc-Footer .bottom .trust svg { width: 14px; height: 14px; opacity: .7; }
.hbc-Footer .bottom .right { display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hbc-Footer .flag-uae { display: inline-flex; align-items: center; gap: 6px; }
.hbc-Footer .flag-uae > svg { width: 18px; height: 12px; border-radius: 2px; overflow: hidden; }
.hbc-Footer .made { font-style: italic; opacity: .8; }

.hbc-SocialRow { display: flex; gap: 10px; }
.hbc-SocialRow > a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink-soft);
}
.hbc-SocialRow > a:hover { color: var(--ink); border-color: var(--ink); text-decoration: none; }
.hbc-SocialRow svg { width: 14px; height: 14px; }

.hbc-Modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(20,23,26,0);
  visibility: hidden; opacity: 0;
  transition: opacity .22s ease, visibility 0s linear .22s, background .22s ease;
  padding: 0;
}
.hbc-Modal.is-open {
  visibility: visible; opacity: 1;
  background: rgba(20,23,26,0.5);
  transition: opacity .22s ease, visibility 0s linear 0s, background .22s ease;
}
.hbc-Modal > .sheet {
  width: 100%; max-width: 460px;
  background: var(--surface);
  border-radius: 18px 18px 0 0;
  padding: 32px 26px 26px;
  transform: translateY(40px);
  transition: transform .25s ease;
  text-align: center;
  position: relative;
}
.hbc-Modal.is-open > .sheet { transform: translateY(0); }
.hbc-Modal .sheet h3 { font-style: italic; font-size: 1.4rem; margin-bottom: 10px; font-weight: 400; }
.hbc-Modal .sheet p { color: var(--ink-soft); margin: 0 auto 20px; }
.hbc-Modal .sheet .close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink-soft); }
[dir="rtl"] .hbc-Modal .sheet .close { right: auto; left: 12px; }
.hbc-Modal .sheet .check { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hbc-Modal .sheet .check > svg { width: 26px; height: 26px; }
@media (min-width: 720px) {
  .hbc-Modal { align-items: center; padding: 24px; }
  .hbc-Modal > .sheet { border-radius: 18px; }
}

.hbc-Overlay {
  position: fixed; inset: 0;
  z-index: 110;
  background: rgba(246,242,232,0.78);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity .15s ease, visibility 0s linear .15s;
}
.hbc-Overlay.is-open { visibility: visible; opacity: 1; transition: opacity .15s ease, visibility 0s linear 0s; }

.hbc-Spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: hbcSpin .8s linear infinite;
}
@keyframes hbcSpin { to { transform: rotate(360deg); } }

.hbc-Drawer {
  position: fixed; inset: 0;
  z-index: 90;
  visibility: hidden; opacity: 0;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.hbc-Drawer.is-open {
  visibility: visible; opacity: 1;
  transition: opacity .25s ease, visibility 0s linear 0s;
}
.hbc-Drawer > .backdrop { position: absolute; inset: 0; background: rgba(20,23,26,0.4); }
.hbc-Drawer > .panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 320px);
  background: var(--paper);
  padding: 20px 22px 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  transform: translateX(100%);
  transition: transform .25s ease;
  border-left: 1px solid var(--line);
}
.hbc-Drawer.is-open > .panel { transform: translateX(0); }
[dir="rtl"] .hbc-Drawer > .panel { right: auto; left: 0; transform: translateX(-100%); border-left: none; border-right: 1px solid var(--line); }
[dir="rtl"] .hbc-Drawer.is-open > .panel { transform: translateX(0); }
.hbc-Drawer .head { display: flex; justify-content: space-between; align-items: center; }
.hbc-Drawer .head > button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink-soft); }
.hbc-Drawer nav { display: grid; gap: 2px; }
.hbc-Drawer nav a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; color: var(--ink); }
.hbc-Drawer nav a:hover { text-decoration: none; }
.hbc-Drawer .foot { display: grid; gap: 10px; }
.hbc-Drawer .foot > .langs { display: inline-flex; gap: 6px; }
.hbc-Drawer .foot > .langs > a { padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; font-size: 0.85rem; }

body.hbc-noscroll { overflow: hidden; }

.hbc-Pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  background: var(--surface);
  color: var(--ink-soft);
}
.hbc-Pill > .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.hbc-Tag { display: inline-flex; padding: 3px 8px; background: var(--brand-soft); color: var(--brand-dark); border-radius: 4px; font-size: 0.78rem; font-style: normal; font-weight: 500; }

.hbc-Dropcap > p:first-of-type::first-letter {
  font-size: 3.6em;
  font-style: italic;
  color: var(--brand-dark);
  float: left;
  line-height: 0.9;
  margin: 8px 10px 0 0;
  font-weight: 400;
}
[dir="rtl"] .hbc-Dropcap > p:first-of-type::first-letter { float: right; margin: 8px 0 0 10px; }

.hbc-VLabel {
  position: absolute;
  top: 56px; right: 12px;
  writing-mode: vertical-rl;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-feature-settings: "tnum";
}
[dir="rtl"] .hbc-VLabel { right: auto; left: 12px; writing-mode: vertical-lr; }

.hbc-Compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.hbc-Compare > .scroll { overflow-x: auto; }
.hbc-Compare table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 520px; }
.hbc-Compare th, .hbc-Compare td { padding: 14px 16px; text-align: start; border-bottom: 1px solid var(--line-soft); }
.hbc-Compare thead th { background: var(--paper-2); font-style: normal; font-weight: 500; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.hbc-Compare tbody tr:last-child td { border-bottom: none; }
.hbc-Compare td > .yes { color: var(--brand-dark); font-weight: 500; }
.hbc-Compare td > .no { color: var(--ink-soft); }

.hbc-Balance {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-paper);
}
.hbc-Balance > .label { font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px; }
.hbc-Balance > .amount {
  font-size: clamp(2.6rem, 7vw, 3.8rem);
  font-style: italic;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hbc-Balance > .amount > .ccy { font-size: 0.46em; color: var(--ink-soft); margin-right: 8px; font-style: normal; vertical-align: middle; font-feature-settings: "tnum"; letter-spacing: 0.1em; }
.hbc-Balance > .card-echo { font-size: 0.9rem; color: var(--ink-soft); margin-top: 14px; font-feature-settings: "tnum"; letter-spacing: 0.04em; }
.hbc-Balance > .note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.hbc-Balance > .cta { margin-top: 22px; }

.hbc-Marquee {
  background: var(--ink);
  color: var(--surface);
  padding: 8px 0;
  overflow: hidden;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.hbc-Marquee > .track { display: inline-flex; gap: 64px; white-space: nowrap; padding-left: 100%; animation: hbcMarquee 32s linear infinite; }
.hbc-Marquee > .track > span { font-style: italic; opacity: .9; }
@keyframes hbcMarquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .hbc-Marquee > .track { animation: none; padding-left: 16px; }
}

.hbc-Hl { background-image: linear-gradient(transparent 60%, var(--brand-soft) 60%); padding: 0 2px; }

.hbc-UseCase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid; gap: 12px;
  position: relative;
}
.hbc-UseCase > .num { font-style: italic; font-size: 2rem; color: var(--brand); line-height: 1; }
.hbc-UseCase > h3 { font-size: 1.1rem; font-weight: 500; font-style: italic; }
.hbc-UseCase > p { font-size: 0.94rem; color: var(--ink-soft); }

.hbc-Quote { border-left: 3px solid var(--brand); padding: 12px 0 12px 22px; max-width: 65ch; }
.hbc-Quote > p { font-style: italic; font-size: 1.05rem; color: var(--ink); }
.hbc-Quote > cite { font-style: normal; font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; display: block; }
[dir="rtl"] .hbc-Quote { border-left: none; border-right: 3px solid var(--brand); padding: 12px 22px 12px 0; }

.hbc-Cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  gap: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hbc-Cta > h2 { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.hbc-Cta > p { color: rgba(253,251,245,.75); max-width: 50ch; margin: 0 auto; }
.hbc-Cta > .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hbc-Cta::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(91,142,68,.45) 0%, transparent 70%);
  pointer-events: none;
}

[dir="rtl"] body { font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; }
[dir="rtl"] .hbc-Steps > li { grid-template-columns: 46px 1fr; }
[dir="rtl"] .hbc-Hero.-split > .inner > .inner-text { text-align: right; }

@media (max-width: 920px) {
  .hbc-Grid.-c4 { grid-template-columns: repeat(2, 1fr); }
  .hbc-Grid.-c3 { grid-template-columns: repeat(2, 1fr); }
  .hbc-Footer .cols { grid-template-columns: 1fr 1fr; }
  .hbc-Hero.-split > .inner { grid-template-columns: 1fr; gap: 32px; }
  .hbc-FieldRow { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hbc-Nav { display: none; }
  .hbc-Header > .row > .right > .desktop-only { display: none; }
  .hbc-Burger { display: inline-flex; }
  .hbc-Header > .row { grid-template-columns: auto 1fr auto; }
  .hbc-Header > .row > .center { display: none; }
  .hbc-Hero { padding: 56px 0 40px; }
  .hbc-Section { padding: 48px 0; }
  .hbc-Footer { padding: 40px 0 24px; margin-top: 56px; }
  .hbc-Footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
  .hbc-Grid.-c2 { grid-template-columns: 1fr; }
  .hbc-Card { padding: 22px; }
  .hbc-Card.-pad-lg { padding: 24px; }
  .hbc-Cta { padding: 32px 22px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .hbc-VLabel { display: none; }
}
@media (max-width: 380px) {
  .hbc-Container { padding: 0 14px; }
  .hbc-Hero h1 { font-size: 1.85rem; }
  .hbc-Chips { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
