/* ============================================================
   HUMA HACK — Brand Design System
   Dark theme only. Teal accent. Roboto.
   ============================================================ */

:root {
  /* Colors */
  --hh-bg: #0A0E14;
  --hh-bg-card: #141A23;
  --hh-bg-card-2: #1A222E;
  --hh-teal: #02D0A4;
  --hh-teal-bright: #3DF08C;
  --hh-blue: #1E6FD9;
  --hh-gradient: linear-gradient(90deg, #1E6FD9 0%, #02D0A4 100%);
  --hh-gradient-135: linear-gradient(135deg, #1E6FD9 0%, #02D0A4 100%);
  --hh-white: #FFFFFF;
  --hh-gray: #A8B3BF;
  --hh-gray-dim: #6B7785;
  --hh-border: rgba(255, 255, 255, 0.08);
  --hh-border-teal: rgba(2, 208, 164, 0.35);

  /* Type */
  --font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 20px;
  --header-h: 92px;

  /* Effects */
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --glow-teal: 0 0 40px rgba(2, 208, 164, 0.25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--hh-bg);
  color: var(--hh-gray);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--hh-teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--hh-teal-bright); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--hh-teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--hh-white); line-height: 1.15; font-weight: 900; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); text-transform: uppercase; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
.teal { color: var(--hh-teal); }
.overline {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--hh-teal); margin-bottom: 1rem;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--hh-gray); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--card { background: var(--hh-bg-card); }
.section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { color: var(--hh-gray); }
.grid { display: grid; gap: 1.5rem; }
.center { text-align: center; }
.divider-bar { height: 3px; width: 68px; background: var(--hh-gradient); border-radius: 3px; margin: 1rem auto 0; }
.section-head.left .divider-bar { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  padding: .85rem 1.6rem; border-radius: 10px; font-weight: 700; font-size: .98rem;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--hh-gradient); color: #FFFFFF; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); box-shadow: 0 8px 24px rgba(2, 208, 164, 0.25); }
.btn--primary:hover { color: #FFFFFF; box-shadow: 0 12px 30px rgba(2, 208, 164, 0.4); }
.btn--ghost { background: transparent; color: var(--hh-white); border-color: var(--hh-border-teal); }
.btn--ghost:hover { color: var(--hh-white); border-color: var(--hh-teal); background: rgba(2, 208, 164, 0.08); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 20, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hh-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav__logo img { height: 52px; width: auto; }
@media (max-width: 520px) { .nav__logo img { height: 44px; } }
.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { color: var(--hh-gray); font-weight: 500; font-size: .95rem; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--hh-white); }
.nav__item { position: relative; }
.nav__dropdown-toggle { display: inline-flex; align-items: center; gap: .35rem; background: none; border: 0; color: var(--hh-gray); font-weight: 500; font-size: .95rem; padding: 0; }
.nav__dropdown-toggle:hover { color: var(--hh-white); }
.nav__dropdown-toggle svg { width: 12px; height: 12px; transition: transform .2s; }
.nav__item:hover .nav__dropdown-toggle svg, .nav__dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius);
  padding: .6rem; min-width: 260px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all .2s ease;
}
.nav__item:hover .nav__dropdown, .nav__dropdown.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown a { display: block; padding: .6rem .8rem; border-radius: 8px; color: var(--hh-gray); font-size: .92rem; }
.nav__dropdown a:hover { background: rgba(2, 208, 164, 0.1); color: var(--hh-white); }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--hh-border); border-radius: 999px; padding: 3px; }
.lang-switch button { background: none; border: 0; color: var(--hh-gray); font-weight: 700; font-size: .78rem; letter-spacing: .04em; padding: .3rem .62rem; border-radius: 999px; line-height: 1; transition: background .2s, color .2s; }
.lang-switch button:hover { color: var(--hh-white); }
.lang-switch button.active { background: var(--hh-gradient); color: #04120E; }
.nav__toggle { display: none; background: none; border: 0; color: var(--hh-white); }
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
    position: fixed; top: var(--header-h); right: 0; left: 0; background: var(--hh-bg);
    height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    padding: 2rem var(--gutter); overflow-y: auto; z-index: 99;
  }
  .nav__menu.open .nav__links { flex-direction: column; align-items: flex-start; gap: 1.4rem; font-size: 1.15rem; }
  .nav__menu.open .nav__links a { font-size: 1.15rem; }
  .nav__menu.open .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: 0; padding: .6rem 0 0 1rem; min-width: 0;
    display: none;
  }
  .nav__menu.open .nav__dropdown.open { display: block; }
  .nav__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.hero__title { margin: .4rem 0 1.2rem; }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--hh-gray); max-width: 40ch; margin-bottom: 1.8rem; }
