* {
  border-radius: 0 !important;
}

:root {
  --app-yellow: #ffcb00;
  --app-dark: #111111;
  --app-graphite: #2e2e2e;
  --app-surface: #1a1a1a;
  --app-light: #f0f0f0;
  --app-muted: #888888;
  --app-section-py: 7rem;
  --app-header-h: 72px;
}

html {
  scroll-padding-top: var(--app-header-h);
}

body {
  background-color: var(--app-dark);
  color: var(--app-light);
  font-family: 'Montserrat', sans-serif;
}

::selection {
  background: var(--app-yellow);
  color: var(--app-dark);
}

* {
  scrollbar-color: var(--app-yellow) var(--app-graphite);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--app-graphite);
}
::-webkit-scrollbar-thumb {
  background: var(--app-yellow);
}
::-webkit-scrollbar-thumb:hover {
  background: #e6b700;
}

#app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--app-graphite);
  transition:
    background 0.3s,
    border-color 0.3s;
}

#app-header.app-header-scrolled {
  background: rgba(17, 17, 17, 0.97);
  border-bottom-color: var(--app-graphite);
}

.app-header {
  height: var(--app-header-h);
}

.app-header-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.app-header-cta {
  background: var(--app-yellow) !important;
  color: var(--app-dark) !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  transition:
    background 0.2s,
    transform 0.15s;
  will-change: transform;
}
.app-header-cta:hover {
  background: #ffe066 !important;
}

.app-nav-link {
  position: relative;
  color: var(--app-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  white-space: nowrap;
}
.app-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--app-yellow);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-nav-link:hover::after,
.app-nav-link.na-active::after {
  width: 100%;
}
.app-nav-link:hover {
  color: var(--app-yellow);
}

.app-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.app-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--app-light);
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.app-burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.app-burger--open span:nth-child(2) {
  opacity: 0;
}
.app-burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.app-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--app-dark);
  border-top: 1px solid var(--app-graphite);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
  pointer-events: none;
}
.app-mobile-nav--open {
  max-height: 560px;
  opacity: 1;
  pointer-events: auto;
}
.app-mobile-nav .app-nav-link {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--app-graphite);
  font-size: 1rem;
}
.app-mobile-nav-cta {
  margin: 1rem 1.5rem 1.5rem;
  background: var(--app-yellow) !important;
  color: var(--app-dark) !important;
  font-weight: 700;
  width: calc(100% - 3rem);
  justify-content: center;
}

@media (max-width: 1023px) {
  .app-burger {
    display: flex;
  }
  .app-mobile-nav {
    display: flex;
  }
  .app-header-nav,
  .app-header-cta {
    display: none !important;
  }
}

section {
  padding: var(--app-section-py) 0;
}

.app-section-header {
  margin-bottom: 3.5rem;
}
.app-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--app-light);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.app-section-sub {
  font-size: 1rem;
  color: var(--app-muted);
  max-width: 540px;
  margin: 0 auto;
}

.app-animate {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: calc(var(--stagger, 0) * 0.09s);
}
.app-animated {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
@media (prefers-reduced-motion: reduce) {
  .app-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.app-card {
  background: var(--app-surface);
  border: 1px solid var(--app-graphite);
  padding: 1.75rem;
  position: relative;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.15s;
  will-change: transform;
}
.app-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--app-yellow);
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-card:hover::before,
.app-card:focus-within::before {
  transform: scaleY(1);
}
.app-card:hover {
  border-color: var(--app-yellow);
  box-shadow: 0 0 24px rgba(255, 203, 0, 0.08);
}
.app-card-icon {
  font-size: 1.75rem;
  color: var(--app-yellow);
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1;
}
.app-card:hover .app-card-icon i {
  animation: app-icon-bounce 0.4s ease;
}
@keyframes app-icon-bounce {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-8px);
  }
  65% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
.app-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--app-light);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.app-card-text {
  font-size: 0.875rem;
  color: var(--app-muted);
  line-height: 1.6;
}

#app-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.app-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.app-hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--app-header-h) + 3rem);
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.app-hero-content {
  max-width: 640px;
}

