    /* ═══════════════════════════════════════════════
       TOKENS
    ═══════════════════════════════════════════════ */
    :root {
      --white: #FFFFFF;
      --off: #cfcfcf;      /* Richer light-grey background */
      --light: #D5D8DF;    /* Clearly defined borders and lines */
      --silver: #A8AEBA;   /* Visible grey accent/sub-border */
      --mid: #6E7480;      /* Darker grey subtext for high readability */
      --dark: #2F323A;     /* Darker body text for premium look and high contrast */
      --charcoal: #1E2028;
      --black: #0C0D10;
      --green: #22C55E;
      --radius: 0px;
    }

    /* ═══════════════════════════════════════════════
       RESET
    ═══════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.65;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
    }

    /* ═══════════════════════════════════════════════
       TYPOGRAPHY UTILITIES
    ═══════════════════════════════════════════════ */
    .tag {
      font-family: 'Rajdhani', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--mid);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tag::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: currentColor;
      flex-shrink: 0;
    }

    .tag.light {
      color: rgba(255, 255, 255, .38);
    }

    .tag.light::before {
      background: rgba(255, 255, 255, .38);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Rajdhani', sans-serif;
      line-height: 1.06;
    }

    .h-xl {
      font-size: clamp(44px, 8vw, 90px);
      font-weight: 700;
    }

    .h-lg {
      font-size: clamp(36px, 5.5vw, 62px);
      font-weight: 700;
    }

    .h-md {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 700;
    }

    .h-sm {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .body-lg {
      font-size: 17px;
      line-height: 1.72;
    }

    .body-md {
      font-size: 15px;
      line-height: 1.7;
    }

    .body-sm {
      font-size: 13px;
      line-height: 1.65;
    }

    .light-text {
      color: rgba(255, 255, 255, .6);
    }

    .muted {
      color: var(--mid);
    }

    /* ═══════════════════════════════════════════════
       LAYOUT HELPERS
    ═══════════════════════════════════════════════ */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .section {
      padding: 96px 5%;
    }

    .section-sm {
      padding: 72px 5%;
    }

    /* ═══════════════════════════════════════════════
       LOGO SVG  (geometric multi-line recreation)
    ═══════════════════════════════════════════════ */
    .logo-svg-wrap {
      display: inline-block;
      line-height: 0;
    }

    /* ═══════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      background: rgba(10, 11, 14, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      transition: background .3s, box-shadow .3s;
    }

    .nav.solid {
      background: rgba(10, 11, 14, .98);
      box-shadow: 0 2px 24px rgba(0, 0, 0, .35);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }


    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .62);
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: #fff;
      transition: width .3s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: #fff !important;
      color: var(--black) !important;
      padding: 8px 22px !important;
      font-weight: 700 !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--light) !important;
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      transition: .3s;
    }

    .burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
    }

    .burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mob-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--black);
      padding: 20px 5% 28px;
      z-index: 899;
      flex-direction: column;
      gap: 2px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .mob-menu.open {
      display: flex;
    }

    .mob-menu a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 19px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      padding: 11px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      transition: color .2s;
    }

    .mob-menu a:hover {
      color: #fff;
    }

    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1565793979500-eff33da9c71f?w=1920&q=82&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      filter: brightness(.40) grayscale(.4);
      transform: scale(1.04);
      animation: bgZoom 7s ease forwards;
    }

    @keyframes bgZoom {
      to {
        transform: scale(1);
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(42, 42, 42, 0.65) 0%, rgba(10, 10, 10, .35) 55%, rgba(0, 0, 0, .75) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 5%;
      max-width: 860px;
      animation: fadeUp .9s ease .25s both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(36px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 38px;
      height: 1px;
      background: rgba(255, 255, 255, .3);
    }

    .hero-logo-svg {
      margin-bottom: 20px;
    }

    .hero-desc {
      font-size: 17px;
      color: #fff;
      max-width: 520px;
      line-height: 1.72;
      margin-bottom: 44px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-white {
      background: #fff;
      color: var(--black);
    }

    .btn-white:hover {
      background: var(--off);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .07);
      border-color: rgba(255, 255, 255, .65);
    }

    .hero-scroll-cue {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      animation: cueFloat 2.2s ease-in-out infinite;
    }

    @keyframes cueFloat {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(7px);
      }
    }

    .hero-scroll-cue .line {
      width: 1px;
      height: 42px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, .35), transparent);
    }

    .hero-scroll-cue span {
      font-family: 'Rajdhani', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
    }

    /* ═══════════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════════ */
    #about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1180px;
      margin: 0 auto;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      filter: grayscale(.15);
      display: block;
    }

    .about-deco {
      position: absolute;
      bottom: -18px;
      right: -18px;
      width: 130px;
      height: 130px;
      border: 2px solid var(--light);
      z-index: -1;
    }

    .about-deco2 {
      position: absolute;
      top: -18px;
      left: -18px;
      width: 80px;
      height: 80px;
      border: 2px solid var(--light);
      z-index: -1;
    }

    .pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 36px;
    }

    .pillar {
      padding: 18px 20px;
      border: 1px solid var(--light);
      background: var(--off);
      border-left: 3px solid var(--charcoal);
    }

    .pillar-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 5px;
    }

    .pillar-value {
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.25;
    }

    .vm-cards {
      margin-top: 38px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .vm-card {
      padding: 22px 26px;
      border-left: 3px solid var(--charcoal);
      background: var(--off);
      border-right: 1px solid var(--light);
      border-top: 1px solid var(--light);
      border-bottom: 1px solid var(--light);
    }

    .vm-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .vm-text {
      font-size: 14px;
      color: var(--dark);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════
       STATS BAR
    ═══════════════════════════════════════════════ */
    .stats-bar {
      background: var(--charcoal);
      padding: 44px 5%;
    }

    .stats-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      padding: 20px 32px;
      border-right: 1px solid rgba(255, 255, 255, .08);
      text-align: center;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 46px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-desc {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .38);
    }

    /* ═══════════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════════ */
    #services {
      background: var(--off);
    }

    .services-header {
      max-width: 1180px;
      margin: 0 auto 56px;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 40px;
      align-items: end;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .svc-card {
      background: var(--white);
      padding: 40px 32px;
      border: 1px solid var(--light);
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }

    .svc-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--charcoal);
      transform: scaleX(0);
      transition: transform .35s;
      transform-origin: left;
    }

    .svc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, .09);
    }

    .svc-card:hover::after {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 44px;
      height: 44px;
      color: var(--charcoal);
      margin-bottom: 22px;
      stroke-width: 1.6;
    }

    .svc-num {
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--light);
      line-height: 1;
    }

    .svc-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 10px;
    }

    .svc-desc {
      font-size: 14px;
      color: var(--dark);
      line-height: 1.68;
    }

    /* ═══════════════════════════════════════════════
       VIDEO CAROUSEL
    ═══════════════════════════════════════════════ */
    #gallery {
      background: var(--charcoal);
    }

    .gallery-header {
      max-width: 1180px;
      margin: 0 auto 56px;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: end;
    }

    .carousel-container {
      position: relative;
      max-width: 1180px;
      height: 520px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }

    .carousel-track {
      display: flex;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
      min-width: 100%;
      height: 100%;
      box-sizing: border-box;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      width: 50px;
      height: 50px;
      font-size: 24px;
      border-radius: 50%;
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, transform 0.2s;
    }

    .carousel-btn:hover {
      background: rgba(0, 0, 0, 0.7);
      transform: translateY(-50%) scale(1.05);
    }

    .carousel-btn.prev {
      left: 24px;
    }

    .carousel-btn.next {
      right: 24px;
    }

    /* ═══════════════════════════════════════════════
       WHY CHOOSE US
    ═══════════════════════════════════════════════ */
    #why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1180px;
      margin: 0 auto;
    }

    .why-img-stack {
      position: relative;
    }

    .why-img-main {
      width: 100%;
      height: 580px;
      object-fit: cover;
      filter: grayscale(.12);
    }

    .why-img-secondary {
      position: absolute;
      bottom: -36px;
      right: -28px;
      width: 210px;
      height: 210px;
      object-fit: cover;
      filter: grayscale(.12);
      border: 5px solid var(--white);
    }

    .why-list {
      list-style: none;
      margin-top: 36px;
    }

    .why-item {
      display: flex;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid var(--light);
      align-items: flex-start;
      transition: background .2s;
    }

    .why-item:last-child {
      border-bottom: none;
    }

    .why-tick {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      background: var(--charcoal);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .why-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 3px;
    }

    .why-desc {
      font-size: 13.5px;
      color: var(--dark);
      line-height: 1.65;
    }

    /* ═══════════════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════════════ */
    #process {
      background: var(--charcoal);
    }

    .process-header {
      max-width: 1180px;
      margin: 0 auto 64px;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: end;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: 1180px;
      margin: 0 auto;
    }

    .proc-step {
      padding: 38px 32px;
      border: 1px solid rgba(255, 255, 255, .06);
      transition: background .3s;
      position: relative;
      overflow: hidden;
    }

    .proc-step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(255, 255, 255, .0);
      transition: background .3s;
    }

    .proc-step:hover {
      background: rgba(255, 255, 255, .03);
    }

    .proc-step:hover::before {
      background: rgba(255, 255, 255, .12);
    }

    .proc-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 54px;
      font-weight: 700;
      color: rgba(255, 255, 255, .05);
      line-height: 1;
      margin-bottom: 14px;
    }

    .proc-icon {
      width: 42px;
      height: 42px;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 18px;
    }

    .proc-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .proc-desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .42);
      line-height: 1.68;
    }

    /* ═══════════════════════════════════════════════
       CNC CAPABILITIES
    ═══════════════════════════════════════════════ */
    #cnc {
      background: var(--off);
    }

    .cnc-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 60px;
      align-items: stretch;
      max-width: 1180px;
      margin: 0 auto;
    }

    .cnc-units {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 36px;
    }

    .cnc-unit {
      background: var(--white);
      border: 1px solid var(--light);
      border-left: 3px solid var(--charcoal);
      padding: 24px 28px;
    }

    .cnc-unit-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .cnc-spec {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13.5px;
      color: var(--dark);
      margin-bottom: 5px;
    }

    .cnc-spec::before {
      content: '';
      display: inline-block;
      width: 5px;
      height: 5px;
      background: var(--silver);
      flex-shrink: 0;
      margin-top: 6px;
    }

    .cnc-grid > div:last-child {
      display: flex;
    }

    .cnc-img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      filter: grayscale(.18);
    }

    .tools-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 24px;
    }

    .tool-pill {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 12.5px;
      color: var(--dark);
      padding: 9px 14px;
      background: var(--white);
      border: 1px solid var(--light);
    }

    .tool-pill::before {
      content: '';
      width: 4px;
      height: 4px;
      background: var(--charcoal);
      flex-shrink: 0;
    }

    .qa-block {
      margin-top: 28px;
      padding: 22px 26px;
      background: var(--charcoal);
    }

    .qa-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 12px;
    }

    .qa-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .qa-item {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .65);
      padding: 5px 12px;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    /* ═══════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════ */
    #contact {
      background: var(--charcoal);
    }

    .contact-inner {
      max-width: 1040px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(42px, 7vw, 80px);
      font-weight: 700;
      color: #fff;
      line-height: 1.0;
      margin-bottom: 18px;
    }

    .contact-title span {
      color: rgba(255, 255, 255, .22);
    }

    .contact-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, .5);
      max-width: 520px;
      margin: 0 auto 52px;
      line-height: 1.72;
    }

    .contact-btns {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 52px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      padding: 16px 32px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s, background .2s, filter .2s;
      text-decoration: none;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
    }

    .cta-phone {
      background: #fff;
      color: var(--black);
    }

    .cta-phone:hover {
      box-shadow: 0 10px 30px rgba(255, 255, 255, .18);
    }

    .cta-wa {
      background: #25D366;
      color: #fff;
    }

    .cta-wa:hover {
      background: #20c05a;
      box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
    }

    .cta-email {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .28);
    }

    .cta-email:hover {
      background: rgba(255, 255, 255, .06);
      border-color: rgba(255, 255, 255, .55);
    }

    .divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, .07);
      margin-bottom: 44px;
    }

    .contact-details {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 52px;
    }

    .cd-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .cd-label {
      font-family: 'Rajdhani', sans-serif;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
    }

    .cd-value {
      font-size: 14.5px;
      color: rgba(255, 255, 255, .68);
      text-align: center;
    }

    .cd-value a {
      color: inherit;
      transition: color .2s;
    }

    .cd-value a:hover {
      color: #fff;
    }

    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    .footer {
      background: var(--black);
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .footer-logo svg,
    .footer-logo img {
      height: 40px;
      width: auto;
    }

    .footer-copy {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .22);
    }

    .footer-nav {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-nav a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .28);
      transition: color .2s;
    }

    .footer-nav a:hover {
      color: rgba(255, 255, 255, .65);
    }

    /* ═══════════════════════════════════════════════
       REVEAL ANIMATION
    ═══════════════════════════════════════════════ */
    .rev {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .rev.in {
      opacity: 1;
      transform: none;
    }

    .rev.d1 {
      transition-delay: .1s;
    }

    .rev.d2 {
      transition-delay: .2s;
    }

    .rev.d3 {
      transition-delay: .3s;
    }

    .rev.d4 {
      transition-delay: .4s;
    }

    .rev.d5 {
      transition-delay: .5s;
    }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 1024px) {

      .about-grid,
      .why-grid,
      .cnc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services-header,
      .gallery-header {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .process-header {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-img,
      .why-img-main {
        height: 300px;
      }

      .cnc-img {
        height: 280px;
      }

      .why-img-secondary {
        display: none;
      }

      .nav-links {
        display: none;
      }

      .burger {
        display: flex;
      }
    }

    @media (max-width: 580px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .tools-grid {
        grid-template-columns: 1fr;
      }

      .pillars {
        grid-template-columns: 1fr;
      }

      .contact-btns {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-btn {
        justify-content: center;
      }
    }