/* Hanifi SMMM — brand purple from logo mark (#3c107b) */
:root {
  --hy-ink: #10253f;
  --hy-ink-soft: #3a5168;
  --accent: #3c107b;
  --accent-deep: #2a0b57;
  --accent-soft: rgba(60, 16, 123, 0.1);
  --accent-tint: rgba(60, 16, 123, 0.14);
  --accent-bright: #b89ae8;
  --aior-theme: var(--accent);
  --aior-theme-deep: var(--accent-deep);
  --hy-gold: #3c107b;
  --hy-gold-soft: rgba(60, 16, 123, 0.14);
  --hy-paper: #f7f8fa;
  --hy-surface: #ffffff;
  --hy-mist: #f3f0f8;
  --hy-line: #e4ddee;
  --hy-radius: 1.25rem;
  --hy-shadow: var(--glass-shadow);
  --hy-shadow-lg: var(--glass-shadow-hover);
  /* Bridge to aior-theme tokens */
  --fg: var(--hy-ink);
  --bg: #ffffff;
  --bg-soft: #f6f4fa;
  --bg-sunken: #f1eef6;
  --line: var(--hy-line);
  --border: var(--hy-line);
  /* Hero text accents */
  --hy-hero-title: #10253f;
  --hy-hero-sub: #3c107b;
  --hy-hero-muted: #3a5168;
  --hy-hero-panel: rgba(255, 255, 255, 0.9);
  --hy-hero-panel-border: rgba(255, 255, 255, 0.95);
  --hy-ghost-bg: rgba(255, 255, 255, 0.65);
  --hy-ghost-fg: #10253f;
  --hy-ghost-border: rgba(16, 37, 63, 0.18);
}

/*
 * Hanifi is a light institutional site. Dark mode from aior-theme
 * used to paint light ink onto hardcoded white cards (unreadable).
 * Keep light tokens even if data-theme="dark" leaks in.
 */
:root[data-theme="dark"] {
  --accent: #3c107b;
  --accent-deep: #2a0b57;
  --accent-soft: rgba(60, 16, 123, 0.1);
  --accent-tint: rgba(60, 16, 123, 0.14);
  --accent-bright: #b89ae8;
  --hy-ink: #10253f;
  --hy-ink-soft: #3a5168;
  --hy-paper: #f7f8fa;
  --hy-surface: #ffffff;
  --hy-mist: #f3f0f8;
  --hy-line: #e4ddee;
  --fg: #10253f;
  --fg-soft: #3a5168;
  --fg-muted: #3a5168;
  --bg: #ffffff;
  --bg-soft: #f6f4fa;
  --bg-sunken: #f1eef6;
  --line: #e4ddee;
  --border: #e4ddee;
  --hy-hero-title: #10253f;
  --hy-hero-sub: #3c107b;
  --hy-hero-muted: #3a5168;
  --hy-hero-panel: rgba(255, 255, 255, 0.9);
  --hy-hero-panel-border: rgba(255, 255, 255, 0.95);
  --hy-ghost-bg: rgba(255, 255, 255, 0.65);
  --hy-ghost-fg: #10253f;
  --hy-ghost-border: rgba(16, 37, 63, 0.18);
}

/* No theme toggle on this site */
[data-theme-toggle] {
  display: none !important;
}

html,
body {
  background: var(--bg, var(--hy-paper));
  color: var(--fg, var(--hy-ink));
  font-family: var(--font-sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(60, 16, 123, 0.07), transparent 55%),
    radial-gradient(800px 380px at 100% 0%, rgba(16, 37, 63, 0.05), transparent 50%),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 47px,
      rgba(16, 37, 63, 0.03) 47px,
      rgba(16, 37, 63, 0.03) 48px
    );
}
:root[data-theme="dark"] body::before {
  opacity: 0.35;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(155, 111, 212, 0.12), transparent 55%),
    radial-gradient(800px 380px at 100% 0%, rgba(0, 0, 0, 0.35), transparent 50%);
}

/* ——— Header / brand ——— */
.hy-brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 960px) {
  .hy-brand-logo { height: 54px; max-width: 260px; }
}