.app-hero-float {
  width: 420px;
  flex-shrink: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.app-hero-panel-cursor {
  color: var(--app-yellow);
  animation: app-blink 1s step-end infinite;
}
@keyframes app-blink {
  50% {
    opacity: 0;
  }
}

.app-hero-net {
  position: relative;
  z-index: 1;
  padding: 2px 0;
}
.app-hero-net svg {
  display: block;
  width: 100%;
}
.app-net-line {
  stroke: #252525;
  stroke-width: 1;
  stroke-dasharray: 5 3;
  animation: app-net-flow 2.5s linear infinite;
}
@keyframes app-net-flow {
  to {
    stroke-dashoffset: -24;
  }
}
.app-net-packet {
  fill: var(--app-yellow);
  filter: drop-shadow(0 0 4px rgba(255, 203, 0, 0.9));
}
.app-net-packet-return {
  fill: rgba(255, 203, 0, 0.4);
  filter: drop-shadow(0 0 2px rgba(255, 203, 0, 0.5));
}
.app-net-pulse-ring-1 {
  fill: none;
  stroke: var(--app-yellow);
  stroke-width: 0.75;
  opacity: 0;
  transform-origin: 0px 0px;
  animation: app-net-ring 3s ease-out infinite;
}
.app-net-pulse-ring-2 {
  fill: none;
  stroke: var(--app-yellow);
  stroke-width: 0.75;
  opacity: 0;
  transform-origin: 0px 0px;
  animation: app-net-ring 3s ease-out infinite;
  animation-delay: -1.5s;
}
@keyframes app-net-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.app-net-center {
  fill: #0d0d0d;
  stroke: var(--app-yellow);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px rgba(255, 203, 0, 0.35));
}
.app-net-node {
  fill: #0d0d0d;
  stroke: #2e2e2e;
  stroke-width: 1;
}
.app-net-node-dot {
  fill: var(--app-yellow);
  opacity: 0.7;
}
.app-net-lbl {
  fill: #666;
  font-size: 5.5px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
}

.app-hero-log {
  position: relative;
  z-index: 1;
  padding: 0.6rem 0.75rem;
}
.app-hero-log-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  font-family: 'Montserrat', sans-serif;
}
.app-hero-log-live {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #4ade80;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.app-hero-log-live span {
  width: 5px;
  height: 5px;
  background: #4ade80;
  display: inline-block;
  animation: app-pulse-green 1.5s ease-in-out infinite;
}
@keyframes app-pulse-green {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.app-hero-log-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-family: 'Montserrat', sans-serif;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  clip-path: inset(0 100% 0 0);
  animation: app-log-in 0.45s ease forwards;
  animation-delay: var(--d);
}
@keyframes app-log-in {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
.app-hero-log-time {
  color: #666;
  flex-shrink: 0;
  width: 2.5rem;
}
.app-hero-log-ok {
  color: #111;
  background: #4ade80;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.06rem 0.3rem;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.app-hero-log-inf {
  color: #111;
  background: var(--app-yellow);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.06rem 0.3rem;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.app-hero-log-badge {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.06rem 0.3rem;
  flex-shrink: 0;
  letter-spacing: 0.06em;
  color: #111;
}
.app-hero-log-msg {
  color: #999;
  font-size: 0.6875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media (max-width: 900px) {
  .app-hero {
    grid-template-columns: 1fr;
  }
  .app-hero-float {
    display: none;
  }
}

.app-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--app-yellow);
  background: rgba(255, 203, 0, 0.08);
  border: 1px solid rgba(255, 203, 0, 0.25);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}
.app-hero-label i {
  font-size: 0.65rem;
}

.app-hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--app-light);
  margin-bottom: 1.5rem;
}
.app-hero-title .app-scramble-char {
  display: inline-block;
}