.hero__art { position: relative; }
.hero__art img { margin-inline: auto; filter: drop-shadow(0 20px 60px rgba(2, 208, 164, 0.25)); }
.hero__art img.blend { mix-blend-mode: screen; filter: none; }

/* Framed scene images (full 16:9 brand renders) */
.scene { border-radius: 18px; border: 1px solid var(--hh-border-teal); box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 50px rgba(2,208,164,.07); overflow: hidden; }
.hero__art img.scene { filter: none; }
.hero__scene { display: block; width: 100%; max-width: 1040px; margin: clamp(2rem,5vw,3rem) auto 0; }

/* Home hero — larger, frameless banner image */
.hero--home .hero__grid { grid-template-columns: 1fr 1.28fr; gap: 2rem; }
.hero--home .hero__art { margin-right: calc(var(--gutter) * -0.5); }
.hero--home .hero__art img { border: 0; border-radius: 12px; box-shadow: 0 30px 70px rgba(0,0,0,.5); filter: none; width: 100%; }
@media (max-width: 860px) {
  .hero--home .hero__grid { grid-template-columns: 1fr; }
  .hero--home .hero__art { margin-right: 0; max-width: 560px; }
}

/* Client logo wall (adapted grayscale grid on a light panel) */
.logo-wall { background: #eef1f4; border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.6rem); max-width: 940px; margin-inline: auto; border: 1px solid var(--hh-border); box-shadow: var(--shadow); }
.logo-wall img { width: 100%; height: auto; display: block; }
.hero__trust { margin-top: 2.2rem; }
.hero--inner .hero__grid { grid-template-columns: 1fr; text-align: center; max-width: 820px; margin-inline: auto; }
.hero--inner .hero__sub { margin-inline: auto; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero .btn-row, .hero__trust { justify-content: center; }
  .hero__art { order: -1; max-width: 320px; margin-inline: auto; }
}

/* Circuit / glow background */
.bg-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-glow::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(2, 208, 164, 0.14) 0%, transparent 60%); filter: blur(20px);
}
.bg-glow::after {
  content: ""; position: absolute; bottom: -30%; left: -15%; width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(30, 111, 217, 0.14) 0%, transparent 60%); filter: blur(20px);
}

/* ---------- Trust strip / badges ---------- */
.trust-strip { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; }
.trust-badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem;
  background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--hh-gray); white-space: nowrap;
}
.trust-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hh-teal); box-shadow: 0 0 8px var(--hh-teal); }

/* ---------- Cards ---------- */
.card {
  background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius);
  padding: 1.8rem; position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.card--accent { border-left: 3px solid var(--hh-teal); }
.card:hover { transform: translateY(-4px); border-color: var(--hh-border-teal); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(2, 208, 164, 0.1); color: var(--hh-teal); margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--hh-gray); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 700; font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Feature list ---------- */
.feature-list { display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature-list .check {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(2, 208, 164, 0.12);
  color: var(--hh-teal); display: grid; place-items: center; margin-top: 2px;
}
.feature-list .check svg { width: 14px; height: 14px; }
.feature-list strong { color: var(--hh-white); }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); border: 1px solid var(--hh-border); }
.split__media img.plain { border: 0; border-radius: 0; box-shadow: none; background: none; filter: drop-shadow(0 20px 50px rgba(2, 208, 164, 0.22)); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1;
  background: var(--hh-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--hh-gray); font-size: .95rem; margin-top: .5rem; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }

