
    :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;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: var(--font-body);
      background:
        linear-gradient(90deg, #050505 0%, #050505 74%, #260101 100%);
      overflow-x: clip;
    }



    /* Custom Animated 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;
    }
    
    /* Hover active states for cursor */
    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;
      background: #ffffff;
    }

    /* 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;
      }
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
      pointer-events: none;
      z-index: -2;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(5, 5, 5, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      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;
    }

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

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 100vh;
      overflow: hidden;
      background: #000000;
    }

    .hero-video-alone {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: calc(100vh - 94px);
      display: grid;
      grid-template-columns: minmax(520px, 1.2fr) minmax(320px, 0.72fr);
      align-items: center;
      gap: 64px;
      padding: 56px 0 130px;
    }

    .hero-copy {
      max-width: 760px;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 24px;
      color: var(--accent);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.26em;
      text-transform: uppercase;
    }

    .hero-title,
    .section-title,
    .service-card h3 {
      font-family: var(--font-display);
      text-transform: uppercase;
    }

    .hero-title {
      margin: 0;
      font-size: clamp(3rem, 5.2vw, 4.8rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .hero-title .accent {
      color: var(--accent);
      text-shadow: 0 0 28px rgba(226, 16, 16, 0.24);
    }

    .hero-copy p {
      max-width: 560px;
      margin: 28px 0 34px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 20px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 148px;
      min-height: 52px;
      padding: 14px 24px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(90deg, #c80d0d, #f31a1a);
      box-shadow: 0 14px 34px rgba(226, 16, 16, 0.24);
      border: 1px solid transparent;
    }

    .btn-secondary {
      border: 1px solid rgba(255, 255, 255, 0.42);
      background: rgba(255, 255, 255, 0.02);
    }

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

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: rgba(226, 16, 16, 0.08);
      box-shadow: 0 10px 25px rgba(226, 16, 16, 0.15);
    }

    .hero-card {
      margin-top: 140px;
      margin-left: auto;
      width: min(100%, 390px);
      padding: 20px;
      background: linear-gradient(180deg, rgba(20, 20, 20, 0.74), rgba(9, 9, 9, 0.96));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .hero-preview {
      aspect-ratio: 1.05 / 0.92;
      border: 1px solid rgba(255, 255, 255, 0.09);
      overflow: hidden;
      margin-bottom: 18px;
      background: url("../images/hero_preview.png") center/cover no-repeat;
      position: relative;
    }

    .hero-card h2 {
      margin: 0 0 8px;
      font-family: var(--font-display);
      font-size: 1.8rem;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .hero-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.8;
      font-size: 15px;
    }

    .showreel {
      position: absolute;
      right: calc((100vw - var(--container)) / 2);
      bottom: 36px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 24px;
      background: rgba(8, 8, 8, 0.82);
      border: 1px solid var(--line);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .showreel:hover {
      transform: translateY(-4px);
      border-color: rgba(226, 16, 16, 0.4);
      box-shadow: 0 18px 45px rgba(226, 16, 16, 0.12);
    }

    .play-btn {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      display: grid;
      place-items: center;
      box-shadow: 0 0 0 10px rgba(226, 16, 16, 0.08);
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .showreel:hover .play-btn {
      background: var(--accent);
      transform: scale(1.05);
      box-shadow: 0 0 0 14px rgba(226, 16, 16, 0.15), 0 0 25px rgba(226, 16, 16, 0.45);
    }

    .play-btn::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 4px;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 13px solid #ffffff;
    }

    .showreel strong {
      display: block;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .showreel span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .services {
      padding: 46px 0 80px;
      background: linear-gradient(180deg, rgba(4, 4, 4, 0.98), rgba(7, 7, 7, 1));
    }

    .services-panel {
      background: transparent;
      border: none;
      padding: 34px 0 22px;
      box-shadow: none;
    }

    .services-head {
      margin-bottom: 36px;
      text-align: center;
      display: block;
    }

    .section-title,
    .about-mockup-title,
    .tools-title,
    .cta-title {
      margin: 0;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
      text-transform: uppercase;
      font-family: var(--font-display);
      font-weight: 900;
      background: linear-gradient(90deg, #ffffff 0%, #ff4d4d 50%, #ffffff 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shineText 5s linear infinite;
      padding-right: 0.15em;
      margin-right: -0.15em;
      overflow: visible;
    }

    @keyframes shineText {
      to {
        background-position: 200% center;
      }
    }

    .services-copy {
      display: none;
    }

    .services-showcase-container {
      position: relative;
      width: 100%;
      max-width: 1350px;
      margin: 40px auto 0;
      overflow: visible;
    }

    .services-track {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 480px;
      perspective: 1500px;
      transform-style: preserve-3d;
      width: 100%;
      margin: 0 auto;
    }

    .service-card {
      position: absolute;
      width: 290px;
      height: 410px;
      border-radius: 20px;
      overflow: hidden;
      background: #090909;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
      cursor: pointer;
      transform-origin: center center;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
      will-change: transform, filter;
      outline: none;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.8s ease;
      z-index: 1;
    }

    .service-card.editing::before { background-image: url("../images/service_video_editing.png"); }
    .service-card.vfx::before { background-image: url("../images/service_vfx.png"); }
    .service-card.grading::before { background-image: url("../images/service_color_grading.png"); }
    .service-card.sound::before { background-image: url("../images/service_sound_design.png"); }
    .service-card.mastering::before { background-image: url("../images/service_di_mastering.png"); }

    .service-card:hover::before {
      transform: scale(1.06);
    }

    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
      z-index: 2;
      transition: background 0.4s ease;
    }

    .service-card:hover .service-card-overlay {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(226, 16, 16, 0.15) 50%, rgba(0, 0, 0, 0.2) 100%);
    }

    .service-card:hover {
      border-color: rgba(226, 16, 16, 0.8);
      box-shadow: 0 0 35px rgba(226, 16, 16, 0.3), 0 20px 45px rgba(0, 0, 0, 0.7);
    }

    .service-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px;
      z-index: 3;
      text-align: left;
    }

    .service-card-content h3 {
      font-family: var(--font-display);
      font-size: 20px;
      text-transform: uppercase;
      color: #ffffff;
      margin: 0 0 8px 0;
      letter-spacing: 0.02em;
      line-height: 1.2;
      transition: color 0.3s ease;
    }

    .service-card:hover h3 {
      color: var(--accent);
    }

    .service-card-content p {
      margin: 0;
      font-size: 12.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      opacity: 0.85;
    }

    /* Controls styling */
    .services-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      margin-top: 36px;
      position: relative;
      z-index: 10;
    }

    .services-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(10, 10, 10, 0.6);
      color: #ffffff;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .services-arrow:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.06);
    }

    .services-dots {
      display: flex;
      gap: 8px;
    }

    .services-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .services-dot.active {
      background: var(--accent);
      width: 24px;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
      .services-track {
        height: 420px;
      }
      .service-card {
        width: 240px;
        height: 350px;
      }
      .service-card-content {
        padding: 20px;
      }
      .service-card-content h3 {
        font-size: 17px;
      }
    }

    @media (max-width: 480px) {
      .services-track {
        height: 380px;
      }
      .service-card {
        width: 190px;
        height: 290px;
      }
      .service-card-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
      }
      .service-card-content p {
        font-size: 11px;
        line-height: 1.5;
      }
    }

    .featured-work,
    .process-section {
      padding: 56px 0 64px;
      background: linear-gradient(180deg, rgba(6, 6, 6, 1), rgba(5, 5, 5, 1));
    }

    .featured-panel,
    .process-panel {
      background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(11, 11, 11, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow);
    }

    .featured-panel {
      display: grid;
      grid-template-columns: 330px minmax(0, 1fr);
      gap: 0;
      overflow: hidden;
    }

    .featured-copy {
      padding: 42px 32px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        linear-gradient(135deg, rgba(255, 0, 0, 0.06), transparent 42%);
    }

    .featured-copy .section-title {
      font-size: clamp(2rem, 3.6vw, 3.2rem);
      max-width: 280px;
    }

    .process-copy .section-title {
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      max-width: 100%;
    }

    .section-mark {
      width: 42px;
      height: 22px;
      margin: 22px 0 28px;
      position: relative;
    }

    .section-mark::before,
    .section-mark::after {
      content: "";
      position: absolute;
      left: 0;
      background: var(--accent);
    }

    .section-mark::before {
      top: 0;
      width: 30px;
      height: 2px;
    }

    .section-mark::after {
      top: 0;
      bottom: 0;
      width: 2px;
    }

    .outline-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 168px;
      min-height: 52px;
      padding: 14px 20px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      color: #ffffff;
      background: transparent;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .outline-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(226, 16, 16, 0.55);
    }

    .outline-btn::after {
      content: "->";
      font-size: 12px;
    }

    .director-section {
      position: relative;
      padding: 68px 0 44px;
      background:
        radial-gradient(circle at 15% 12%, rgba(255, 16, 16, 0.18), transparent 28%),
        radial-gradient(circle at 82% 75%, rgba(255, 16, 16, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(4, 4, 4, 1), rgba(3, 3, 3, 1));
      overflow: hidden;
    }

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

    .director-panel {
      position: relative;
      z-index: 1;
      max-width: 1580px;
      margin: 0 auto;
    }

    .director-head {
      text-align: center;
      margin: 0 auto 28px;
      max-width: 760px;
    }

    .director-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .director-eyebrow::before,
    .director-eyebrow::after {
      content: "";
      width: 92px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 16, 16, 0.85), transparent);
    }

    .director-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.3rem, 4.6vw, 4.3rem);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: #ffffff;
    }

    .director-title span {
      color: var(--accent);
      text-shadow: 0 0 24px rgba(255, 16, 16, 0.2);
    }

    .director-title-mark {
      width: 82px;
      height: 3px;
      margin: 14px auto 14px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 16, 16, 0.25), var(--accent), rgba(255, 16, 16, 0.25));
      box-shadow: 0 0 20px rgba(255, 16, 16, 0.25);
    }

    .director-head p {
      margin: 0 auto;
      max-width: 620px;
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.78);
    }

    .director-grid {
      display: grid;
      gap: 18px;
    }

    .director-card {
      position: relative;
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr) 250px;
      gap: 28px;
      align-items: center;
      padding: 22px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(135deg, rgba(255, 16, 16, 0.08), transparent 30%),
        rgba(9, 9, 9, 0.86);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
      overflow: hidden;
      max-width: 1720px;
      margin: 0 auto;
      transform-style: preserve-3d;
      transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(0);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.45s ease;
      will-change: transform;
    }

    .director-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      border-radius: 24px;
      pointer-events: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .director-card:hover::after {
      border-color: rgba(255, 16, 16, 0.32);
      box-shadow: inset 0 0 30px rgba(255, 16, 16, 0.12);
    }

    .director-card.is-tilting {
      box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
    }

    .director-card > * {
      position: relative;
      z-index: 1;
      transform: translateZ(26px);
    }

    .director-portrait {
      position: relative;
      aspect-ratio: 4 / 4.9;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 25%),
        linear-gradient(180deg, #3a3a3a, #141414);
      box-shadow: 0 0 0 1px rgba(255, 16, 16, 0.1), 0 14px 24px rgba(0, 0, 0, 0.42);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateZ(44px);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    }

    .director-portrait::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 28%;
      background: linear-gradient(180deg, transparent, rgba(255, 16, 16, 0.24));
      pointer-events: none;
    }

    .director-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.01);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .director-avatar {
      position: relative;
      z-index: 1;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(0, 0, 0, 0.35);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.92);
      font-family: var(--font-display);
      font-size: 42px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 0 24px rgba(255, 16, 16, 0.18);
    }

    .director-content h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 2.5vw, 2.5rem);
      line-height: 1;
      text-transform: uppercase;
      color: var(--accent);
    }

    .director-role {
      margin: 8px 0 0;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.92);
    }

    .director-role-line {
      width: 56px;
      height: 2px;
      margin: 14px 0 14px;
      background: linear-gradient(90deg, var(--accent), rgba(255, 16, 16, 0.1));
    }

    .director-content p {
      margin: 0;
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.82);
    }

    .director-content strong {
      color: var(--accent);
      font-weight: 700;
    }

    .director-highlights {
      display: grid;
      gap: 14px;
      padding-left: 22px;
      border-left: 1px solid rgba(255, 255, 255, 0.12);
      transform: translateZ(36px);
    }

    .director-highlight {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      transition: transform 0.35s ease;
    }

    .director-highlight-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid rgba(255, 16, 16, 0.28);
      background: rgba(255, 16, 16, 0.08);
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .director-highlight strong,
    .director-imdb-label {
      display: block;
      margin-bottom: 3px;
      font-size: 13px;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .director-highlight span,
    .director-imdb-link {
      font-size: 13px;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.7);
    }

    .director-imdb {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px;
      text-decoration: none;
    }

    .director-imdb-badge {
      padding: 5px 10px;
      border-radius: 8px;
      background: #f5c518;
      color: #111111;
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.04em;
    }

    .director-imdb-wrap {
      margin-top: 6px;
    }

    .director-imdb-link {
      display: block;
      margin-top: 8px;
      word-break: break-word;
      text-decoration: none;
    }

    .director-imdb-link:hover {
      color: #ffffff;
    }

    .director-card.is-tilting .director-portrait {
      box-shadow: 0 24px 40px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 16, 16, 0.18);
    }

    .director-card.is-tilting .director-portrait img {
      transform: scale(1.06);
    }

    .director-card.is-tilting .director-highlight {
      transform: translateX(4px);
    }

    @media (max-width: 1199px) {
      .director-card {
        grid-template-columns: 200px minmax(0, 1fr);
      }

      .director-highlights {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 0;
        padding-top: 18px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }
    }

    @media (max-width: 767px) {
      .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 9;
        background: #000;
      }

      .hero-video-alone {
        object-fit: contain;
        object-position: center center;
      }

      .director-section {
        padding: 58px 0 34px;
      }

      .director-eyebrow::before,
      .director-eyebrow::after {
        width: 44px;
      }

      .director-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
      }

      .director-portrait {
        max-width: 250px;
        width: 100%;
        margin: 0 auto;
      }

      .director-content {
        text-align: center;
      }

      .director-role-line {
        margin-left: auto;
        margin-right: auto;
      }

      .director-highlights {
        grid-template-columns: 1fr;
      }
    }

    /* Projects Section Layout - Pinned Horizontal Scroll */
    .projects-section {
      height: 100vh;
      width: 100%;
      overflow: hidden;
      position: relative;
      background: linear-gradient(180deg, rgba(5, 5, 5, 1), rgba(4, 4, 4, 1));
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    .projects-panel {
      width: 100%;
      height: 100%;
      border: none;
      background: transparent;
      box-shadow: none;
      padding: 6vh 4vw 4vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius: 0;
    }

    .projects-head {
      text-align: center;
      margin-bottom: 2vh;
    }

    .projects-head p {
      max-width: 600px;
      margin: 10px auto 0;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.6;
      font-size: 15px;
    }

    .projects-list-wrapper {
      overflow: hidden;
      width: 100%;
      height: 100%;
      flex: 1;
      display: block;
      position: relative;
    }

    .projects-list {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      width: 400%; /* 4 projects, each is 100% of container width */
      height: 100%;
      will-change: transform;
    }

    .project-item {
      flex: 0 0 25%; /* exactly 1 panel width, i.e., 100% of projects-list-wrapper */
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 4vw;
      box-sizing: border-box;
    }

    .project-card {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 48px;
      width: 100%;
      max-width: 1200px;
      height: 62vh;
      background: rgba(10, 10, 10, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(12px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
      align-items: center;
      box-sizing: border-box;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .project-item:hover .project-card {
      border-color: rgba(255, 16, 16, 0.25);
      box-shadow: 0 30px 60px rgba(255, 16, 16, 0.08), 0 30px 60px rgba(0, 0, 0, 0.8);
    }

    .project-img-wrap {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: #000000;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
      width: 100%;
      height: 100%;
      max-height: 54vh;
    }

    .project-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .project-img-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      border-radius: 16px;
      pointer-events: none;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
      z-index: 2;
    }

    .project-item:hover .project-img-wrap img {
      transform: scale(1.04);
    }

    .project-item:hover .project-img-wrap::after {
      border-color: #ff1010;
      box-shadow: inset 0 0 30px rgba(255, 16, 16, 0.35);
    }

    .project-details {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .project-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      text-transform: uppercase;
      margin: 0 0 20px 0;
      letter-spacing: 0.02em;
      color: #ffffff;
      line-height: 1.1;
      transition: color 0.3s ease;
    }

    .project-item:hover .project-title {
      color: #ff1010;
      text-shadow: 0 0 15px rgba(255, 16, 16, 0.3);
    }

    .project-meta-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .project-meta-row {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.76);
    }

    .project-meta-row strong {
      color: #ffffff;
      font-weight: 600;
      margin-right: 6px;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 0.05em;
    }

    .project-meta-separator {
      color: rgba(255, 16, 16, 0.4);
      margin: 0 10px;
    }

    @media (max-width: 991px) {
      .projects-section {
        height: auto;
        overflow: visible;
        padding: 80px 0;
      }
      .projects-panel {
        height: auto;
        padding: 0 24px;
      }
      .projects-list {
        width: 100%;
        flex-direction: column;
        gap: 40px;
        height: auto;
      }
      .project-item {
        flex: none;
        width: 100%;
        padding: 0;
      }
      .project-card {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
        padding: 16px;
      }
      .project-img-wrap {
        aspect-ratio: 16 / 10;
        max-height: none;
        height: auto;
      }
    }

    .process-panel {
      background: transparent;
      border: none;
      box-shadow: none;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .process-copy {
      text-align: center;
      margin: 0 auto 10px;
      max-width: 600px;
    }

    .process-copy p {
      max-width: 600px;
      margin: 14px auto 0;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.85;
      font-size: 16px;
    }

    /* Circular Workflow Styles */
    .workflow-circle-container {
      position: relative;
      width: 1040px;
      height: 760px;
      margin: 40px auto;
      display: block;
      background: transparent;
    }

    .workflow-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 500px;
      height: 500px;
      transform: translate(-50%, -50%);
      border: 1px dashed rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      pointer-events: none;
      animation: rotateRing 60s linear infinite;
      z-index: 1;
    }

    .workflow-ring-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 410px;
      height: 410px;
      transform: translate(-50%, -50%);
      border: 2px solid transparent;
      border-top-color: rgba(255, 16, 16, 0.4);
      border-bottom-color: rgba(255, 16, 16, 0.4);
      border-radius: 50%;
      pointer-events: none;
      animation: rotateRing 20s linear infinite reverse;
      opacity: 0.6;
      filter: blur(1px);
      z-index: 1;
    }

    .workflow-center {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 240px;
      height: 240px;
      transform: translate(-50%, -50%);
      background: #000000;
      border: 2px solid #ff1010;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 50px rgba(255, 16, 16, 0.45), inset 0 0 25px rgba(255, 16, 16, 0.25);
      text-align: center;
      z-index: 10;
      overflow: visible;
    }

    .workflow-center-subtitle {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .workflow-center-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin: 0;
      white-space: nowrap;
    }

    .workflow-center-icon {
      margin-bottom: 8px;
      color: #ff1010;
      animation: pulsePlay 2s infinite ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .workflow-center-icon svg {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
    }

    @keyframes pulsePlay {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.15); opacity: 1; }
    }

    .workflow-item {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .workflow-node {
      position: absolute;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: #050505;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
      transition: all 0.4s ease;
      color: #ffffff;
      pointer-events: auto;
      cursor: pointer;
      z-index: 11;
    }

    .workflow-node svg {
      width: 24px;
      height: 24px;
      transition: transform 0.4s ease;
    }

    .workflow-text-block {
      position: absolute;
      pointer-events: auto;
      z-index: 12;
      transition: all 0.4s ease;
      width: 190px;
    }

    .workflow-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .workflow-title {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 800;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0 0 4px 0;
    }

    .workflow-desc {
      font-size: 11.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5;
      margin: 0;
    }

    /* Colors and positions per step */
    .step-1 { --step-color: #3b82f6; }
    .step-2 { --step-color: #00d2ff; }
    .step-3 { --step-color: #9d4edd; }
    .step-4 { --step-color: #ff7900; }
    .step-5 { --step-color: #00d2ff; }
    .step-6 { --step-color: #00f5d4; }
    .step-7 { --step-color: #f72585; }
    .step-8 { --step-color: #ffbe0b; }

    /* Nodes coordinates positioning (Radius R=250px, Center 520,380) */
    .step-1 .workflow-node { top: 130px; left: 520px; transform: translate(-50%, -50%); border: 1.5px solid rgba(59, 130, 246, 0.3); box-shadow: 0 0 15px rgba(59, 130, 246, 0.25); color: #3b82f6; }
    .step-2 .workflow-node { top: 203px; left: 697px; transform: translate(-50%, -50%); border: 1.5px solid rgba(0, 210, 255, 0.3); box-shadow: 0 0 15px rgba(0, 210, 255, 0.25); color: #00d2ff; }
    .step-3 .workflow-node { top: 380px; left: 770px; transform: translate(-50%, -50%); border: 1.5px solid rgba(157, 78, 221, 0.3); box-shadow: 0 0 15px rgba(157, 78, 221, 0.25); color: #9d4edd; }
    .step-4 .workflow-node { top: 557px; left: 697px; transform: translate(-50%, -50%); border: 1.5px solid rgba(255, 121, 0, 0.3); box-shadow: 0 0 15px rgba(255, 121, 0, 0.25); color: #ff7900; }
    .step-5 .workflow-node { top: 630px; left: 520px; transform: translate(-50%, -50%); border: 1.5px solid rgba(0, 210, 255, 0.3); box-shadow: 0 0 15px rgba(0, 210, 255, 0.25); color: #00d2ff; }
    .step-6 .workflow-node { top: 557px; left: 343px; transform: translate(-50%, -50%); border: 1.5px solid rgba(0, 245, 212, 0.3); box-shadow: 0 0 15px rgba(0, 245, 212, 0.25); color: #00f5d4; }
    .step-7 .workflow-node { top: 380px; left: 270px; transform: translate(-50%, -50%); border: 1.5px solid rgba(247, 37, 133, 0.3); box-shadow: 0 0 15px rgba(247, 37, 133, 0.25); color: #f72585; }
    .step-8 .workflow-node { top: 203px; left: 343px; transform: translate(-50%, -50%); border: 1.5px solid rgba(255, 190, 11, 0.3); box-shadow: 0 0 15px rgba(255, 190, 11, 0.25); color: #ffbe0b; }

    /* Labels styling */
    .workflow-text-block .workflow-label { color: var(--step-color); }

    /* Text block coordinates positioning */
    .step-1 .workflow-text-block { top: 56px; left: 584px; text-align: left; }
    .step-2 .workflow-text-block { top: 146px; left: 780px; text-align: left; }
    .step-3 .workflow-text-block { top: 326px; left: 850px; text-align: left; }
    .step-4 .workflow-text-block { top: 512px; left: 780px; text-align: left; }
    .step-5 .workflow-text-block { top: 682px; left: 520px; transform: translateX(-50%); text-align: center; width: 240px; }
    .step-6 .workflow-text-block { top: 512px; left: 70px; text-align: right; }
    .step-7 .workflow-text-block { top: 326px; left: -10px; text-align: right; width: 200px; }
    .step-8 .workflow-text-block { top: 146px; left: 70px; text-align: right; }

    /* SVG Lines & Dots styling */
    .workflow-svg-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    .workflow-path {
      fill: none;
      stroke-width: 1.5;
      stroke-opacity: 0.25;
      transition: stroke-opacity 0.4s ease, stroke-width 0.4s ease, filter 0.4s ease;
    }

    .workflow-dot {
      transition: fill-opacity 0.4s ease, r 0.4s ease;
      fill-opacity: 0.4;
    }

    /* Hover dynamic states */
    .workflow-item:hover .workflow-node {
      transform: translate(-50%, -50%) scale(1.15);
      box-shadow: 0 0 25px var(--step-color);
      border-color: var(--step-color);
      background: #000000;
    }

    .workflow-item:hover .workflow-node svg {
      transform: scale(1.1);
    }

    .workflow-item:hover .workflow-text-block h3 {
      color: var(--step-color);
    }

    .workflow-item:hover .workflow-text-block .workflow-desc {
      color: rgba(255, 255, 255, 0.85);
    }

    /* SVG Leader Lines triggers */
    .workflow-circle-container:has(.workflow-item:hover) .workflow-path {
      stroke-opacity: 0.15;
    }
    .workflow-circle-container:has(.workflow-item:hover) .workflow-dot {
      fill-opacity: 0.15;
    }

    .workflow-item.step-1:hover ~ .workflow-svg-lines .path-step-1 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #3b82f6); }
    .workflow-item.step-2:hover ~ .workflow-svg-lines .path-step-2 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #00d2ff); }
    .workflow-item.step-3:hover ~ .workflow-svg-lines .path-step-3 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #9d4edd); }
    .workflow-item.step-4:hover ~ .workflow-svg-lines .path-step-4 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #ff7900); }
    .workflow-item.step-6:hover ~ .workflow-svg-lines .path-step-6 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #00f5d4); }
    .workflow-item.step-7:hover ~ .workflow-svg-lines .path-step-7 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #f72585); }
    .workflow-item.step-8:hover ~ .workflow-svg-lines .path-step-8 { stroke-opacity: 1; stroke-width: 2.2; filter: drop-shadow(0 0 6px #ffbe0b); }

    .workflow-item.step-1:hover ~ .workflow-svg-lines .dot-step-1 { fill-opacity: 1; r: 4.5; }
    .workflow-item.step-2:hover ~ .workflow-svg-lines .dot-step-2 { fill-opacity: 1; r: 4.5; }
    .workflow-item.step-3:hover ~ .workflow-svg-lines .dot-step-3 { fill-opacity: 1; r: 4.5; }
    .workflow-item.step-4:hover ~ .workflow-svg-lines .dot-step-4 { fill-opacity: 1; r: 4.5; }
    .workflow-item.step-6:hover ~ .workflow-svg-lines .dot-step-6 { fill-opacity: 1; r: 4.5; }
    .workflow-item.step-7:hover ~ .workflow-svg-lines .dot-step-7 { fill-opacity: 1; r: 4.5; }
    .workflow-item.step-8:hover ~ .workflow-svg-lines .dot-step-8 { fill-opacity: 1; r: 4.5; }

    @keyframes rotateRing {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @media (max-width: 1100px) {
      .workflow-circle-container {
        transform: scale(0.85);
        transform-origin: center center;
        margin: -20px auto;
      }
    }

    @media (max-width: 920px) {
      .workflow-circle-container {
        transform: scale(0.7);
        transform-origin: center center;
        margin: -70px auto;
      }
    }

    /* Mobile workflow styling */
    .workflow-mobile-list {
      display: none;
    }

    @keyframes rotateRing {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @media (max-width: 1024px) {
      .process-panel {
        text-align: center;
      }
      .process-copy {
        max-width: 100%;
        margin: 0 auto;
      }
      .process-copy p {
        max-width: 500px;
      }
    }

    @media (max-width: 768px) {
      .process-section {
        padding: 48px 0 110px;
      }

      .process-panel {
        padding: 0 6px;
      }

      .workflow-circle-container {
        display: none;
      }

      .workflow-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 26px;
        width: 100%;
      }

      .workflow-mobile-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        background:
          linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 16px 15px;
        border-radius: 14px;
        text-align: left;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
      }

      .workflow-mobile-item .workflow-icon-box {
        margin: 0;
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.015);
      }

      .workflow-mobile-item .workflow-icon-box svg {
        display: block;
        margin: 0 auto;
      }

      .workflow-mobile-item > div:last-child {
        flex: 1 1 auto;
        min-width: 0;
      }

      .workflow-mobile-item h3 {
        margin: 1px 0 0;
        font-family: var(--font-display);
        font-size: 16px;
        line-height: 1.15;
        letter-spacing: 0;
        text-transform: uppercase;
        color: #fff;
      }

      .workflow-mobile-item .workflow-step-num {
        display: inline-block;
        margin: 0 0 4px 0;
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
      }

      .workflow-mobile-item .workflow-desc {
        margin-top: 7px !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.68) !important;
      }

      .whatsapp-float-btn {
        right: 16px;
        bottom: 16px;
        padding: 10px 16px;
        font-size: 12px;
      }
    }

    /* About Us Section Styles */
    .about-section {
      padding: 120px 0 60px;
      background: linear-gradient(180deg, rgba(4, 4, 4, 1), rgba(5, 5, 5, 1));
      position: relative;
    }

    .about-panel {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
      align-items: center;
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Left Side: Mockup Visual camera lens design */
    .about-visual-container {
      position: relative;
      width: 100%;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-lens-only-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      border: none;
      box-shadow: none;
      transition: transform 0.5s ease;
    }

    .about-lens-only-img:hover {
      transform: scale(1.02);
    }

    .about-camera-flash {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      z-index: 3;
      background:
        radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 18%, rgba(255, 255, 255, 0.26) 42%, transparent 66%);
      mix-blend-mode: screen;
    }

    .about-camera-vignette {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%, transparent 78%, rgba(255, 0, 0, 0.06)),
        radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.28) 100%);
      opacity: 0.8;
    }

    .about-camera-click {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(4, 4, 4, 0.55);
      backdrop-filter: blur(8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
      opacity: 0;
      transform: translateY(-10px);
    }

    .about-camera-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ff2b2b;
      box-shadow: 0 0 12px rgba(255, 16, 16, 0.5);
    }

    .about-camera-click span {
      color: rgba(255, 255, 255, 0.9);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .about-visual-container:hover .about-camera-flash {
      animation: aboutHoverFlash 0.55s ease-out;
    }

    @keyframes aboutHoverFlash {
      0% {
        opacity: 0;
      }
      20% {
        opacity: 0.95;
      }
      55% {
        opacity: 0.18;
      }
      100% {
        opacity: 0;
      }
    }

    /* Right Side Content */
    .about-mockup-content {
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Watermark rotating logo */
    .about-watermark-logo {
      position: absolute;
      right: 0;
      top: 10px;
      width: 120px;
      height: 120px;
      opacity: 0.07;
      pointer-events: none;
      z-index: 1;
    }

    /* Eyebrows matching mockup exactly */
    .about-eyebrow-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .about-eyebrow {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      color: var(--accent);
      text-transform: uppercase;
    }

    .about-eyebrow-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 16, 16, 0.35), transparent);
    }

    .about-mockup-title {
      margin: 0 0 32px 0;
      text-align: center;
    }

    .about-paragraphs {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 40px;
      max-width: 680px;
      z-index: 2;
    }

    .about-paragraphs p {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      margin: 0;
    }

    /* Achievements card deck horizontal layout */
    .about-achievements-title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .about-achievements-title {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      color: var(--accent);
      text-transform: uppercase;
    }

    .about-achievements-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 16, 16, 0.35), transparent);
    }

    .about-stats-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      width: 100%;
    }

    .about-stat-card {
      background: rgba(12, 12, 12, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease;
    }

    .about-stat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      border-radius: 16px;
      pointer-events: none;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .about-stat-card:hover {
      transform: translateY(-4px);
      background: rgba(16, 16, 16, 0.75);
    }

    .about-stat-card:hover::before {
      border-color: rgba(255, 16, 16, 0.3);
      box-shadow: inset 0 0 15px rgba(255, 16, 16, 0.15);
    }

    .about-stat-icon-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .about-stat-icon {
      font-size: 18px;
      color: var(--accent);
      filter: drop-shadow(0 0 5px rgba(255, 16, 16, 0.4));
    }

    .about-stat-value {
      font-family: var(--font-display);
      font-size: clamp(2rem, 2.8vw, 2.6rem);
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
    }

    .about-stat-label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.35;
    }

    /* Watermark SVG styling */
    .itm-watermark-svg {
      width: 100%;
      height: 100%;
      animation: rotateWatermark 30s linear infinite;
    }

    @keyframes rotateWatermark {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (max-width: 1199px) {
      .about-panel {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .about-visual-container {
        justify-content: center;
        height: auto;
        aspect-ratio: 1469 / 1071;
      }
      .about-visual-lens-card {
        width: 75%;
      }
    }

    @media (max-width: 768px) {
      .about-achievements-title-row {
        margin-bottom: 16px;
      }

      .about-achievements-title {
        font-size: 11px;
        letter-spacing: 0.13em;
      }

      .about-stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .about-stat-card {
        min-height: 132px;
        padding: 16px 15px 16px;
        gap: 12px;
        border-radius: 14px;
      }

      .about-stat-icon-row {
        align-items: center;
        gap: 10px;
      }

      .about-stat-icon {
        font-size: 17px;
      }

      .about-stat-value {
        font-size: clamp(1.85rem, 7.2vw, 2.2rem);
        line-height: 1;
      }

      .about-stat-label {
        font-size: 11px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.8);
      }

      .about-visual-container {
        height: auto;
        aspect-ratio: 1469 / 1071;
      }
      .about-visual-lens-card {
        width: 100%;
      }
      .about-sidebar-text {
        display: none;
      }
      .about-overlay-card {
        left: 20px;
      }
    }

    @media (max-width: 480px) {
      .about-achievements-title-row {
        gap: 10px;
        margin-bottom: 18px;
      }

      .about-stats-cards {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .about-stat-card {
        display: grid;
        grid-template-columns: 46px 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        min-height: unset;
        padding: 16px;
        gap: 2px 14px;
      }

      .about-stat-icon-row {
        display: contents;
      }

      .about-stat-icon {
        grid-column: 1;
        grid-row: 1 / 3;
        font-size: 20px;
        justify-self: center;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
      }

      .about-stat-value {
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
        text-align: left;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.1;
      }

      .about-stat-label {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin-top: 0;
        font-size: 13px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.7);
        max-width: none;
      }
    }

    .tools-section,
    .testimonial-section {
      padding: 0 0 10px;
      background: linear-gradient(180deg, rgba(4, 4, 4, 1), rgba(5, 5, 5, 1));
    }

    .tools-panel,
    .testimonial-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;
    }

    .tools-panel {
      position: relative;
      padding: 42px 34px 38px;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent),
        linear-gradient(180deg, rgba(8, 8, 8, 0.99), rgba(10, 10, 10, 0.99));
    }

    .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;
    }

    /* Tools & Technology Marquee CSS Layout */
    .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;
    }

    /* Left and right fade-out overlay masks */
    .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, #050505 0%, transparent 100%);
    }

    .tools-marquee-row-wrapper::after {
      right: 0;
      background: linear-gradient(270deg, #050505 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;
    }

    /* Pause scroll on hover to allow card flips */
    .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);
        }
      }
    }

    /* Smaller tool card design: 150px square */
    .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;
    }

    /* Red glow backdrop */
    .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;
    }

    /* Traveling border line animation elements */
    .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) {
      .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;
      }
    }

    .home-contact-section {
      position: relative;
      padding: 72px 0 96px;
      background:
        radial-gradient(circle at 20% 18%, rgba(255, 16, 16, 0.1), transparent 26%),
        radial-gradient(circle at 85% 78%, rgba(255, 16, 16, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(4, 4, 4, 1), rgba(3, 3, 3, 1));
      overflow: hidden;
    }

    .home-contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.18;
      pointer-events: none;
    }

    .home-contact-wrap {
      position: relative;
      z-index: 1;
      max-width: 1380px;
      margin: 0 auto;
      padding: 48px 40px 40px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(7, 7, 7, 0.94)),
        radial-gradient(circle at 20% 18%, rgba(255, 16, 16, 0.08), transparent 28%);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
      overflow: hidden;
    }

    .home-contact-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.24;
      pointer-events: none;
    }

    .home-contact-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255, 16, 16, 0.1);
      pointer-events: none;
    }

    .home-contact-head {
      margin: 0 auto 56px;
      max-width: 860px;
      text-align: center;
    }

    .home-contact-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 4.8rem);
      line-height: 0.95;
      text-transform: uppercase;
      color: #ff9da3;
    }

    .home-contact-head p {
      margin: 22px auto 0;
      max-width: 560px;
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.62);
    }

    .home-contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
      gap: 42px;
      align-items: start;
    }

    .home-contact-info-title,
    .home-contact-form-title {
      margin: 0 0 28px;
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 2.2vw, 2.4rem);
      text-transform: uppercase;
      color: #ffffff;
    }

    .home-contact-info-list {
      display: grid;
      gap: 18px;
    }

    .home-contact-card,
    .home-contact-form-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(9, 9, 9, 0.6);
      box-shadow: none;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .home-contact-card::before,
    .home-contact-form-panel::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 16, 16, 0.2), transparent 85%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .home-contact-card:hover::before,
    .home-contact-form-panel:hover::before {
      opacity: 1;
    }

    .home-contact-card::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 3px;
      background: var(--accent);
      transform: translateX(-50%);
      box-shadow: 0 0 14px rgba(255, 16, 16, 0.65);
      transition: width 0.35s ease;
    }

    .home-contact-card:hover::after {
      width: 100%;
    }

    .home-contact-card,
    .home-contact-form-panel,
    .home-contact-card *,
    .home-contact-form-panel * {
      position: relative;
      z-index: 1;
    }

    .home-contact-card {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 24px 24px 22px;
      transition: border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .home-contact-card:hover,
    .home-contact-form-panel:hover {
      border-color: rgba(226, 16, 16, 0.35);
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55), 0 0 24px rgba(226, 16, 16, 0.12);
    }

    .home-contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(226, 16, 16, 0.28);
      background: rgba(226, 16, 16, 0.08);
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    }

    .home-contact-card:hover .home-contact-icon {
      transform: scale(1.08);
      background: rgba(226, 16, 16, 0.14);
      box-shadow: 0 0 18px rgba(226, 16, 16, 0.18);
    }

    .home-contact-copy h4 {
      margin: 0 0 6px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
    }

    .home-contact-copy a,
    .home-contact-copy p {
      margin: 0;
      font-size: 15px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.84);
    }

    .home-contact-copy a {
      display: block;
    }

    .home-contact-copy a:hover {
      color: var(--accent);
    }

    .home-contact-form-panel {
      padding: 28px 28px 30px;
      min-height: 100%;
    }

    .home-contact-form {
      display: grid;
      gap: 18px;
    }

    .home-contact-field label {
      display: block;
      margin-bottom: 10px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
    }

    .home-contact-field input,
    .home-contact-field textarea {
      width: 100%;
      padding: 17px 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
      color: #ffffff;
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .home-contact-field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .home-contact-field input::placeholder,
    .home-contact-field textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .home-contact-field input:focus,
    .home-contact-field textarea:focus {
      border-color: rgba(226, 16, 16, 0.45);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 0 16px rgba(226, 16, 16, 0.1);
    }

    .home-contact-submit {
      width: fit-content;
      min-width: 170px;
      padding: 18px 28px;
      border: none;
      background: linear-gradient(90deg, #d00e0e, #ff1a1a);
      color: #000000;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 18px 36px rgba(226, 16, 16, 0.24);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .home-contact-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 44px rgba(226, 16, 16, 0.35);
    }

    @media (max-width: 991px) {
      .home-contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767px) {
      .home-contact-section {
        padding: 60px 0 74px;
        overflow: visible;
      }

      .home-contact-wrap {
        width: 100%;
        padding: 28px 16px 22px;
        overflow: visible;
      }

      .home-contact-head {
        margin-bottom: 38px;
      }

      .home-contact-form-panel {
        width: 100%;
        min-width: 0;
        padding: 24px 16px;
      }

      .home-contact-card {
        width: 100%;
        min-width: 0;
        padding: 20px 16px;
      }

      .home-contact-grid,
      .home-contact-info,
      .home-contact-info-list,
      .home-contact-copy,
      .home-contact-form,
      .home-contact-field {
        width: 100%;
        min-width: 0;
      }

      .home-contact-copy a,
      .home-contact-copy p {
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      .home-contact-field input,
      .home-contact-field textarea {
        display: block;
        max-width: 100%;
      }

      .home-contact-submit {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .home-contact-section {
        padding: 44px 0 56px;
      }

      .home-contact-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.02;
      }

      .home-contact-grid {
        gap: 30px;
      }

      .home-contact-card {
        gap: 12px;
      }

      .home-contact-icon {
        width: 40px;
        height: 40px;
      }
    }



    .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;
    }

    /* 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;
    }

    .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%);
    }

    @keyframes slowZoom {
      from { transform: scale(1.03) translateX(0); }
      to { transform: scale(1.09) translateX(-1.2%); }
    }

    @keyframes scanMove {
      from { transform: translateX(-24px); }
      to { transform: translateX(24px); }
    }

    @media (max-width: 1240px) {
      .hero-inner,
      .services-head,
      .featured-panel,
      .process-panel {
        grid-template-columns: 1fr;
      }

      .hero-card {
        margin: 10px 0 0;
      }

      .showreel {
        right: 32px;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .featured-copy,
      .process-copy {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 0;
      }

      .process-steps::before {
        left: 18%;
        right: 18%;
      }

      .why-panel {
        grid-template-columns: 1fr;
      }

      .tools-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }



      .why-visual {
        min-height: 280px;
      }

      .why-copy {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .why-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
      }

      .why-stat:nth-child(2) {
        border-right: 0;
      }

      .why-stat:nth-child(1),
      .why-stat:nth-child(2) {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
    }

    @media (max-width: 860px) {
      :root {
        --container: calc(100% - 24px);
      }

      .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
      }

      .site-nav {
        gap: 14px 18px;
        flex-wrap: wrap;
      }

      .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 0 108px;
      }

      .hero-title {
        font-size: clamp(3.2rem, 14vw, 5rem);
      }

      .hero-copy p {
        font-size: 17px;
      }

      .showreel {
        left: 18px;
        right: 18px;
        bottom: 18px;
        justify-content: flex-start;
        max-width: calc(100% - 36px);
      }

      .services {
        padding-top: 22px;
      }

      .services-panel {
        padding: 24px 18px 18px;
        overflow: hidden;
      }

      .services-copy {
        padding-top: 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .featured-slider,
      .process-steps {
        grid-template-columns: 1fr;
      }

      .slider-arrow {
        display: none;
      }

      .work-card {
        min-height: 280px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .process-steps {
        padding: 28px 14px 22px;
      }

      .process-steps::before {
        display: none;
      }

      .step {
        padding: 0 4px;
      }

      .why-visual {
        min-height: 220px;
      }

      .lens-core {
        left: 28px;
        top: 52px;
        width: 250px;
        height: 116px;
      }

      .lens-core::before {
        width: 96px;
        height: 96px;
        right: 16px;
        top: 10px;
      }

      .lens-core::after {
        width: 88px;
        height: 76px;
        left: 12px;
        top: 18px;
      }

      .lens-mount {
        left: 14px;
        bottom: 28px;
        width: 68px;
        height: 42px;
      }

      .why-stats {
        grid-template-columns: 1fr;
      }

      .tools-panel {
        padding: 28px 18px 24px;
        overflow: hidden;
      }

      .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .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;
      }

      .tool-badge {
        width: 64px;
        height: 64px;
        font-size: 1.45rem;
      }



      .why-stat,
      .why-stat:nth-child(1),
      .why-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 16px;
      }

      .why-stat:last-child {
        border-bottom: 0;
      }
    }

    @media (max-width: 520px) {
      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
      }

      .container,
      .header-inner,
      .hero-inner,
      .footer-inner,
      .footer-bottom {
        width: min(100%, var(--container));
        max-width: 100%;
      }

      .hero-card,
      .services-panel,
      .featured-panel,
      .process-panel,
      .projects-panel,
      .tools-panel,
      .cta-panel {
        max-width: 100%;
      }

      .services-showcase-container,
      .services-track,
      .projects-list-wrapper,
      .tools-marquee-container {
        max-width: 100%;
        overflow: hidden;
      }

      .service-card {
        max-width: calc(100vw - 56px);
      }

      .showreel {
        left: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
        padding: 14px 16px;
      }

      .whatsapp-float-btn {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
      }
      .whatsapp-float-btn svg {
        width: 24px;
        height: 24px;
      }

    }

    @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;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .director-card,
      .director-portrait,
      .director-portrait img,
      .director-highlight,
      .cta-panel,
      .cta-head,
      .contact-info,
      .contact-form-container {
        transition: none;
      }
    }

    /* Responsive Header & Navigation (Mobile Hamburg Menu) */
    .menu-toggle {
      display: none;
    }

    @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;
      }

      /* Premium arrow suffix on links matching mockup screenshot */
      .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);
      }
    }

    /* CLIENT MARQUEE SHOWCASE */
    .client-showcase-section {
      padding: 40px 0;
      background: rgba(4, 4, 4, 0.45);
      position: relative;
      z-index: 2;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .marquee-container {
      overflow: hidden;
      width: 100%;
      position: relative;
    }

    .marquee-container::before,
    .marquee-container::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 150px;
      z-index: 2;
      pointer-events: none;
    }

    .marquee-container::before {
      left: 0;
      background: linear-gradient(to right, #040404, transparent);
    }

    .marquee-container::after {
      right: 0;
      background: linear-gradient(to left, #040404, transparent);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 35s linear infinite;
    }

    .marquee-list {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 60px;
      padding: 0 30px;
    }

    .marquee-item {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 175px; /* Enlarge logo width even more */
      height: 75px; /* Enlarge logo height even more */
      opacity: 0.75;
      transition: all 0.4s var(--ease);
    }

    .marquee-item:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    .marquee-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    @keyframes marqueeScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* 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;
      }
    }

    /* TESTIMONIALS SECTION */
    .testimonials-section {
      padding: 100px 0;
      background: linear-gradient(180deg, rgba(4, 4, 4, 0.95) 0%, rgba(7, 7, 7, 1) 100%);
      position: relative;
      overflow: hidden;
    }

    .testimonials-container {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      padding: 0 40px;
    }

    .testimonial-wrapper {
      position: relative;
      min-height: 280px;
    }

    .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(15px);
      pointer-events: none;
      transition: opacity 0.5s ease, transform 0.5s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }

    .testimonial-slide.active {
      position: relative;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .quote-icon-decor {
      font-size: 5rem;
      color: rgba(226, 16, 16, 0.15);
      line-height: 0.1;
      margin-bottom: 24px;
      font-family: serif;
      user-select: none;
    }

    .testimonial-text {
      font-size: clamp(1.2rem, 2.5vw, 1.55rem);
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.88);
      font-style: italic;
      font-weight: 500;
      max-width: 780px;
      margin: 0 auto;
    }

    .testimonial-client {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
    }

    .client-avatar {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      object-fit: cover;
      margin-bottom: 12px;
      box-shadow: 0 4px 15px rgba(226, 16, 16, 0.2);
    }

    .client-name {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }

    .client-meta {
      font-size: 0.85rem;
      color: var(--muted);
      margin: 4px 0 0;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* Slider Controls */
    .testimonial-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .testimonial-arrow {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .testimonial-arrow:hover {
      background: rgba(226, 16, 16, 0.1);
      border-color: rgba(226, 16, 16, 0.4);
      color: var(--accent);
      transform: scale(1.05);
    }

    .testimonial-dots {
      display: flex;
      gap: 10px;
    }

    .testimonial-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .testimonial-dot.active {
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
      transform: scale(1.2);
    }
  