:root {
      --c-bg: #090909;
      --c-black: #000000;
      --c-lime: #ccff00;
      --c-white: #ffffff;
      --c-gray-1: #111111;
      --c-gray-2: #222222;
      --c-gray-text: #aaaaaa;
      --f-display: 'Oswald', sans-serif;
      --f-body: 'Inter', sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: var(--f-body);
      background-color: var(--c-bg);
      color: var(--c-white);
      -webkit-font-smoothing: antialiased;
    }

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

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

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .wrap {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }

    
    /* HERO SCROLL INDICATOR (DESKTOP ABSOLUTE POSITIONING) */
    .hero-scroll-indicator {
      position: absolute;
      bottom: 25px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none;
      pointer-events: auto;
    }

    .mouse-icon {
      width: 24px;
      height: 36px;
      border: 2px solid var(--c-lime, #ccff00);
      border-radius: 14px;
      position: relative;
      display: flex;
      justify-content: center;
      padding-top: 6px;
      box-shadow: 0 0 15px rgba(204, 255, 0, 0.4);
      background: rgba(0, 0, 0, 0.7);
    }

    .mouse-wheel {
      width: 4px;
      height: 8px;
      background: var(--c-lime, #ccff00);
      border-radius: 2px;
      animation: mouse-scroll-anim 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1);
    }

    .scroll-text {
      font-family: var(--f-display, 'Oswald', sans-serif);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--c-lime, #ccff00);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 1);
      white-space: nowrap;
    }

    @keyframes mouse-scroll-anim {
      0% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(12px); }
    }