.app-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--app-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.app-hero-sub.app-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .app-hero-sub {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#app-hero .na-button {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s,
    border-color 0.2s;
  will-change: transform;
}
#app-hero .na-button:not(.app-button-ghost) {
  background: var(--app-yellow) !important;
  color: var(--app-dark) !important;
  border-color: var(--app-yellow) !important;
}
#app-hero .na-button:not(.app-button-ghost):hover {
  background: #ffe066 !important;
}
.app-button-ghost {
  background: transparent !important;
  color: var(--app-yellow) !important;
  border: 2px solid var(--app-yellow) !important;
}
.app-button-ghost:hover {
  background: rgba(255, 203, 0, 0.1) !important;
}

.app-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--app-muted);
  font-size: 1.25rem;
  animation: app-bounce 1.5s ease-in-out infinite;
  z-index: 1;
  text-decoration: none;
  transition: color 0.2s;
}
.app-hero-scroll:hover {
  color: var(--app-yellow);
}
@keyframes app-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

#app-marquee {
  overflow: hidden;
  background: var(--app-yellow);
  color: var(--app-dark);
  padding: 0.9rem 0;
  white-space: nowrap;
}
#app-marquee:hover .app-marquee-track {
  animation-play-state: paused;
}

.app-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: app-marquee-left 30s linear infinite;
}
.app-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.25rem;
}
.app-marquee-track .app-marquee-sep {
  padding: 0;
  opacity: 0.5;
}
.app-marquee-track i {
  font-size: 0.5rem;
}
@keyframes app-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

#app-services {
  background-color: var(--app-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cg stroke='rgba(255%2C203%2C0%2C0.07)' stroke-width='1' stroke-linecap='square'%3E%3Cline x1='14' y1='11' x2='14' y2='17'/%3E%3Cline x1='11' y1='14' x2='17' y2='14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 28px 28px;
}


.app-tilt {
  transform-style: preserve-3d;
  perspective: 800px;
  transform: perspective(800px);
}

#app-process {
  background-color: var(--app-dark);
  background-image: radial-gradient(rgba(255, 203, 0, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.app-process-timeline {
  position: relative;
}
.app-process-line-track {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--app-graphite);
  z-index: 0;
}
.app-process-line {
  height: 100%;
  background: var(--app-yellow);
  width: 0%;
  transition: width 0.05s linear;
}
.app-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.app-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.app-process-node {
  width: 64px;
  height: 64px;
  background: var(--app-surface);
  border: 2px solid var(--app-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.app-process-step.app-animated .app-process-node {
  border-color: var(--app-yellow);
  background: var(--app-surface);
}
.app-process-num {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--app-yellow);
  letter-spacing: -0.02em;
}
.app-process-card {
  text-align: center;
  padding: 1.25rem;
  width: 100%;
  flex: 1;
}
.app-process-card .app-card-icon {
  font-size: 1.375rem;
}

@media (max-width: 1279px) {
  .app-process-line-track {
    display: none;
  }
  .app-process-steps {
    grid-template-columns: 1fr;
  }
  .app-process-step {
    flex-direction: row;
    align-items: flex-start;
  }
  .app-process-node {
    flex-shrink: 0;
  }
  .app-process-card {
    text-align: left;
  }
}

#app-about {
  background-color: var(--app-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cg stroke='rgba(255%2C203%2C0%2C0.07)' stroke-width='1' stroke-linecap='square'%3E%3Cline x1='14' y1='11' x2='14' y2='17'/%3E%3Cline x1='11' y1='14' x2='17' y2='14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 28px 28px;
}
.app-about-grid {
  row-gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .app-about-grid {
    column-gap: 5rem;
  }
}
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--app-yellow);
}
.app-about-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--app-light);
}
.app-about-accent {
  color: var(--app-yellow);
}
.app-about-p {
  font-size: 1rem;
  color: var(--app-muted);
  line-height: 1.75;
  max-width: 42ch;
}
.app-about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--app-yellow);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.app-about-link:hover {
  gap: 0.75rem;
}