.topbar-utility {
  background: var(--hy-ink) !important;
  border-bottom: 0 !important;
}
.topbar-utility,
.topbar-utility a,
.topbar-utility .topbar-link,
.topbar-utility .text-muted {
  color: rgba(255, 255, 255, 0.82) !important;
}
.topbar-utility .topbar-icon-btn {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-main {
  /* Canonical AIOR sticky nav — solid, no blur (SSOT) */
  background: var(--bg) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid var(--hy-line) !important;
}
.topbar-main .btn-brand {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.topbar-main .btn-brand:hover {
  background: var(--accent-deep);
}
.topbar-main .topbar-nav-link {
  font-size: 0.86rem;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .topbar-main .topbar-nav-link {
    font-size: 0.8rem;
    padding-inline: 0.45rem;
  }
}

@media (max-width: 1023px) {
  [data-mobile-menu].is-open { display: block !important; }
}

/* ——— Professional SMMM hero: one full-bleed composition ——— */
.hy-site {
  background: #f5f7f8;
  color: var(--hy-ink);
}
.hy-hero {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 740px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f7fafb;
  background: #14082a;
}
.hy-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hy-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 0;
  will-change: opacity;
}
.hy-hero-slide.is-active {
  z-index: 1;
}
.hy-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hy-hero-slide.is-active img {
  transform: scale(1);
}
.hy-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(20, 8, 42, 0.7) 0%, rgba(20, 8, 42, 0.38) 40%, rgba(20, 8, 42, 0.12) 70%, rgba(20, 8, 42, 0.05) 100%),
    linear-gradient(180deg, rgba(20, 8, 42, 0.18) 0%, rgba(20, 8, 42, 0.05) 50%, rgba(20, 8, 42, 0.28) 100%);
}
.hy-hero-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: clamp(5.5rem, 9vw, 7rem);
  padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
}
.hy-hero-inner {
  width: min(100%, 36rem);
  text-align: left;
  animation: hy-rise 0.75s ease both;
}
@keyframes hy-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.hy-hero-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4b8ff !important;
}
.hy-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hy-hero-lead {
  margin: 0.65rem 0 0;
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: rgba(247, 250, 251, 0.96) !important;
}
.hy-hero-copy {
  margin-top: 1.05rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  min-height: 3.85rem;
}
.hy-hero-slide-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #efe6ff !important;
}
.hy-hero-slide-text {
  margin: 0.35rem 0 0;
  max-width: 32rem;
  font-size: 0.96rem;
  line-height: 1.45;
  color: rgba(247, 250, 251, 0.9) !important;
}

/* Matched CTA pair — identical box model (overrides aior-theme .btn) */
.hy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.7rem;
  margin-top: 1.35rem;
}
.hy-hero-btn {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto;
  width: 10.25rem !important;
  min-width: 10.25rem !important;
  max-width: 10.25rem !important;
  height: 3rem !important;
  min-height: 3rem !important;
  max-height: 3rem !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0.6rem !important;
  border-width: 1.5px !important;
  border-style: solid !important;
  font-family: inherit !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hy-hero-btn-solid {
  background: #3c107b !important;
  border-color: #3c107b !important;
  color: #fff !important;
  box-shadow: none !important;
}
.hy-hero-btn-solid:hover {
  background: #2a0b57 !important;
  border-color: #2a0b57 !important;
  color: #fff !important;
}
.hy-hero-btn-line {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hy-hero-btn-line:hover {
  background: rgba(60, 16, 123, 0.55) !important;
  border-color: #d4b8ff !important;
  color: #fff !important;
}

/* Side arrows */
.hy-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(20, 8, 42, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hy-hero-nav:hover {
  background: #3c107b;
  border-color: #d4b8ff;
}
.hy-hero-nav-prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.hy-hero-nav-next { right: clamp(0.75rem, 2vw, 1.5rem); }

/* Dots + progress under CTAs (same column) */
.hy-hero-pager {
  margin-top: 1.65rem;
  display: grid;
  gap: 0.65rem;
  width: min(100%, 16rem);
}
.hy-hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-start;
}
.hy-hero-dot {
  box-sizing: border-box;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.hy-hero-dot[aria-selected="true"],
.hy-hero-dot.is-active {
  width: 1.65rem;
  background: #d4b8ff;
}
.hy-hero-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  width: 100%;
}
.hy-hero-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3c107b, #d4b8ff);
  border-radius: inherit;
}
.hy-hero-cred {
  display: none;
}
@media (max-width: 639px) {
  .hy-hero {
    min-height: min(72vh, 680px);
    align-items: center;
  }
  .hy-hero-nav {
    width: 2.35rem;
    height: 2.35rem;
    top: auto;
    bottom: 1rem;
    transform: none;
  }
  .hy-hero-nav-prev { left: 0.85rem; }
  .hy-hero-nav-next { right: 0.85rem; }
  .hy-hero-actions {
    width: 100%;
  }
  .hy-hero-btn {
    flex: 1 1 calc(50% - 0.35rem) !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}
/* Keep legacy ghost class usable outside hero */
.hy-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1.35rem;
  border-radius: 0.65rem;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.hy-btn-ghost:hover {
  border-color: #d4b8ff;
  background: color-mix(in srgb, var(--accent) 45%, transparent);
  color: #fff !important;
}

/* Credential strip — editorial, not a card stack */
.hy-credbar {
  background: #fff !important;
  border-bottom: 1px solid var(--hy-line);
}
.hy-credbar-grid {
  display: grid;
  gap: 0;
}
@media (min-width: 800px) {
  .hy-credbar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hy-credbar-grid article {
    border-right: 1px solid var(--hy-line);
  }
  .hy-credbar-grid article:last-child {
    border-right: 0;
  }
}
.hy-credbar-grid article {
  padding: 1.35rem 1.25rem;
}
.hy-credbar-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3c107b !important;
}
.hy-credbar-grid span {
  display: block;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.35;
  color: #10253f !important;
  font-family: var(--font-display);
}

.hy-kicker {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 0.4rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
}
:root[data-theme="dark"] .hy-kicker { color: var(--hy-hero-sub); }
.hy-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  background: var(--accent);
}

