:root {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-weight: 400;
  letter-spacing: var(--track-tight) !important;
}

h1 {
  font-size: var(--display-size) !important;
  font-weight: 500 !important;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
}

a,
p,
span,
div,
li,
button,
blockquote {
  color: var(--text-dim);
  font-family: inherit;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
  line-height: normal !important;
}

h3 {
  font-size: var(--h3-size);
  line-height: normal !important;
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  font-size: var(--p-size);
  line-height: 1.7 !important;
}

@media (max-width: 662px) {
  h1 {
    font-size: var(--display-size) !important;
    letter-spacing: var(--track-tight) !important;
  }
}
:root {
  --display-xl-size: clamp(3rem, 2rem + 7vw, 7.5rem);
  --display-xl-size: clamp(2.5rem, 1.5rem + 5vw, 6.5rem);
  --display-lg-size: clamp(2.5rem, 1.75rem + 4vw, 5rem);
  --display-size: clamp(2.5rem, 1.5rem + 5vw, 6.5rem);
  --h1-size: clamp(2.4rem, 1.5rem + 3.8vw, 4.5rem);
  --h2-size: clamp(2rem, 1.35rem + 2.8vw, 3.4rem);
  --h3-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.4rem);
  --h4-size: clamp(1.3rem, 1rem + 1.3vw, 1.9rem);
  --h5-size: clamp(1.15rem, 0.95rem + 0.75vw, 1.45rem);
  --h6-size: clamp(1.05rem, 0.9rem + 0.45vw, 1.25rem);
  --p-size: 1rem;
  --small-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
  --small-size: .8rem;
  --header-gap: clamp(2rem, 8vw, 7.5rem);
  --header-gap: clamp(50px, 7vw, 100px);
  --track-tight: -0.031em;
  --track-normal: normal;
  --track-wide: 0.05em;
  --track-widest: 0.1em;
}

:root {
  --bg: #050505;
  --bg-soft: rgba(255, 255, 255, .02);
  --surface: #0f172a;
  --surface: #090909;
  --surface-2: #111c33;
  --border: rgba(255, 255, 255, .1);
  --text: #F5F5F5;
  --text-muted: rgba(255, 255, 255, .35);
  --text-dim: rgba(255, 255, 255, .48);
  --primary: #1FAF54;
  --secondary: #4ADE80;
  --accent: #38BDF8;
  --primary-soft: color-mix(in srgb, var(--primary) 12%, transparent);
  --primary-subtle: color-mix(in srgb, var(--primary) 10%, transparent);
  --accent-soft: color-mix(in srgb, var(--accent) 18%, transparent);
  --danger: #ef4444;
  --warning: #f59e0b;
  --glow: #22d3ee;
}

:root {
  --container-max-w: 1280px;
  --container-padding: clamp(1rem, 3vw, 2rem);
  --section-padding: 6vw;
}

:root {
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
}

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

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  font-size: var(--p-size);
  color: var(--text-dim);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  cursor: default;
}

a,
a *,
button,
button *,
[role=button],
[role=button] * {
  cursor: pointer;
}

.eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  margin-bottom: 1.4rem !important;
  background: var(--primary-soft) !important;
  width: max-content !important;
  color: var(--primary) !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px !important;
  font-size: var(--small-size) !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #1FAF54;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  transform: scale(0) rotateZ(-180deg);
  opacity: 0;
  z-index: 9999;
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

#light {
  position: fixed;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--primary) 20%, color-mix(in srgb, var(--primary) 18%, transparent) 70%, transparent 100%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
  opacity: 0.5;
  animation: lightPulse 3s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% {
    scale: 1;
    opacity: 0.45;
  }
  50% {
    scale: 1.05;
    opacity: 0.6;
  }
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #050505;
}

::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 10px;
  border: 2px solid #050505;
  box-shadow: 0 0 20px rgba(157, 124, 255, 0.25);
  transition: 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

body > .grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 90%);
  z-index: -1;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("/assets/img/noice.svg");
}

.glow-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(157, 124, 255, 0.6), transparent);
  left: 5vw;
  top: 0;
  opacity: 0;
}
@media (max-width: 662px) {
  .glow-line {
    display: none;
  }
}