.app-about-facts {
  background: var(--app-dark);
  border: 1px solid var(--app-graphite);
}
.app-about-fact {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--app-graphite);
  font-size: 0.9375rem;
  color: var(--app-light);
  line-height: 1.5;
  transition: background 0.2s;
}
.app-about-fact:last-child {
  border-bottom: none;
}
.app-about-fact:hover {
  background: rgba(255, 203, 0, 0.04);
}
.app-fact-icon {
  color: var(--app-yellow);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.app-stats-grid {
  margin-top: 3rem;
}
.app-stats-grid .app-stat-card {
  padding: 2rem;
}
.app-stat-icon {
  font-size: 1.5rem;
  color: var(--app-yellow);
  margin-bottom: 0.5rem;
}
.app-stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}
.app-stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--app-yellow);
  letter-spacing: -0.04em;
  line-height: 1;
}
.app-stat-suffix {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--app-yellow);
  line-height: 1;
}
.app-stat-prefix {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--app-yellow);
  line-height: 1;
}
.app-stat-label {
  font-size: 0.875rem;
  color: var(--app-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.25rem;
}
#app-tech {
  background-color: var(--app-dark);
  background-image: radial-gradient(rgba(255, 203, 0, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.app-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: var(--app-dark);
  border: 1px solid var(--app-graphite);
  cursor: default;
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s,
    transform 0.22s;
  opacity: 0;
  transform: translateY(20px);
}
.app-tech-item.app-animated {
  opacity: 1;
  transform: translateY(0);
}
.app-tech-item i {
  font-size: 2rem;
  color: var(--app-yellow);
  transition: color 0.22s;
}
.app-tech-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--app-muted);
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.22s;
}
.app-tech-item:hover {
  background: var(--app-yellow);
  border-color: var(--app-yellow);
  transform: scale(1.06);
}
.app-tech-item:hover i,
.app-tech-item:hover span {
  color: var(--app-dark);
}


#app-why {
  background-color: var(--app-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cg stroke='rgba(255%2C203%2C0%2C0.07)' stroke-width='1' stroke-linecap='square'%3E%3Cline x1='14' y1='11' x2='14' y2='17'/%3E%3Cline x1='11' y1='14' x2='17' y2='14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 28px 28px;
}
.app-why-card .app-card-icon i {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-why-card:hover .app-card-icon i {
  transform: rotate(360deg);
}

#app-testimonials {
  background-color: var(--app-dark);
  background-image: radial-gradient(rgba(255, 203, 0, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
  overflow: hidden;
}
#app-testimonials .app-testimonials {
  position: relative;
  z-index: 1;
}
.app-carousel {
  position: relative;
}
.app-carousel-track {
  display: grid;
}
.app-testimonial-card {
  grid-area: 1 / 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
  background: var(--app-surface);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 203, 0, 0.06) 0px,
    rgba(255, 203, 0, 0.06) 1px,
    transparent 1px,
    transparent 20px
  );
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
  padding: 2.5rem;
}
.app-testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.app-quote-icon {
  font-size: 2rem;
  color: var(--app-yellow);
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}
.app-testimonial-text {
  font-size: 1.0625rem;
  color: var(--app-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-testimonial-stars {
  color: var(--app-yellow);
  font-size: 0.875rem;
  gap: 0.2rem;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.app-testimonial-name {
  font-weight: 700;
  color: var(--app-light);
  font-size: 0.9375rem;
}
.app-testimonial-company {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.app-carousel-controls {
  margin-top: 0.5rem;
}
.app-carousel-btn {
  width: 40px;
  height: 40px;
  background: var(--app-surface);
  border: 1px solid var(--app-graphite);
  color: var(--app-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.app-carousel-btn:hover {
  background: var(--app-yellow);
  border-color: var(--app-yellow);
  color: var(--app-dark);
}

.app-carousel-dot {
  width: 10px;
  height: 10px;
  background: var(--app-graphite);
  border: 1px solid var(--app-graphite);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  padding: 0;
}
.app-carousel-dot.active {
  background: var(--app-yellow);
  border-color: var(--app-yellow);
  transform: scale(1.2);
}

#app-marquee-2 {
  overflow: hidden;
  background: var(--app-dark);
  border-top: 1px solid var(--app-graphite);
  border-bottom: 1px solid var(--app-graphite);
  padding: 0.9rem 0;
  white-space: nowrap;
}
#app-marquee-2:hover .app-marquee-2-track {
  animation-play-state: paused;
}

.app-marquee-2-track {
  display: inline-flex;
  align-items: center;
  animation: app-marquee-right 28s linear infinite;
}
.app-marquee-2-track span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--app-yellow);
  padding: 0 1.25rem;
}
.app-marquee-2-track .app-marquee-sep {
  padding: 0;
  opacity: 0.5;
}
.app-marquee-2-track i {
  font-size: 0.5rem;
}
@keyframes app-marquee-right {
  from {
    transform: translateX(-25%);
  }
  to {
    transform: translateX(0);
  }
}

#app-contact {
  background-color: var(--app-yellow);
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--app-dark);
}
#app-contact .app-section-title {
  color: var(--app-dark);
}

