
    :root {
      --bg: #040404;
      --panel: #0a0a0a;
      --panel-2: #111111;
      --line: rgba(255, 255, 255, 0.08);
      --text: #f5f5f5;
      --muted: rgba(255, 255, 255, 0.72);
      --accent: #e21010;
      --accent-2: #8c0909;
      --container: calc(100% - 64px);
      --container-max: 1400px; /* Cinematic expansive layout */
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
      --font-display: "Outfit", sans-serif;
      --font-body: "Plus Jakarta Sans", sans-serif;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
      overflow-x: clip; /* Prevent scrollbar sticky breaking */
    }

    body {
      font-family: var(--font-body);
      background-color: #000000;
      color: var(--text);
      overflow-x: clip; /* Prevent scrollbar sticky breaking */
      line-height: 1.6;
      position: relative;
    }

    /* Cinematic Volumetric Background Glows */
    .bg-glow {
      position: fixed;
      width: 750px;
      height: 750px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      opacity: 0.18; /* slightly increased for rich visual punch */
      filter: blur(140px);
      mix-blend-mode: screen;
      animation: floatGlow 25s ease-in-out infinite alternate;
    }
    .bg-glow-1 {
      top: -10%;
      left: -10%;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.45) 0%, rgba(140, 9, 9, 0.2) 50%, rgba(68, 5, 99, 0.15) 100%);
      animation-duration: 28s;
    }
    .bg-glow-2 {
      top: 50%;
      right: -20%;
      transform: translateY(-50%);
      background: radial-gradient(circle, rgba(140, 9, 9, 0.45) 0%, rgba(68, 5, 99, 0.2) 60%, rgba(226, 16, 16, 0.1) 100%);
      animation-duration: 36s;
    }
    .bg-glow-3 {
      bottom: -15%;
      left: 15%;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.4) 0%, rgba(68, 5, 99, 0.25) 50%, transparent 100%);
      animation-duration: 22s;
    }

    @keyframes floatGlow {
      0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
      }
      50% {
        transform: translate3d(8vw, 12vh, 0) scale(1.15) rotate(180deg);
      }
      100% {
        transform: translate3d(-5vw, -8vh, 0) scale(0.9) rotate(360deg);
      }
    }

    .grid-bg-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.04;
      background-size: 60px 60px;
      background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s var(--ease);
    }

    .container {
      width: var(--container);
      max-width: var(--container-max);
      margin: 0 auto;
      position: relative;
    }

    .section {
      padding: 100px 0;
      position: relative;
      z-index: 2;
    }

    .section-header {
      margin-bottom: 60px;
      text-align: center;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 16px;
      position: relative;
      padding-left: 20px;
    }

    .section-eyebrow::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 12px;
      height: 2px;
      background: var(--accent);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .section-title span {
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
      background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .glass-card {
      background: rgba(10, 10, 10, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    /* Custom Cursor */
    .custom-cursor-dot {
      width: 8px;
      height: 8px;
      background: #ff1010;
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .custom-cursor-follower {
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(255, 16, 16, 0.4);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      will-change: transform;
    }
    
    body.cursor-hover .custom-cursor-follower {
      width: 60px;
      height: 60px;
      background: rgba(255, 16, 16, 0.08);
      border-color: #ff1010;
      box-shadow: 0 0 15px rgba(255, 16, 16, 0.35);
    }
    
    body.cursor-hover .custom-cursor-dot {
      width: 12px;
      height: 12px;
    }

    /* Hide default cursor on devices that support hover and are desktop/laptop viewports */
    @media (hover: hover) and (pointer: fine) and (min-width: 992px) {
      body, a, button, [role="button"], input, select, textarea, .service-card, .tool-card, .project-item {
        cursor: none !important;
      }
    }

    /* Hide custom cursor on mobile/tablet viewports and touch devices */
    @media (max-width: 991px), (hover: none) or (pointer: coarse) {
      .custom-cursor-dot,
      .custom-cursor-follower {
        display: none !important;
      }
    }

    /* Header styling */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(5, 5, 5, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .header-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand img {
      width: 126px;
      height: auto;
      object-fit: contain;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      flex: 1 1 auto;
    }

    .site-nav a,
    .header-cta {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-nav a {
      color: rgba(255, 255, 255, 0.88);
      transition: color 0.25s ease, text-shadow 0.25s ease;
      position: relative;
    }

    .site-nav a:hover,
    .site-nav a.active {
      color: var(--accent);
      text-shadow: 0 0 10px rgba(226, 16, 16, 0.6);
    }

    .site-nav a::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease, left 0.3s ease;
    }

    .site-nav a:hover::after,
    .site-nav a.active::after {
      width: 100%;
      left: 0;
    }

    .header-cta {
      padding: 18px 28px;
      background: linear-gradient(90deg, #c80d0d, #f31a1a);
      box-shadow: 0 14px 34px rgba(226, 16, 16, 0.24);
      flex: 0 0 auto;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      color: #fff;
    }

    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(226, 16, 16, 0.4);
    }

    .menu-toggle {
      display: none;
    }



    /* HERO BANNER - FULL WIDTH */
    .service-hero-banner {
      padding: 0;
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .service-hero-banner .container {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0;
    }

    .hero-banner-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 21 / 8.5;
      max-height: 560px;
      background: #000;
    }

    .hero-banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease);
    }

    .hero-banner-wrapper:hover .hero-banner-img {
      transform: scale(1.02);
    }

    .hero-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 65%, #000000 100%);
      pointer-events: none;
    }

    /* SERVICES HERO */
    .services-hero {
      padding: 100px 0 40px;
      text-align: center;
      position: relative;
    }

    .services-hero::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.08) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    .services-subtitle {
      max-width: 680px;
      margin: 20px auto 0;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* TILT 3D HELPER */
    .tilt-3d {
      transform-style: preserve-3d;
      will-change: transform;
    }

    /* DYNAMIC SERVICES LAYOUT */
    .service-row {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 0;
      position: relative;
    }

    .service-row.reverse .service-content {
      order: 2;
    }

    .service-row.reverse .service-gallery-wrapper {
      order: 1;
    }

    /* ACCORDION DESIGN */
    .service-info-header {
      margin-bottom: 28px;
    }

    .service-info-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .service-info-header p {
      color: var(--muted);
      font-size: 0.98rem;
      max-width: 520px;
    }

    .service-accordion {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
    }

    .accordion-item {
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(255, 255, 255, 0.01);
      border-radius: 16px;
      padding: 18px 24px;
      margin-bottom: 4px;
      transition: all 0.3s var(--ease);
      position: relative;
    }

    .accordion-item:hover {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .accordion-item.active {
      background: rgba(226, 16, 16, 0.03);
      border-color: rgba(226, 16, 16, 0.25);
      box-shadow: inset 3px 0 0 var(--accent); /* Left accent bar */
    }

    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
    }

    .accordion-header h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.3s ease, letter-spacing 0.3s var(--ease);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .accordion-header h3::before {
      content: "";
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .accordion-item.active .accordion-header h3 {
      color: #ffffff;
      letter-spacing: 0.02em;
    }

    .accordion-item.active .accordion-header h3::before {
      background: var(--accent);
      transform: scale(1.4);
      box-shadow: 0 0 8px var(--accent);
    }

    .accordion-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.4);
      transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(180deg);
      color: var(--accent);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s ease;
      will-change: max-height, opacity;
    }

    .accordion-item.active .accordion-content {
      opacity: 1;
      padding-top: 12px;
      padding-bottom: 4px;
    }

    .accordion-content p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
      padding-left: 18px;
    }

    /* PREMIUM COLLAGE CARD (SINGLE UNIFIED CONTAINER) */
    .service-gallery-wrapper {
      position: relative;
    }

    .service-gallery-card {
      display: block;
      background: #080808;
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16 / 10;
      box-shadow: var(--shadow);
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .service-gallery-card:hover {
      border-color: rgba(226, 16, 16, 0.35);
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(226, 16, 16, 0.12);
    }

    .gallery-main-pane {
      position: relative;
      background: #080808;
      overflow: hidden;
      width: 100%;
      height: 100%;
    }

    .gallery-main-pane img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease);
    }

    .gallery-main-pane:hover img {
      transform: scale(1.03);
    }

    .gallery-side-pane {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 2px; /* Fine grid vertical divider line gap */
      height: 100%;
    }

    .gallery-sub-pane {
      position: relative;
      background: #080808;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-sub-pane img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease);
    }

    .gallery-sub-pane:hover img {
      transform: scale(1.04);
    }

    /* Software logo box aesthetic */
    .gallery-sub-pane.software-logo-box {
      background: rgba(10, 10, 10, 0.7);
      backdrop-filter: blur(8px);
      padding: 15px;
    }

    .gallery-sub-pane.software-logo-box img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    }

    .gallery-sub-pane.software-logo-box:hover img {
      transform: scale(1.15) rotate(5deg);
    }

    .gallery-overlay-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(4, 4, 4, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 5;
      pointer-events: none;
    }

    .gallery-overlay-label .pulse-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: indicatorPulse 1.8s infinite;
    }

    @keyframes indicatorPulse {
      0% { transform: scale(0.9); opacity: 0.6; }
      50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 6px var(--accent); }
      100% { transform: scale(0.9); opacity: 0.6; }
    }

    /* CTA PANEL DESIGN */
    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 60px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      border-radius: var(--radius-lg);
    }

    .cta-panel-glow {
      position: absolute;
      top: 50%;
      left: -10%;
      transform: translateY(-50%);
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.22) 0%, transparent 70%);
      filter: blur(40px);
      pointer-events: none;
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }

    .cta-content h2 span {
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
      background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .cta-content p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-top: 12px;
    }

    .cta-actions {
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }

    .cta-actions .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 20px 36px;
      background: linear-gradient(90deg, #c80d0d, #f31a1a);
      box-shadow: 0 14px 34px rgba(226, 16, 16, 0.3);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .cta-actions .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(226, 16, 16, 0.45);
    }

    /* Floating WhatsApp Button Style */
    .whatsapp-float-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #25d366;
      color: #ffffff;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
      z-index: 9999;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      text-decoration: none;
    }

    .whatsapp-float-btn:hover {
      transform: translateY(-5px) scale(1.08);
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
      background: #22c35e;
    }

    .whatsapp-float-btn svg {
      width: 28px;
      height: 28px;
      fill: #ffffff;
    }

    /* Desktop Sticky Stacking Layout */
    .services-stack-container {
      position: relative;
      background-color: #000000;
      width: 100%;
      padding: 80px 0 120px;
    }

    .service-stack-card {
      background: #070707; /* Solid premium black backdrop to block backgrounds */
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-radius: 36px; /* High premium soft curved corners */
      padding: 70px 60px !important;
      box-shadow: 
        0 -20px 40px rgba(0, 0, 0, 0.8),
        0 50px 100px rgba(0, 0, 0, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
      box-sizing: border-box;
      max-width: 1400px; /* Expanded premium container size */
      width: calc(100% - 64px);
      margin: 0 auto 100px; /* Generous separation gaps */
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    }

    .service-stack-card:hover {
      border-color: rgba(226, 16, 16, 0.45);
      box-shadow: 
        0 -20px 40px rgba(0, 0, 0, 0.8),
        0 50px 100px rgba(0, 0, 0, 0.95),
        0 0 45px rgba(226, 16, 16, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    /* Soft top border line glow */
    .service-stack-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 5%;
      width: 90%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.35;
      pointer-events: none;
    }

    /* Explicit Stacking Order (z-index) */
    .services-stack-container #video-editing { z-index: 10; }
    .services-stack-container #color-grading { z-index: 11; }
    .services-stack-container #vfx { z-index: 12; }
    .services-stack-container #motion-graphics { z-index: 13; }
    .services-stack-container #animation { z-index: 14; }
    .services-stack-container #sound-design { z-index: 15; }
    .services-stack-container #di-finishing { z-index: 16; }
    .services-stack-container #other-services { z-index: 17; }

    @media (min-width: 993px) {
      .service-stack-card {
        position: sticky;
        top: 120px; /* Pin position */
        will-change: transform, opacity;
      }
    }

    @media (max-width: 992px) {
      .services-stack-container {
        padding: 40px 0;
      }
      .service-stack-card {
        padding: 40px 24px !important;
        margin-bottom: 40px;
        border-radius: 20px;
        width: calc(100% - 32px);
      }
    }

    /* RESPONSIVE LAYOUTS */
    @media (max-width: 992px) {
      .service-row {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0;
      }
      
      .service-row.reverse .service-content {
        order: unset;
      }

      .service-row.reverse .service-gallery-wrapper {
        order: unset;
      }
    }

    @media (max-width: 768px) {
      .header-cta {
        display: none !important;
      }
      
      .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #ffffff;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        width: 42px;
        height: 42px;
        z-index: 50;
        transition: all 0.3s ease;
      }

      .menu-toggle:hover {
        border-color: var(--accent);
        background: rgba(226, 16, 16, 0.08);
        box-shadow: 0 0 10px rgba(226, 16, 16, 0.25);
      }

      .menu-toggle svg {
        transition: transform 0.3s ease;
      }

      .nav-open .menu-toggle svg {
        transform: rotate(90deg);
      }

      .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 0 !important;
        padding: 16px 24px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 45;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
      }

      .nav-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .site-nav a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        background: rgba(255, 255, 255, 0.01);
        border-radius: 8px;
        margin-bottom: 8px;
        box-sizing: border-box;
        transition: all 0.25s ease;
      }

      .site-nav a:hover,
      .site-nav a.active {
        background: rgba(226, 16, 16, 0.08);
        border-color: rgba(226, 16, 16, 0.2);
        color: var(--accent) !important;
      }

      .site-nav a::after {
        display: none !important;
      }

      .site-nav a::before {
        content: ">";
        order: 2;
        color: var(--accent);
        font-weight: 800;
        font-size: 14px;
        transition: transform 0.2s ease;
      }

      .site-nav a:hover::before {
        transform: translateX(4px);
      }

      .section {
        padding: 60px 0;
      }

      .cta-panel {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
        gap: 30px;
      }

      .cta-actions {
        width: 100%;
      }

      .cta-actions .btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      :root {
        --container: calc(100% - 32px);
      }
      .cta-panel {
        padding: 30px 16px;
      }
      .whatsapp-float-btn {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
      }
      .whatsapp-float-btn svg {
        width: 24px;
        height: 24px;
      }
      .service-gallery-card {
        aspect-ratio: 4 / 3;
      }
    }

    [data-reveal] {
      opacity: 0;
      will-change: transform, opacity;
    }
    [data-reveal="up"] {
      transform: translate3d(0, 50px, 0);
    }
    [data-reveal="down"] {
      transform: translate3d(0, -50px, 0);
    }
    [data-reveal="left"] {
      transform: translate3d(-50px, 0, 0);
    }
    [data-reveal="right"] {
      transform: translate3d(50px, 0, 0);
    }
    /* INDUSTRIES SECTION (ARROW TRACK LAYOUT) */
    .industries-section {
      padding: 100px 0;
      background: #000000;
      position: relative;
      z-index: 10;
    }

    .industries-board {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 50px;
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
    }

    .industry-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      width: 100%;
      will-change: transform, opacity;
    }

    .industry-card {
      padding: 40px 24px;
      text-align: center;
      background: rgba(10, 10, 10, 0.7);
      border: 1.5px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 18px;
      cursor: pointer;
      transform-style: preserve-3d;
      will-change: transform;
      transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    }

    /* 3D tracking spotlight hover glow */
    .industry-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: radial-gradient(160px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 16, 16, 0.2), transparent 75%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }

    .industry-card:hover::before {
      opacity: 1;
    }

    .industry-card * {
      position: relative;
      z-index: 2;
    }

    .industry-card-icon {
      width: 110px;
      height: 110px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.4s var(--ease);
      transform: translateZ(20px);
    }

    .industry-card-icon svg {
      width: 38px;
      height: 38px;
      transition: transform 0.4s ease;
    }
    .industry-card:hover .industry-card-icon svg {
      transform: scale(1.15) rotate(90deg);
    }

    .industry-card:hover {
      border-color: rgba(226, 16, 16, 0.45);
      background: rgba(226, 16, 16, 0.03);
      box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.85),
        0 0 35px rgba(226, 16, 16, 0.22),
        inset 0 0 15px rgba(226, 16, 16, 0.15);
    }

    .industry-card:hover .industry-card-icon {
      background: rgba(226, 16, 16, 0.1);
      border-color: rgba(226, 16, 16, 0.5);
      color: var(--accent);
      box-shadow: 0 0 20px rgba(226, 16, 16, 0.35);
      transform: translateZ(45px) scale(1.15) rotate(-10deg); /* POP OUT 3D */
    }

    .industry-card h4 {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--muted);
      transition: color 0.3s ease, letter-spacing 0.4s var(--ease), transform 0.4s var(--ease);
      transform: translateZ(25px); /* POP OUT 3D */
    }

    .industry-card:hover h4 {
      color: #fff;
      letter-spacing: 0.12em;
      text-shadow: 0 0 10px rgba(226, 16, 16, 0.7);
    }

     /* Direction: Right Shapes */
    .industry-card.arrow-right-start {
      clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
      padding-left: 36px !important;
      padding-right: 36px !important;
    }
    .industry-card.arrow-right-mid {
      clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 92% 100%, 100% 50%, 92% 0%);
      padding-left: 36px !important;
      padding-right: 36px !important;
    }
    .industry-card.arrow-right-end {
      clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 92% 100%, 100% 50%, 92% 0%);
      padding-left: 36px !important;
      padding-right: 36px !important;
    }

    /* Direction: Left Shapes */
    .industry-card.arrow-left-start {
      clip-path: polygon(8% 0%, 100% 0%, 92% 50%, 100% 100%, 8% 100%, 0% 50%);
      padding-left: 36px !important;
      padding-right: 36px !important;
    }
    .industry-card.arrow-left-mid {
      clip-path: polygon(8% 0%, 100% 0%, 92% 50%, 100% 100%, 8% 100%, 0% 50%);
      padding-left: 36px !important;
      padding-right: 36px !important;
    }
    .industry-card.arrow-left-end {
      clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
      padding-left: 36px !important;
      padding-right: 36px !important;
    }

    /* Industry Icon Image */
    .industry-icon-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 8px; /* reduced padding so the logo image is much larger inside the container */
      filter: brightness(0.95) contrast(1.05);
      transition: transform 0.4s ease;
    }
    .industry-card:hover .industry-icon-img {
      transform: scale(1.15) translateZ(10px);
    }

    @media (max-width: 768px) {
      .industry-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
      .industry-card.arrow-right-start,
      .industry-card.arrow-right-mid,
      .industry-card.arrow-right-end,
      .industry-card.arrow-left-start,
      .industry-card.arrow-left-mid,
      .industry-card.arrow-left-end {
        clip-path: none !important;
        padding: 30px 24px !important;
      }
    }

    /* TOOLS SECTION CSS */
    .tools-section {
      padding: 80px 0;
      background: #000000;
    }

    .tools-panel {
      background: linear-gradient(180deg, rgba(8, 8, 8, 0.99), rgba(10, 10, 10, 0.99));
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      padding: 60px 40px;
      text-align: center;
      border-radius: 36px;
    }

    .tools-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.22;
      pointer-events: none;
    }

    .tools-title {
      position: relative;
      z-index: 1;
      margin: 0 0 42px;
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: #ffffff;
    }

    .tools-title span {
      color: var(--accent);
    }

    .tools-marquee-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .tools-marquee-row-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 10px 0;
    }

    .tools-marquee-row-wrapper::before,
    .tools-marquee-row-wrapper::after {
      content: "";
      position: absolute;
      top: 0;
      width: 12vw;
      height: 100%;
      z-index: 5;
      pointer-events: none;
    }

    .tools-marquee-row-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, #070707 0%, transparent 100%);
    }

    .tools-marquee-row-wrapper::after {
      right: 0;
      background: linear-gradient(270deg, #070707 0%, transparent 100%);
    }

    .tools-marquee-track {
      display: flex;
      flex-direction: row;
      gap: 24px;
      width: max-content;
    }

    .track-left {
      animation: scrollLeft 35s linear infinite;
    }

    .track-right {
      animation: scrollRight 35s linear infinite;
    }

    .tools-marquee-row-wrapper:hover .tools-marquee-track {
      animation-play-state: paused;
    }

    @keyframes scrollLeft {
      0% { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(-1044px, 0, 0); }
    }

    @keyframes scrollRight {
      0% { transform: translate3d(-1044px, 0, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    @media (max-width: 768px) {
      @keyframes scrollLeft {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(-864px, 0, 0); }
      }
      @keyframes scrollRight {
        0% { transform: translate3d(-864px, 0, 0); }
        100% { transform: translate3d(0, 0, 0); }
      }
    }

    .tool-card {
      flex: 0 0 150px;
      width: 150px;
      height: 150px;
      background: transparent;
      perspective: 1000px;
      cursor: pointer;
      position: relative;
    }

    .tool-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      border-radius: 12px;
      overflow: hidden;
      will-change: transform;
      background: #080808;
    }

    .tool-card-front,
    .tool-card-back {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      border-radius: 12px;
      overflow: hidden;
    }

    .tool-card-front {
      background: rgba(12, 12, 12, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.05);
      z-index: 2;
      align-items: center;
      justify-content: center;
      padding: 12px;
      transform: rotateX(0deg) rotateY(0deg);
    }

    .front-darken {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      z-index: 1;
      pointer-events: none;
    }

    .tool-logo {
      width: 52px;
      height: 52px;
      object-fit: contain;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
      z-index: 2;
    }

    .tool-card-front h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.3;
      z-index: 2;
      text-align: center;
    }

    .tool-card-back {
      background: #050505;
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: #ffffff;
      z-index: 1;
      transform: rotateY(90deg);
      justify-content: center;
      text-align: center;
      align-items: center;
      padding: 12px;
    }

    .back-category {
      font-size: 8px;
      text-transform: uppercase;
      color: #ff1010;
      letter-spacing: 0.10em;
      font-weight: 800;
      margin-bottom: 4px;
      opacity: 0;
      transform: translateY(8px);
    }

    .back-title {
      font-family: var(--font-display);
      font-size: 11px;
      text-transform: uppercase;
      color: #ffffff;
      letter-spacing: 0.05em;
      margin: 0 0 6px 0;
      line-height: 1.2;
      opacity: 0;
      transform: translateY(10px);
    }

    .back-description {
      font-size: 8px;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.7);
      margin: 0 0 8px 0;
      max-width: 130px;
      opacity: 0;
      transform: translateY(12px);
    }

    .back-arrow-box {
      margin-top: 0;
      opacity: 0;
      transform: scale(0.6) rotate(0deg);
    }

    .back-arrow-svg {
      display: block;
    }

    .glow-bg {
      position: absolute;
      inset: -15px;
      background: radial-gradient(circle, rgba(226, 16, 16, 0.15) 0%, transparent 70%);
      opacity: 0;
      z-index: -1;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    .tool-card:hover .glow-bg {
      opacity: 1;
    }

    .border-line {
      position: absolute;
      background: #ff1010;
      z-index: 10;
      pointer-events: none;
    }
    .border-line-top { top: 0; left: 0; height: 1.5px; width: 0; }
    .border-line-right { top: 0; right: 0; width: 1.5px; height: 0; }
    .border-line-bottom { bottom: 0; right: 0; height: 1.5px; width: 0; }
    .border-line-left { bottom: 0; left: 0; width: 1.5px; height: 0; }

    @media (max-width: 768px) {
      .tools-section {
        padding: 50px 0;
      }
      .tools-panel {
        padding: 40px 20px;
        border-radius: 24px;
      }
      .tool-card {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
      }
      .tool-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
      }
      .tool-card-front h3 {
        font-size: 9px;
      }
      .back-title {
        font-size: 9px;
        margin-bottom: 4px;
      }
      .back-description {
        font-size: 7px;
        max-width: 100px;
        margin-bottom: 4px;
      }
      .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 500px) {
      
    }

    @media (max-width: 600px) {
      .footer-inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 20px !important;
        padding: 50px 16px 30px !important;
      }
      .footer-brand {
        grid-column: 1 / -1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
        margin-bottom: 16px !important;
      }
      .footer-brand img {
        margin: 0 auto 16px !important;
        width: 180px !important;
      }
      .footer-brand::after {
        content: "";
        display: block;
        width: 100px;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        margin: 16px auto 24px;
      }
      .footer-brand p {
        text-align: center !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
      }
      .footer-socials {
        justify-content: center !important;
      }
      .footer-links {
        grid-column: span 1 !important;
      }
      .footer-links h3 {
        color: var(--accent) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 16px !important;
      }
      .footer-links a {
        display: block !important;
        font-size: 14px !important;
        margin-bottom: 12px !important;
      }
      .footer-links a::before {
        content: "— ";
        color: var(--accent);
        margin-right: 6px;
        font-weight: bold;
      }
      .footer-contact {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        margin-top: 10px !important;
      }
      .footer-contact h3 {
        color: var(--accent) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 20px !important;
      }
      .contact-item {
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 12px !important;
        padding: 16px 20px !important;
        margin-bottom: 14px !important;
        display: flex !important;
        align-items: center !important;
        gap: 18px !important;
        width: 100% !important;
        text-align: left !important;
      }
      .contact-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
      }
      /* Phone item */
      .footer-contact .contact-item:nth-of-type(1) .contact-icon {
        border: 1.5px solid rgba(37, 211, 102, 0.45) !important;
        color: #25d366 !important;
        background: rgba(37, 211, 102, 0.06) !important;
      }
      /* Email item */
      .footer-contact .contact-item:nth-of-type(2) .contact-icon {
        border: 1.5px solid rgba(59, 130, 246, 0.45) !important;
        color: #3b82f6 !important;
        background: rgba(59, 130, 246, 0.06) !important;
      }
      /* Address item */
      .footer-contact .contact-item:nth-of-type(3) .contact-icon {
        border: 1.5px solid rgba(251, 191, 36, 0.45) !important;
        color: #fbbf24 !important;
        background: rgba(251, 191, 36, 0.06) !important;
      }
      .contact-item div {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
      }
      .contact-item a, 
      .contact-item p {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.5 !important;
      }
      .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: center !important;
        padding-top: 30px !important;
      }
      .footer-bottom p {
        text-align: center !important;
      }
    }

    /* FOOTER STYLING */
    .site-footer {
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background:
        radial-gradient(circle at 84% 18%, rgba(255, 0, 0, 0.18), transparent 24%),
        linear-gradient(135deg, #060606 0%, #080808 58%, #130303 100%);
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: 0.18;
      pointer-events: none;
    }

    .site-footer::after {
      content: "";
      position: absolute;
      right: -8%;
      top: -16%;
      width: 520px;
      height: 220px;
      background:
        radial-gradient(circle at center, rgba(255, 0, 0, 0.12), transparent 62%);
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .footer-inner {
      width: var(--container);
      max-width: 1380px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(340px, 1.9fr) minmax(150px, 0.95fr) minmax(150px, 0.95fr) minmax(280px, 1.45fr);
      gap: 64px;
      padding: 60px 0 40px;
      align-items: start;
    }

    .footer-brand {
      justify-self: start;
      max-width: 360px;
    }

    .footer-brand img {
      display: block;
      width: min(100%, 220px);
      height: auto;
      object-fit: contain;
      margin: 0 0 22px;
    }

    .footer-brand p {
      max-width: 300px;
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-socials a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .footer-socials a:hover {
      color: #ffffff;
      border-color: var(--accent);
      background: var(--accent);
      box-shadow: 0 0 10px rgba(226, 16, 16, 0.45);
      transform: translateY(-2px);
    }

    .footer-links h3,
    .footer-contact h3 {
      margin: 0 0 16px;
      color: var(--accent);
      font-family: var(--font-display);
      font-size: 1.05rem;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact p {
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
      line-height: 1.75;
      text-decoration: none;
      margin: 0;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffffff;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
    }

    .contact-item div {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-icon {
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    .footer-bottom {
      width: var(--container);
      max-width: 1380px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      min-height: 46px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 0 0 10px;
    }

    .footer-bottom p {
      margin: 0;
      color: rgba(255, 255, 255, 0.56);
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
    }

    .footer-top {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.22);
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    @media (max-width: 1240px) {
      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .footer-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 16px;
        padding: 40px 16px 24px;
      }

      .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
      }

      .footer-brand img {
        width: 130px;
        margin: 0 auto 16px;
      }

      .footer-brand p {
        text-align: center;
        margin: 0 auto 20px;
        max-width: 320px;
        font-size: 13.5px;
        line-height: 1.8;
      }

      .footer-socials {
        justify-content: center;
        gap: 12px;
      }

      .footer-links h3 {
        margin-bottom: 12px;
        text-align: left;
      }

      .footer-links {
        align-items: flex-start;
        text-align: left;
        gap: 8px;
      }

      .footer-links a {
        font-size: 13.5px;
        line-height: 1.7;
        text-align: left;
      }

      .footer-contact {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        gap: 14px;
        width: 100%;
        margin-top: 8px;
      }

      .footer-contact h3 {
        margin-bottom: 12px;
        text-align: center;
      }

      .footer-contact a,
      .footer-contact p {
        font-size: 13.5px;
        line-height: 1.7;
        text-align: center;
      }

      .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        margin-bottom: 16px;
      }

      .contact-item div {
        align-items: center;
      }

      .contact-item p {
        text-align: center;
        max-width: 280px;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
        gap: 12px;
      }

      .footer-top {
        position: static;
        transform: none;
        margin: 8px auto 0;
      }
    }

    @media (max-width: 480px) {
      .footer-inner {
        gap: 28px;
      }
      .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
      }
      .footer-bottom p {
        text-align: center;
      }
    }

    /* PRODUCTION & STUDIO SERVICES */
    .production-services {
      padding: 100px 0;
      background: linear-gradient(180deg, rgba(7, 7, 7, 1) 0%, rgba(4, 4, 4, 0.95) 100%);
      position: relative;
    }

    .prod-services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 50px;
    }

    .prod-card {
      position: relative;
      background: rgba(255, 255, 255, 0.02);
      border: 1.5px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-lg);
      padding: 40px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .prod-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 0% 0%, rgba(226, 16, 16, 0.15) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }

    .prod-card:hover {
      border-color: rgba(226, 16, 16, 0.35);
      transform: translateY(-5px);
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.65),
        0 0 25px rgba(226, 16, 16, 0.08);
    }

    .prod-card:hover::before {
      opacity: 1;
    }

    .prod-icon-box {
      width: 80px;
      height: 80px;
      border-radius: var(--radius-md);
      background: rgba(0, 0, 0, 0.4);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      z-index: 2;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    .prod-icon-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .prod-card:hover .prod-icon-box {
      border-color: rgba(226, 16, 16, 0.5);
      box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(226, 16, 16, 0.2);
      transform: translateY(-2px) scale(1.02);
    }

    .prod-card:hover .prod-icon-box img {
      transform: scale(1.12);
    }

    .prod-info {
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .prod-info span {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      font-weight: 700;
    }

    .prod-info h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #fff;
    }

    .prod-info p {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    @media (max-width: 860px) {
      .prod-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .prod-card {
        padding: 30px;
      }
    }

    @media (max-width: 480px) {
      .prod-services-grid {
        gap: 16px;
      }
      .prod-card {
        padding: 24px;
        gap: 16px;
      }
      .prod-icon-box {
        width: 64px;
        height: 64px;
      }
      .prod-info h3 {
        font-size: 1.35rem;
      }
    }
  