.social-rail {
  position: fixed;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
}
.social-rail a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.social-rail a:first-child,
.social-rail a:nth-child(2),
.social-rail a:nth-child(5) {
  display: none;
}
.social-rail a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
@media (max-width: 992px) {
  .social-rail {
    left: 1.8vw;
    gap: 14px;
  }
  .social-rail a {
    font-size: var(--small-size);
  }
}
@media (max-width: 600px) {
  .social-rail {
    display: none;
  }
}
.social-rail .side-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  user-select: none;
}
.social-rail .side-time .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary) !important;
  box-shadow: 0 0 12px var(--secondary) !important;
  transition: 0.3s ease;
}
.social-rail .side-time__clock {
  font-size: var(--small-size);
  font-weight: 500;
  color: var(--text);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.08em;
}
.social-rail .side-time__location,
.social-rail .side-time__zone {
  font-size: clamp(0.65rem, 0.65vw, 0.75rem);
  color: var(--text);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb {
  font-size: var(--p-size);
  margin-bottom: 50px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb li {
  color: var(--text);
  opacity: 0.5;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  color: var(--text-dim);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  text-decoration: none;
  color: var(--text-dim);
  transition: 0.5s ease;
  opacity: 1;
}
.breadcrumb a:hover {
  color: var(--text);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 900;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-4px);
  background: rgba(157, 124, 255, 0.2);
}

.cta {
  position: relative;
  width: max-content;
  padding: 18px 34px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 15px;
  overflow: hidden;
  will-change: transform;
  transition: all 0.3s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta:hover span {
  transform: translateX(5px);
  transition: 0.3s ease;
}

.cta--primary {
  background: var(--primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--primary) 33%, transparent);
}

.cta--primary:hover {
  box-shadow: 0 5px 25px color-mix(in srgb, var(--primary) 53%, transparent) !important;
}

.cta--secondary {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.cta--secondary span {
  color: var(--primary);
}

.cta--secondary:hover {
  box-shadow: 0 5px 30px color-mix(in srgb, var(--primary) 53%, transparent) !important;
}

:root {
  --lightbox-background: rgb(8 8 10 / 96%);
  --lightbox-control-background: rgb(255 255 255 / 10%);
  --lightbox-control-hover: rgb(255 255 255 / 18%);
  --lightbox-text: rgb(255 255 255);
  --lightbox-muted: rgb(255 255 255 / 60%);
}

.case-study-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.case-study-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  cursor: zoom-in;
}

.case-study-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 400ms ease;
}

.case-study-gallery__item:hover img {
  transform: scale(1.02);
}

