.zl-footer {
    margin-top: var(--space-12);
    padding: var(--space-10) 0 var(--space-8);
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    background: #090a0f;
  }
  
  .zl-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-8);
  }
  
  .zl-footer__brand {
    min-width: 0;
    max-width: 480px;
  }
  
  .zl-footer__brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-3);
  }
  
  .zl-footer__logo-mark {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: radial-gradient(circle at 0 0, #6366f1, #22c55e);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1);
  }
  
  .zl-footer__brand-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }
  
  .zl-footer__brand-name {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .zl-footer__brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
    text-transform: uppercase;
  }
  
  .zl-footer__brand-copy {
    margin-bottom: var(--space-4);
    font-size: 0.85rem;
    color: var(--color-text-muted);
  }
  
  .zl-footer__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  
  .zl-footer__tag {
    padding: 0.18rem 0.6rem;
    border: 1px solid rgba(31, 41, 55, 0.9);
    border-radius: 999px;
    background: rgba(15, 23, 42, 1);
    font-size: 0.7rem;
    color: var(--color-text-muted);
  }
  
  .zl-footer__col {
    min-width: 0;
  }
  
  .zl-footer__heading {
    margin-bottom: var(--space-3);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
    text-transform: uppercase;
  }
  
  .zl-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.85rem;
  }
  
  .zl-footer__link {
    overflow-wrap: anywhere;
    color: var(--color-text-muted);
  }
  
  .zl-footer__link:hover {
    color: var(--color-text);
  }
  
  .zl-footer__meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(15, 23, 42, 1);
    font-size: 0.78rem;
    color: var(--color-text-muted);
  }
  
  .zl-footer__copy {
    margin: 0;
    font-size: inherit;
  }
  
  .zl-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
  }
  
  .zl-footer__legal-link {
    color: var(--color-text-muted);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
  }
  
  .zl-footer__legal-link:hover {
    color: var(--color-text);
  }
  
  
  /* =========================
     COOKIE BANNER
  ========================= */
  
  .zl-cookie {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 var(--space-4) var(--space-4);
    pointer-events: none;
  }
  
  .zl-cookie[hidden] {
    display: none !important;
  }
  
  .zl-cookie__inner {
    display: flex;
    width: 100%;
    max-width: 960px;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-4);
    border: 1px solid rgba(31, 41, 55, 0.9);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(120%);
    transition:
      transform var(--transition-slow),
      opacity var(--transition-base);
    pointer-events: auto;
  }
  
  .zl-cookie--visible .zl-cookie__inner {
    opacity: 1;
    transform: translateY(0);
  }
  
  .zl-cookie__text {
    min-width: 0;
  }
  
  .zl-cookie__title {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .zl-cookie__desc {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    overflow-wrap: anywhere;
  }
  
  .zl-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--space-3);
  }
  
  .zl-cookie__btn {
    min-width: 0;
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
  }
  
  
  /* =========================
     AGE MODAL
  ========================= */
  
  .zl-age {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
  }
  
  .zl-age[hidden] {
    display: none !important;
  }
  
  .zl-age__backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .zl-age__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 560px);
    max-width: 560px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    margin: auto;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-5);
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(55, 65, 81, 0.9);
    border-radius: var(--radius-xl);
    background:
      radial-gradient(
        circle at 0 0,
        rgba(99, 102, 241, 0.22),
        transparent 60%
      ),
      rgba(9, 10, 15, 0.98);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
    overscroll-behavior: contain;
  }
  
  .zl-age__header,
  .zl-age__body,
  .zl-age__footer {
    width: 100%;
    min-width: 0;
  }
  
  .zl-age__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    line-height: 1.4;
    letter-spacing: 0.18em;
    color: var(--color-success);
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }
  
  .zl-age__title {
    margin: 0;
    font-size: clamp(1.35rem, 5vw, 2rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  
  .zl-age__desc {
    margin: 0 0 var(--space-3);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    overflow-wrap: anywhere;
  }
  
  .zl-age__list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--color-text-muted);
  }
  
  .zl-age__list li {
    position: relative;
    padding-left: 1rem;
    overflow-wrap: anywhere;
  }
  
  .zl-age__list li::before {
    content: "";
    position: absolute;
    top: 0.45rem;
    left: 0.15rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-success);
  }
  
  .zl-age__footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }
  
  .zl-age__btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0.7rem 0.8rem;
    font-size: 0.75rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }
  
  .zl-age--hidden {
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
  }
  
  .zl-age--visible {
    opacity: 1;
    transition: opacity var(--transition-base);
    pointer-events: auto;
  }
  
  body.zl-age-lock {
    overflow: hidden;
  }
  
  
  /* =========================
     TABLET / DESKTOP
  ========================= */
  
  @media (min-width: 640px) {
    .zl-footer__meta {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  
    .zl-cookie__inner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  
    .zl-cookie__text {
      max-width: 620px;
    }
  
    .zl-cookie__actions {
      flex: 0 0 auto;
      justify-content: flex-end;
    }
  }
  
  @media (min-width: 800px) {
    .zl-footer__main {
      grid-template-columns:
        minmax(0, 1.5fr)
        minmax(0, 1fr)
        minmax(0, 1fr);
    }
  }
  
  
  /* =========================
     MOBILE
  ========================= */
  
  @media (max-width: 639px) {
    .zl-footer {
      margin-top: var(--space-8);
      padding-top: var(--space-8);
    }
  
    .zl-footer__main {
      gap: var(--space-6);
    }
  
    .zl-cookie {
      padding: 10px;
    }
  
    .zl-cookie__inner {
      width: 100%;
      max-height: calc(100vh - 20px);
      max-height: calc(100dvh - 20px);
      padding: 16px;
      overflow-y: auto;
      border-radius: 16px;
    }
  
    .zl-cookie__actions {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
    }
  
    .zl-cookie__btn {
      width: 100%;
    }
  
    .zl-age {
      align-items: center;
      justify-content: center;
      padding: 10px;
    }
  
    .zl-age__dialog {
      width: 100%;
      max-width: 520px;
      max-height: calc(100vh - 20px);
      max-height: calc(100dvh - 20px);
      margin: auto;
      padding: 18px 16px;
      border-radius: 16px;
    }
  
    .zl-age__desc {
      font-size: 0.84rem;
      line-height: 1.55;
    }
  
    .zl-age__list {
      font-size: 0.76rem;
      line-height: 1.45;
    }
  
    .zl-age__footer {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 380px) {
    .zl-age {
      padding: 8px;
    }
  
    .zl-age__dialog {
      max-height: calc(100vh - 16px);
      max-height: calc(100dvh - 16px);
      gap: 12px;
      padding: 15px 13px;
    }
  
    .zl-age__eyebrow {
      font-size: 0.62rem;
      letter-spacing: 0.13em;
    }
  
    .zl-age__title {
      font-size: 1.18rem;
    }
  
    .zl-age__desc {
      font-size: 0.78rem;
    }
  
    .zl-age__list {
      font-size: 0.72rem;
    }
  
    .zl-age__btn {
      font-size: 0.7rem;
    }
  }