@media(max-width: 1024px) {
      .wrap {
        padding: 0 20px;
      }
    }

    /* NAV */
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 40px;
      background: transparent;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      border-bottom: 1px solid transparent;
      transition: background 0.3s, padding 0.3s, border-bottom 0.3s;
    }

    .nav.scrolled {
      background: #000;
      padding: 20px 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-logo {
      margin-left: 40px;
    }

    .nav-logo img {
      height: 52px;
      transition: height 0.4s ease;
    }

    .nav.scrolled .nav-logo img {
      height: 28px;
    }

    .nav-links {
      display: flex;
      gap: 35px;
    }

    .nav-links a {
      font-family: var(--f-display);
      font-size: 0.95rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--c-white);
      transition: color 0.3s;
    }

    .nav-links a.active,
    .nav-links a:hover {
      color: var(--c-lime);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-phone {
      font-family: var(--f-display);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--c-lime);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-phone svg {
      width: 16px;
      height: 16px;
    }

    .nav-btn {
      background: var(--c-lime);
      color: var(--c-black);
      font-family: var(--f-display);
      font-weight: 600;
      text-transform: uppercase;
      padding: 10px 20px;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      transition: opacity 0.3s;
    }

    .nav-btn:hover {
      opacity: 0.9;
    }

    @media(max-width: 900px) {

      .nav-links,
      .nav-phone {
        display: none;
      }

      .nav {
        padding: 20px;
      }
    }

        /* HERO NATIVE STICKY PINNING (NO GSAP PIN SPACER GAP) */
    .hero {
      position: relative;
      height: 180vh;
      background: #000;
      overflow: visible;
      margin: 0;
      padding: 0;
    }

    .hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero-bg canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.75;
      pointer-events: none;
    }

    .hero-bg-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-hud {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .hud-left {
      position: absolute;
      top: 40px;
      bottom: 40px;
      left: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 20px;
    }

    .hud-right {
      position: absolute;
      top: 40px;
      right: 40px;
    }

    .hud-cross {
      position: relative;
      width: 20px;
      height: 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
    }

    .hud-cross::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -10px;
      right: -10px;
      height: 1px;
      background: rgba(255, 255, 255, 0.4);
    }

    .hud-cross::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -10px;
      bottom: -10px;
      width: 1px;
      background: rgba(255, 255, 255, 0.4);
    }

    .hud-line {
      flex: 1;
      width: 1px;
      background: rgba(255, 255, 255, 0.2);
      margin: 20px 0;
      position: relative;
    }

    .hud-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-90deg);
      font-family: var(--f-mono, monospace);
      font-size: 0.65rem;
      color: var(--c-lime);
      letter-spacing: 0.25em;
      white-space: nowrap;
      background: #000;
      padding: 10px 0;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .hero-text-col {
      padding-left: 60px;
      /* offset for HUD */
    }

    .hero-lbl {
      font-family: var(--f-display);
      color: var(--c-lime);
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-lbl::before {
      content: "";
      width: 20px;
      height: 2px;
      background: var(--c-lime);
    }

    .hero-title {
      font-family: var(--f-display);
      font-size: clamp(3rem, 5vw, 6rem);
      font-weight: 700;
      line-height: 0.95;
      text-transform: uppercase;
      margin: 0 0 30px 0;
      letter-spacing: -0.02em;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      white-space: nowrap;
    }

    .hero-title .lime {
      color: var(--c-lime);
    }

    .hero-p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #cccccc;
      max-width: 420px;
      margin-bottom: 40px;
    }

    .hero-btns {
      display: flex;
      gap: 20px;
    }

    .btn-lime-hero {
      background: var(--c-lime);
      color: var(--c-black);
      font-family: var(--f-display);
      font-weight: 600;
      text-transform: uppercase;
      padding: 16px 32px;
      font-size: 1rem;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      transition: background 0.3s, opacity 0.3s;
      border: 1px solid var(--c-lime);
    }

    .btn-lime-hero:hover {
      background: transparent;
      color: var(--c-lime);
    }

    .btn-outline-hero {
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: var(--c-white);
      font-family: var(--f-display);
      font-weight: 600;
      text-transform: uppercase;
      padding: 16px 32px;
      font-size: 1rem;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      transition: border-color 0.3s, background 0.3s;
    }

    .btn-outline-hero:hover {
      border-color: var(--c-lime);
      color: var(--c-lime);
    }

    .hero-img {
      position: relative;
      right: -80px;
      transform: scale(1.15);
    }

    .hero-img img {
      width: 100%;
      max-width: none;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    }

    .hero-social {
      position: absolute;
      bottom: 40px;
      right: 40px;
      display: flex;
      gap: 20px;
      align-items: center;
      font-family: var(--f-display);
      font-size: 1rem;
      color: var(--c-lime);
      letter-spacing: 0.1em;
      z-index: 3;
    }

    .hero-social a {
      color: var(--c-white);
      transition: color 0.3s;
    }

    .hero-social a:hover {
      color: var(--c-lime);
    }

    @media(max-width: 1024px) {
      .hero {
        min-height: auto;
        padding: 120px 0 60px;
        display: block;
      }

      .hero-content {
        grid-template-columns: 1fr;
      }

      .hero-img {
        right: 0;
        transform: scale(1);
        margin-top: 40px;
      }

      .hero-social {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 40px;
        justify-content: flex-start;
        padding-left: 40px;
      }

      .hud-left {
        display: none;
      }

      .hero-text-col {
        padding-left: 0;
      }
    }

    /* SERVICES TICKER MARQUEE */
    .srv-ticker {
      background: #f4f4f0;
      border-top: 2px solid #111;
      border-bottom: 2px solid #111;
      padding: 28px 0;
      overflow: hidden;
      position: relative;
    }

    .srv-ticker-track {
      display: flex;
      width: max-content;
    }

    /* Ticker marquee continuous scroll - no pause on hover */

    .srv-ticker-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 60px;
      white-space: nowrap;
      border-right: 2px solid #111;
    }

    .srv-ticker-item .tick-num {
      font-family: var(--f-display);
      font-size: 0.85rem;
      font-weight: 700;
      color: #999;
      letter-spacing: 0.05em;
    }

    .srv-ticker-item .tick-name {
      font-family: var(--f-display);
      font-size: 1.6rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #111;
      letter-spacing: -0.01em;
      transition: color 0.2s;
    }

    .srv-ticker-item:hover .tick-name {
      color: #000000 !important;
      text-decoration: underline 3px var(--c-lime);
    }

    .srv-ticker-item .tick-dot {
      width: 8px;
      height: 8px;
      background: var(--c-lime);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes ticker-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* PORTFOLIO */
    .port {
      padding: 100px 0;
      background: #0d0d0d;
    }

    .port-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .port-lbl {
      font-family: var(--f-display);
      color: var(--c-lime);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .port-title {
      font-family: var(--f-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      margin: 0;
    }

    .port-title .lime {
      color: var(--c-lime);
    }

    .port-view-all {
      font-family: var(--f-display);
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-lime);
      border-bottom: 1px solid var(--c-lime);
      padding-bottom: 4px;
      white-space: nowrap;
      align-self: flex-end;
      transition: opacity 0.2s;
    }

    .port-view-all:hover {
      opacity: 0.7;
    }

    .port-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 260px;
      gap: 12px;
    }

    .port-card {
      position: relative;
      overflow: hidden;
      background: var(--c-gray-1);
      display: block;
    }

    .port-card.feat-main {
      grid-column: span 2;
      grid-row: span 2;
    }

    .port-card.feat-wide {
      grid-column: span 2;
      grid-row: span 1;
    }

    .port-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s, opacity 0.4s;
      opacity: 0.75;
    }

    .port-card:hover img {
      transform: scale(1.06);
      opacity: 1;
    }

    .port-meta {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 25px 25px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .port-meta h3 {
      font-family: var(--f-display);
      font-size: 1.3rem;
      font-weight: 600;
      text-transform: uppercase;
      margin: 0;
      color: #fff;
    }

    .port-tag {
      font-family: var(--f-display);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--c-lime);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 6px;
      display: block;
    }

    .port-arr {
      color: var(--c-lime);
      font-size: 1.4rem;
    }

    @media(max-width: 900px) {
      .port-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 8px;
      }

      .port-card.feat-main,
      .port-card.feat-wide {
        grid-column: span 1;
        grid-row: span 1;
      }

      .port-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }

    /* PROCESS TIMELINE */
    .proc {
      background: #f4f4f0;
      padding: 120px 40px;
      border-top: 2px solid #111;
      border-bottom: 2px solid #111;
    }

    .proc-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .proc-hdr {
      margin-bottom: 80px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 1px solid rgba(17, 17, 17, 0.15);
      padding-bottom: 40px;
    }

    .proc-hdr h2 {
      font-family: var(--f-display);
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 0.95;
      color: #111;
      margin: 0;
      letter-spacing: -0.03em;
    }

    .proc-hdr h2 span {
      color: #111;
    }

    .proc-hdr p {
      font-size: 1rem;
      color: #666;
      font-weight: 500;
      max-width: 280px;
      text-align: right;
      line-height: 1.5;
      margin: 0;
    }

    .proc-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
    }

    /* Line spans full width — dots sit on top via z-index */
    .proc-timeline::before {
      content: "";
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      height: 2px;
      background: #111;
      z-index: 0;
    }

    .proc-step {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
      z-index: 1;
      padding-right: 24px;
    }

    .proc-step-dot {
      width: 56px;
      height: 56px;
      background: #111;
      color: var(--c-lime);
      font-family: var(--f-display);
      font-size: 1rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      flex-shrink: 0;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 2;
    }

    .proc-step-name {
      font-family: var(--f-display);
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #111;
      margin-bottom: 10px;
      letter-spacing: 0.02em;
    }

    .proc-step-desc {
      font-family: var(--f-body);
      font-size: 0.88rem;
      color: #666;
      line-height: 1.55;
    }

    @media(max-width: 900px) {
      .proc {
        padding: 80px 20px;
      }

      .proc-hdr {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .proc-hdr p {
        text-align: left;
        max-width: 100%;
      }

      .proc-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .proc-timeline::before {
        display: none;
      }
    }

    @media(max-width: 600px) {
      .proc-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* SERVICES STRIP — single horizontal row */
    .srv-strip {
      background: #111;
      padding: 80px 40px;
    }

    .srv-strip-inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .srv-strip-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .srv-strip-hdr h2 {
      font-family: var(--f-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1;
      color: #fff;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .srv-strip-hdr a {
      font-family: var(--f-display);
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.4);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }

    .srv-strip-hdr a:hover {
      color: var(--c-lime);
      border-color: var(--c-lime);
    }

    .srv-strip-row {
      display: flex;
      border: 1px solid #2a2a2a;
    }

    .srv-strip-card {
      flex: 1;
      min-width: 0;
      padding: 40px 28px;
      border-right: 1px solid #2a2a2a;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: color 0.4s;
      color: #fff;
    }

    .srv-strip-card:last-child {
      border-right: none;
    }

    /* Lime fill from bottom */
    .srv-strip-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0%;
      background: var(--c-lime);
      transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 0;
    }

    .srv-strip-card:hover::after {
      height: 100%;
    }

    .srv-strip-card:hover {
      color: #111;
    }

    .srv-strip-num {
      font-family: var(--f-display);
      font-size: 0.7rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.15em;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
      transition: color 0.4s;
    }

    .srv-strip-card:hover .srv-strip-num {
      color: rgba(17, 17, 17, 0.5);
    }

    .srv-strip-title {
      font-family: var(--f-display);
      font-size: 1.05rem;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 14px;
      flex: 1;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }

    .srv-strip-desc {
      font-family: var(--f-body);
      font-size: 0.8rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }

    .srv-strip-card:hover .srv-strip-desc {
      color: rgba(17, 17, 17, 0.65);
    }

    .srv-strip-arr {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.25);
      position: relative;
      z-index: 1;
      transition: transform 0.3s, color 0.3s;
      align-self: flex-start;
    }

    .srv-strip-card:hover .srv-strip-arr {
      transform: translate(4px, -4px);
      color: #111;
    }

    @media(max-width: 1024px) {
      .srv-strip-row {
        flex-wrap: wrap;
      }

      .srv-strip-card {
        flex: 0 0 33.33%;
        border-bottom: 1px solid #2a2a2a;
      }

      .srv-strip-card:nth-child(3) {
        border-right: none;
      }

      .srv-strip-card:nth-child(4),
      .srv-strip-card:nth-child(5),
      .srv-strip-card:nth-child(6) {
        border-bottom: none;
      }
    }

    @media(max-width: 640px) {
      .srv-strip {
        padding: 60px 20px;
      }

      .srv-strip-card {
        flex: 0 0 50%;
      }

      .srv-strip-card:nth-child(2n) {
        border-right: none;
      }

      .srv-strip-card:nth-child(3) {
        border-right: 1px solid #2a2a2a;
      }

      .srv-strip-hdr {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }

    /* CLIENTS BAR */
    .clients-bar {
      background: #f4f4f0;
      padding: 80px 0;
      border-top: 2px solid #111;
      border-bottom: 2px solid #111;
      overflow: hidden;
    }

    .clients-bar-hdr {
      text-align: center;
      margin-bottom: 50px;
      padding: 0 40px;
    }

    .clients-bar-eyebrow {
      font-family: var(--f-body);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: #aaa;
      margin-bottom: 12px;
    }

    .clients-bar-title {
      font-family: var(--f-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      text-transform: uppercase;
      color: #111;
      margin: 0;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .clients-bar-title span {
      background: #000;
      color: var(--c-lime);
      padding: 0.1em 0.4em;
      margin-left: 0.1em;
      display: inline-block;
      line-height: 1;
    }

    /* Track wrapper — fades edges */
    .clients-track-wrap {
      position: relative;
    }

    .clients-track-wrap::before,
    .clients-track-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 180px;
      z-index: 2;
      pointer-events: none;
    }

    .clients-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, #f4f4f0 0%, transparent 100%);
    }

    .clients-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, #f4f4f0 0%, transparent 100%);
    }

    .clients-track {
      display: flex;
      width: max-content;
      gap: 0;
    }

    .client-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 60px;
      border-right: 1px solid rgba(17, 17, 17, 0.1);
      height: 96px;
      flex-shrink: 0;
      cursor: default;
      position: relative;
    }

    /* Real logo images — gray by default, black on hover */
    .client-logo-item img {
      height: 60px !important;
      max-width: 200px !important;
      object-fit: contain;
      filter: brightness(0) saturate(0) opacity(0.5);
      transition: filter 0.35s ease;
    }

    .client-logo-item:hover img {
      filter: brightness(0) saturate(0) opacity(1);
    }

    @media(max-width: 600px) {

      .clients-track-wrap::before,
      .clients-track-wrap::after {
        width: 60px;
      }

      .client-logo-item {
        padding: 0 36px;
      }

      .client-logo-item img {
      height: 60px !important;
      max-width: 200px !important;
      object-fit: contain;
      filter: brightness(0) saturate(0) opacity(0.5);
      transition: filter 0.35s ease;
    }
    }

    /* REVIEWS — EDITORIAL GRID */
    .reviews {
      background: #f4f4f0;
      padding: 100px 40px;
      border-top: 2px solid #111;
      border-bottom: 2px solid #111;
    }

    .reviews-inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .reviews-eyebrow {
      font-family: var(--f-body);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #777;
      margin-bottom: 24px;
    }

    .reviews-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .reviews-top h2 {
      font-family: var(--f-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1;
      color: #111;
      margin: 0;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    .reviews-top h2 em {
      font-style: italic;
      font-family: Georgia, serif;
      color: #111;
      font-weight: 400;
      text-transform: none;
      letter-spacing: -0.01em;
    }

    .reviews-top h2 .highlight-dark {
      background: #111;
      color: var(--c-lime);
      padding: 0 16px;
      border-radius: 6px;
      display: inline-block;
      line-height: 1.1;
    }

    .reviews-badge {
      border: 2px solid #111;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .reviews-badge-score {
      font-family: var(--f-display);
      font-size: 2rem;
      font-weight: 800;
      color: #111;
      line-height: 1;
    }

    .reviews-badge-star {
      color: #F4B400;
      font-size: 1.6rem;
    }

    .reviews-badge-sub {
      font-family: var(--f-body);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #777;
      line-height: 1.4;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(17, 17, 17, 0.15);
    }

    .review-card {
      background: #f4f4f0;
      padding: 28px;
      display: flex;
      flex-direction: column;
      min-height: 220px;
      transition: background 0.3s;
    }

    .review-card:hover {
      background: #eaeae5;
    }

    .review-card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .review-stars-sm {
      color: #F4B400;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    .review-num {
      font-family: var(--f-body);
      font-size: 0.7rem;
      font-weight: 600;
      color: #aaa;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .review-text {
      font-family: var(--f-body);
      font-size: 0.88rem;
      color: #333;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 20px;
    }

    .review-text em {
      font-style: italic;
      font-weight: 600;
      color: #555;
      background: rgba(0, 0, 0, 0.05);
      padding: 0 3px;
    }

    .review-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-top: 1px solid rgba(17, 17, 17, 0.12);
      padding-top: 14px;
      margin-top: auto;
    }

    .review-name {
      font-family: var(--f-display);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #111;
    }

    .review-service {
      font-family: var(--f-body);
      font-size: 0.7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #999;
    }

    @media(max-width: 1024px) {
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 600px) {
      .reviews {
        padding: 60px 20px;
      }

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

      .reviews-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }
    }

    /* BRANDING MATTERS SECTION */
    .advantage {
      background-image: url('assets/Images/store-bg.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 0 0 0;
      position: relative;
    }
    .advantage::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }
    .adv-hdr {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto 60px auto;
      text-align: center;
      padding: 0 40px;
    }
    .adv-eyebrow {
      font-family: var(--f-body);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.5);
      margin-bottom: 24px;
    }
    .adv-title {
      font-family: var(--f-display);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 0.95;
      color: var(--c-white);
      margin: 0 0 16px 0;
      letter-spacing: -0.03em;
    }
    .adv-title .lime {
      color: var(--c-lime);
    }
    .adv-sub {
      font-family: var(--f-body);
      font-size: 1.15rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
      margin: 0 auto;
      max-width: 600px;
    }
    .adv-cards {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding: 0 40px 80px 40px;
    }
    .adv-item {
      background: #111;
      padding: 40px 30px;
      border-radius: 8px;
      border: 1px solid #333;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .adv-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      border-color: var(--c-lime);
    }
    .adv-item h3 {
      font-family: var(--f-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--c-lime);
      margin: 0 0 12px 0;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .adv-item p {
      font-family: var(--f-body);
      font-size: 1.05rem;
      color: var(--c-white);
      line-height: 1.6;
      margin: 0;
    }
    .adv-tip-banner {
      position: relative;
      z-index: 2;
      background: #111;
      padding: 30px 40px;
      text-align: center;
      border-top: 1px solid #222;
    }
    .adv-tip {
      font-family: var(--f-body);
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
      max-width: 800px;
      margin: 0 auto;
    }
    .adv-tip strong {
      color: var(--c-lime);
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 1.15rem;
      text-transform: uppercase;
      margin-right: 8px;
    }
    @media(max-width: 1024px) {
      .adv-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
    }
    @media(max-width: 600px) {
      .adv-cards { grid-template-columns: 1fr; }
    }

    /* CTA */
    .cta {
      background: #111;
      color: var(--c-white);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
      border-top: 3px solid var(--c-lime);
    }

    .cta-left {
      background: var(--c-lime);
      padding: 80px 70px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 3px solid #111;
    }

    .cta-eyebrow {
      font-family: var(--f-body);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(17, 17, 17, 0.5);
    }

    .cta-title {
      font-family: var(--f-display);
      font-size: clamp(2.8rem, 4.5vw, 4.5rem);
      font-weight: 800;
      line-height: 0.95;
      text-transform: uppercase;
      color: #111;
      margin: 0;
      letter-spacing: -0.03em;
    }

    .cta-right {
      padding: 80px 70px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: #111;
    }

    .cta-desc {
      font-family: var(--f-body);
      font-size: 1.15rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.6);
      max-width: 400px;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
    }

    .btn-lime {
      background: var(--c-lime);
      color: #000;
      font-family: var(--f-display);
      font-weight: 700;
      text-transform: uppercase;
      padding: 20px 48px;
      font-size: 1rem;
      letter-spacing: 0.06em;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      transition: background 0.3s, color 0.3s;
      border: 2px solid var(--c-lime);
    }

    .btn-lime:hover {
      background: transparent;
      color: var(--c-lime);
    }

    .cta-phone {
      font-family: var(--f-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: color 0.3s;
      letter-spacing: 0.02em;
    }

    .cta-phone:hover {
      color: var(--c-lime);
    }

    @media(max-width: 900px) {
      .cta {
        grid-template-columns: 1fr;
      }

      .cta-left,
      .cta-right {
        padding: 60px 30px;
      }
    }

    /* FINAL CTA — BLACK */
    .final-cta {
      position: relative;
      background-image: url('assets/Images/cybertruck-bg.jpg');
      background-size: cover;
      background-position: center;
      padding: 140px 40px;
      text-align: center;
      border-top: 1px solid #1a1a1a;
      overflow: hidden;
    }

    /* Dark overlay for low visibility */
    .final-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.75);
      z-index: 0;
    }

    /* Subtle dot grid overlay */
    .final-cta::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 1;
    }

    /* Giant watermark text */
    .final-cta-bg-text {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);
      text-align: center;
      font-family: var(--f-display);
      font-size: 26vw;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.06);
      pointer-events: none;
      white-space: nowrap;
      z-index: 0;
      letter-spacing: -0.04em;
    }

    .final-cta-inner {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .final-cta-title {
      font-family: var(--f-display);
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      line-height: 0.9;
      letter-spacing: -0.03em;
      margin: 0 0 40px 0;
    }

    .final-cta-title span {
      color: var(--c-lime);
    }

    .final-cta-title .outline {
      color: transparent;
      -webkit-text-stroke: 2px #fff;
    }

    .final-cta-btn {
      background: var(--c-lime);
      color: #000;
      font-family: var(--f-display);
      font-weight: 700;
      text-transform: uppercase;
      padding: 24px 56px;
      font-size: 1.15rem;
      letter-spacing: 0.08em;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }

    .final-cta-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(204, 255, 0, 0.2);
    }

    @media(max-width: 600px) {
      .final-cta {
        padding: 80px 20px;
      }

      .final-cta-btn {
        padding: 20px 40px;
        font-size: 1rem;
      }
    }

    /* FOOTER */
    .footer {
      background: #050505;
      padding: 100px 0 40px;
      border-top: 1px solid #1a1a1a;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
    }

    .foot-logo {
      height: 36px;
      margin-bottom: 25px;
    }

    .foot-desc {
      color: var(--c-gray-text);
      font-size: 1rem;
      line-height: 1.6;
    }

    .foot-col h4 {
      font-family: var(--f-display);
      font-size: 1.1rem;
      color: var(--c-lime);
      text-transform: uppercase;
      margin: 0 0 25px 0;
      letter-spacing: 0.05em;
    }

    .foot-col ul {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .foot-col a {
      color: var(--c-gray-text);
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .foot-col a:hover {
      color: var(--c-white);
    }

    .foot-contact p {
      color: var(--c-gray-text);
      font-size: 0.95rem;
      margin: 0 0 15px 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .foot-social {
      display: flex;
      gap: 20px;
      margin-top: 25px;
    }

    @media(max-width: 900px) {
      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width: 600px) {
      .foot-grid {
        grid-template-columns: 1fr;
      }
    }
/* STANDARDIZED INNER PAGE HERO HEADER */
.page-hero {
  padding: 150px 40px 40px;
  background: #000;
  color: #fff;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}
.page-hero .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--f-display);
  color: var(--c-lime);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}
.page-title .lime {
  color: var(--c-lime);
}
.page-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #888888;
  max-width: 600px;
  margin: 0 auto;
}

@media(max-width: 1024px) {
  .page-hero {
    padding: 130px 20px 30px;
  }
}


/* ==========================================================================


/* ==========================================================================


/* ==========================================================================
   GUARANTEED UNIVERSAL MOTION & SCROLL REVEAL SYSTEM
   ========================================================================== */

/* 1. Scroll Reveal Base & Variants */
.reveal {
  opacity: 0 !important;
  transform: translateY(40px) scale(0.96) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0 !important;
  transform: translateX(-50px) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0 !important;
  transform: translateX(50px) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0 !important;
  transform: scale(0.88) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

/* Active Visible State */
.reveal.is-visible,
.reveal.active,
.reveal-left.is-visible,
.reveal-left.active,
.reveal-right.is-visible,
.reveal-right.active,
.reveal-scale.is-visible,
.reveal-scale.active {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }
.delay-4 { transition-delay: 0.48s !important; }

/* 2. Hero Section Entrance Animation */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero .hero-eyebrow,
.hero-lbl {
  animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.page-hero .page-title,
.hero-title {
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.page-hero .page-desc,
.hero-p {
  animation: heroEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-btns {
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

/* 3. Mouse Scroll Indicator Pulse Animation */
.mouse-wheel {
  animation: mouse-scroll-anim 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1) !important;
}

@keyframes mouse-scroll-anim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 1;
    transform: translateY(12px);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

/* 4. Luxury Card Hover Effects */
 .gallery-item, .contact-form-box, .google-badge-card, .service-section {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.port-card:hover, .gallery-item:hover, .contact-form-box:hover, .google-badge-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--c-lime, #ccff00) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(204, 255, 0, 0.2) !important;
}

.port-card img, .gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.port-card:hover img, .gallery-item:hover img {
  transform: scale(1.07) !important;
}

/* 5. Button Ripple & Glow */
.btn-lime, .nav-btn, .btn-submit, .btn-call, .btn-load-more, .btn-lime-hero {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.35s ease !important;
}

.btn-lime:hover, .nav-btn:hover, .btn-submit:hover, .btn-call:hover, .btn-load-more:hover, .btn-lime-hero:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 28px rgba(204, 255, 0, 0.35) !important;
}

/* Navigation Links Hover Underline */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--c-lime, #ccff00);
  box-shadow: 0 0 8px var(--c-lime, #ccff00);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


    /* PORTFOLIO SECTION CONTROL BAR & FILTER PILLS */
    .port-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 30px;
    }

    .port-controls-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 35px;
      width: 100%;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .home-filter-pills {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .home-pill {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #dddddd;
      font-family: var(--f-display, 'Oswald', sans-serif);
      font-size: 0.88rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 10px 22px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      outline: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .home-pill:hover {
      background: rgba(204, 255, 0, 0.15);
      border-color: var(--c-lime, #ccff00);
      color: var(--c-lime, #ccff00);
      transform: translateY(-2px);
    }

    .home-pill.active {
      background: var(--c-lime, #ccff00) !important;
      color: #000000 !important;
      border-color: var(--c-lime, #ccff00) !important;
      box-shadow: 0 4px 20px rgba(204, 255, 0, 0.35) !important;
      font-weight: 700 !important;
    }

    .auto-rotate-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--f-body, 'Inter', sans-serif);
      font-size: 0.82rem;
      font-weight: 500;
      color: #aaaaaa;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 8px 16px;
      border-radius: 20px;
    }

    .auto-rotate-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--c-lime, #ccff00);
      box-shadow: 0 0 10px var(--c-lime, #ccff00);
      animation: pulse-dot 1.8s infinite ease-in-out;
    }

    @keyframes pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.5; }
    }


/* PORTFOLIO MESH UNIFORM GRID OVERRIDE (DESKTOP) */
.port-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.home-filter-pills {
  display: flex;
  gap: 10px;
  align-items: center;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  width: 100%;
}

.port-card,
.port-card.feat-main,
.port-card.feat-wide {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  position: relative;
  overflow: hidden;
  background: #111;
  display: block;
  height: 260px !important;
  border-radius: 8px;
}

.port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.port-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

/* DESKTOP HIDE MOBILE APP BAR (> 1024px) */
@media (min-width: 1025px) {
  .mobile-app-bar,
  .mobile-nav-toggle,
  .mobile-nav-overlay,
  .mobile-bottom-dock,
  .app-dock {
    display: none !important;
  }
}

/* MOBILE RESPONSIVE ENGINE (<= 1024px) */
@media (max-width: 1024px) {

  body {
    padding-bottom: 84px !important;
    overflow-x: hidden !important;
  }

  .nav-links,
  .nav-phone,
  .mobile-nav-toggle,
  .mobile-nav-overlay,
  .mobile-bottom-dock,
  .app-dock {
    display: none !important;
  }

  .nav {
    padding: 12px 20px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: rgba(9, 9, 9, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .nav-logo {
    margin-left: 0 !important;
  }

  .nav-logo img {
    height: 40px !important;
  }

  .nav-btn {
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
  }

  .mobile-app-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    background: rgba(10, 10, 10, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    z-index: 999999 !important;
    justify-content: space-around !important;
    align-items: center !important;
    padding: 0 4px !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.95) !important;
  }

  .app-bar-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    text-decoration: none !important;
    color: #888888 !important;
    font-family: var(--f-display, 'Oswald', sans-serif) !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    transition: color 0.2s ease !important;
    flex: 1 !important;
    min-height: 48px !important;
    position: relative !important;
  }

  .app-bar-item svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2 !important;
    transition: stroke 0.2s ease, transform 0.2s ease !important;
  }

  .app-bar-item:hover,
  .app-bar-item.active {
    color: var(--c-lime, #ccff00) !important;
  }

  .app-bar-item:hover svg,
  .app-bar-item.active svg {
    stroke: var(--c-lime, #ccff00) !important;
    transform: translateY(-2px) !important;
  }

  .app-bar-item.app-bar-call {
    position: relative !important;
    top: -12px !important;
  }

  .app-bar-item.app-bar-call .call-btn-circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--c-lime, #ccff00) !important;
    color: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.5), 0 0 0 4px #0a0a0a !important;
  }

  .app-bar-item.app-bar-call svg {
    stroke: #000000 !important;
    width: 22px !important;
    height: 22px !important;
  }

    .hero {
    position: relative !important;
    height: 180vh !important;
    background: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .hero-sticky {
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: #000 !important;
  }

  .hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
  }

  #hero-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
  }

  .hero-scroll-indicator {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    position: absolute !important;
    bottom: 84px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    text-decoration: none !important;
    pointer-events: auto !important;
  }

  .mouse-icon {
    width: 24px !important;
    height: 36px !important;
    border: 2px solid var(--c-lime, #ccff00) !important;
    border-radius: 14px !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    padding-top: 6px !important;
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.4) !important;
    background: rgba(0, 0, 0, 0.7) !important;
  }

  .mouse-wheel {
    width: 4px !important;
    height: 8px !important;
    background: var(--c-lime, #ccff00) !important;
    border-radius: 2px !important;
    animation: mouse-scroll-anim 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1) !important;
  }

  .scroll-text {
    font-family: var(--f-display, 'Oswald', sans-serif) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: var(--c-lime, #ccff00) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 1) !important;
    white-space: nowrap !important;
  }

  .port-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .port-controls-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .home-filter-pills {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .port-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: 280px !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .proc-timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 24px auto 0 auto !important;
  }

  .proc-step {
    display: grid !important;
    grid-template-columns: 52px 1fr !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
      "num name"
      "num desc" !important;
    gap: 2px 16px !important;
    align-items: center !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px 18px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .proc-step-dot {
    grid-area: num !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(204, 255, 0, 0.12) !important;
    border: 2px solid var(--c-lime, #ccff00) !important;
    color: var(--c-lime, #ccff00) !important;
    font-family: var(--f-display, 'Oswald', sans-serif) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .proc-step-name {
    grid-area: name !important;
    font-family: var(--f-display, 'Oswald', sans-serif) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .proc-step-desc {
    grid-area: desc !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    color: #cccccc !important;
    text-align: left !important;
    margin: 0 !important;
  }

  /* HERO MOBILE REFINED TYPOGRAPHY & BUTTONS */
  .hero-content {
    padding: 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    z-index: 5 !important;
  }

  .hero-text-col {
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-lbl {
    font-size: 0.82rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-lbl::before {
    display: none !important;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.7rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .hero-p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    max-width: 300px !important;
    margin: 0 auto 20px auto !important;
    text-align: center !important;
    color: #cccccc !important;
  }

  .hero-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 270px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
  }

  .btn-lime-hero,
  .btn-outline-hero {
    padding: 12px 18px !important;
    font-size: 0.85rem !important;
    justify-content: center !important;
    width: 100% !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  .hero-hud,
  .hero-social {
    display: none !important;
  }

  .hero-scroll-indicator {
    position: absolute !important;
    bottom: 84px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .mouse-icon {
    width: 20px !important;
    height: 30px !important;
    border-width: 2px !important;
    padding-top: 4px !important;
    border-radius: 12px !important;
  }

  .mouse-wheel {
    width: 3px !important;
    height: 6px !important;
  }

  .scroll-text {
    font-size: 0.66rem !important;
    letter-spacing: 0.08em !important;
  }

  /* PORTFOLIO FILTER PILLS COMPACT MOBILE STYLING */
  .port-controls-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .home-filter-pills {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .home-pill {
    padding: 6px 14px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.04em !important;
    border-radius: 18px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }

  .auto-rotate-badge {
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
    border-radius: 14px !important;
  }

}


/* FOOTER BOTTOM & DRACCUS AGENCY CREDIT */
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
}

.foot-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #aaaaaa;
}

.draccus-credit a {
  color: var(--c-lime, #ccff00) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: opacity 0.2s, text-decoration 0.2s !important;
}

.draccus-credit a:hover {
  opacity: 0.85 !important;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .foot-bottom-inner {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  /* MOBILE HERO TITLE ENHANCED SIZE */
  .hero-title {
    font-size: clamp(2.3rem, 9vw, 3.3rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  /* WHAT WE DO DIVIDER LINES FIX (ITEMS 4 TO 6) */
  .srv-ticker-item {
    border-right: 2px solid #111 !important;
  }

  .srv-strip-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  /* FROM DESIGN TO INSTALLATION HIGH CONTRAST MOBILE STEPS */
  .proc-step {
    background: rgba(20, 20, 20, 0.96) !important;
    border: 1px solid rgba(204, 255, 0, 0.35) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.8) !important;
  }

  .proc-step-dot {
    background: var(--c-lime, #ccff00) !important;
    color: #000000 !important;
    font-weight: 800 !important;
    box-shadow: 0 0 12px rgba(204, 255, 0, 0.5) !important;
  }

  .proc-step-name {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
  }

  .proc-step-desc {
    color: #e5e5e5 !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }

  .client-logo-item img {
    height: 48px !important;
    max-width: 160px !important;
  }

}


/* PREVENT TEXT SELECTION & LOCKUP ON DRAGGABLE CONTAINERS */
.srv-ticker,
.clients-track-wrap,
.home-filter-pills {
  overflow-x: auto !important;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important;  /* IE 10+ */
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-overflow-scrolling: touch !important;
  cursor: grab !important;
}

.srv-ticker::-webkit-scrollbar,
.clients-track-wrap::-webkit-scrollbar,
.home-filter-pills::-webkit-scrollbar {
  display: none !important; /* Chrome / Safari */
  width: 0 !important;
  height: 0 !important;
}

.srv-ticker.active-dragging,
.clients-track-wrap.active-dragging,
.home-filter-pills.active-dragging {
  cursor: grabbing !important;
}

.srv-ticker img,
.clients-track-wrap img {
  pointer-events: none !important;
  -webkit-user-drag: none !important;
  user-drag: none !important;
}


/* REMOVE OVERLAY GRADIENTS (WHITE MARK) OVER CLIENT LOGOS */
.clients-track-wrap::before,
.clients-track-wrap::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ==========================================================================
   MULTI-LANGUAGE SWITCHER (EN, PT-BR, ES) WITH FLAGS
   ========================================================================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 6px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-right: 15px;
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 4px 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: #aaa;
  transition: all 0.2s ease;
  line-height: 1;
  outline: none;
}

.lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.lang-btn.active {
  color: #000;
  background: var(--c-lime, #ccff00);
  border-color: var(--c-lime, #ccff00);
}

.lang-flag {
  font-size: 0.95rem;
  line-height: 1;
}

/* HIDE GOOGLE TRANSLATE DEFAULT BANNERS & OVERLAYS */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

#google_translate_element {
  display: none !important;
}

@media (max-width: 900px) {
  .lang-switcher {
    margin-right: 8px;
    padding: 3px 4px;
    gap: 3px;
  }
  .lang-btn {
    padding: 4px 6px;
    font-size: 0 !important; /* Hide text nodes (EN, PT, ES) to save space */
  }
  .lang-flag {
    font-size: 1.15rem !important;
    margin: 0 !important;
  }
  .nav-right {
    gap: 10px !important; /* Tighten gaps between header items */
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 8px 12px !important;
  }
  .nav-logo img {
    height: 34px !important;
  }
  .nav-btn {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
  }
}

/* Floating WhatsApp Button */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Online status indicator dot */
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #0df053;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Premium speech bubble style tooltip */
.whatsapp-float::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background-color: #ffffff;
  color: #333333;
  padding: 8px 14px;
  border-radius: 20px 20px 4px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hover effects */
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2), 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-float svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: #fff;
  /* Visual alignment correction: shift slightly down-left to offset the bottom-left tail weight */
  transform: translate(-1.5px, 1px);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: translate(-1.5px, 1px) scale(1.05);
}

/* Responsive mobile adjustments */
@media (max-width: 900px) {
  .whatsapp-float {
    bottom: 90px;
    right: 20px;
    left: auto;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-float::before {
    display: none; /* Hide tooltip on mobile screens */
  }
  .whatsapp-float::after {
    top: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
  }
}


