  :root {
      /* Logo-matched Navy Blue as primary brand */
      --navy: #1a3d6b;
      --navy-deep: #0f2645;
      --navy-mid: #2a5298;
      /* Teal from logo globe top gradient */
      --teal: #0d9e8e;
      --teal-deep: #0a7a6d;
      --teal-light: #16c5b2;
      /* Orange from logo globe bottom + dot */
      --orange: #f47820;
      --orange-deep: #d4610a;
      --orange-light: #ff9544;
      /* Neutrals */
      --cream: #f8f4ee;
      --dark: #080f1a;
      --dark2: #0b1525;
      --mid: #112035;
      --text-dim: #7a93b0;
      --white: #ffffff;
      /* Font system */
      --font-heading: 'Space Grotesk', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --font-mono: 'Space Mono', monospace;
  }

  *,
  *::before,
  *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background: var(--dark);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      overflow-x: hidden;
      cursor: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      letter-spacing: -0.01em;
  }

  /* CUSTOM CURSOR */
  #cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      background: var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, background 0.3s, width 0.3s, height 0.3s;
      mix-blend-mode: normal;
  }

  #cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(244, 120, 32, 0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
  }

  body:hover #cursor {
      opacity: 1;
  }

  /* CANVAS */
  #particle-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.35;
  }

  /* NAV */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to bottom, rgba(8, 15, 26, 0.98), transparent);
      backdrop-filter: blur(0px);
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .nav-logo img {
      height: 44px;
      width: 44px;
      object-fit: contain;
  }

  .nav-logo-text {
      font-family: var(--font-heading);
      font-size: 21px;
      font-weight: 800;
      letter-spacing: -0.5px;
  }

  .nav-logo-text span {
      color: var(--teal-light);
  }

  .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
  }

  .nav-links a {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      color: rgba(138, 154, 176, 0.85);
      text-decoration: none;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: var(--orange);
  }

  .nav-cta {
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 12px;
      padding: 13px 30px;
      border: 1px solid rgba(13, 158, 142, 0.4);
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.3s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .nav-cta:hover {
      background: var(--teal);
      border-color: var(--teal);
      transform: translateY(-1px);
  }

  /* SECTIONS */
  section {
      position: relative;
      z-index: 1;
  }

  /* HERO */
  #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 160px 60px 100px;
      overflow: hidden;
  }

  .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--teal-light);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      gap: 20px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--teal-light);
  }

  .hero-headline {
      font-family: var(--font-heading);
      font-size: clamp(52px, 7.5vw, 110px);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -2.5px;
      max-width: 900px;
      opacity: 0;
      animation: fadeUp 0.9s 0.4s forwards;
  }

  .hero-headline .line2 {
      color: var(--teal-light);
      display: block;
  }

  .hero-headline .line3 {
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
      color: transparent;
      display: block;
  }

  .hero-sub {
      margin-top: 40px;
      font-size: 19px;
      font-weight: 400;
      line-height: 1.75;
      color: rgba(138, 154, 176, 0.95);
      max-width: 560px;
      opacity: 0;
      animation: fadeUp 0.9s 0.6s forwards;
      letter-spacing: -0.2px;
  }

  .hero-actions {
      margin-top: 52px;
      display: flex;
      gap: 20px;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s forwards;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: white;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 13px;
      padding: 18px 48px;
      border: none;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.4s;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      position: relative;
      overflow: hidden;
  }

  .btn-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(13, 158, 142, 0.2), transparent);
      transition: left 0.5s;
  }

  .btn-primary:hover::after {
      left: 100%;
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 60px rgba(26, 61, 107, 0.5);
      background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  }

  .btn-ghost {
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: transparent;
      border: none;
      cursor: none;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: gap 0.3s;
      text-decoration: none;
  }

  .btn-ghost:hover {
      gap: 20px;
  }

  .btn-ghost .arrow {
      width: 32px;
      height: 1px;
      background: var(--teal-light);
      position: relative;
      transition: width 0.3s;
  }

  .btn-ghost:hover .arrow {
      width: 48px;
  }

  .btn-ghost .arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: -4px;
      border: solid var(--teal-light);
      border-width: 0 1px 1px 0;
      padding: 4px;
      transform: rotate(-45deg);
  }

  /* HERO VISUAL ELEMENT */
  .hero-orb {
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 680px;
      height: 680px;
      opacity: 0;
      animation: fadeIn 1.5s 0.5s forwards;
  }

  .hero-orb-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(ellipse at 35% 35%,
              rgba(14, 152, 152, 0.18) 0%,
              rgba(14, 152, 152, 0.06) 40%,
              transparent 70%);
      border: 1px solid rgba(14, 152, 152, 0.12);
      position: relative;
      animation: orbFloat 8s ease-in-out infinite;
  }

  .hero-orb-inner::before {
      content: '';
      position: absolute;
      inset: 30px;
      border-radius: 50%;
      border: 1px solid rgba(244, 120, 32, 0.12);
      animation: orbFloat 8s ease-in-out infinite reverse;
  }

  .hero-orb-inner::after {
      content: '';
      position: absolute;
      inset: 80px;
      border-radius: 50%;
      border: 1px solid rgba(14, 152, 152, 0.08);
      animation: orbFloat 12s ease-in-out infinite;
  }

  @keyframes orbFloat {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(5deg);
      }
  }

  /* STATS STRIP */
  .stats-strip {
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(11, 21, 37, 0.95);
      backdrop-filter: blur(20px);
      padding: 44px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
  }

  .stat-item {
      text-align: center;
      padding: 0 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      opacity: 0;
      animation: fadeUp 0.6s forwards;
  }

  .stat-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .stat-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .stat-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .stat-item:nth-child(4) {
      animation-delay: 0.4s;
      border-right: none;
  }

  .stat-num {
      font-family: var(--font-heading);
      font-size: 52px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--teal-light), var(--navy-mid));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1.5px;
  }

  .stat-label {
      font-size: 11px;
      font-family: var(--font-mono);
      color: var(--text-dim);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-top: 8px;
  }

  /* CHAPTER SECTION */
  .chapter-header {
      padding: 120px 60px 60px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .chapter-num {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--teal-light);
      letter-spacing: 4px;
      margin-bottom: 20px;
  }

  .chapter-title {
      font-family: var(--font-heading);
      font-size: clamp(42px, 5vw, 72px);
      font-weight: 800;
      letter-spacing: -2.5px;
      line-height: 0.97;
  }

  .chapter-desc {
      font-size: 17px;
      color: rgba(138, 154, 176, 0.9);
      line-height: 1.75;
      max-width: 420px;
      font-weight: 400;
      letter-spacing: -0.2px;
  }

  /* STORY / ABOUT */
  #story {
      background: var(--dark2);
  }

  .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
  }

  .story-visual {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(14, 152, 152, 0.08), rgba(244, 120, 32, 0.05));
      border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .story-visual-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      filter: saturate(0.5);
  }

  .story-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
              rgba(14, 152, 152, 0.3) 0%,
              transparent 50%,
              rgba(244, 120, 32, 0.15) 100%);
  }

  .story-quote {
      position: absolute;
      bottom: 60px;
      left: 48px;
      right: 48px;
      font-family: var(--font-heading);
      font-size: 26px;
      font-weight: 600;
      line-height: 1.35;
      color: white;
  }

  .story-quote span {
      color: var(--orange);
  }

  .story-content {
      padding: 80px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .story-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--teal-light);
      letter-spacing: 4px;
      margin-bottom: 32px;
  }

  .story-heading {
      font-family: var(--font-heading);
      font-size: clamp(38px, 3.5vw, 52px);
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1.02;
      margin-bottom: 32px;
  }

  .story-heading em {
      font-style: normal;
      -webkit-text-stroke: 1px var(--teal);
      color: transparent;
  }

  .story-body {
      font-size: 17px;
      color: rgba(138, 154, 176, 0.95);
      line-height: 1.9;
      font-weight: 400;
      margin-bottom: 24px;
      letter-spacing: -0.1px;
  }

  .story-timeline {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .timeline-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
  }

  .timeline-year {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--orange);
      letter-spacing: 2.5px;
      min-width: 52px;
      padding-top: 4px;
  }

  .timeline-text {
      font-size: 15px;
      color: rgba(138, 154, 176, 0.9);
      font-weight: 400;
      line-height: 1.7;
  }

  .timeline-text strong {
      color: var(--white);
      font-weight: 500;
      display: block;
      margin-bottom: 4px;
  }

  /* SERVICES */
  #services {
      background: var(--dark);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .service-card {
      padding: 56px 48px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      transition: background 0.5s;
      cursor: none;
  }

  .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      background: linear-gradient(135deg,
              rgba(26, 61, 107, 0.12), rgba(13, 158, 142, 0.08));
      transition: height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .service-card:hover::before {
      height: 100%;
  }

  .service-card:hover .service-num {
      color: var(--orange);
  }

  .service-card:last-child {
      border-right: none;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
      border-bottom: none;
  }

  .service-num {
      font-family: var(--font-mono);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.18);
      letter-spacing: 4px;
      margin-bottom: 44px;
      transition: color 0.3s;
  }

  .service-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 28px;
      position: relative;
  }

  .service-icon svg {
      width: 100%;
      height: 100%;
  }

  .service-name {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.8px;
  }

  .service-desc {
      font-size: 15px;
      color: rgba(138, 154, 176, 0.9);
      line-height: 1.8;
      font-weight: 400;
  }

  .service-tags {
      margin-top: 28px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
  }

  .tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 12px;
      border: 1px solid rgba(14, 152, 152, 0.25);
      color: var(--teal-light);
  }

  /* PROCESS - CINEMATIC */
  #process {
      background: var(--dark2);
      overflow: hidden;
  }

  .process-inner {
      padding: 0 60px 120px;
  }

  .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 60px;
      border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .process-step {
      padding: 48px 40px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
  }

  .process-step:last-child {
      border-right: none;
  }

  .process-step-num {
      font-family: var(--font-heading);
      font-size: 72px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.04);
      line-height: 1;
      margin-bottom: 20px;
  }

  .process-step-title {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
  }

  .process-step-desc {
      font-size: 15px;
      color: rgba(138, 154, 176, 0.9);
      line-height: 1.8;
      font-weight: 400;
  }

  .process-connector {
      position: absolute;
      top: 48px;
      right: -1px;
      width: 1px;
      height: 24px;
      background: var(--orange);
      opacity: 0.5;
  }

  /* WHY US — ASYMMETRIC */
  #why {
      background: var(--dark);
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
  }

  .why-visual {
      position: relative;
  }

  .why-img-wrap {
      position: relative;
      clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
      overflow: hidden;
  }

  .why-img-wrap img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
      filter: saturate(0.6);
      transition: filter 0.5s, transform 0.8s;
  }

  .why-img-wrap:hover img {
      filter: saturate(1);
      transform: scale(1.03);
  }

  .why-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
              rgba(14, 152, 152, 0.25) 0%,
              transparent 60%);
  }

  .why-badge {
      position: absolute;
      bottom: -28px;
      right: -28px;
      width: 120px;
      height: 120px;
      background: var(--navy);
      clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: rotateBadge 12s linear infinite;
  }

  @keyframes rotateBadge {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .why-badge-inner {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      text-align: center;
      line-height: 1.3;
      animation: rotateBadge 12s linear infinite reverse;
  }

  .why-content {
      /* intentionally empty - layout handled by parent grid */
  }

  .why-points {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .why-point {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      align-items: flex-start;
  }

  .why-point-num {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      color: var(--orange);
      min-width: 28px;
      padding-top: 3px;
  }

  .why-point-title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -0.3px;
  }

  .why-point-desc {
      font-size: 15px;
      color: rgba(138, 154, 176, 0.9);
      line-height: 1.75;
      font-weight: 400;
  }

  /* TECH STACK MARQUEE */
  #tech {
      padding: 80px 0;
      background: var(--dark2);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
  }

  .tech-label {
      text-align: center;
      font-family: var(--font-mono);
      font-size: 11px;
      color: rgba(138, 154, 176, 0.7);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 48px;
  }

  .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 30s linear infinite;
      width: max-content;
  }

  .marquee-track:hover {
      animation-play-state: paused;
  }

  @keyframes marquee {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  .tech-item {
      padding: 0 48px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      white-space: nowrap;
  }

  .tech-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal-light);
      flex-shrink: 0;
  }

  .tech-name {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      color: rgba(138, 154, 176, 0.85);
      letter-spacing: 0.5px;
  }

  /* INDUSTRIES */
  #industries {
      background: var(--dark);
      padding: 120px 60px;
  }

  .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
  }

  .industry-card {
      position: relative;
      overflow: hidden;
      height: 260px;
      cursor: none;
  }

  .industry-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      filter: saturate(0.3) brightness(0.6);
  }

  .industry-card:hover img {
      transform: scale(1.08);
      filter: saturate(0.7) brightness(0.7);
  }

  .industry-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
              rgba(8, 12, 16, 0.95) 0%,
              rgba(8, 12, 16, 0.3) 60%,
              transparent 100%);
      transition: background 0.5s;
  }

  .industry-card:hover .industry-overlay {
      background: linear-gradient(to top,
              rgba(8, 12, 16, 0.98) 0%,
              rgba(14, 152, 152, 0.2) 60%,
              rgba(244, 120, 32, 0.1) 100%);
  }

  .industry-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 32px;
  }

  .industry-name {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
  }

  .industry-sub {
      font-size: 11px;
      color: rgba(138, 154, 176, 0.8);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-family: var(--font-mono);
  }

  /* TESTIMONIALS */
  #testimonials {
      background: var(--dark2);
      padding: 120px 60px;
  }

  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
  }

  .testimonial-card {
      padding: 44px 40px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
  }

  .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      right: 32px;
      font-family: var(--font-heading);
      font-size: 120px;
      font-weight: 700;
      color: rgba(13, 158, 142, 0.06);
      line-height: 1;
      pointer-events: none;
  }

  .testimonial-card:hover {
      border-color: rgba(13, 158, 142, 0.3);
      transform: translateY(-4px);
  }

  .testimonial-text {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.85;
      font-weight: 400;
      margin-bottom: 32px;
      letter-spacing: -0.1px;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy), var(--teal));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
  }

  .testimonial-name {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.2px;
  }

  .testimonial-role {
      font-size: 12px;
      color: rgba(138, 154, 176, 0.8);
      margin-top: 3px;
      font-weight: 400;
      letter-spacing: 0.2px;
  }

  .testimonial-stars {
      margin-bottom: 20px;
      color: var(--orange);
      font-size: 14px;
      letter-spacing: 3px;
  }

  /* CTA FINALE */
  #cta {
      position: relative;
      overflow: hidden;
      padding: 160px 60px;
      background: var(--dark);
      text-align: center;
  }

  .cta-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%,
              rgba(14, 152, 152, 0.08) 0%,
              transparent 70%);
      pointer-events: none;
  }

  .cta-bg2 {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 40% 40% at 50% 50%,
              rgba(244, 120, 32, 0.06) 0%,
              transparent 60%);
      pointer-events: none;
  }

  .cta-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--teal-light);
      letter-spacing: 5px;
      text-transform: uppercase;
      margin-bottom: 36px;
  }

  .cta-headline {
      font-family: var(--font-heading);
      font-size: clamp(52px, 7vw, 100px);
      font-weight: 800;
      letter-spacing: -3.5px;
      line-height: 0.93;
      margin-bottom: 36px;
  }

  .cta-headline span {
      color: var(--teal-light);
  }

  .cta-sub {
      font-size: 19px;
      color: rgba(138, 154, 176, 0.9);
      font-weight: 400;
      max-width: 520px;
      margin: 0 auto 60px;
      line-height: 1.75;
      letter-spacing: -0.2px;
  }

  .cta-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
  }

  .cta-email {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--teal-light);
      letter-spacing: 1.5px;
      margin-top: 44px;
      text-decoration: none;
      border-bottom: 1px solid rgba(14, 152, 152, 0.3);
      padding-bottom: 3px;
      transition: border-color 0.3s, color 0.3s;
      display: inline-block;
  }

  .cta-email:hover {
      border-color: var(--teal-light);
  }

  /* FOOTER */
  footer {
      background: var(--dark2);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 60px 60px 40px;
  }

  .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
  }

  .footer-brand-desc {
      font-size: 15px;
      color: rgba(138, 154, 176, 0.8);
      line-height: 1.75;
      margin-top: 16px;
      font-weight: 400;
      max-width: 310px;
  }

  .footer-col-title {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 24px;
  }

  .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-links a {
      font-size: 14px;
      color: rgba(138, 154, 176, 0.75);
      text-decoration: none;
      transition: color 0.3s;
      font-weight: 400;
  }

  .footer-links a:hover {
      color: var(--orange);
  }

  .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .footer-copy {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.2);
      font-family: var(--font-mono);
      letter-spacing: 1px;
  }

  .footer-social {
      display: flex;
      gap: 16px;
  }

  .social-btn {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 10px;
      color: rgba(138, 154, 176, 0.7);
      text-decoration: none;
      transition: all 0.3s;
  }

  .social-btn:hover {
      border-color: var(--orange);
      color: var(--orange);
  }

  /* SCROLL LINE */
  .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--navy-mid));
      z-index: 9999;
      transition: width 0.1s linear;
      width: 0%;
  }

  /* DIVIDER */
  .section-divider {
      height: 1px;
      background: linear-gradient(90deg,
              transparent 0%,
              rgba(255, 255, 255, 0.08) 20%,
              rgba(255, 255, 255, 0.08) 80%,
              transparent 100%);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  /* SCROLL REVEAL */
  .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
          transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-delay-1 {
      transition-delay: 0.1s;
  }

  .reveal-delay-2 {
      transition-delay: 0.2s;
  }

  .reveal-delay-3 {
      transition-delay: 0.3s;
  }

  .reveal-delay-4 {
      transition-delay: 0.4s;
  }

  /* NOISE OVERLAY */
  body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9997;
      opacity: 0.4;
  }

  /* HORIZONTAL RULE ORANGE */
  .orange-rule {
      display: block;
      width: 48px;
      height: 3px;
      background: var(--orange);
      margin-bottom: 24px;
  }

  /* GLOWING DOTS DECO */
  .deco-dot {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
  }

  .deco-dot-1 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(14, 152, 152, 0.12) 0%, transparent 70%);
      top: 10%;
      right: 5%;
  }

  .deco-dot-2 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(244, 120, 32, 0.1) 0%, transparent 70%);
      bottom: 20%;
      left: 8%;
  }

  /* NAV SCROLL GLASS */
  nav.scrolled {
      background: rgba(8, 15, 26, 0.97) !important;
      backdrop-filter: blur(20px) !important;
      border-bottom: 1px solid rgba(13, 158, 142, 0.15);
  }

  /* HERO IMAGE FIX */
  #hero {
      position: relative;
  }

  /* SERVICE CARD ICON HOVER */
  .service-card:hover .service-icon svg {
      transform: scale(1.1);
      transition: transform 0.4s;
  }

  .service-icon svg {
      transition: transform 0.4s;
  }

  /* PROCESS STEP HOVER */
  .process-step:hover .process-step-num {
      color: rgba(244, 120, 32, 0.12);
      transition: color 0.3s;
  }

  .process-step:hover .process-step-title {
      color: var(--teal-light);
      transition: color 0.3s;
  }

  .process-step-title {
      transition: color 0.3s;
  }

  .process-step-num {
      transition: color 0.3s;
  }

  /* MANIFESTO BLOCKQUOTE STYLE */
  #manifesto blockquote {
      position: relative;
  }

  #manifesto blockquote::before {
      content: '\201C';
      position: absolute;
      top: -40px;
      left: -10px;
      font-family: 'Syne', sans-serif;
      font-size: 120px;
      color: rgba(244, 120, 32, 0.1);
      line-height: 1;
      pointer-events: none;
  }

  /* TIMELINE HOVER */
  .timeline-item:hover .timeline-year {
      color: var(--teal-light);
      transition: color 0.3s;
  }

  .timeline-year {
      transition: color 0.3s;
  }

  /* INDUSTRY CARD LABEL UPGRADE */
  .industry-card:hover .industry-name {
      color: var(--orange);
      transition: color 0.3s;
  }

  .industry-name {
      transition: color 0.3s;
  }

  /* SCROLLBAR STYLING */
  ::-webkit-scrollbar {
      width: 4px;
  }

  ::-webkit-scrollbar-track {
      background: var(--dark2);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--teal-deep);
      border-radius: 2px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: var(--teal);
  }

  /* WHY BADGE YEAR UPDATE */
  .why-badge-inner {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 800;
      text-align: center;
      line-height: 1.3;
      animation: rotateBadge 12s linear infinite reverse;
  }