.app-contact-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.app-contact-sub {
  font-size: 0.9375rem;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.7;
}
.app-contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--app-dark);
  text-decoration: none;
  width: fit-content;
}
.app-contact-info-item i {
  color: var(--app-dark);
  opacity: 0.6;
}
.app-contact-info-item:hover {
  opacity: 0.75;
}

.app-contact-form {
  gap: 1.25rem;
}
.app-float-field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.app-float-input {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1.5px solid rgba(17, 17, 17, 0.3) !important;
  color: var(--app-dark) !important;
  padding: 1.1rem 0.875rem 0.4rem !important;
  font-size: 0.9375rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.app-float-input:focus {
  outline: none !important;
  border-color: var(--app-dark) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}
.app-float-label {
  position: absolute;
  left: 0.875rem;
  top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.55);
  pointer-events: none;
  transition:
    transform 0.2s,
    font-size 0.2s,
    color 0.2s;
  transform-origin: left top;
  transform: translateY(-0.5rem) scale(0.78);
}
.app-float-input:focus ~ .app-float-label {
  color: var(--app-dark);
}
.app-float-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.875rem center !important;
  background-color: rgba(255,255,255,0.7) !important;
}
.app-float-select:focus {
  background-color: rgba(255,255,255,0.9) !important;
}
.app-float-select.has-value ~ .app-float-label {
  color: var(--app-dark);
}

.app-contact .na-form-input:focus,
.app-contact .na-form-textarea:focus {
  outline: none !important;
}

#app-contact .na-button {
  background: var(--app-dark) !important;
  color: var(--app-yellow) !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  transition:
    background 0.2s,
    transform 0.15s;
  will-change: transform;
  width: 100%;
  justify-content: center;
  gap: 0.6rem;
}
#app-contact .na-button:hover {
  background: #222 !important;
}
#app-contact .na-button.app-btn-success {
  background: #1a7a3a !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .app-contact-grid {
    column-gap: 0;
  }
}

#app-footer {
  background-color: var(--app-dark);
  background-image: radial-gradient(rgba(255, 203, 0, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid var(--app-graphite);
}
.app-footer {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
.app-footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.app-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.app-footer-tagline {
  font-size: 0.675rem;
  color: var(--app-muted);
  text-transform: uppercase;
}

.app-footer-top {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--app-graphite);
  margin-bottom: 1.5rem;
}
.app-footer-bottom {
  font-size: 0.8125rem;
  color: var(--app-muted);
}
.app-footer-location i {
  color: var(--app-yellow);
  margin-right: 0.3rem;
}

.app-footer-copy,
.app-footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.app-footer-legal-link {
  font-size: 0.8rem;
  color: var(--app-muted);
}

.app-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--app-graphite);
  color: var(--app-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.app-social-link:hover {
  background: var(--app-yellow);
  border-color: var(--app-yellow);
  color: var(--app-dark);
  transform: scale(1.12);
}

/* ─── Error page ─────────────────────────────────────── */
#app-error {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--app-dark);
}
.app-error-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--app-header-h) + 4rem);
  padding-bottom: 6rem;
}
.app-error-code {
  font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 203, 0, 0.18);
  user-select: none;
  margin-bottom: -0.1em;
}
.app-error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--app-light);
  margin: 0 0 1rem;
}
.app-error-sub {
  font-size: 1rem;
  color: var(--app-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
#app-error .na-button {
  gap: 0.6rem;
}