/* Modern lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  background: var(--lightbox-background);
  overscroll-behavior: none;
  touch-action: none;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__viewport {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: grab;
}

.lightbox__viewport.is-dragging {
  cursor: grabbing;
}

.lightbox__image {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  user-select: none;
  transform-origin: center;
  will-change: transform;
}

.lightbox__close,
.lightbox__previous,
.lightbox__next {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(2.75rem, 4vw, 3.5rem);
  height: clamp(2.75rem, 4vw, 3.5rem);
  border: 0;
  border-radius: 50%;
  background: var(--lightbox-control-background);
  color: var(--lightbox-text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  cursor: pointer;
  backdrop-filter: blur(1rem);
  transition: background-color 200ms ease, transform 200ms ease;
}

.lightbox__close:hover,
.lightbox__previous:hover,
.lightbox__next:hover {
  background: var(--lightbox-control-hover);
  transform: scale(1.05);
}

.lightbox__close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  backdrop-filter: none;
}

.lightbox__previous {
  top: 50%;
  left: clamp(1rem, 3vw, 2rem);
  transform: translateY(-50%);
}

.lightbox__next {
  top: 50%;
  right: clamp(1rem, 3vw, 2rem);
  transform: translateY(-50%);
}

.lightbox__previous:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox__status {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--lightbox-muted);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  transform: translateX(-50%);
  backdrop-filter: blur(1rem);
}

.lightbox button:focus-visible {
  outline: 2px solid var(--lightbox-text);
  outline-offset: 4px;
}

body.lightbox-is-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .case-study-gallery {
    grid-template-columns: 1fr;
  }
  .lightbox__previous,
  .lightbox__next {
    top: auto;
    bottom: 1rem;
  }
  .lightbox__previous {
    left: 1rem;
  }
  .lightbox__next {
    right: 1rem;
  }
  .lightbox__status {
    bottom: 1.5rem;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
.preloader .ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  animation: spin 1.2s linear infinite;
  filter: drop-shadow(0 0 20px rgba(123, 97, 255, 0.3));
}
.preloader .center {
  text-align: center;
  color: var(--text);
}
.preloader .logo {
  letter-spacing: var(--track-wide);
  color: var(--text);
  text-transform: uppercase;
  font-size: var(--h5-size);
}
.preloader .percent {
  margin-top: 10px;
  color: var(--primary);
}
.preloader .percent span {
  color: var(--primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 var(--section-padding);
  z-index: 100;
}
.navbar.scrolled {
  backdrop-filter: blur(20px);
}
.navbar .container {
  width: 100%;
  max-width: var(--container-max-w);
  margin: auto;
  padding-block: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1.7rem;
  letter-spacing: var(--track-wide);
  transition: 0.3s ease;
}
.navbar .logo:hover {
  color: var(--primary);
}
.navbar .logo img {
  height: 22px;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}
.navbar .nav-links li:nth-child(2),
.navbar .nav-links li:nth-child(5) {
  display: none;
}
@media (max-width: 992px) {
  .navbar .nav-links {
    display: none;
  }
}
.navbar .nav-links .has-dropdown {
  position: relative;
}
.navbar .nav-links .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-links .has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.navbar .nav-links .has-dropdown > .nav-link i, .navbar .nav-links .has-dropdown > .nav-link::before {
  order: 2;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.navbar .nav-links .has-dropdown > .nav-link::after {
  display: none !important;
}
.navbar .nav-links .has-dropdown:hover > .nav-link i, .navbar .nav-links .has-dropdown:hover > .nav-link::before {
  transform: rotate(180deg);
}
.navbar .nav-links .has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  padding-top: 0.75rem;
  left: 0;
  transform: translateY(0.75rem);
  min-width: 200px;
  padding: 0.75rem 0;
  list-style: none;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 20;
}
.navbar .nav-links .has-dropdown .dropdown-menu li {
  display: block !important;
}
.navbar .nav-links .has-dropdown .dropdown-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-size: var(--p-size);
  transition: 0.25s ease;
}
.navbar .nav-links .has-dropdown .dropdown-menu a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}
.navbar .nav-links .has-dropdown .dropdown-menu .tooltip {
  display: none;
}
.navbar .nav-link {
  position: relative;
  text-decoration: none;
  font-size: var(--p-size);
  font-weight: 300;
  padding: 6px 0;
  transition: 0.3s ease;
}
.navbar .nav-link.active {
  color: var(--text);
}
.navbar .nav-link:hover {
  color: var(--primary);
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: 0.4s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  width: 100%;
}
.navbar .nav-link.active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.navbar .nav-link .tooltip {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.navbar .nav-link:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .navbar .nav-right {
    display: none;
  }
}
.navbar .nav-phone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s ease;
  display: none;
}
.navbar .nav-phone:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.navbar .nav-phone .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.8s infinite;
}
.navbar .nav-phone .tooltip {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  background: #111;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.75rem;
  transition: 0.25s ease;
}
.navbar .nav-phone:hover .tooltip {
  opacity: 1;
}
.navbar .nav-btn {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.navbar .nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 30px color-mix(in srgb, var(--primary) 53%, transparent);
}
.navbar .menu-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: none;
  cursor: pointer;
}
.navbar .menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}
@media (max-width: 992px) {
  .navbar .menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(65vw, 380px);
  height: 100dvh;
  padding: 2rem;
  background: #050505;
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: 0.35s ease;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .menu-close {
  background: none;
  border: 0;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-menu .mobile-links {
  list-style: none;
  padding: 3rem 0;
}
.mobile-menu .mobile-links li {
  margin-bottom: 1.5rem;
}
.mobile-menu .mobile-links li:nth-child(4) {
  display: none;
}
.mobile-menu .mobile-links a {
  text-decoration: none;
  font-size: var(--p-size);
}
.mobile-menu .mobile-links a:hover {
  color: var(--primary);
}
.mobile-menu .mobile-links a.active {
  color: var(--text);
}
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}
.footer {
  position: relative;
  padding: 0 var(--section-padding);
  overflow-x: hidden;
}
.footer .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0 60px;
}
.footer .footer-watermark {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 40px;
  font-size: min(23vw, 420px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.01);
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
  letter-spacing: 10px;
}
.footer .footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 4fr auto auto auto;
  gap: 60px;
}
.footer .eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: var(--small-size) !important;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer .footer-brand {
  width: max-content;
}
.footer .footer-email {
  position: relative;
  display: inline-block;
  color: var(--text);
  margin-top: 30px;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 0.95;
  text-decoration: none;
  font-style: normal;
  transition: 0.3s ease;
}
.footer .footer-email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer .footer-email:hover {
  color: var(--primary);
}
.footer .footer-email:hover::after {
  width: 100%;
}
.footer .footer-brand p {
  margin-top: 30px;
  max-width: 450px;
}
.footer .footer-brand p.footer-lead {
  margin-top: 20px;
  max-width: 500px;
  font-size: var(--p-size);
}
.footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer-column span,
.footer .footer-column h3 {
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: var(--p-size);
}
.footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.footer .footer-column li {
  font-size: var(--small-size);
  letter-spacing: var(--track-wide);
}
.footer .footer-column a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 15px;
}
.footer .footer-column a:hover {
  color: var(--text);
  transform: translateX(10px);
}
.footer .footer-column:nth-child(2) li:nth-child(4) {
  display: none;
}
.footer .socials {
  display: none;
}
.footer #social-title + ul li:last-child {
  display: none;
}
.footer .footer-bottom {
  position: relative;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: var(--small-size);
  margin: 0 8px;
  transition: 0.3s ease;
}
.footer .footer-bottom a:hover {
  color: var(--text);
}
.footer .footer-bottom p {
  font-size: var(--small-size);
}
@media (max-width: 1300px) {
  .footer .footer-top {
    grid-template-columns: 3fr auto auto;
  }
}
@media (max-width: 1100px) {
  .footer .footer-top {
    grid-template-columns: repeat(2, auto);
    gap: 60px;
  }
  .footer .footer-brand {
    width: 60%;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .footer .footer-brand {
    width: 100%;
  }
  .footer .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .footer .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer .footer-column {
    gap: 12px;
  }
  .footer .footer-column span,
  .footer .footer-column h3 {
    margin-bottom: 10px;
  }
  .footer .socials {
    display: block;
  }
  .footer .footer-bottom span {
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .footer .footer-watermark {
    font-size: 28vw;
    bottom: 20px;
    opacity: 0.015;
  }
  .footer .footer-brand .footer-email {
    font-size: 34px;
  }
  .footer .footer-bottom {
    font-size: 0.85rem;
  }
}

.hero {
  position: relative;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 150vh;
}

.hero {
  position: relative;
  padding: 0 var(--section-padding);
}
.hero .container {
  max-width: var(--container-max-w);
  min-height: 100vh;
  padding: 10rem 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}
.hero .hero-left {
  width: 55%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-right {
  width: 45%;
  display: flex;
  justify-content: center;
  display: none;
}
.hero .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: block;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero .heading {
  font-size: var(--h2-size);
  line-height: 0.95;
  font-weight: 500;
  color: var(--text);
}
.hero .heading span {
  font-family: "Inter", sans-serif;
  font-size: 110%;
  color: var(--primary);
}
.hero .subtitle {
  max-width: 520px;
  margin-top: 2.5rem;
  font-size: var(--h6-size);
  color: var(--text);
  opacity: 0.7;
}
.hero .trust-line {
  color: var(--text);
  margin-top: 2.5rem;
}
.hero .hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hero .mockup {
  width: 520px;
  height: 340px;
  border-radius: var(--radius-xl);
  background: url("/assets/img/hero.png") no-repeat center/cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg) scale(1.15) translateY(-40px);
  box-shadow: 0 30px 100px color-mix(in srgb, var(--primary) 13%, transparent);
  opacity: 0;
}
.hero .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  z-index: 3;
  display: none;
}
.hero .scroll-cue span {
  font-size: var(--small-size);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero .scroll-cue .line {
  position: relative;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.hero .scroll-cue .dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary), 0 0 30px var(--primary);
  animation: scrollDot 2s infinite ease;
}
@media (max-width: 1200px) {
  .hero .mockup {
    width: 420px;
    height: 300px;
  }
}
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 60px;
    padding-inline: 8vw;
  }
  .hero .hero-left,
  .hero .hero-right {
    width: 100%;
  }
  .hero .eyebrow {
    margin-inline: auto;
  }
  .hero .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero .heading .line .word-wrapper {
    text-align: center;
  }
  .hero .subtitle {
    margin: 25px auto 0;
  }
  .hero .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero .mockup {
    height: 300px;
    width: min(90%, 500px);
    transform: rotate(0deg);
  }
}
@media (max-width: 450px) {
  .hero .hero-buttons .cta {
    width: 100%;
  }
}

@keyframes scrollDot {
  0% {
    top: -10px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.trust {
  padding: 0 var(--section-padding);
  text-align: center;
  display: none;
}
.trust .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.trust .container .header {
  max-width: var(--container-max-w);
  margin-inline: auto;
  margin-bottom: var(--header-gap);
}
.trust .container .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: block;
  margin-bottom: 30px;
}
.trust .container .heading {
  font-size: var(--h2-size);
  line-height: 0.95;
}
.trust .container .description {
  max-width: 550px;
  margin-top: 30px;
  font-size: var(--p-size);
  margin-inline: auto;
}
.trust .container .trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: var(--container-max-w);
  margin-inline: auto;
}
.trust .container .logo-box {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
  font-size: var(--p-size);
}
.trust .container .logo-box:hover {
  border-color: rgba(157, 124, 255, 0.4);
  color: var(--primary);
  transform: translateY(-5px);
}

.stats-section {
  position: relative;
  padding: 0 var(--section-padding);
}
.stats-section .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.stats-section .container .header {
  text-align: center;
  margin-bottom: var(--header-gap);
  display: none;
}
.stats-section .container .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: block;
  margin-bottom: 30px;
}
.stats-section .container .heading {
  font-size: var(--h2-size);
  line-height: 0.95;
}
.stats-section .container .description {
  max-width: 550px;
  margin-top: 30px;
  font-size: var(--p-size);
}
.stats-section .container .stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}
.stats-section .container .stats-grid > * {
  flex: 0 1 200px;
  text-align: center;
}
.stats-section .container .stat .counter {
  font-size: var(--display-size);
  line-height: 0.95;
  letter-spacing: var(--track-tight);
  transition: 0.3s ease;
}
.stats-section .container .stat p {
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--p-size);
  transition: 0.3s ease;
}
.stats-section .container .stat:hover .counter {
  color: var(--primary);
  text-shadow: 0 0 10px color-mix(in srgb, var(--primary) 40%, transparent), 0 0 30px color-mix(in srgb, var(--primary) 25%, transparent);
}
.stats-section .container .stat:hover p {
  color: var(--text);
}
@media (max-width: 900px) {
  .stats-section .container .stats-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .stats-section .container .stats-heading {
    margin-bottom: 90px;
  }
}

.services {
  position: relative;
  padding: 0 var(--section-padding);
}
.services .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(80px, 10vw, 160px) 0;
}
.services .services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(50px, 8vw, 140px);
}
.services .header {
  position: sticky;
  top: 150px;
}
.services .header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.services .eyebrow {
  color: var(--primary);
  font-size: var(--small-size);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.services .header-line {
  width: 45px;
  height: 1px;
  background: var(--primary);
}
.services .header-count {
  color: var(--text-muted);
  font-size: var(--small-size);
}
.services .heading {
  max-width: 550px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-size: var(--h2-size);
  line-height: 0.95;
}
.services .heading span {
  display: block;
  color: var(--primary);
}
.services .description {
  max-width: 450px;
  margin-top: 35px;
  font-size: var(--p-size);
}
.services .services-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 45px;
}
.services .services-cta span {
  color: var(--text);
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.services .service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(25px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  background: var(--surface);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s ease;
}
.services .service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services .service-card:hover {
  border-color: color-mix(in srgb, var(--primary) 55%, transparent);
  background: var(--surface);
  transform: translateY(-8px);
}
.services .service-card:hover::before {
  opacity: 1;
}
.services .service-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .service-number {
  color: var(--primary);
  font-size: var(--small-size);
  letter-spacing: 2px;
}
.services .service-category {
  font-size: var(--small-size);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.services .service-card-content {
  position: relative;
  z-index: 1;
}
.services .service-card h3 {
  max-width: 420px;
  font-size: var(--h4-size) !important;
}
.services .service-card p {
  max-width: 400px;
  margin-top: 20px;
}
.services .service-arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.services .service-card:hover .service-arrow {
  color: #050505;
  background: var(--primary);
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .services .services-layout {
    grid-template-columns: 1fr;
  }
  .services .header {
    position: relative;
    top: auto;
  }
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services .services-grid {
    grid-template-columns: 1fr;
  }
  .services .service-card {
    min-height: 340px;
  }
}

.work {
  padding: 0 var(--section-padding);
}
.work .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.work .header {
  max-width: 850px;
  margin-bottom: var(--header-gap);
}
.work .header .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.work .header .heading {
  font-size: var(--h2-size);
  line-height: 0.95;
}
.work .header .heading span {
  color: var(--primary);
}
.work .header .description {
  max-width: 550px;
  margin-top: 30px;
}
.work .work-layout {
  display: grid;
  grid-template-columns: 1fr 260px 220px;
  gap: 60px;
}
.work .project-list {
  position: relative;
}
.work .project-list .project-card {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 7.5rem;
  scroll-margin-top: 150px;
}
.work .project-list .project-card:last-child {
  margin-bottom: 0;
}
.work .project-list .project-card__image {
  margin: 0;
}
.work .project-list .project-card__image img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
}
.work .project-list .project-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.work .project-list .project-card__title {
  margin: 0;
  font-size: var(--h3-size);
  font-weight: 500;
}
.work .project-list .project-card__description {
  max-width: 650px;
  margin: 0;
}
.work .project-list .project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.work .project-list .project-card__tech span {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  font-size: var(--small-size);
}
.work .project-list .project-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.work .project-list .project-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}
.work .project-list .project-card__button span,
.work .project-list .project-card__button i {
  color: var(--text);
}
.work .project-list .project-card__button:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}
.work .project-list .project-card__button:hover span, .work .project-list .project-card__button:hover i {
  color: var(--primary);
  border-color: var(--primary);
}
.work .project-list .project-card__button--outline {
  background: transparent;
}
.work .work-info {
  position: sticky;
  top: 150px;
  height: fit-content;
}
.work .work-info .info-box {
  padding: 20px 0;
}
.work .work-info .info-box:first-child {
  padding-top: 0;
}
.work .work-info .label {
  font-size: var(--small-size);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.work .work-info .value {
  margin-top: 8px;
  color: var(--text);
  display: block;
}
.work .work-info .view-all {
  display: inline-block;
  margin-top: 40px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 2px;
  transform: translateY(80px);
  opacity: 0;
}
.work .work-info .view-all:hover {
  color: var(--primary);
}
.work .work-nav {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: fit-content;
}
.work .work-nav .nav-item {
  cursor: pointer;
  transition: 0.3s ease;
}
.work .work-nav .nav-item span {
  color: var(--primary);
  margin-right: 10px;
}
.work .work-nav .nav-item.active {
  color: var(--text);
}
@media (max-width: 1000px) {
  .work .work-layout {
    grid-template-columns: 1fr;
  }
  .work .work-nav {
    position: relative;
    flex-direction: row;
    overflow: auto;
  }
  .work .work-info {
    position: relative;
    margin-top: 60px;
  }
}

.tech-stack {
  position: relative;
  overflow: hidden;
  padding: 0 var(--section-padding);
}
.tech-stack::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.035;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.tech-stack .container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(80px, 10vw, 160px) 0;
}
.tech-stack .header {
  max-width: 850px;
  margin-bottom: var(--header-gap);
}
.tech-stack .header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.tech-stack .eyebrow {
  color: var(--primary);
  font-size: var(--small-size);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.tech-stack .header-line {
  width: 60px;
  height: 1px;
  background: var(--primary);
  opacity: 0.7;
}
.tech-stack .header-count {
  color: var(--text-muted);
  font-size: var(--small-size);
  letter-spacing: 1px;
}
.tech-stack .heading {
  max-width: 800px;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-size: var(--h2-size);
  line-height: 0.95;
}
.tech-stack .heading span {
  color: var(--primary);
}
.tech-stack .description {
  max-width: 570px;
  margin-top: 35px;
  font-size: var(--p-size);
  line-height: 1.8;
}
.tech-stack .tech-panels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
.tech-stack .tech-row {
  position: relative;
  isolation: isolate;
  grid-column: span 4;
  min-height: 440px;
  padding: clamp(28px, 3vw, 48px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease, background 0.45s ease;
}
.tech-stack .tech-row:nth-child(1),
.tech-stack .tech-row:nth-child(2),
.tech-stack .tech-row:nth-child(6),
.tech-stack .tech-row:nth-child(7) {
  grid-column: span 6;
}
.tech-stack .tech-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 35%);
  transition: opacity 0.45s ease;
}
.tech-stack .tech-row::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.tech-stack .tech-row:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--surface);
  transform: translateY(-8px);
}
.tech-stack .tech-row:hover::before,
.tech-stack .tech-row:hover::after {
  opacity: 1;
}
.tech-stack .tech-row:hover::after {
  transform: scaleX(1);
}
.tech-stack .tech-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.tech-stack .tech-number {
  color: var(--primary);
  font-size: var(--small-size);
  font-weight: 600;
  letter-spacing: 2px;
}
.tech-stack .tech-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.tech-stack .tech-row:hover .tech-arrow {
  color: #050505;
  background: var(--primary);
  transform: rotate(45deg);
}
.tech-stack .category {
  margin-top: clamp(80px, 9vw, 130px);
}
.tech-stack .category h3 {
  max-width: 500px;
  font-size: var(--h4-size) !important;
}
.tech-stack .category p {
  max-width: 390px;
  margin-top: 22px;
}
.tech-stack .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}
.tech-stack .tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--small-size);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.tech-stack .tech-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.tech-stack .tech-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}
.tech-stack {
  /* RESPONSIVE */
}
@media (max-width: 1100px) {
  .tech-stack .tech-row {
    grid-column: span 6;
    min-height: 420px;
  }
  .tech-stack .tech-row:nth-child(4),
  .tech-stack .tech-row:nth-child(5) {
    grid-column: span 6;
  }
  .tech-stack .category {
    margin-top: clamp(60px, 8vw, 100px);
  }
}
@media (max-width: 768px) {
  .tech-stack {
    overflow-x: clip;
  }
  .tech-stack .container {
    padding-block: clamp(70px, 12vw, 110px);
  }
  .tech-stack .header {
    margin-bottom: clamp(40px, 8vw, 70px);
  }
  .tech-stack .header-meta {
    gap: 12px;
    margin-bottom: 24px;
  }
  .tech-stack .header-line {
    width: 35px;
  }
  .tech-stack .heading {
    font-size: clamp(3rem, 12vw, 5.5rem);
  }
  .tech-stack .description {
    margin-top: 26px;
  }
  .tech-stack .tech-panels {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tech-stack .tech-row,
  .tech-stack .tech-row:nth-child(4),
  .tech-stack .tech-row:nth-child(5) {
    grid-column: span 1;
    min-height: 390px;
    padding: clamp(22px, 5vw, 32px);
  }
  .tech-stack .category {
    margin-top: clamp(55px, 10vw, 80px);
  }
  .tech-stack .category h3 {
    font-size: clamp(1.7rem, 5vw, 2.5rem);
  }
  .tech-stack .category p {
    margin-top: 16px;
  }
  .tech-stack .tech-list {
    gap: 8px;
    margin-top: 35px;
  }
  .tech-stack .tech-pill {
    padding: 8px 10px;
  }
  .tech-stack .tech-pill img {
    width: 18px;
    height: 18px;
  }
  .tech-stack .tech-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .tech-stack .header-meta {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .tech-stack .header-line {
    width: 25px;
  }
  .tech-stack .header-count {
    width: 100%;
  }
  .tech-stack .heading {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }
  .tech-stack .tech-panels {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tech-stack .tech-row,
  .tech-stack .tech-row:nth-child(4),
  .tech-stack .tech-row:nth-child(5) {
    grid-column: 1;
    min-height: auto;
    padding: 28px 24px 30px;
  }
  .tech-stack .category {
    margin-top: 70px;
  }
  .tech-stack .category h3 {
    max-width: 90%;
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .tech-stack .category p {
    max-width: 100%;
  }
  .tech-stack .tech-list {
    margin-top: 40px;
  }
  .tech-stack .tech-pill {
    padding: 8px 11px;
  }
}

.process {
  padding: 0 var(--section-padding);
}
.process .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.process .container .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: block;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.process .container .heading {
  max-width: 850px;
  font-size: var(--h2-size);
  line-height: 0.95;
}
.process .container .heading span {
  color: var(--primary);
}
.process .container .description {
  max-width: 550px;
  margin-top: 30px;
  font-size: var(--p-size);
  margin-bottom: var(--header-gap);
}
.process .container .timeline {
  position: relative;
}
.process .container .timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  display: inline-block;
}
.process .container .timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 50px;
}
.process .container .timeline-item:last-child {
  margin-bottom: 0;
}
.process .container .timeline-item:nth-child(even) {
  justify-content: flex-end;
}
.process .container .timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 65px;
  height: 65px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-size: var(--h5-size);
  background: var(--primary);
  color: white;
  z-index: 2;
}
.process .container .timeline-card {
  width: min(480px, 45%);
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: 0.3s ease;
}
.process .container .timeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
.process .container .timeline-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--primary);
  border: 0.5px solid var(--border);
  background: var(--primary-soft);
  font-size: var(--h5-size);
  margin-bottom: 1.5rem;
}
.process .container .timeline-card h3 {
  font-size: var(--h4-size);
  margin-bottom: 1rem;
}
.process .container .timeline-card p {
  font-size: var(--p-size);
}
@media (max-width: 900px) {
  .process .container .timeline-progress {
    left: 35px;
  }
  .process .container .timeline-item,
  .process .container .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 90px;
  }
  .process .container .timeline-dot {
    left: 35px;
  }
  .process .container .timeline-card {
    width: 100%;
  }
}

