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

html, body {
  width: 100%;
  min-height: 100vh;
  cursor: url(Assets/Images/CursorDesign.png), auto;
  background-color: black;
}

body {
  overflow-x: hidden;
}

.WebDes {
  max-width: 1920px;
  margin: 0 auto;
}

.HeroSection {
  width: 100%;
  margin-bottom: 10vw;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: black;
  user-select: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.SiteNav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100002;

  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity    0.4s ease;

  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.NavInner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 5%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.NavLogo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
}

.NavLinks {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.NavLinks a {
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.NavLinks a:hover {
  color: #fff;
}

.NavCTA {
  padding: 0.4rem 1.05rem;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #000000 !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.NavCTA:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

/* ── Hamburger (hidden on desktop) ── */
.NavHamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 100001;
}

.NavHamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
  opacity   0.3s ease;
}

.NavHamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.NavHamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.NavHamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile full-screen menu ── */
.MobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.MobileMenu.open {
  opacity: 1;
  pointer-events: all;
}

.MobileMenuLinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.MobileMenuLink {
  text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 8vw, 3rem);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.MobileMenuLink:hover {
  color: #fff;
}

.MobileMenuCTA {
  margin-top: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000 !important;
  background-color: #fff;
  padding: 0.35rem 1rem;
  transition: background 0.2s ease !important;
}

/* ============================================================
   Elements — z-index hierarchy
   ============================================================ */

.Background { z-index: 1;  }
.HD4        { z-index: 2;  }
.EVIX       { z-index: 3;  }
.HD3        { z-index: 4;  }
.wDesign    { z-index: 5;  }
.wImpact    { z-index: 5;  }
.HD2        { z-index: 6;  }
.HD1        { z-index: 7;  }
.wSPara     { z-index: 8;  }
.Barcode    { z-index: 8;  }
.Ellipse1   { z-index: 9;  }
.Ellipse2   { z-index: 10; }
.Box        { z-index: 11; }

/* ============================================================
   FINE TUNE
   ============================================================ */

:root {
  --play-state: paused;
  --vector1-rise-dist: 310px;
  --vector2-rise-dist: 500px;
  --vector3-rise-dist: 740px;
  --vector4-rise-dist: 940px;
  --ellipse-rise-dist: 1025px;
  --EVIX-rise-dist: 1000px;
  --DESIGN-rise-dist: 1000px;
  --IMPACT-rise-dist: 1000px;
  --B-wipe-delay: 4.5s;
  --SP-wipe-delay: 4s;
  --SP-wipe-dur:   0.8s;
  --B-wipe-dur:    1.2s;
  --glitch-dur:   3s;
  --glitch-delay: 3s;

  --v1-delay:    1.2s;  --v1-dur:      1.2s;
  --v2-delay:   1.19s;  --v2-dur:    1.175s;
  --v3-delay:  1.185s;  --v3-dur:     1.15s;
  --v4-delay:   1.16s;  --v4-dur:     1.15s;

  --ellipse1-delay: 1.15s;
  --ellipse2-delay: 1.15s;
  --ellipse-dur:     1.4s;

  --Reveal-dist: 0px;

  --EVIX-rise-dur:   11s;
  --EVIX-Hide-dist: 140px;
  --EVIX-delay:        2.2s;
  --EVIX-dur:         0.8s;

  --DESIGN-rise-dur:   1.3s;
  --DESIGN-Hide-dist: 140px;
  --DESIGN-delay:        2.4s;
  --DESIGN-dur:        0.8s;

  --IMPACT-rise-dur:   1.3s;
  --IMPACT-Hide-dist: 195px;
  --IMPACT-delay:        2.8s;
  --IMPACT-dur:        0.8s;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes vectorRise1 {
  from { transform: translateY(var(--vector1-rise-dist)); }
  to   { transform: translateY(0); }
}
@keyframes vectorRise2 {
  from { transform: translateY(var(--vector2-rise-dist)); }
  to   { transform: translateY(0); }
}
@keyframes vectorRise3 {
  from { transform: translateY(var(--vector3-rise-dist)); }
  to   { transform: translateY(0); }
}
@keyframes vectorRise4 {
  from { transform: translateY(var(--vector4-rise-dist)); }
  to   { transform: translateY(0); }
}
@keyframes ellipseRise {
  from { transform: translateY(var(--ellipse-rise-dist)); }
  to   { transform: translateY(0); }
}
@keyframes EVIX-Rise {
  from { transform: translateY(var(--EVIX-rise-dist)); }
  to   { transform: translateY(var(--EVIX-Hide-dist)); }
}
@keyframes EVIX-Reveal {
  from { transform: translateY(var(--EVIX-Hide-dist)); }
  to   { transform: translateY(var(--Reveal-dist)); }
}
@keyframes DESIGN-Rise {
  from { transform: translateY(var(--DESIGN-rise-dist)); }
  to   { transform: translateY(var(--DESIGN-Hide-dist)); }
}
@keyframes DESIGN-Reveal {
  from { transform: translateY(var(--DESIGN-Hide-dist)); }
  to   { transform: translateY(var(--Reveal-dist)); }
}
@keyframes IMPACT-Rise {
  from { transform: translateY(var(--IMPACT-rise-dist)); }
  to   { transform: translateY(var(--IMPACT-Hide-dist)); }
}
@keyframes IMPACT-Reveal {
  from { transform: translateY(var(--IMPACT-Hide-dist)); }
  to   { transform: translateY(var(--Reveal-dist)); }
}
@keyframes wipeLeft {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0);   }
}
@keyframes glitch {
  0%   { transform: translate(0);         opacity: 1;   }
  10%  { transform: translate(-3px, 1px); opacity: 0.8; }
  12%  { transform: translate(3px, -1px); opacity: 1;   }
  14%  { transform: translate(0);         opacity: 0.3; }
  16%  { transform: translate(0);         opacity: 1;   }
  80%  { transform: translate(0);         opacity: 1;   }
  82%  { transform: translate(2px, 1px);  opacity: 0.5; }
  84%  { transform: translate(-2px, 0);   opacity: 1;   }
  86%  { transform: translate(0);         opacity: 0.2; }
  88%  { transform: translate(0);         opacity: 1;   }
  100% { transform: translate(0);         opacity: 1;   }
}

