/* HBN — production stylesheet.
   Page-level visual styling is inline on the elements (kept from the design source).
   This file carries only what an inline style cannot express: resets, hover/focus
   states, and the header's responsive behaviour. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #102B35;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #101010;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: #0E6E8E; text-decoration: none; }
a:hover { color: #20B7E6; }
:focus-visible { outline: 2px solid #20B7E6; outline-offset: 2px; }

/* ---------- header ---------- */
.hbn-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16,43,53,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hbn-header-in {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  height: 76px; display: flex; align-items: center; gap: 32px;
}
.hbn-brand { display: flex; align-items: center; flex-shrink: 0; }
.hbn-brand img { display: block; }
.hbn-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.hbn-link, .hbn-dd-btn {
  font: 500 14px/1 Montserrat, sans-serif;
  color: rgba(255,255,255,0.74);
  padding: 10px 14px; background: none; border: 0; cursor: pointer;
  transition: color 150ms ease-out;
}
.hbn-link:hover, .hbn-dd-btn:hover, .hbn-link[aria-current="page"] { color: #FFFFFF; }
.hbn-dd { position: relative; }
.hbn-dd-btn { display: flex; align-items: center; gap: 8px; }
.hbn-caret {
  width: 0; height: 0; display: inline-block;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 150ms ease-out;
}
.hbn-dd-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 268px;
  background: #14323D; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38); padding: 8px;
}
.hbn-dd:hover .hbn-dd-menu, .hbn-dd:focus-within .hbn-dd-menu { display: block; }
.hbn-dd:hover .hbn-caret, .hbn-dd:focus-within .hbn-caret { transform: rotate(180deg); }
.hbn-dd-menu a {
  display: block; padding: 12px 14px;
  font: 500 14px/1.3 Montserrat, sans-serif; color: #FFFFFF;
}
.hbn-dd-menu a:hover, .hbn-dd-menu a[aria-current="page"] { background: rgba(32,183,230,0.12); color: #FFFFFF; }
.hbn-dd-menu a span {
  display: block; margin-top: 3px;
  font: 400 12px/1.4 Montserrat, sans-serif; color: rgba(255,255,255,0.52);
}
.hbn-cta {
  margin-left: 16px; background: #20B7E6; color: #0B1F27;
  font: 700 12px/1 Montserrat, sans-serif; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 14px 20px; transition: background 150ms ease-out;
}
.hbn-cta:hover { background: #4ECBF0; color: #0B1F27; }
.hbn-burger {
  display: none; margin-left: auto; background: none;
  border: 1px solid rgba(255,255,255,0.2); width: 44px; height: 44px;
  cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.hbn-burger span { display: block; width: 18px; height: 2px; background: #FFFFFF; }
.hbn-mobile {
  border-top: 1px solid rgba(255,255,255,0.10); background: #102B35;
  padding: 12px 24px 24px; display: flex; flex-direction: column;
}
.hbn-mobile[hidden] { display: none; }
.hbn-mobile a {
  padding: 15px 0; font: 500 16px/1.3 Montserrat, sans-serif; color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hbn-mobile a[aria-current="page"] { color: #20B7E6; }
.hbn-mobile .hbn-mobile-cta {
  margin-top: 20px; border-bottom: 0; text-align: center;
  background: #20B7E6; color: #0B1F27;
  font: 700 13px/1 Montserrat, sans-serif; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 17px 20px;
}

@media (max-width: 1000px) {
  .hbn-nav { display: none; }
  .hbn-burger { display: flex; }
}
/* No-JS fallback: the mobile panel is always open, so every link stays reachable. */
@media (max-width: 1000px) {
  html.no-js .hbn-mobile[hidden] { display: flex; }
  html.no-js .hbn-burger { display: none; }
}

/* ---------- forms ---------- */
input, textarea, button, select { font-family: Montserrat, sans-serif; }
input:focus, textarea:focus {
  outline: none; border-color: #20B7E6; box-shadow: 0 0 0 3px rgba(32,183,230,0.22);
}
::placeholder { color: #6A757B; }
.hbn-chip {
  border: 1px solid #DDE0E1; background: #FFFFFF; color: #3D4B52;
  padding: 11px 16px; font: 500 13px/1 Montserrat, sans-serif;
  cursor: pointer; transition: all 150ms ease-out;
}
.hbn-chip:hover { border-color: #6A757B; }
.hbn-chip[aria-pressed="true"] { background: #102B35; border-color: #102B35; color: #FFFFFF; }

/* ---------- hover states lifted from the design source ---------- */
.hs1:hover { color: #20B7E6 }
.hs2:hover { background: #4ECBF0; color: #0B1F27 }
.hs3:hover { background: rgba(255,255,255,0.07); color: #FFFFFF }
.hs4:hover { background: #102B35; color: #FFFFFF }
.hs5:hover { background: rgba(11,31,39,0.08); color: #0B1F27 }
.hs6:hover { background: rgba(32,183,230,0.22); color: #FFFFFF }
.hs7:hover { background: #20B7E6; color: #0B1F27 }
.hs8:hover { background: #F4F5F5; color: #101010 }