.why-us {
  padding: 0 var(--section-padding);
}
.why-us .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.why-us .header {
  max-width: 850px;
  margin-bottom: var(--header-gap);
}
.why-us .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.why-us .heading {
  font-size: var(--h2-size);
  line-height: 0.95;
}
.why-us .heading span {
  color: var(--primary);
}
.why-us .description {
  max-width: 550px;
  margin-top: 30px;
}
.why-us {
  /* COMPARISON */
}
.why-us .comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}
.why-us .column-title {
  font-size: var(--h4-size);
  margin-bottom: 40px;
}
.why-us .column-title.right {
  color: var(--primary);
}
.why-us .why-us-item {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 18px;
}
.why-us .why-us-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.why-us .icon {
  font-size: var(--h6-size);
}
.why-us .left .icon {
  color: rgba(255, 255, 255, 0.3);
}
.why-us .right .icon {
  color: var(--primary);
}
.why-us .why-us-item h3 {
  font-size: var(--h5-size);
  margin-bottom: 10px;
  font-weight: normal;
}
.why-us .why-us-item p {
  transition: 0.3s ease;
}
.why-us .why-us-item:hover p {
  color: var(--text);
}
.why-us {
  /* QUOTE */
}
.why-us .quote {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 100px;
  text-align: center;
  display: none;
}
.why-us .quote .heading {
  font-size: var(--h2-size);
  line-height: 0.95;
  letter-spacing: var(--track-tight);
}
.why-us .quote .description {
  max-width: 550px;
  margin-top: 30px;
}
.why-us {
  /* STATS */
}
.why-us .why-us-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 100px 0 0;
}
.why-us .stat-item {
  /* border-top: 1px solid rgba(255, 255, 255, .08); */
  padding-top: 30px;
  text-align: center;
}
.why-us .stat-number {
  font-size: var(--display-size);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: var(--track-tight);
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.why-us .stat-text {
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--p-size);
  transition: 0.3s ease;
}
.why-us .stat-item:hover .stat-number {
  color: var(--primary);
  text-shadow: 0 0 10px color-mix(in srgb, var(--primary) 40%, transparent), 0 0 30px color-mix(in srgb, var(--primary) 25%, transparent);
}
.why-us .stat-item:hover .stat-text {
  color: var(--text);
}
@media (max-width: 900px) {
  .why-us .comparison,
  .why-us .stats {
    grid-template-columns: 1fr;
  }
  .why-us .hero-image {
    height: 400px;
  }
  .why-us .quote-image {
    height: 300px;
  }
}