/* Glass slider panel (legacy hooks → frosted) */
.hy-glass-label {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
:root[data-theme="dark"] .hy-glass-label { color: var(--hy-hero-sub); }
.hy-hero-glass h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--hy-hero-title) !important;
}
.hy-hero-glass p[data-slide-text] {
  margin: 0;
  color: var(--hy-hero-muted) !important;
  line-height: 1.55;
  flex: 1;
}
.hy-glass-nav {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.hy-glass-nav button {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.55rem;
  border: 1px solid var(--hy-ghost-border);
  background: var(--hy-ghost-bg);
  color: var(--hy-ghost-fg);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
.hy-glass-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hy-glass-dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.85rem;
}
.hy-glass-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, var(--hy-hero-title) 28%, transparent);
  cursor: pointer;
}
.hy-glass-dots button[aria-current="true"] {
  background: var(--accent);
  width: 1.35rem;
}

/* FABs — brand purple, identical size + bottom alignment */
.wa-fab,
.scroll-top-fab {
  position: fixed !important;
  width: 52px !important;
  height: 52px !important;
  bottom: 1.25rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px -6px color-mix(in srgb, var(--accent) 55%, transparent),
              0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  transform: none !important;
}
.wa-fab {
  left: 1.25rem !important;
  right: auto !important;
}
.wa-fab::before,
.wa-fab::after {
  background: var(--accent) !important;
}
.wa-fab:hover,
.scroll-top-fab:hover {
  background: var(--accent-deep) !important;
  color: #fff !important;
  transform: scale(1.05) !important;
}
.scroll-top-fab {
  right: 1.25rem !important;
  left: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.scroll-top-fab[data-visible="true"] {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: none !important;
}
.scroll-top-fab svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #fff !important;
}
.wa-fab svg,
.wa-fab svg path {
  fill: #fff !important;
}


/* Ledger panel (modern accountant visual) */
.hy-ledger {
  position: relative;
  border-radius: calc(var(--hy-radius) + 0.2rem);
  background: var(--hy-surface);
  border: 1px solid var(--hy-line);
  box-shadow: var(--hy-shadow-lg);
  overflow: hidden;
  animation: hy-rise 0.85s ease 0.08s both;
  min-height: 300px;
}
.hy-ledger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--hy-ink));
}
.hy-ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem 0.85rem 1.5rem;
  border-bottom: 1px solid var(--hy-line);
  background: linear-gradient(180deg, #fbfcfd, #fff);
}
.hy-ledger-head strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.hy-ledger-head span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--hy-ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hy-ledger-badge {
  flex: 0 0 auto;
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}
.hy-ledger-body {
  padding: 0.35rem 0.5rem 0.5rem;
}
.hy-ledger-row {
  display: grid;
  grid-template-columns: 1.4rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  transition: background 0.2s ease;
}
.hy-ledger-row:hover { background: var(--hy-mist); }
.hy-ledger-row i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.75;
}
.hy-ledger-row b {
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.hy-ledger-row em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--hy-ink-soft);
  font-variant-numeric: tabular-nums;
}
.hy-ledger-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.35rem 1.15rem 1.5rem;
  border-top: 1px dashed var(--hy-line);
  font-size: 0.8rem;
  color: var(--hy-ink-soft);
}
.hy-ledger-foot strong {
  color: var(--accent-deep);
  font-weight: 700;
}

