﻿    :root {
      --navy: #0a1628;
      --navy-2: #0f2240;
      --navy-3: #152d52;
      --black: #05080f;
      --gold: #f08a1a;
      --gold-2: #ffb84d;
      --orange: #ff7f11;
      --text: #f4f7fc;
      --muted: #9fb0c9;
      --line: rgba(255, 255, 255, 0.1);
      --card: rgba(15, 34, 64, 0.72);
      --radius: 14px;
      --max: 1240px;
      --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Inter", system-ui, sans-serif;
      background: var(--black);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; height: auto; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

    .eyebrow {
      color: var(--gold-2);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.76rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
    }
    .section-title {
      font-family: "Manrope", sans-serif;
      font-size: clamp(1.75rem, 2.5vw, 2.65rem);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 0.85rem;
    }
    .section-sub {
      color: var(--muted);
      max-width: 720px;
      margin-bottom: 2rem;
    }
    .section { padding: 5.25rem 0; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.82rem 1.35rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid transparent;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: linear-gradient(90deg, var(--gold), var(--orange));
      color: #111827;
      box-shadow: 0 10px 28px rgba(240, 138, 26, 0.35);
    }
    .btn-primary:hover { transform: translateY(-3px); filter: brightness(1.05); }
    .btn-outline {
      border-color: rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

    /* Header */
    .header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }
    .header.scrolled {
      background: rgba(5, 8, 15, 0.94);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 1rem;
    }
    .logo img { height: 54px; width: auto; object-fit: contain; }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 1.35rem;
      font-size: 0.92rem;
      font-weight: 500;
      color: #dce6f5;
    }
    .nav-menu a:hover { color: var(--gold-2); }
    .nav-toggle {
      display: none;
      background: none;
      border: 0;
      color: #fff;
      font-size: 1.35rem;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 78px;
    }
    .hero-banner {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(105deg,
          rgba(5, 8, 15, 0.92) 0%,
          rgba(10, 22, 40, 0.78) 38%,
          rgba(10, 22, 40, 0.45) 62%,
          rgba(5, 8, 15, 0.55) 100%);
    }
    .hero-overlay::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 40%;
      background: linear-gradient(to top, rgba(5, 8, 15, 0.85), transparent);
    }
    .hero-float {
      position: absolute;
      z-index: 2;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(10, 22, 40, 0.72);
      backdrop-filter: blur(8px);
      border-radius: 12px;
      padding: 0.65rem 0.9rem;
      font-size: 0.78rem;
      color: #e8f0ff;
      animation: floatY 6s ease-in-out infinite;
    }
    .hero-float.f1 { top: 20%; right: 8%; animation-delay: 0s; }
    .hero-float.f2 { top: 38%; right: 12%; animation-delay: 1.2s; }
    .hero-float.f3 { bottom: 22%; right: 6%; animation-delay: 2.4s; }
    .hero .container {
      position: relative;
      z-index: 3;
      width: min(100% - 2rem, var(--max));
      margin-inline: auto;
      padding-left: clamp(1.25rem, 4vw, 3rem);
      padding-right: 1rem;
    }
    .hero-inner {
      max-width: 680px;
      text-align: left;
      padding: 3rem 0 4.5rem;
      padding-left: clamp(0.5rem, 2vw, 1.25rem);
    }
    .hero h1 {
      font-family: "Manrope", sans-serif;
      font-size: clamp(2rem, 4.8vw, 3.75rem);
      line-height: 1.12;
      margin-bottom: 1.1rem;
      opacity: 0;
      transform: translateY(24px);
      animation: revealUp 0.9s ease forwards 0.2s;
    }
    .hero p {
      color: #d5e0f2;
      font-size: clamp(1rem, 1.4vw, 1.15rem);
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: revealUp 0.9s ease forwards 0.45s;
    }
    .hero-btns {
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 0.85rem;
      opacity: 0;
      animation: revealUp 0.9s ease forwards 0.7s;
    }
    .scroll-hint {
      position: absolute;
      z-index: 3;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      color: var(--muted);
      font-size: 0.8rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      animation: bounce 2s infinite;
    }
    .scroll-hint i { color: var(--gold); }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 2.5rem;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      min-height: 420px;
    }
    .about-image-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(5, 8, 15, 0.5) 100%);
      pointer-events: none;
    }
    .about-image-wrap img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: contain;
      object-position: center;
      display: block;
      background: linear-gradient(180deg, #0a1628, #121f35);
      padding: 1rem;
      transition: transform 0.6s ease;
    }
    .about-image-wrap:hover img { transform: scale(1.04); }
    .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-top: 1.25rem;
    }
    .about-feat {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 0.9rem 1rem;
      font-size: 0.92rem;
      font-weight: 600;
    }
    .about-feat i { color: var(--gold); margin-right: 0.4rem; }

    /* Cards grid */
    .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .icon-card {
      background: linear-gradient(160deg, rgba(21, 45, 82, 0.65), rgba(10, 22, 40, 0.9));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.35rem;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .icon-card:hover {
      transform: translateY(-6px);
      border-color: rgba(240, 138, 26, 0.6);
      box-shadow: var(--shadow);
    }
    .icon-card .ic {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: #111;
      margin-bottom: 0.85rem;
      font-size: 1.1rem;
    }
    .icon-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; font-family: "Manrope", sans-serif; }
    .icon-card p { color: var(--muted); font-size: 0.92rem; }

    /* Products - B2B export style */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      align-items: stretch;
    }
    .product-card {
      background: linear-gradient(180deg, #0f2240 0%, #0c182c 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 380px;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
      border-color: rgba(240, 138, 26, 0.5);
    }
    .product-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
      background: linear-gradient(180deg, #0a1628 0%, #121f35 100%);
      flex-shrink: 0;
    }
    .product-img-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(5, 8, 15, 0.55) 100%);
      pointer-events: none;
      z-index: 1;
    }
    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 0.65rem;
      transition: transform 0.55s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.06); }
    .product-body {
      padding: 1.15rem 1.2rem 1.25rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 160px;
    }
    .product-body h3 {
      font-family: "Manrope", sans-serif;
      font-size: 1.02rem;
      margin-bottom: 0.5rem;
    }
    .product-body p { color: var(--muted); font-size: 0.88rem; flex: 1; }
    .learn-more {
      margin-top: 0.85rem;
      color: var(--gold-2);
      font-weight: 600;
      font-size: 0.88rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }
    .learn-more:hover { color: var(--gold); }

    /* Gallery */
    .gallery {
      background: linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, var(--black) 100%);
      border-block: 1px solid var(--line);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #0f2240, #0a1628);
      aspect-ratio: 1;
      cursor: pointer;
      transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }
    .gallery-item:hover {
      transform: translateY(-5px);
      border-color: rgba(240, 138, 26, 0.55);
      box-shadow: var(--shadow);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 0.75rem;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-caption {
      position: absolute;
      inset: auto 0 0;
      width: 100%;
      padding: 0.85rem 1rem;
      background: linear-gradient(to top, rgba(5, 8, 15, 0.95), transparent);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
    }
    .gallery-caption span {
      font-weight: 600;
      font-size: 0.88rem;
      color: #fff;
    }
    .gallery-caption i {
      color: var(--gold-2);
      font-size: 0.85rem;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .gallery-item:hover .gallery-caption i {
      opacity: 1;
      transform: translateX(0);
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(5, 8, 15, 0.96);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }
    .lightbox img {
      max-width: min(92vw, 900px);
      max-height: 75vh;
      object-fit: contain;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #0a1628;
      padding: 1rem;
    }
    .lightbox-caption {
      margin-top: 1rem;
      font-family: "Manrope", sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--gold-2);
    }
    .lightbox-close {
      position: absolute;
      top: 1.25rem;
      right: 1.5rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: border-color 0.25s ease, color 0.25s ease;
    }
    .lightbox-close:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: border-color 0.25s ease, color 0.25s ease;
    }
    .lightbox-prev { left: 1.25rem; }
    .lightbox-next { right: 1.25rem; }
    .lightbox-prev:hover,
    .lightbox-next:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Global */
    .global {
      position: relative;
      background:
        linear-gradient(120deg, rgba(5, 8, 15, 0.94), rgba(10, 22, 40, 0.88)),
        url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5ce?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
    }
    .global-highlights {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.85rem;
      margin-top: 1.5rem;
    }
    .global-highlights div {
      text-align: center;
      padding: 1rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      font-weight: 600;
    }

    /* Clients */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .client-card {
      min-height: 130px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 1.25rem;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      font-weight: 600;
      color: #dce8fa;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .client-card:hover {
      transform: translateY(-4px);
      border-color: rgba(240, 138, 26, 0.5);
    }

    /* Stats */
    .stats {
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      border-block: 1px solid var(--line);
    }
    .stat-item {
      text-align: center;
      padding: 1.5rem;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--line);
    }
    .stat-num {
      font-family: "Manrope", sans-serif;
      font-size: clamp(1.8rem, 2.2vw, 2.5rem);
      font-weight: 800;
      color: var(--gold-2);
    }

    /* Services strip */
    .services-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    /* Contact */
    .contact-section {
      background: linear-gradient(180deg, #05080f, #0a1628);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 1.25rem;
    }
    .contact-info-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.4rem;
      margin-bottom: 0.85rem;
    }
    .contact-form {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.75rem 0.9rem;
      border-radius: 10px;
      border: 1px solid #2a4068;
      background: #081220;
      color: #fff;
      font: inherit;
    }
    .contact-form textarea { min-height: 130px; resize: vertical; margin-bottom: 0.85rem; }
    .map-frame {
      width: 100%;
      min-height: 220px;
      border: 0;
      border-radius: var(--radius);
      margin-top: 0.85rem;
    }

    /* Footer */
    footer {
      background: #03060c;
      border-top: 1px solid var(--line);
      padding: 3rem 0 1.25rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .footer-logo { height: 64px; margin-bottom: 0.75rem; }
    .footer h4 {
      font-family: "Manrope", sans-serif;
      margin-bottom: 0.85rem;
      color: #fff;
    }
    .footer ul { list-style: none; display: grid; gap: 0.45rem; color: var(--muted); font-size: 0.92rem; }
    .footer a:hover { color: var(--gold-2); }
    .social { display: flex; gap: 0.55rem; margin-top: 0.75rem; }
    .social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: #c8d6ee;
    }
    .social a:hover { border-color: var(--gold); color: var(--gold); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
      flex-wrap: wrap;
      padding: 1rem 0 0.25rem;
      margin-top: 0.5rem;
      border-top: 1px solid var(--line);
    }
    .footer-copyright {
      color: #9fb0c9;
      font-size: 0.8rem;
      line-height: 1.55;
      margin: 0;
      flex: 1;
      min-width: min(100%, 280px);
    }
    .footer-copyright a {
      color: var(--gold-2);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-copyright a:hover {
      color: var(--gold);
      text-decoration: underline;
    }
    .footer-partner-logo {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      opacity: 0.95;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .footer-partner-logo:hover {
      opacity: 1;
      transform: translateY(-2px);
    }
    .footer-partner-logo img {
      height: 42px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      display: block;
    }

    /* Floating */
    .float-btn {
      position: fixed;
      right: 20px;
      z-index: 999;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
      transition: transform 0.25s ease;
    }
    .float-btn:hover { transform: translateY(-4px); }
    .wa { bottom: 88px; background: #25d366; font-size: 1.45rem; }
    .top-btn {
      bottom: 24px;
      background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
      border: 1px solid var(--line);
      opacity: 0;
      pointer-events: none;
    }
    .top-btn.show { opacity: 1; pointer-events: auto; }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @keyframes revealUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    @media (max-width: 1100px) {
      .products-grid,
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .cards-4, .global-highlights, .clients-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-toggle { display: block; }
      .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 15, 0.98);
        flex-direction: column;
        padding: 1.25rem;
        gap: 0.85rem;
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
      }
      .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
      .nav .btn-primary { display: none; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .cards-3, .services-strip { grid-template-columns: 1fr; }
      .products-grid,
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .product-card { min-height: auto; }
      .cards-4, .global-highlights, .clients-grid, .footer-grid { grid-template-columns: 1fr; }
      .hero-inner { text-align: center; max-width: 100%; padding-left: 0; }
      .hero .container { padding-left: 1.25rem; padding-right: 1.25rem; }
      .hero-btns { justify-content: center; }
      .hero-float { display: none; }
      .about-image-wrap { min-height: 280px; }
      .about-image-wrap img { min-height: 280px; }
      .form-row { grid-template-columns: 1fr; }
      .section { padding: 4rem 0; }
      .offcanvas-panel { width: min(100%, 320px); }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
      .footer-partner-logo {
        align-self: flex-end;
      }
    }

    /* Preloader */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--black);
      display: grid;
      place-items: center;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .preloader__logo { height: 70px; margin-bottom: 1rem; }
    .preloader__bar {
      width: 160px;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      overflow: hidden;
    }
    .preloader__bar span {
      display: block;
      height: 100%;
      width: 45%;
      background: linear-gradient(90deg, var(--gold), var(--orange));
      animation: preload 1.1s ease-in-out infinite;
    }
    @keyframes preload {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(280%); }
    }

    /* Offcanvas */
    .offcanvas__overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1100;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .offcanvas__overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .offcanvas-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(100%, 340px);
      height: 100%;
      z-index: 1101;
      background: #0a1628;
      border-left: 1px solid var(--line);
      padding: 1.5rem;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      overflow-y: auto;
    }
    .offcanvas-panel.active { transform: translateX(0); }
    .offcanvas-panel__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--line);
    }
    .offcanvas-panel__head img { height: 48px; }
    .offcanvas-close {
      background: none;
      border: 1px solid var(--line);
      color: #fff;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
    }
    .offcanvas-menu {
      list-style: none;
      display: grid;
      gap: 0.65rem;
      margin-bottom: 1.25rem;
    }
    .offcanvas-menu a {
      display: block;
      padding: 0.65rem 0.85rem;
      border-radius: 10px;
      color: #dce6f5;
      font-weight: 500;
    }
    .offcanvas-menu a:hover {
      background: rgba(240, 138, 26, 0.12);
      color: var(--gold-2);
    }