.testimonials {
  position: relative;
  padding: 0 var(--section-padding);
}
.testimonials .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.testimonials .container .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.testimonials .container .heading {
  max-width: 850px;
  font-size: var(--h2-size);
  line-height: 0.95;
}
.testimonials .container .heading span {
  color: var(--primary);
}
.testimonials .container .description {
  max-width: 550px;
  margin-top: 30px;
  margin-bottom: var(--header-gap);
}
.testimonials .container .item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.testimonials .container .item {
  position: relative;
  margin-bottom: 50px;
}
.testimonials .container .item:last-child {
  margin-bottom: 0;
}
.testimonials .container .line {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
  width: 100%;
}
.testimonials .container .stars {
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-size: var(--h5-size);
}
.testimonials .container .quote {
  max-width: 550px;
  margin-bottom: 40px;
}
.testimonials .container .author h4 {
  font-weight: 500;
  font-size: var(--p-size);
  margin-bottom: 8px;
}
.testimonials .container .author p {
  font-size: calc(var(--p-size) - 10%);
}
.testimonials .container .number {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 150px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
@media (max-width: 900px) {
  .testimonials .container .item {
    margin-bottom: 120px;
    text-align: left !important;
  }
  .testimonials .container .number {
    position: relative;
    font-size: 120px;
    top: 0;
    left: 0;
    right: auto;
    margin-bottom: 20px;
    display: block;
  }
}
.testimonials .container .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 80px 0;
  width: 100%;
  opacity: 0.5;
}