/* legacy glass hooks → ledger look if still present */
.hy-glass {
  border-radius: calc(var(--hy-radius) + 0.2rem);
  border: 1px solid var(--hy-line);
  background: var(--hy-surface);
  box-shadow: var(--hy-shadow-lg);
  padding: 1.4rem 1.45rem;
  min-height: 260px;
}
.hy-glass-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hy-glass h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.hy-glass p {
  margin: 0;
  color: var(--hy-ink-soft);
  line-height: 1.55;
}
.hy-glass-nav { display: flex; gap: 0.45rem; margin-top: 1.15rem; }
.hy-glass-nav button {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.55rem;
  border: 1px solid var(--hy-line);
  background: #fff;
  color: var(--hy-ink);
  cursor: pointer;
}
.hy-glass-dots { display: flex; gap: 0.35rem; margin-top: 0.9rem; }
.hy-glass-dots button {
  width: 1.5rem;
  height: 0.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--hy-line);
  cursor: pointer;
  padding: 0;
}
.hy-glass-dots button[aria-current="true"] {
  background: var(--accent);
  width: 2.2rem;
}

/* Pillars */
.hy-pillars {
  margin-top: -2.25rem;
  position: relative;
  z-index: 3;
  padding-bottom: 0.25rem;
}
.hy-pillars-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-radius: var(--hy-radius);
  overflow: hidden;
}
@media (min-width: 800px) {
  .hy-pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .hy-pillars-grid article { border-right: 1px solid var(--hy-line); }
  .hy-pillars-grid article:last-child { border-right: 0; }
}
.hy-pillars-grid article { padding: 1.25rem 1.35rem; }
.hy-pillars-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hy-pillars-grid span {
  color: var(--hy-ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
}

/* Sections */
.hy-section { padding: clamp(3.5rem, 7vw, 5.75rem) 0; }
.hy-section-alt {
  background: var(--hy-mist);
  border-block: 1px solid var(--hy-line);
}
.hy-section-head { max-width: 38rem; margin-bottom: 2.25rem; }
.hy-tag {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hy-section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #10253f !important;
}
.hy-section-head h2::after {
  content: "";
  display: block;
  margin-top: 0.75rem;
  width: 2.5rem;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}
.hy-section-head p {
  margin: 0;
  color: var(--hy-ink-soft);
  line-height: 1.6;
  font-size: 1.02rem;
}

/* Practice categories — clean professional panels */
.hy-cat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .hy-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
.hy-cat {
  position: relative;
  padding: 1.55rem 1.5rem 1.45rem;
  border-radius: 0.85rem;
  background: #fff !important;
  border: 1px solid var(--hy-line);
  box-shadow: 0 1px 0 rgba(16, 37, 63, 0.03);
  animation: hy-rise 0.7s ease both;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: #10253f !important;
}
.hy-cat:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--hy-line));
  box-shadow: 0 10px 28px -18px rgba(16, 37, 63, 0.28);
}
.hy-cat:nth-child(2) { animation-delay: 0.05s; }
.hy-cat:nth-child(3) { animation-delay: 0.1s; }
.hy-cat:nth-child(4) { animation-delay: 0.15s; }
.hy-cat-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.hy-cat-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px solid rgba(60, 16, 123, 0.12);
}
.hy-cat-icon svg { width: 1.3rem; height: 1.3rem; }
.hy-cat h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #10253f !important;
}
.hy-cat > p {
  margin: 0 0 0.9rem;
  color: #3a5168 !important;
  font-size: 0.95rem;
  line-height: 1.5;
}
.hy-cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.hy-cat li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #10253f !important;
  line-height: 1.4;
}
.hy-cat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.hy-grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .hy-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .hy-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.hy-card {
  background: var(--hy-surface);
  border: 1px solid var(--hy-line);
  border-radius: var(--hy-radius);
  padding: 1.3rem 1.35rem;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hy-shadow);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--hy-line));
}
.hy-card-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.hy-card-icon svg { width: 1.25rem; height: 1.25rem; }
.hy-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}
.hy-card p {
  margin: 0;
  color: var(--hy-ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hy-about-visual {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .hy-about-visual {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
  }
}
.hy-about-photo {
  margin: 0;
  position: relative;
  border-radius: calc(var(--hy-radius) + 0.15rem);
  overflow: hidden;
  box-shadow: var(--hy-shadow-lg);
  background: #0c1f33;
}
.hy-about-photo img {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 420px);
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hy-about-photo:hover img { transform: scale(1.03); }
.hy-about-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(8, 20, 34, 0.85));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
}
.hy-about-copy { display: grid; gap: 1.25rem; }
/* Inner pages — light editorial (SEO clean URLs) */
[data-lang-block][hidden],
.hy-prose[hidden] {
  display: none !important;
}
.hy-page {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: #f5f7f8;
}
.hy-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 1.25rem 0 0;
  font-size: 0.86rem;
  color: var(--hy-ink-soft);
}
.hy-breadcrumb a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 650;
}
.hy-breadcrumb a:hover { color: var(--accent); }
.hy-page-head {
  padding: 1.25rem 0 1.75rem;
  max-width: 42rem;
}
.hy-page-head h1 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hy-ink);
  line-height: 1.1;
}
.hy-page-lead {
  margin: 0.85rem 0 0;
  color: var(--hy-ink-soft);
  line-height: 1.55;
  font-size: 1.05rem;
}
.hy-page-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .hy-page-layout {
    grid-template-columns: minmax(0, 1fr) 18.5rem;
    gap: 2rem;
  }
}
.hy-page-main {
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 0.85rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  min-width: 0;
}
.hy-page-aside {
  position: sticky;
  top: 5.5rem;
  min-width: 0;
}
.hy-article-layout {
  margin-top: 0.35rem;
}
.hy-article-head {
  margin: 0 0 1.35rem;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid var(--hy-line);
}
.hy-article-head h1 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hy-ink);
  line-height: 1.2;
}
.hy-article-head .hy-page-lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
}
.hy-prose font,
.hy-prose font[size],
.hy-prose font[color] {
  font: inherit !important;
  color: inherit !important;
  font-size: inherit !important;
}
.hy-prose br {
  display: block;
  content: "";
  margin-top: 0.65rem;
}
.hy-aside-card {
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 0.85rem;
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 0.85rem;
}
.hy-aside-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--hy-ink);
}
.hy-aside-card > p {
  margin: 0;
  color: var(--hy-ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}
.hy-aside-dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.hy-aside-dl dt {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.hy-aside-dl dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--hy-ink);
  font-weight: 600;
}
.hy-aside-card .btn-brand {
  justify-self: start;
}
.hy-aside-card + .hy-aside-card {
  margin-top: 0.85rem;
}
.hy-aside-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.hy-aside-link-list a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  color: var(--hy-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}
.hy-aside-link-list a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.hy-page-main .hy-news-list {
  gap: 0.85rem;
}
.hy-page-main .hy-news-item {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem 1.3rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}
.hy-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}
.hy-news-meta time {
  font-size: 0.78rem;
  color: var(--hy-ink-soft);
  font-variant-numeric: tabular-nums;
}
.hy-news-body h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: -0.02em;
  color: var(--hy-ink);
  font-family: var(--font-display);
}
.hy-news-body p {
  margin: 0;
  color: var(--hy-ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hy-news-more {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}
.hy-news-item:hover .hy-news-more {
  color: var(--accent-deep);
}
.hy-empty {
  padding: 1.5rem;
  border-radius: 0.85rem;
  border: 1px dashed var(--hy-line);
  color: var(--hy-ink-soft);
  background: #fff;
}
.hy-section-page {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: #f5f7f8;
}
.hy-section-page > .mx-auto > .hy-article,
.hy-section-page .hy-news-list,
.hy-section-page .hy-resource-grid,
.hy-section-page .hy-contact {
  margin-top: 0;
}
.hy-section-more {
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.hy-text-link {
  color: var(--accent-deep);
  font-weight: 650;
  text-decoration: none;
}
.hy-text-link:hover { color: var(--accent); }
.hy-article {
  background: #fff;
  border: 1px solid var(--hy-line);
  border-radius: 0.95rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 1px 0 rgba(16, 37, 63, 0.03);
}
.hy-page-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hy-line);
  font-weight: 650;
}
.hy-page-nav a {
  color: var(--accent-deep);
  text-decoration: none;
}
.hy-page-nav a:hover { color: var(--accent); }
.hy-resource-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) {
  .hy-page-main .hy-resource-grid { grid-template-columns: repeat(2, 1fr); }
}
.hy-resource-group {
  padding: 1rem 1.05rem;
  border: 1px solid var(--hy-line);
  border-radius: 0.7rem;
  background: color-mix(in srgb, #f7f5fb 70%, #fff);
}
.hy-resource-group h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--hy-ink);
}
.hy-contact-inpage {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 820px) {
  .hy-contact-inpage {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.75rem;
    align-items: start;
  }
}
.hy-contact-channels {
  padding: 0.15rem 0;
}
.hy-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.hy-link-list a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  color: var(--hy-ink);
  text-decoration: none;
  font-size: 0.94rem;
}
.hy-link-list a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.hy-form {
  display: grid;
  gap: 0.9rem;
}
.hy-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--hy-ink);
}
.hy-form input,
.hy-form textarea {
  width: 100%;
  border: 1px solid var(--hy-line);
  border-radius: 0.55rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--hy-ink);
}
.hy-form input:focus,
.hy-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-color: var(--accent);
}
.hy-form .hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.hy-form-error { border-color: #c45 !important; }
.hy-contact .hy-big {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 750;
  text-decoration: none;
  color: var(--hy-ink);
  margin: 0.35rem 0;
  letter-spacing: -0.02em;
}
.hy-contact .hy-big:hover { color: var(--accent-deep); }

.hy-prose { line-height: 1.7; font-size: 1.02rem; color: var(--hy-ink); }
.hy-prose .hy-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--hy-ink);
  line-height: 1.55;
}
.hy-prose p { margin: 0 0 1rem; }
.hy-prose h2 {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--hy-ink);
}
.hy-prose ul { margin: 0 0 1.15rem; padding-left: 1.2rem; }
.hy-prose li { margin: 0.35rem 0; color: var(--hy-ink-soft); }
.hy-prose li::marker { color: var(--accent); }