/* ============================================================
   BASE
   ============================================================ */

.Background,
.HD1, .HD2, .HD3, .HD4,
.wDesign, .wImpact,
.EVIX, .wSPara, .Barcode,
.Ellipse1, .Ellipse2 {
  position: absolute;
  height: auto;
  animation-play-state: var(--play-state);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.HD1 {
  animation: vectorRise1 var(--v1-dur) cubic-bezier(0.2, 0.55, 0.5, 1) var(--v1-delay) both;
}
.HD2 {
  animation: vectorRise2 var(--v2-dur) cubic-bezier(0.2, 0.65, 0.55, 1) var(--v2-delay) both;
}
.HD3 {
  animation: vectorRise3 var(--v3-dur) cubic-bezier(0.045, 0.9, 0.78, 1) var(--v3-delay) both;
}
.HD4 {
  animation: vectorRise4 var(--v4-dur) cubic-bezier(0, 0.95, 0.85, 1) var(--v4-delay) both;
}
.EVIX {
  animation:
    EVIX-Rise   var(--EVIX-rise-dur) linear                      var(--v3-delay)   both,
    EVIX-Reveal var(--EVIX-dur)      cubic-bezier(0, 0, 0.2, 1) var(--EVIX-delay) forwards;
}
.wDesign {
  animation:
    DESIGN-Rise   var(--DESIGN-rise-dur) linear                      var(--v3-delay)    both,
    DESIGN-Reveal var(--DESIGN-dur)      cubic-bezier(0, 0, 0.2, 1) var(--DESIGN-delay) forwards;
}
.wImpact {
  animation:
    IMPACT-Rise   var(--IMPACT-rise-dur) linear                      var(--v3-delay)    both,
    IMPACT-Reveal var(--IMPACT-dur)      cubic-bezier(0, 0, 0.2, 1) var(--IMPACT-delay) forwards;
}
.Ellipse1 {
  animation: ellipseRise var(--ellipse-dur) cubic-bezier(0.3, 0.85, 0.4, 1) var(--ellipse1-delay) both;
}
.Ellipse2 {
  animation: ellipseRise var(--ellipse-dur) cubic-bezier(0.3, 0.85, 0.4, 1) var(--ellipse2-delay) both;
}
.wSPara {
  animation: wipeLeft var(--SP-wipe-dur) ease-out var(--SP-wipe-delay) both;
}
.Barcode {
  animation:
    wipeLeft var(--B-wipe-dur)  ease-out var(--B-wipe-delay)  both,
    glitch   var(--glitch-dur)  linear   var(--glitch-delay)  forwards;
}

/* ============================================================
   HERO SECTION LAYOUT  (desktop / 16:9)
   ============================================================ */

.Background {
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.Box{
  position: relative;
  height: 1000px;
  background-color: #000000;
  margin-top: 54vw;
  z-index: 11;
}

.HD2, .HD3, .HD4 { width: 87.6%; left: 7.34%; }
.HD4     { top: 13%;    }
.HD3     { top: 31.9%;  }
.HD2     { top: 53.9%;  }
.HD1     { width: 61.6%;  top: 71.8%;  left: 7.34%;  }

.wDesign { width: 33.28%; top: 37.59%; left: 13%;    }
.wImpact { width: 51.04%; top: 34.7%;  left: 45%;    }
.EVIX    { width: 21.04%; top: 15.56%; left: 7.19%;  }
.wSPara  { width: 28.8%;  top: 19.35%; left: 29.79%; }
.Barcode { width: 28.49%; top: 20.74%; left: 66.46%; }

.Ellipse1 { width: 100%;   top: 5.5%;   left: 0%;     }
.Ellipse2 { width: 10.73%; top: 70.83%; left: 83.59%; }


.loaded {
  --play-state: running;
}

/* ============================================================
   LOADER
   ============================================================ */

#loader {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

#loader-bar {
  width: 80px;
  height: 1px;
  background: #333;
  position: relative;
  overflow: hidden;
}

#loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: white;
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
  from { left: -100%; }
  to   { left: 100%;  }
}