.faq-section {
  position: relative;
  padding: 0 var(--section-padding);
}
.faq-section .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
}
.faq-section .container .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: inline-block;
  margin-bottom: 30px;
}
.faq-section .container .heading {
  max-width: 850px;
  font-size: var(--h2-size);
  line-height: 0.95;
}
.faq-section .container .heading span {
  color: var(--primary);
}
.faq-section .container .description {
  max-width: 550px;
  margin-top: 30px;
  margin-bottom: var(--header-gap);
}
.faq-section .container .faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-section .container .faq-item {
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
  overflow: hidden;
}
.faq-section .container .faq-item:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}
.faq-section .container .faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  font-size: var(--h6-size);
  text-align: left;
}
.faq-section .container .faq-question span {
  color: var(--primary);
  font-size: var(--h5-size);
  cursor: pointer;
}
.faq-section .container .faq-answer {
  max-width: 1000px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.faq-section .container .faq-answer a {
  color: var(--text);
  transition: 0.3s ease;
}
.faq-section .container .faq-answer a:hover {
  color: var(--primary);
}
.faq-section .container .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 0 30px;
}

.cta-section {
  position: relative;
  padding: 0 var(--section-padding);
}
.cta-section .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0;
  text-align: center;
}
.cta-section .container .eyebrow {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: var(--small-size);
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.cta-section .container .heading {
  max-width: 850px;
  font-size: var(--h2-size);
  line-height: 0.95;
  margin-inline: auto;
}
.cta-section .container .heading span {
  color: var(--primary);
}
.cta-section .container .description {
  max-width: 550px;
  font-size: var(--p-size);
  margin-block: 30px;
  margin-inline: auto;
}
.cta-section .container .cta {
  display: inline-block;
  margin-top: 45px;
}

/*# sourceMappingURL=home.css.map */