.hy-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  max-height: 22rem;
  overflow: auto;
}
.hy-link-list a {
  display: block;
  padding: 0.35rem 0.15rem;
  border-radius: 0.35rem;
  font-size: 0.92rem;
  text-decoration: none;
  color: inherit;
}
.hy-link-list a:hover {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.hy-form {
  display: grid;
  gap: 0.9rem;
}
.hy-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}
.hy-form input,
.hy-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: color-mix(in srgb, var(--hy-paper, #fff) 88%, transparent);
  color: inherit;
  font: inherit;
}
.hy-form .hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.hy-value-list { display: grid; gap: 0.6rem; }
.hy-value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--hy-line);
  background: var(--hy-surface);
}
.hy-value-item strong { display: block; margin-bottom: 0.15rem; }
.hy-value-item span {
  color: var(--hy-ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}
.hy-value-num {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.45rem;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 750;
  background: var(--hy-ink);
  color: #fff;
}

.hy-news-list { display: grid; gap: 0.75rem; }
.hy-news-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--hy-radius);
  border: 1px solid var(--hy-line);
  background: var(--hy-surface);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.hy-news-item:hover {
  transform: translateX(3px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--hy-line));
  box-shadow: var(--hy-shadow);
}
.hy-news-tag {
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding: 0.28rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--accent-soft);
}
.hy-news-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}
.hy-news-item p {
  margin: 0;
  color: var(--hy-ink-soft);
  font-size: 0.9rem;
}

