
      * {
        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 {
        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: 1.8rem;
      }
      .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 - 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;
        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;
      }

      /* ====== SERVICES CONTENT ====== */
      .services-content {
        max-width: 960px;
        width: 100%;
        margin: 0 auto;
        padding: 2rem 2.5rem;
        background: rgba(8, 8, 8, 0.55);
        backdrop-filter: blur(8px);
        border-radius: 32px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        text-align: left;
        pointer-events: auto;
      }
      .services-content .badge-tag {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #fff;
        border: 1px solid #4da3ff;
        padding: 8px 22px;
        border-radius: 40px;
        margin-bottom: 1rem;
      }
      .services-content h1 {
        font-weight: 200;
        font-size: 2.6rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }
      .services-content h1 span {
        color: #4da3ff;
        font-weight: 300;
      }
      .services-content .intro-text {
        font-weight: 200;
        font-size: 0.95rem;
        line-height: 1.8;
        color: #fff;
        letter-spacing: 0.5px;
        margin-bottom: 2rem;
      }

      /* Service Cards */
      .service-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 1.5rem 1.8rem;
        margin-bottom: 1.2rem;
        transition: 0.3s ease;
      }
      .service-card:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: #b8a6d433;
        transform: translateX(4px);
      }
      .service-card .service-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 0.6rem;
      }
      .service-card .service-icon {
        font-size: 1.6rem;
        color: #4da3ff;
        width: 40px;
        flex-shrink: 0;
      }
      .service-card h3 {
        font-weight: 500;
        font-size: 1.1rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #e8e8e8;
        margin: 0;
      }
      .service-card .service-desc {
        font-weight: 200;
        font-size: 0.9rem;
        line-height: 1.7;
        color: #ffff;
        margin-bottom: 0.6rem;
        padding-left: 54px;
      }
      .service-card .service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 10px;
        padding-left: 54px;
      }
      .service-card .service-tags span {
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
        padding: 3px 12px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.05);
      }

      /* Section Title */
      .section-title {
        font-weight: 300;
        font-size: 1.3rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #4da3ff;
        margin: 2rem 0 1.2rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.8rem;
      }
      .section-title i {
        margin-right: 10px;
      }

      /* Process */
      .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
      }
      .process-step {
        text-align: center;
        padding: 1.2rem 0.8rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: 0.3s;
      }
      .process-step:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #4da3ff44;
        transform: translateY(-3px);
      }
      .process-step .step-number {
        display: inline-block;
        font-size: 1.8rem;
        font-weight: 200;
        color: #4da3ff;
        opacity: 0.5;
        margin-bottom: 0.3rem;
      }
      .process-step h5 {
        font-weight: 400;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #e8e8e8;
        margin-bottom: 0.3rem;
      }
      .process-step p {
        font-weight: 200;
        font-size: 0.7rem;
        color: #999;
        margin: 0;
      }

      /* Industries */
      .industry-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        margin: 1.5rem 0;
      }
      .industry-item {
        text-align: center;
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: 0.3s;
        font-weight: 300;
        font-size: 0.8rem;
        letter-spacing: 1px;
        color: #ccc;
      }
      .industry-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #4da3ff44;
        color: #fff;
      }
      .industry-item i {
        display: block;
        font-size: 1.5rem;
        color: #4da3ff;
        margin-bottom: 0.4rem;
      }

      /* FAQ */
      .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 0.8rem 0;
      }
      .faq-item:last-child {
        border-bottom: none;
      }
      .faq-item .faq-q {
        font-weight: 400;
        font-size: 0.9rem;
        color: #e8e8e8;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: 0.3s;
      }
      .faq-item .faq-q:hover {
        color: #4da3ff;
      }
      .faq-item .faq-q i {
        color: #4da3ff;
        font-size: 0.8rem;
      }
      .faq-item .faq-a {
        font-weight: 200;
        font-size: 0.85rem;
        color: #b5b5b5;
        padding-left: 30px;
        margin-top: 0.3rem;
        line-height: 1.6;
      }

      /* Contact Info at Bottom */
      .contact-info-footer {
        margin-top: 1.8rem;
        padding-top: 1.5rem;
        border-top: 1px solid #2a2a2a;
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
        font-size: 0.75rem;
        font-weight: 200;
        letter-spacing: 1px;
        color: #4da3ffaa;
      }
      .contact-info-footer a {
        color: #4da3ff;
        text-decoration: none;
        transition: 0.3s;
      }
      .contact-info-footer a:hover {
        color: #4da3ff;
      }
      .contact-info-footer i {
        margin-right: 6px;
        color: #4da3ff;
      }

      /* ===== FOOTER (tall, info-rich) ===== */
      .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;
      }

      .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;
      }

      .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;
      }

      .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);
      }

      .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;
      }
      .text-color {
        color: #4da3ff;
      }
      /* ===== RESPONSIVE ===== */
      @media (max-width: 992px) {
        .desktop-nav {
          display: none;
        }
        .mobile-nav {
          display: flex;
        }
        .cinema-frame {
          padding: 100px 20px 30px 20px;
        }
        .services-content {
          padding: 1.8rem;
          margin: 0 12px;
        }
        .services-content h1 {
          font-size: 2rem;
        }
        .service-card .service-desc {
          padding-left: 0;
        }
        .service-card .service-tags {
          padding-left: 0;
        }
        .service-card .service-header {
          flex-wrap: wrap;
        }
        .process-grid {
          grid-template-columns: 1fr 1fr;
        }
        .industry-grid {
          grid-template-columns: 1fr 1fr;
        }

        .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;
        }
        .services-content {
          padding: 1.5rem;
          margin: 0 8px;
        }
        .services-content h1 {
          font-size: 1.6rem;
          letter-spacing: 2px;
        }
        .contact-info-footer {
          gap: 1.2rem;
          flex-direction: column;
          align-items: center;
        }
        .service-card {
          padding: 1.2rem;
        }
        .process-grid {
          grid-template-columns: 1fr 1fr;
          gap: 0.6rem;
        }
        .industry-grid {
          grid-template-columns: 1fr 1fr;
          gap: 0.6rem;
        }
        .process-step {
          padding: 0.8rem;
        }

        .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) {
        .services-content {
          padding: 1rem;
        }
      }
   