/* ============================================================
   SHARED
   ============================================================ */

.SectionLabel {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

/* ── Scroll-reveal ───────────────────────────────────── */

.Reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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


/* ============================================================
   ABOUT US
   ============================================================ */

.AboutSection {
  background: #000;
  padding: 10vw 7.34% 6vw;
  position: relative;
  overflow: hidden;
}

.AboutSection::before {
  content: '';
  position: absolute;
  top: 0; left: 7.34%; right: 7.34%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.AboutInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
  margin-bottom: 7vw;
}

.AboutHeadline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
}

.AboutHeadline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}

.AboutBody {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.4rem;
  margin-top: 4rem;
}

.AboutCTA {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 3px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.AboutCTA:hover {
  border-color: #fff;
}

/* STATS */
.StatsRow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.5vw 0;
}

.StatItem {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 2vw;
}

.StatNum {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.StatPlus {
  font-size: 55%;
  opacity: 0.5;
}

.StatLabel {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.StatDivider {
  width: 1px;
  height: 3vw;
  min-height: 32px;
  max-height: 60px;
  background: rgba(255, 255, 255, 0.12);
}


/* ============================================================
   SERVICES
   ============================================================ */

.ServicesSection {
  background: #000;
  padding: 8vw 7.34% 10vw;
  position: relative;
}

.ServicesSection::before {
  content: '';
  position: absolute;
  top: 0; left: 7.34%; right: 7.34%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ServicesHeader {
  margin-bottom: 5vw;
}

.ServicesHeadline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
}

.ServicesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ServiceCard {
  padding: 3.5vw 3vw;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.35s ease;
  cursor: default;
}

.ServiceCard:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ServiceNum {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.22);
  display: block;
  margin-bottom: 1.8rem;
}

.ServiceLine {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.6rem;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ServiceCard:hover .ServiceLine {
  width: 48px;
}

.ServiceTitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.ServiceDesc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
}

.ServicesCTAText {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.01em;
  width: 14vw;
}

.ServicesCTABtn {
  margin-top: 2.5vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.7rem 2rem;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ServicesCTABtn svg path {
  transition: stroke 0.25s ease;
  stroke: #000000;
}

.ServicesCTABtn:hover svg path {
  transition: stroke 0.25s ease;
  stroke: #fff;
}

.GITButton {
  text-decoration: none;
  display: flex;
  padding-top: 8vw;
  padding-left: 4vw;
  cursor: pointer;
}

.ServicesCTABtn {
  background-color: #fff;
  color: #000000 !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.ServicesCTABtn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

/* ============================================================
   FOOTER
   ============================================================ */

.SiteFooter {
  background: #000;
  padding: 8vw 7.34% 4vw;
  position: relative;
}

.SiteFooter::before {
  content: '';
  position: absolute;
  top: 0; left: 7.34%; right: 7.34%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.FooterInner {
  display: flex;
  flex-direction: column;
  gap: 6vw;
}

.FooterTop {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4vw;
  align-items: start;
}

.FooterLogo {
  display: block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.28em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.FooterTagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.842);
  letter-spacing: -0.01em;
}

.FooterColLabel {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 1.8rem;
}

.FooterLinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.FooterLinks a {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.22s ease;
  position: relative;
  display: inline-block;
}

.FooterLinks a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.FooterLinks a:hover { color: #fff; }
.FooterLinks a:hover::after { width: 100%; }

.FooterContact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.FooterContactLabel {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 0.4rem;
}

.FooterContact a {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.22s ease;
}

.FooterContact a:hover { color: #fff; }

.FooterBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.FooterCopy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}


/* ============================================================
   MOBILE HERO  (CSS-only, shown ≤ 560px)
   ============================================================ */

.MobileHero {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* ── Mobile Hero Text Overlay ── */
.MobileHeroText {
  position: absolute;
  bottom: 45%;
  left: 0;
  width: 100%;
  padding: 0 6%;
  z-index: 10;
  pointer-events: none;
}

.MHT-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2vw;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3vw;
}

.MHT-brand {
  display: flex;
  align-items: center;
  gap: 0.3em;
  line-height: 1;
  margin-bottom: 0.15em;
}

.MHT-evix {
  font-family: 'K2D', sans-serif;
  font-size: 15vw;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.MHT-pipe {
  font-family: 'K2D', thin;
  font-weight: 300;
  font-size: 17vw;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin: 0 0.1em;
}

.MHT-craft {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  line-height: 1;
}

.MHT-precision {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 5.5vw;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2vw;
}

.MHT-precision em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  text-transform: none;
}

.MHT-build {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13vw;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  line-height: 1;
}

.MHT-standout {
  color: #fff;
  position: relative;
}

.MHT-standout::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {
  .AboutInner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .StatsRow {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .StatDivider { display: none; }

  .StatItem {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
  }

  .StatItem:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .FooterTop {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .FooterBrand {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 560px)
   ============================================================ */

@media (max-width: 560px) {

  /* ── Nav: always visible on mobile, hamburger shown ── */
  .SiteNav {
    transform: translateY(0) !important;
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.9);
  }

  .MobileHero{
    width: 100%;
    display: block;
    margin-bottom: 15vw;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent);
    mask-image: linear-gradient(to bottom, black 70%, transparent);
  }
  
  .NavLinks     { display: none; }
  .NavHamburger { display: flex; }
  .MobileMenu   { display: flex; }

  /* ── Hero: show CSS mobile hero, hide desktop asset hero ── */
  .MobileHero { display: flex; }
  .WebDes     { display: none; }

  /* ── About: consistent side padding ── */
  .AboutSection {
    margin-top: 0;
    padding: 14vw 6% 10vw;
  }
  .AboutSection::before { left: 6%; right: 6%; }
  .AboutBody { margin-top: 1.5rem; }

  /* ── Services: consistent side padding ── */
  .ServicesSection {
    padding: 14vw 6% 12vw;
  }
  .ServicesSection::before { left: 6%; right: 6%; }
  .ServicesHeader { margin-bottom: 8vw; }
  .ServicesGrid   { grid-template-columns: 1fr; border-left: none;}
  .ServiceCard    { padding: 8vw 6vw; border-right: none;}

  .ServicesCTAText { width: auto; font-size: clamp(1.4rem, 6vw, 2rem); }
  .GITButton       { padding-top: 10vw; padding-left: 6vw; flex-direction: column; gap: 2rem; }
  .ServicesCTABtn {
    margin-top: 2.5vw;
    margin-left: 60vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.7rem 2rem;
    background: #fff;
    border-radius: 999px;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

  /* ── Footer: consistent side padding ── */
  .SiteFooter  { padding: 14vw 6% 8vw; }
  .SiteFooter::before { left: 6%; right: 6%; }
  .FooterInner { gap: 10vw; }
  .FooterTop   { grid-template-columns: 1fr; gap: 3rem; }

  .FooterBottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}