/* ---------- Client marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: grid; place-items: center; height: 46px; }
.marquee__item img, .marquee__item .logo-text {
  height: 100%; width: auto; object-fit: contain; filter: grayscale(1) brightness(1.8) opacity(.6);
  transition: filter .3s ease; font-weight: 800; color: var(--hh-gray); font-size: 1.4rem; display: flex; align-items: center;
}
.marquee__item:hover img, .marquee__item:hover .logo-text { filter: grayscale(0) opacity(1); color: var(--hh-white); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Testimonials ---------- */
.testi { position: relative; }
.testi__track { display: flex; transition: transform .5s ease; }
.testi__slide { flex: 0 0 100%; padding: 0 .5rem; }
.testi__card { background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem); max-width: 760px; margin-inline: auto; text-align: center; }
.stars { display: inline-flex; gap: .25rem; margin-bottom: 1.2rem; color: var(--hh-teal); }
.stars svg { width: 20px; height: 20px; }
.testi__quote { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--hh-white); font-weight: 500; line-height: 1.5; margin-bottom: 1.4rem; }
.testi__author { font-weight: 700; color: var(--hh-teal); }
.testi__meta { font-size: .9rem; color: var(--hh-gray); }
.testi__controls { display: flex; justify-content: center; gap: 1rem; margin-top: 1.8rem; align-items: center; }
.testi__btn { width: 44px; height: 44px; border-radius: 50%; background: var(--hh-bg-card); border: 1px solid var(--hh-border);
  color: var(--hh-white); display: grid; place-items: center; }
.testi__btn:hover { border-color: var(--hh-teal); color: var(--hh-teal); }
.testi__dots { display: flex; gap: .5rem; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hh-gray-dim); border: 0; padding: 0; }
.testi__dot.active { background: var(--hh-teal); width: 24px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--hh-border); border-radius: var(--radius); margin-bottom: .9rem; background: var(--hh-bg-card); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--hh-white); font-weight: 700; font-size: 1.05rem;
  padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q .icon { flex: none; width: 22px; height: 22px; color: var(--hh-teal); transition: transform .25s; }
.faq__item.open .faq__q .icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 1.4rem 1.3rem; color: var(--hh-gray); }
.faq__item.open .faq__a { max-height: 400px; }

/* ---------- Timeline (path to certification) ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.timeline__step { background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius); padding: 1.6rem; position: relative; }
.timeline__step::before {
  counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 1.6rem;
  width: 34px; height: 34px; border-radius: 50%; background: var(--hh-gradient); color: #04120E;
  font-weight: 900; display: grid; place-items: center; font-size: 1rem;
}
.timeline__step h4 { margin: .6rem 0 .5rem; }
.timeline__step p { font-size: .92rem; }
@media (max-width: 860px) { .timeline { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--hh-gradient-135); border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #04120E; }
.cta-band p { color: rgba(4, 18, 14, 0.85); max-width: 55ch; margin: .8rem auto 1.6rem; font-weight: 500; }
.cta-band .btn--primary { background: #0A0E14; color: var(--hh-white); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.cta-band .btn--primary:hover { color: var(--hh-teal); }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.channel { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.channel__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(2, 208, 164, 0.1); color: var(--hh-teal); display: grid; place-items: center; }
.channel__icon svg { width: 22px; height: 22px; }
.channel h4 { margin-bottom: .15rem; }
.channel a, .channel p { color: var(--hh-gray); font-size: .96rem; }

.form { background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--hh-white); margin-bottom: .4rem; }
.field label .req { color: var(--hh-teal); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; background: var(--hh-bg); border: 1px solid var(--hh-border);
  border-radius: 10px; color: var(--hh-white); font-family: inherit; font-size: .96rem; transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--hh-gray-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--hh-teal); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23A8B3BF' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field--check { display: flex; gap: .7rem; align-items: flex-start; }
.field--check input { width: auto; margin-top: 4px; accent-color: var(--hh-teal); }
.field--check label { font-weight: 400; color: var(--hh-gray); font-size: .9rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form__status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; font-size: .92rem; display: none; }
.form__status.show { display: block; }
.form__status.ok { background: rgba(2, 208, 164, 0.12); color: var(--hh-teal-bright); border: 1px solid var(--hh-border-teal); }
.form__status.err { background: rgba(217, 60, 60, 0.12); color: #ff8a8a; border: 1px solid rgba(217, 60, 60, 0.35); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d93c3c; }

/* ---------- Partner / info blocks ---------- */
.info-block { background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); }
.badge-wall { display: flex; flex-wrap: wrap; gap: .7rem; }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; border-radius: 999px;
  background: rgba(2, 208, 164, 0.08); border: 1px solid var(--hh-border-teal); color: var(--hh-white); font-size: .85rem; font-weight: 600; }

/* team */
.team-card { text-align: center; }
.team-card__photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1.2rem; display: grid; place-items: center;
  background: var(--hh-gradient); color: #04120E; font-size: 2.4rem; font-weight: 900; border: 3px solid var(--hh-border-teal); overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.team-card__role { color: var(--hh-teal); font-weight: 700; font-size: .9rem; margin-bottom: .8rem; }
