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

    :root {
      --navy: #8fd3ff;
      --navy-light: #e0f4ff;
      --navy-dark: #ffffff;
      --heading: 'Josefin Sans', sans-serif;
      --body: 'Century Gothic', 'Avenir', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--body);
      color: var(--navy-dark);
      overflow-x: hidden;
      background: #000;
    }

    #webgl-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #f0f0f0;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--navy);
      border-radius: 3px;
    }

    /* ── Header ── */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      transition: background 0.5s, box-shadow 0.5s;
    }

    .header.scrolled {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    }

    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(24px, 4vw, 80px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .logo {
      font-family: var(--heading);
      font-weight: 300;
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy-dark);
      text-decoration: none;
    }

    .nav {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav a {
      font-family: var(--heading);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav a:hover {
      color: var(--navy-dark);
    }

    /* Mobile menu */
    .menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .menu-btn span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: rgba(255, 255, 255, 0.7);
      margin: 5px 0;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .nav {
        display: none;
      }

      .menu-btn {
        display: block;
      }

      .nav.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(12px);
        padding: 32px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
    }

    /* ── Sections shared ── */
    section {
      position: relative;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(24px, 4vw, 80px);
    }

    .heading {
      font-family: var(--heading);
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.15;
      color: var(--navy-dark);
      font-size: clamp(2rem, 5vw, 3.5rem);
      text-align: center;
      margin: 0 auto 24px;
    }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.3s;
    }

    .reveal-delay-2 {
      transition-delay: 0.6s;
    }

    .reveal-delay-3 {
      transition-delay: 0.9s;
    }

    /* ── Hero ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
      padding: 120px 0 80px;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      gap: clamp(40px, 6vw, 100px);
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
    }

    .hero-photo {
      flex: 0 0 auto;
      width: clamp(280px, 35vw, 440px);
      animation: fadeIn 1s ease-out 0.3s both;
      position: relative;
    }

    .hero-photo .photo-layer {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .hero-photo .photo-layer img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Bottom layer — cyan shift */
    .hero-photo .photo-layer--cyan {
      position: absolute;
      top: 14px;
      left: -14px;
      z-index: 1;
      mix-blend-mode: multiply;
      opacity: 0.7;
    }

    .hero-photo .photo-layer--cyan img {
      filter: saturate(0) brightness(1.1);
    }

    .hero-photo .photo-layer--cyan::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 4px;
      background: rgba(0, 245, 245, 0.6);
      mix-blend-mode: multiply;
    }

    /* Middle layer — magenta/red shift */
    .hero-photo .photo-layer--red {
      position: absolute;
      top: -10px;
      left: 12px;
      z-index: 2;
      mix-blend-mode: multiply;
      opacity: 0.7;
    }

    .hero-photo .photo-layer--red img {
      filter: saturate(0) brightness(1.1);
    }

    .hero-photo .photo-layer--red::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 4px;
      background: rgba(254, 44, 85, 0.6);
      mix-blend-mode: multiply;
    }

    /* Top layer — original colors */
    .hero-photo .photo-layer--original {
      position: relative;
      z-index: 3;
    }

    .hero-text {
      flex: 1;
      animation: fadeIn 1s ease-out 0.6s both;
    }

    .hero-logo-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hero-divider {
      width: 1px;
      height: 48px;
      background: rgba(255, 255, 255, 0.2);
    }

    .hero-title {
      font-family: var(--heading);
      font-weight: 300;
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--navy-dark);
    }

    .hero-subtitle {
      font-family: var(--heading);
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 8px;
    }

    .hero-tagline {
      font-family: var(--heading);
      font-weight: 300;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.85);
      margin-top: 32px;
    }

    .hero-cta {
      margin-top: 24px;
      font-family: var(--heading);
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.6);
    }

    .hero-links {
      display: flex;
      gap: 16px;
      margin-top: 16px;
    }

    .hero-links .btn-badge {
      flex: 1;
      justify-content: center;
    }

    .btn-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--heading);
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: #fff;
      text-decoration: none;
      padding: 10px 22px;
      border-radius: 6px;
      transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
    }

    .btn-badge:hover {
      transform: translateY(-2px);
      filter: brightness(1.15);
    }

    .btn-badge-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .btn-upwork {
      background: #14a800;
      box-shadow: 0 4px 16px rgba(20, 168, 0, 0.3);
    }

    .btn-upwork:hover {
      box-shadow: 0 8px 24px rgba(20, 168, 0, 0.4);
    }

    .btn-linkedin {
      background: #0077b5;
      box-shadow: 0 4px 16px rgba(0, 119, 181, 0.3);
    }

    .btn-linkedin:hover {
      box-shadow: 0 8px 24px rgba(0, 119, 181, 0.4);
    }

    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      animation: fadeIn 1s ease-out 1.5s both;
    }

    .scroll-hint span {
      font-family: var(--heading);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }

    .scroll-line {
      width: 1px;
      height: 32px;
      background: rgba(255, 255, 255, 0.2);
      animation: scrollBounce 2s ease-in-out infinite;
    }

    @media (max-width: 768px) {
      .hero-inner {
        flex-direction: column;
        text-align: center;
      }

      .hero-photo {
        width: clamp(220px, 60vw, 320px);
      }

      .hero-logo-wrap {
        justify-content: center;
      }

      .hero-links {
        justify-content: center;
      }

      .hero {
        min-height: 100vh;
        padding: 80px 0 60px;
      }
    }

    .hero-badge-note {
      margin-top: 12px;
      font-family: var(--heading);
      font-size: 0.64rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      text-align: center;
      line-height: 1.4;
    }

    @media (max-width: 600px) {
      .btn-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
        gap: 8px;
      }

      .btn-badge-icon {
        width: 16px;
        height: 16px;
      }

      .hero-badge-note {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
      }
    }

    /* ── Videos ── */
    .videos {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 1;
    }

    .videos h2 {
      margin: 0 auto 24px;
    }

    .videos-subtitle {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 80px;
      font-size: 1.25rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .video-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: rgba(255, 255, 255, 0.05);
      cursor: pointer;
      box-shadow: 0 0 10px 2px rgba(143, 211, 255, 0.15), 0 0 20px 4px rgba(153, 0, 255, 0.08);
    }

    .video-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Custom video controls */
    .video-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(3px);
      transition: opacity 0.3s;
      z-index: 2;
    }

    .video-overlay.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .video-overlay.hidden .vid-mute {
      opacity: 1;
      pointer-events: auto;
    }

    .vid-play {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s;
    }

    .vid-play:hover {
      transform: scale(1.1);
      background: rgba(255, 255, 255, 0.25);
    }

    .vid-mute {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      cursor: pointer;
      transition: background 0.2s;
      z-index: 3;
    }

    .vid-mute:hover {
      background: rgba(0, 0, 0, 0.7);
    }

    .vid-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      z-index: 4;
      transition: height 0.15s;
      border-radius: 2px;
    }

    .vid-progress:hover {
      height: 14px;
    }

    .vid-progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #8fd3ff, #9900ff);
      border-radius: 2px;
      pointer-events: none;
    }

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

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

    /* ── Client Videos ── */
    .client-videos {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 1;
    }

    .client-videos h2 {
      margin: 0 auto 80px;
    }

    .client-videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .client-video-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: rgba(255, 255, 255, 0.05);
      cursor: pointer;
    }

    .client-video-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .client-video-name {
      font-family: var(--heading);
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
      margin-top: 16px;
    }

    @media (max-width: 768px) {
      .client-videos-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Shorts ── */
    .shorts {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 1;
    }

    .shorts h2 {
      margin: 0 auto 80px;
    }

    .shorts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 960px;
      margin: 0 auto;
    }

    .short-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 9/16;
      background: rgba(255, 255, 255, 0.05);
      cursor: pointer;
      box-shadow: 0 0 10px 2px rgba(143, 211, 255, 0.15), 0 0 20px 4px rgba(153, 0, 255, 0.08);
    }

    .short-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    @media (max-width: 768px) {
      .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 24px;
      }
    }

    @media (max-width: 600px) {
      .shorts-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 16px;
      }
    }

    /* ── Premium Editing Software ── */
    .software {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 1;
    }

    .software h2 {
      margin: 0 auto 24px;
    }

    .software-subtitle {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 80px;
      font-size: 1.25rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
    }

    .software-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 64px;
      perspective: 1200px;
    }

    .software-box-three {
      width: 160px;
      height: 160px;
      position: relative;
      cursor: pointer;
    }

    .software-box-three canvas {
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .software-box-three:hover canvas {
      transform: scale(1.1);
    }

    .software-box {
      width: 140px;
      height: 140px;
      position: relative;
      transform-style: preserve-3d;
      transform: rotateX(20deg) rotateY(-20deg);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      cursor: pointer;
    }

    .software-box:hover {
      transform: rotateX(5deg) rotateY(-10deg) scale(1.1);
    }

    .software-face {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      /* very faint white */
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.1);
      transform: translateZ(20px);
    }

    .software-box::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: rgba(0, 0, 0, 0.5);
      transform: translateZ(-20px) scale(0.9);
      filter: blur(15px);
    }

    .software-icon {
      width: 64px;
      height: 64px;
      color: #fff;
    }

    .pr-color {
      fill: #9999FF;
    }

    .lr-color {
      fill: #74AAFF;
    }

    /* Jump reveal animation */
    .reveal.jump-reveal {
      transform: translateY(120px) scale(0.8);
      transition: opacity 1s ease-out,
        transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .reveal.jump-reveal.visible {
      transform: translateY(0) scale(1);
    }

    @media (max-width: 600px) {
      .software-grid {
        gap: 32px;
      }

      .software-box {
        width: 100px;
        height: 100px;
      }

      .software-icon {
        width: 44px;
        height: 44px;
      }
    }

    /* ── Services ── */
    .services-intro {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 1;
    }

    .services-intro h2 {
      max-width: 700px;
    }

    .service-card {
      min-height: 80vh;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .service-bg {
      position: absolute;
      inset: 0;
    }

    .service-card .container {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .service-number {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-number span {
      transform: rotate(-45deg);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
    }

    .service-label {
      font-family: var(--heading);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 16px;
    }

    .service-title {
      font-family: var(--heading);
      font-weight: 300;
      font-size: clamp(1.8rem, 4vw, 3rem);
      text-transform: uppercase;
      color: var(--navy-dark);
      line-height: 1.15;
      letter-spacing: 0.03em;
      margin-top: 24px;
      max-width: 700px;
    }

    .service-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--heading);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      margin-top: 40px;
      transition: color 0.3s;
    }

    .service-cta:hover {
      color: var(--navy-dark);
    }

    .service-cta-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }

    .service-cta:hover .service-cta-circle {
      background: var(--navy);
      color: #fff;
    }

    .service-line {
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin-top: 32px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1s 0.4s ease-out;
    }

    .service-card.visible .service-line {
      transform: scaleX(1);
    }

    /* ── Stats ── */
    .stats {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 2;
      /* background removed — fog reveals over flat body bg */
      overflow: hidden;
    }

    .stats-globe {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .stats-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stats-dot {
      position: absolute;
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
    }

    .stats-dot::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      animation: ping 2s ease-out infinite;
    }

    .stats h2 {
      margin-bottom: 80px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .stat-number {
      font-family: var(--heading);
      font-weight: 300;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      color: var(--navy-dark);
      letter-spacing: 0.05em;
    }

    .stat-label {
      font-family: var(--heading);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 16px;
    }

    .stats-platforms {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      margin-top: 96px;
      position: relative;
      z-index: 2;
    }

    .stats-platforms a {
      font-family: var(--heading);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
      transition: color 0.3s;
    }

    .stats-platforms a:hover {
      color: var(--navy);
    }

    @media (max-width: 768px) {
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    /* ── Testimonials ── */
    .testimonials {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      z-index: 2;
      /* background removed — fog reveals over flat body bg */
      overflow: hidden;
    }

    .testimonials-bg {
      position: absolute;
      inset: 0;
      opacity: 0.15;
    }

    .testimonials-bg div {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
    }

    .testimonials-intro {
      text-align: center;
      font-size: 1.25rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.85);
      max-width: 640px;
      margin: 0 auto 80px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      position: relative;
      z-index: 2;
    }

    .testimonial {
      position: relative;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .testimonial-num {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .testimonial-num span {
      transform: rotate(-45deg);
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.7rem;
    }

    .testimonial-line {
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
    }

    .testimonial q {
      display: block;
      font-style: italic;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.25rem;
      line-height: 1.8;
      margin-bottom: 24px;
      quotes: none;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      text-align: right;
      gap: 12px;
    }

    .testimonial-dash {
      width: 32px;
      height: 1px;
      background: rgba(255, 255, 255, 0.2);
    }

    .testimonial-name {
      font-family: var(--heading);
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.9);
    }

    .testimonial-company {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    /* ── Footer ── */
    .footer {
      padding: clamp(80px, 10vw, 160px) 0 48px;
      position: relative;
      z-index: 2;
    }

    .footer-top {
      display: none;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .footer-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-nav a {
      font-family: var(--heading);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-nav a:hover {
      color: var(--navy-dark);
    }

    .footer-center {
      text-align: center;
    }

    .footer-cta {
      font-family: var(--heading);
      font-weight: 300;
      font-size: 1.3rem;
      color: var(--navy-dark);
      margin-bottom: 16px;
    }

    .footer-contact {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 24px;
    }



    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      max-width: 220px;
      margin: 0 auto;
    }

    .footer-links .btn-badge {
      justify-content: center;
    }

    .footer-links a {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      text-decoration: none;
    }

    .footer-upwork {
      color: #6fda44;
    }


    .footer-social {
      display: flex;
      justify-content: flex-end;
      gap: 16px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-social a:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--navy);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 96px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo-divider {
      width: 1px;
      height: 24px;
      background: rgba(255, 255, 255, 0.2);
    }

    .footer-logo-text {
      font-family: var(--heading);
      font-weight: 300;
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy-dark);
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
      }


    }

    /* ── Scroll progress (right side) ── */
    /* ── Animations ── */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(8px);
      }
    }

    @keyframes ping {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      100% {
        transform: scale(3);
        opacity: 0;
      }
    }
  