.hy-process {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  counter-reset: hy-step;
}
@media (min-width: 800px) {
  .hy-process { grid-template-columns: repeat(4, 1fr); }
}
.hy-step {
  position: relative;
  padding: 1.35rem 1.2rem;
  border-radius: var(--hy-radius);
  border: 1px solid var(--hy-line);
  background: var(--hy-surface);
}
.hy-step em {
  display: block;
  font-style: normal;
  font-weight: 750;
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.hy-step h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.hy-step p {
  margin: 0;
  color: var(--hy-ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hy-links {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .hy-links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hy-links { grid-template-columns: repeat(3, 1fr); } }
.hy-link-card {
  display: block;
  padding: 1.1rem 1.2rem;
  border-radius: var(--hy-radius);
  border: 1px solid var(--hy-line);
  background: var(--hy-surface);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hy-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hy-shadow);
}
.hy-link-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--hy-ink);
}
.hy-link-card span {
  color: var(--hy-ink-soft);
  font-size: 0.9rem;
}

.hy-contact { display: grid; gap: 1rem; }
@media (min-width: 860px) {
  .hy-contact { grid-template-columns: 1.15fr 0.85fr; }
}
.hy-contact-card {
  background: var(--hy-surface);
  border: 1px solid var(--hy-line);
  border-radius: calc(var(--hy-radius) + 0.1rem);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--hy-shadow);
}
.hy-contact a.hy-big {
  display: block;
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  font-weight: 750;
  text-decoration: none;
  color: var(--hy-ink);
  margin: 0.35rem 0;
  letter-spacing: -0.02em;
}
.hy-contact a.hy-big:hover { color: var(--accent-deep); }
.hy-contact-meta {
  margin: 0.9rem 0 0;
  color: var(--hy-ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
}
.hy-contact-panel {
  border-radius: calc(var(--hy-radius) + 0.1rem);
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(60, 16, 123, 0.4), transparent 55%),
    linear-gradient(155deg, var(--hy-ink) 0%, #0a1b2e 100%);
  color: #fff;
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 240px;
  box-shadow: var(--hy-shadow-lg);
}
.hy-contact-panel img {
  max-height: 48px;
  width: auto;
  height: auto;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  align-self: flex-start;
}
.hy-contact-panel p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.55;
  font-size: 0.95rem;
}
.hy-contact-panel .btn-brand {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 0.6rem;
  font-weight: 700;
}
.hy-contact-panel .btn-brand:hover { background: var(--accent-bright); color: #1a0a33; }

.hy-footer {
  background: linear-gradient(180deg, #0e1f33 0%, #0a1624 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.25rem 0 1.5rem;
}
.hy-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.hy-footer a:hover { color: #fff; }
.hy-footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .hy-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.hy-footer h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hy-footer h4::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  width: 1.5rem;
  height: 2px;
  background: var(--accent);
}
.hy-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.hy-footer-brand img {
  max-height: 48px;
  width: auto;
  height: auto;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.hy-footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 22rem;
}
.hy-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}

@keyframes hy-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.text-\[12px\] { font-size: 12px; }
.text-\[11\.5px\] { font-size: 11.5px; }
.justify-between { justify-content: space-between; }
.inline-flex { display: inline-flex; }
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:inline { display: inline; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Dark mode disabled for Hanifi — tokens remapped to light above. */
.hy-site,
.hy-site .hy-section,
.hy-site .hy-section-alt,
.hy-site .hy-page {
  color: #10253f;
}
.hy-site .hy-section-head p,
.hy-site .hy-prose,
.hy-site .hy-news-item p,
.hy-site .hy-link-card span,
.hy-site .hy-step p,
.hy-site .hy-value-item span {
  color: #3a5168 !important;
}
.hy-site .hy-news-item h3,
.hy-site .hy-link-card strong,
.hy-site .hy-step h3,
.hy-site .hy-value-item strong,
.hy-site .hy-prose h2,
.hy-site .hy-prose h3,
.hy-site .hy-big {
  color: #10253f !important;
}
.topbar-main {
  background: #fff !important;
  border-bottom: 1px solid var(--hy-line) !important;
}
.topbar-main .topbar-nav-link,
.topbar-main [data-menu-toggle] {
  color: #10253f !important;
}

/* Light mode: ensure glass cards stay readable on mist sections */
:root:not([data-theme="dark"]) .hy-cat.aior-glass-3d,
:root:not([data-theme="dark"]) .hy-step.aior-glass-3d,
:root:not([data-theme="dark"]) .hy-news-item.aior-glass-3d,
:root:not([data-theme="dark"]) .hy-link-card.aior-glass-3d,
:root:not([data-theme="dark"]) .hy-contact-card.aior-glass-3d,
:root:not([data-theme="dark"]) .hy-contact-panel.aior-glass-3d,
:root:not([data-theme="dark"]) .hy-pillars-grid.aior-glass-3d {
  background: rgba(255, 255, 255, 0.78) !important;
}