.team-card p { font-size: .93rem; text-align: left; }

/* stat strip dark */
.stat-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat-facts .card { text-align: center; }
.stat-facts .stat__num { font-size: clamp(1.8rem, 4vw, 2.6rem); }
@media (max-width: 860px) { .stat-facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Footer ---------- */
.site-footer { background: #070A0F; border-top: 1px solid var(--hh-border); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer__logo img { height: 30px; margin-bottom: 1rem; }
.footer__about { font-size: .92rem; color: var(--hh-gray); max-width: 34ch; }
.footer__tag { color: var(--hh-teal); font-weight: 700; margin-bottom: .5rem; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--hh-gray-dim); margin-bottom: 1.1rem; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a, .footer__contact a { color: var(--hh-gray); font-size: .93rem; }
.footer ul a:hover, .footer__contact a:hover { color: var(--hh-teal); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--hh-teal); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: var(--hh-bg-card); border: 1px solid var(--hh-border);
  display: grid; place-items: center; color: var(--hh-gray); }
.footer__social a:hover { color: var(--hh-teal); border-color: var(--hh-border-teal); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 3rem; border-top: 1px solid var(--hh-border); padding: 1.4rem 0; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 1rem; font-size: .85rem; color: var(--hh-gray-dim); }
.footer__bottom a { color: var(--hh-gray-dim); }
.footer__bottom a:hover { color: var(--hh-teal); }
.footer__bottom-links { display: flex; gap: 1.4rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.35); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 95; max-width: 380px; background: var(--hh-bg-card);
  border: 1px solid var(--hh-border-teal); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow); display: none; }
.cookie.show { display: block; }
.cookie p { font-size: .88rem; margin-bottom: 1rem; }
.cookie__actions { display: flex; gap: .6rem; }
.cookie .btn { padding: .55rem 1.1rem; font-size: .85rem; }

/* ---------- Misc ---------- */
.eyebrow-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid var(--hh-border-teal); background: rgba(2,208,164,.06); font-size: .8rem; font-weight: 600; color: var(--hh-teal); margin-bottom: 1.2rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--hh-teal); color: #04120E; padding: .6rem 1rem; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 0; }
.notice { background: rgba(30,111,217,.1); border: 1px dashed var(--hh-border-teal); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .9rem; color: var(--hh-gray); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--hh-bg-card); border: 1px solid var(--hh-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; }
.post-card:hover { transform: translateY(-4px); border-color: var(--hh-border-teal); }
.post-card__img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.post-card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--hh-teal); }
.post-card h3 { font-size: 1.15rem; line-height: 1.3; }
.post-card h3 a { color: var(--hh-white); }
.post-card h3 a:hover { color: var(--hh-teal); }
.post-card p { font-size: .93rem; color: var(--hh-gray); flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--hh-gray-dim); }

/* Article */
.article { max-width: 800px; margin-inline: auto; }
.article__eyebrow { color: var(--hh-teal); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.article__meta { color: var(--hh-gray-dim); font-size: .9rem; margin-top: .8rem; }
.article__cover { border-radius: var(--radius-lg); border: 1px solid var(--hh-border-teal); margin: 2rem 0; overflow: hidden; box-shadow: var(--shadow); }
.article__cover img { width: 100%; display: block; }
.article__lead { font-size: 1.2rem; color: var(--hh-white); line-height: 1.6; margin-bottom: 1.4rem; }
.article__body h2 { font-size: clamp(1.4rem,3vw,1.8rem); margin: 2.4rem 0 1rem; text-transform: none; }
.article__body h3 { margin: 1.8rem 0 .6rem; }
.article__body p { margin-bottom: 1.1rem; color: var(--hh-gray); }
.article__body ul, .article__body ol { margin: 0 0 1.3rem 1.3rem; color: var(--hh-gray); }
.article__body ul { list-style: disc; } .article__body ol { list-style: decimal; }
.article__body li { margin-bottom: .5rem; }
.article__body strong { color: var(--hh-white); }
.article__body blockquote { border-left: 3px solid var(--hh-teal); padding: .4rem 0 .4rem 1.2rem; margin: 1.4rem 0; color: var(--hh-white); font-size: 1.1rem; }
.article__body figure { margin: 1.8rem 0; }
.article__body figure img { border-radius: var(--radius); border: 1px solid var(--hh-border); }
.article__body figcaption { font-size: .82rem; color: var(--hh-gray-dim); margin-top: .5rem; text-align: center; }
