 
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Jost", sans-serif;
        background: #0b0b0b;
        color: #f0f0f0;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
      }

      /* ----- hero / video background ----- */
      .hero {
        position: relative;
        width: 100%;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: #0a0a0a;
      }
      .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }
      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
      }

      /* ====== TOP NAV ====== */
      .nav-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100 !important;
        padding: 18px 30px;
        width: 100%;
        pointer-events: auto;
      }
      .desktop-nav .row {
        --bs-gutter-x: 0;
        align-items: center;
      }
      .desktop-nav a {
        color: #ffff;
        text-decoration: none;
        letter-spacing: 2px;
        font-size: 18px !important;
        font-weight: 500;
        transition: 0.3s ease;
        opacity: 0.6;
        position: relative;
        padding-bottom: 4px;
      }
      .desktop-nav a:hover {
        color: #4da3ff;
        opacity: 1;
      }
      .desktop-nav a.active {
        color: #4da3ff !important;
        opacity: 1 !important;
      }
      .desktop-nav a.active::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
        background: #4da3ff;
        border-radius: 4px;
        animation: fadeInUnderline 0.4s ease;
      }
      @keyframes fadeInUnderline {
        from {
          width: 0;
          opacity: 0;
        }
        to {
          width: 20px;
          opacity: 1;
        }
      }

      .logo-img {
        width: 90px;
        height: 80px;
        filter: brightness(1.1);
        transition: 0.2s;
      }

      /* Mobile Nav */
      .mobile-nav {
        display: none;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        width: 100%;
      }
      .hamburger-btn {
        background: transparent;
        border: none;
        color: #f0f0f0;
        font-size: 2rem;
      }
      .mobile-menu {
        display: none;
        flex-direction: column;
        background: #0f0f0fdd;
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        padding: 2rem 1.5rem;
        z-index: 999;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.7);
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
      .mobile-menu.open {
        transform: translateX(0);
        display: flex;
      }
      .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
      }
      .menu-logo {
        height: 40px;
        filter: brightness(1.1);
      }
      .close-menu {
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
      }
      .menu-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .menu-links a {
        color: #eee;
        text-decoration: none;
        font-size: 1.4rem;
        font-weight: 300;
        letter-spacing: 1px;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
        transition: 0.3s;
      }
      .menu-links a.active {
        color: #4da3ff;
        border-bottom-color: #4da3ff;
      }
      .menu-links a:hover {
        color: #4da3ff;
      }
      .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
      }

      /* ----- cinema frame overlay (scrollable) ----- */
      .cinema-frame {
        position: relative;
        z-index: 5;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        padding: 100px 40px 30px 40px;
        min-height: 100vh;
        width: 100%;
      }
      .frame-top-left,
      .frame-top-right {
        font-size: 0.7rem;
        font-weight: 200;
        letter-spacing: 2px;
        color: #b0b0b0;
        text-shadow: 0 2px 6px black;
        pointer-events: auto;
      }
      .frame-top-left {
        align-self: flex-start;
      }
      .frame-top-right {
        align-self: flex-end;
        margin-top: -20px;
      }

      .hero-center {
        text-align: center;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex: 1;
        gap: 30px;
        padding: 20px 0 40px 0;
      }

      .sound-ui {
        display: flex;
        align-items: center;
        gap: 16px;
        align-self: flex-end;
        pointer-events: auto;
        font-size: 0.7rem;
        font-weight: 200;
        color: #c0c0c0;
        letter-spacing: 1px;
        margin-top: 10px;
      }
      .sound-circle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #777;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
      }

      /* ---------- CONTACT SECTION (card) ---------- */
      .contact-section {
        position: relative;
        z-index: 6;
        pointer-events: auto;
        background: rgba(8, 8, 8, 0.55);
        backdrop-filter: blur(8px);
        border-radius: 32px;
        padding: 2.2rem 2.8rem;
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
      }
      .contact-section h3 {
        font-weight: 200;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #444;
        padding-bottom: 10px;
        color: #fff;
      }
      .contact-section h3 i {
        color: #4da3ff;
      }
      .contact-section label {
        font-weight: 200;
        letter-spacing: 1.5px;
        font-size: 0.75rem;
        color: #bfbfbf;
        margin-bottom: 4px;
      }
      .contact-section .form-control {
        background: rgba(20, 20, 20, 0.7);
        border: 1px solid #3a3a3a;
        color: #f5f5f5;
        border-radius: 40px;
        padding: 10px 20px;
        font-weight: 200;
        letter-spacing: 0.5px;
        font-size: 0.85rem;
        backdrop-filter: blur(4px);
      }
      .contact-section .form-control:focus {
        border-color: #4da3ff;
        box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.25);
        background: rgba(20, 20, 20, 0.8);
        color: #fff;
      }
      .contact-section .form-control::placeholder {
        color: #6a6a6a;
        font-weight: 200;
        font-size: 0.8rem;
      }
      .contact-section textarea.form-control {
        border-radius: 24px;
        resize: vertical;
        min-height: 100px;
      }
      .btn-send {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 10px;
        padding: 12px 28px;
      border: 1.5px solid rgba(255,255,255,0.25);
        color: #fff;
        text-decoration: none;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 0.8rem;
        background: rgba(77, 163, 255, 0.08);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        width: 100%;
      }
      .btn-send:hover {
        background: #fff;
        color: #0b0b0b;
        transform: scale(0.98);
        box-shadow: 0 0 30px rgba(77, 163, 255, 0.2);
        border-color: #4da3ff;
      }

      /* ===== CONNECT INFO SECTION (below card) ===== */
      .connect-info-wrap {
        pointer-events: auto;
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
      }
      .connect-info-card {
        background: rgba(8, 8, 8, 0.45);
        backdrop-filter: blur(8px);
        border-radius: 28px;
        padding: 2rem 2.5rem;
        border: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 20px 30px;
        text-align: left;
      }
      .connect-info-card .divider-line {
        width: 1px;
        height: 80px;
        background: rgba(255, 255, 255, 0.06);
      }
      .connect-info-card .info-block {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .connect-info-card .info-block .label {
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #4da3ff;
        opacity: 0.8;
      }
      .connect-info-card .info-block .value {
        font-size: 0.85rem;
        font-weight: 200;
        color: #e0e0e0;
        line-height: 1.6;
        letter-spacing: 0.5px;
      }
      .connect-info-card .info-block .value i {
        color: #4da3ff;
        width: 22px;
        margin-right: 4px;
      }
      .connect-info-card .info-block .value a {
        color: #e0e0e0;
        text-decoration: none;
        transition: 0.2s;
      }
      .connect-info-card .info-block .value a:hover {
        color: #4da3ff;
      }
      .connect-social {
        display: flex;
        gap: 14px;
        margin-top: 8px;
      }
      .connect-social a {
        color: #b0b0b0;
        font-size: 1.2rem;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-decoration: none;
      }
      .connect-social a:hover {
        color: #fff;
        background: #4da3ff22;
        border-color: #4da3ff66;
        transform: translateY(-3px);
      }

      /* ===== FOOTER (tall, info-rich, same as homepage) ===== */
      .footer-bottom {
        position: relative;
        z-index: 20;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 28px 30px 16px 30px;
        pointer-events: auto;
        flex-shrink: 0;
        margin-top: 0;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
        gap: 16px 40px;
        max-width: 1200px;
        margin: 0 auto;
      }

      /* Left: company info */
      .footer-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 0.85rem;
        font-weight: 200;
        color: #c5c5c5;
        letter-spacing: 0.5px;
        line-height: 1.6;
      }
      .footer-info .brand {
        font-weight: 400;
        color: #f0f0f0;
        letter-spacing: 1px;
        margin-bottom: 4px;
        font-size: 0.95rem;
      }
      .footer-info i {
        color: #4da3ff;
        width: 20px;
        font-size: 0.85rem;
      }
      .footer-info .info-row {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .footer-info a {
        color: #c5c5c5;
        text-decoration: none;
        transition: 0.2s;
      }
      .footer-info a:hover {
        color: #4da3ff;
      }

      /* Center: logo + nav links */
      .footer-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      .footer-logo-small {
        height: 50px;
        filter: brightness(1.2);
        opacity: 0.9;
        transition: 0.2s;
      }
      .footer-logo-small:hover {
        opacity: 1;
        filter: brightness(1.4);
      }
      .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
        justify-content: center;
      }
      .footer-links a {
        color: #b5b5b5;
        text-decoration: none;
        font-weight: 300;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        transition: 0.2s;
        border-bottom: 1px solid transparent;
        padding-bottom: 2px;
      }
      .footer-links a:hover {
        color: #4da3ff;
        border-bottom-color: #4da3ff;
      }

      /* Right: social */
      .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
      }
      .footer-social {
        display: flex;
        gap: 12px;
        align-items: center;
      }
      .footer-social a {
        color: #b0b0b0;
        font-size: 1.15rem;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-decoration: none;
      }
      .footer-social a:hover {
        color: #fff;
        background: #4da3ff22;
        border-color: #4da3ff66;
        transform: translateY(-3px);
      }

      /* Bottom: copyright centered full width */
      .footer-copy-wrap {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 14px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-copy {
        font-size: 0.7rem;
        font-weight: 200;
        color: #777;
        letter-spacing: 1.5px;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 992px) {
        .desktop-nav {
          display: none;
        }
        .mobile-nav {
          display: flex;
        }
        .cinema-frame {
          padding: 100px 20px 30px 20px;
        }
        .contact-section {
          padding: 1.8rem;
          margin: 0 12px;
        }
        .connect-info-card {
          grid-template-columns: 1fr;
          gap: 16px;
          text-align: center;
          padding: 1.8rem;
          margin: 0 12px;
        }
        .connect-info-card .divider-line {
          width: 100%;
          height: 1px;
        }
        .connect-info-card .info-block {
          align-items: center;
        }
        .connect-social {
          justify-content: center;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 14px;
          text-align: center;
        }
        .footer-info {
          align-items: center;
        }
        .footer-info .info-row {
          justify-content: center;
        }
        .footer-right {
          align-items: center;
        }
        .footer-copy-wrap {
          padding-top: 10px;
        }
      }

      @media (max-width: 576px) {
        .cinema-frame {
          padding: 80px 12px 10px 12px;
        }
        .contact-section {
          padding: 1.5rem;
          margin: 0 8px;
        }
        .connect-info-card {
          padding: 1.2rem;
          margin: 0 8px;
        }
        .connect-info-card .info-block .value {
          font-size: 0.75rem;
        }
        .connect-social a {
          width: 34px;
          height: 34px;
          font-size: 1rem;
        }

        .footer-bottom {
          padding: 20px 14px 12px 14px;
        }
        .footer-grid {
          gap: 10px;
        }
        .footer-info {
          font-size: 0.7rem;
        }
        .footer-logo-small {
          height: 36px;
        }
        .footer-social a {
          width: 30px;
          height: 30px;
          font-size: 0.9rem;
        }
        .footer-links a {
          font-size: 0.6rem;
          letter-spacing: 1px;
        }
        .footer-links {
          gap: 4px 12px;
        }
        .footer-copy {
          font-size: 0.6rem;
        }
        .footer-copy-wrap {
          padding-top: 8px;
        }
        .sound-ui {
          font-size: 0.6rem;
          gap: 10px;
        }
        .sound-circle {
          width: 28px;
          height: 28px;
          font-size: 0.8rem;
        }
      }

      @media (max-width: 400px) {
        .contact-section {
          padding: 1rem;
        }
        .connect-info-card {
          padding: 1rem;
        }
      }
   