@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("/assets/fonts/firago-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("/assets/fonts/firago-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("/assets/fonts/firago-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("/assets/fonts/firago-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color: #edfaff;
  background: #02070d;
  font-family: "DM Sans", sans-serif;
  font-synthesis: none;
  --cyan: #27c7ff;
  --cyan-soft: #8be4ff;
  --ink: #02070d;
  --panel: #07111c;
  --line: rgba(77, 206, 255, .2);
  --muted: #92a9b9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}
html.is-lenis-scroll {
  scroll-behavior: auto;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 80;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--cyan), #2ee6c5 55%, #5ef0d8);
  box-shadow: 0 0 12px rgba(39, 199, 255, .45);
  will-change: transform;
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(39, 199, 255, .4);
  border-radius: 14px;
  background: #030a11e6;
  color: var(--cyan);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 0 24px rgba(39, 199, 255, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s, border-color .2s ease, box-shadow .2s ease;
}
@media (min-width: 901px) {
  .back-to-top {
    right: 22px;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 1400px) {
  .back-to-top {
    right: 28px;
  }
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(39, 199, 255, .4);
  outline: none;
}

.wa-widget {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: min(320px, calc(100vw - 32px));
  pointer-events: none;
}
.wa-widget > * {
  pointer-events: auto;
}
.wa-panel {
  width: 100%;
  padding: 14px 14px 16px;
  border: 1px solid rgba(39, 199, 255, .28);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(7, 18, 28, .97), rgba(3, 10, 17, .96));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, .45),
    0 0 28px rgba(39, 199, 255, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.wa-widget.is-open .wa-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wa-widget.is-instant .wa-panel,
.wa-widget.is-instant.is-open .wa-panel {
  transition: none;
}
.wa-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.wa-avatar-wrap {
  position: relative;
  flex: 0 0 auto;
}
.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(39, 199, 255, .35);
  display: block;
}
.wa-status-dot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #07121c;
  box-shadow: 0 0 8px rgba(37, 211, 102, .55);
}
.wa-head-copy {
  min-width: 0;
  flex: 1;
  padding-top: 2px;
}
.wa-name {
  margin: 0;
  color: #edfaff;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.wa-status {
  margin: 3px 0 0;
  color: #8aa0ae;
  font-size: 12px;
  line-height: 1.35;
}
.wa-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin: -4px -4px 0 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: transparent;
  color: #c5d6df;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.wa-close:hover,
.wa-close:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: none;
}
.wa-message {
  margin: 0 0 14px;
  padding: 12px 12px;
  border-radius: 12px 12px 12px 4px;
  background: rgba(39, 199, 255, .08);
  border: 1px solid rgba(39, 199, 255, .14);
  color: #d7ecf5;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-line;
}
.wa-note {
  margin: -6px 0 12px;
  color: #6f8796;
  font-size: 11px;
  line-height: 1.4;
}
.wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #04140a;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(37, 211, 102, .28);
}
.wa-cta:hover,
.wa-cta:focus-visible {
  filter: brightness(1.05);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.wa-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.wa-toggle {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(39, 199, 255, .45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(39, 199, 255, .28), transparent 55%),
    linear-gradient(145deg, #1fcf6a, #128c7e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 0 4px rgba(39, 199, 255, .1),
    0 0 28px rgba(39, 199, 255, .28),
    0 10px 28px rgba(0, 0, 0, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
}
.wa-toggle:hover,
.wa-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 5px rgba(39, 199, 255, .14),
    0 0 34px rgba(39, 199, 255, .38),
    0 12px 30px rgba(0, 0, 0, .45);
  outline: none;
}
.wa-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 901px) {
  .wa-widget {
    right: 22px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 340px;
  }
}
@media (min-width: 1400px) {
  .wa-widget {
    right: 28px;
  }
}
@media (max-width: 380px) {
  .wa-name {
    font-size: 13px;
  }
  .wa-message {
    font-size: 12px;
    padding: 10px;
  }
  .wa-status {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-panel,
  .wa-toggle {
    transition: none !important;
  }
}

.nav button .nav-glow {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 10px rgba(39, 199, 255, .7);
  transform: translateX(-50%);
  opacity: 0;
  transition: width .35s ease, opacity .35s ease;
  pointer-events: none;
}
.nav button.is-active .nav-glow {
  width: 18px;
  opacity: 1;
}
.reveal-ready[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity .6s cubic-bezier(.22, 1, .36, 1),
    transform .6s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-ready[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.has-parallax {
  --parallax-y: 0px;
  will-change: transform;
  backface-visibility: hidden;
}
.has-parallax:not(.reveal-ready) {
  transform: translate3d(0, var(--parallax-y), 0);
}
.reveal-ready[data-reveal].has-parallax {
  transform: translate3d(0, calc(20px + var(--parallax-y)), 0);
}
.reveal-ready[data-reveal].is-revealed.has-parallax {
  transform: translate3d(0, var(--parallax-y), 0);
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #02070d;
  color: #edfaff;
  -webkit-font-smoothing: antialiased;
  caret-color: transparent;
  overflow-x: hidden;
  overflow-anchor: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
input,
textarea {
  caret-color: #edfaff;
}
button {
  cursor: pointer;
}
.site-shell {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: transparent;
}
.site-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}
.site-ambient-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(39, 199, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 199, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 20%, transparent 78%);
  opacity: .55;
}
.site-ambient-glows {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.site-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .22;
  background: radial-gradient(circle, rgba(39, 199, 255, .55) 0%, rgba(46, 230, 197, .18) 42%, transparent 70%);
}
.site-ambient-glow.is-a {
  width: min(52vw, 560px);
  height: min(52vw, 560px);
  top: -8%;
  left: -6%;
  opacity: .18;
}
.site-ambient-glow.is-b {
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  top: 28%;
  right: -10%;
  background: radial-gradient(circle, rgba(46, 230, 197, .45) 0%, rgba(39, 199, 255, .12) 45%, transparent 72%);
  opacity: .16;
}
.site-ambient-glow.is-c {
  width: min(42vw, 440px);
  height: min(42vw, 440px);
  bottom: -4%;
  left: 28%;
  opacity: .14;
}
.site-ambient canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .site-ambient-glow.is-c {
    display: none;
  }
  .site-ambient-glow {
    filter: blur(56px);
    opacity: .14;
  }
  .site-ambient-grid {
    background-size: 56px 56px;
    opacity: .4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-ambient {
    display: none !important;
  }
}
.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  scroll-margin-top: 110px;
}
#home {
  scroll-margin-top: 0;
}
#portfolio.portfolio-showcase {
  scroll-margin-top: 120px;
}
.portfolio,
.services {
  width: min(1320px, calc(100% - 48px));
}
.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  transform: translate(-50%);
  width: min(1280px, calc(100% - 28px));
  height: 70px;
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(83, 211, 255, .22);
  background: #030a11e0;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: 0 18px 50px #0000005c, inset 0 1px #ffffff0a;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 0;
  color: #fff;
  background: none;
  letter-spacing: .08em;
  font-family: Space Grotesk;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.brand b {
  color: var(--cyan);
}
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.nav button,
.nav a,
.footer-menu button,
.footer-menu a,
.footer-legal button,
.footer-legal a {
  position: relative;
  color: #aabcc8;
  border: 0;
  background: none;
  transition: color .25s ease;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}
.nav button,
.nav a {
  padding: 8px 2px 10px;
}
.nav button:hover,
.nav a:hover,
.footer-menu button:hover,
.footer-menu a:hover,
.footer-legal button:hover,
.footer-legal a:hover {
  color: var(--cyan-soft);
}
.nav button.is-active,
.nav a[aria-current="page"],
.footer-legal a[aria-current="page"] {
  color: var(--cyan);
}
.nav-cta,
.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid var(--cyan);
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}
.nav-cta,
.primary-button {
  color: #001018;
  background: var(--cyan);
  box-shadow: 0 0 24px #27c7ff47;
}
.secondary-button {
  color: var(--cyan-soft);
  background: #1fa9de0f;
}
.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px #27c7ff73;
}
.menu-button {
  display: none;
  color: var(--cyan-soft);
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 14px;
}
html.i18n-pending body {
  visibility: hidden;
}
html.i18n-pending .intro-loader {
  visibility: visible;
}

/* Intro loader — neon-tech, first session visit only */
html.is-intro-loading,
html.is-intro-loading body {
  overflow: hidden;
}
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: #02070d;
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity .42s ease, transform .42s ease, visibility .42s ease;
}
html.is-intro-loading .intro-loader,
.intro-loader.is-exit {
  display: grid;
}
.intro-loader.is-exit {
  opacity: 0;
  transform: scale(1.03);
  visibility: hidden;
  pointer-events: none;
}
.intro-loader-glow {
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 199, 255, .16) 0%, rgba(39, 199, 255, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}
.intro-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.intro-loader-mark {
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
}
.intro-loader-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.intro-loader-ring-track {
  stroke: rgba(39, 199, 255, .18);
  stroke-width: 1.25;
}
.intro-loader-ring-fill {
  stroke: #27c7ff;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  filter: drop-shadow(0 0 6px rgba(39, 199, 255, .35));
  animation: intro-ring-fill 1s cubic-bezier(.4, 0, .2, 1) forwards;
}
.intro-loader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(39, 199, 255, .28);
  box-shadow: 0 0 28px rgba(39, 199, 255, .18);
  display: block;
}
.intro-loader-label {
  margin: 0;
  color: rgba(139, 228, 255, .72);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
@keyframes intro-ring-fill {
  to {
    stroke-dashoffset: 0;
  }
}
html.is-ready .intro-loader:not(.is-exit) {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .intro-loader,
  .intro-loader.is-exit,
  .intro-loader-ring-fill {
    animation: none !important;
    transition: none !important;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0a1520;
  flex-shrink: 0;
}
.lang-btn {
  min-width: 36px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #aabcc8;
  font-family: Space Grotesk, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.lang-btn:hover {
  color: var(--cyan-soft);
}
.lang-btn.is-active,
.lang-btn[aria-pressed="true"] {
  color: #001018;
  background: var(--cyan);
}
.lang-switch-mobile {
  display: none;
  width: 100%;
  margin: 8px 0 0;
  justify-content: stretch;
}
.lang-switch-mobile .lang-btn {
  flex: 1;
}
.hero {
  min-height: 920px;
  padding-top: 190px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
  isolation: isolate;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.hero-glow-monitor {
  width: min(620px, 70vw);
  height: min(620px, 70vw);
  right: -8%;
  top: 18%;
  background: radial-gradient(circle, rgba(39, 199, 255, .95) 0%, rgba(39, 199, 255, 0) 70%);
  opacity: 0.14;
  animation: hero-glow-drift-a 11s ease-in-out infinite alternate;
}
.hero-glow-headline {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  left: -6%;
  top: 28%;
  background: radial-gradient(circle, rgba(39, 199, 255, .85) 0%, rgba(39, 199, 255, 0) 72%);
  opacity: 0.09;
  animation: hero-glow-drift-b 12s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(139, 228, 255, .55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 228, 255, .55) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, transparent 42%, #000 100%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, transparent 42%, #000 100%);
}
@keyframes hero-glow-drift-a {
  from { transform: translate(0, 0); }
  to { transform: translate(-12px, 10px); }
}
@keyframes hero-glow-drift-b {
  from { transform: translate(0, 0); }
  to { transform: translate(14px, -8px); }
}
.why:before,
.contact:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: #00a5ff1a;
  filter: blur(130px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-copy,
.monitor-wrap {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-family: Space Grotesk;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 22px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Space Grotesk, sans-serif;
}
h1 {
  font-size: clamp(52px, 5.2vw, 80px);
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: 30px;
}
h1 em,
h2 em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 25px rgba(39, 199, 255, .26);
}
.hero-copy>p {
  max-width: 620px;
  color: #a7bac6;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}
.trust-row {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  color: #7590a2;
  font-size: 13px;
}
.trust-row b {
  color: #d9f7ff;
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}
.monitor-wrap {
  padding-bottom: 96px;
  /* Kein 3D-Rotate — das macht Live-Text unscharf */
  transform: none;
}
.monitor-glow {
  position: absolute;
  top: 2%;
  right: 1%;
  bottom: 28%;
  left: 1%;
  background: #1cbcff2e;
  filter: blur(55px);
  border-radius: 36px;
}
.monitor {
  position: relative;
  padding: 10px;
  border-radius: 22px;
  background: #09131c;
  border: 1px solid #244256;
  box-shadow: 0 42px 80px #00000080, inset 0 0 0 2px #02070c, 0 0 50px #27c7ff1f;
}
.monitor-screen {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  background: #111;
  padding: 0;
}
.monitor-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3a5568;
  z-index: 2;
}
.monitor-screen.has-image {
  background: #111;
}
.monitor-shot {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #02070d;
  z-index: 1;
}
.monitor-empty {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px 30px;
}
.monitor-empty[hidden],
.monitor-shot[hidden] {
  display: none !important;
}
.monitor-empty small {
  color: #8be4ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.monitor-empty h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  margin: 0;
}
.monitor-empty p {
  margin: 0;
  color: #ffffffa6;
  font-size: 14px;
  max-width: 28ch;
}
.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #ffffffb8;
}
.preview-nav strong {
  color: #fff;
  font-size: 13px;
}
.preview-content {
  width: 72%;
  padding-top: 13%;
}
.preview-content small,
.browser-content small {
  color: #8be4ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.preview-content h2 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
  margin: 12px 0;
}
.preview-content p {
  font-size: 12px;
  color: #ffffffa6;
}
.preview-button {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 13px;
  color: #06141d;
  background: #8be4ff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
}
.monitor-neck {
  width: 82px;
  height: 65px;
  margin: 0 auto;
  background: #0a151e;
  border-left: 1px solid #203b4d;
  border-right: 1px solid #203b4d;
}
.monitor-base {
  width: 250px;
  height: 14px;
  margin: 0 auto;
  border-radius: 70% 70% 5px 5px;
  background: #0c1923;
  border: 1px solid #203b4d;
  box-shadow: 0 16px 30px #00000080;
}
.project-switcher {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 7px;
  border: 1px solid var(--line);
  background: #040c14f0;
  border-radius: 12px;
}
.project-switcher button,
.project-switcher .project-switcher-cta {
  color: #041018;
  background: var(--cyan);
  border: 0;
  border-radius: 7px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-switcher button:hover,
.project-switcher .project-switcher-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px #27c7ff55;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.section-heading p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}
.why:before {
  right: -400px;
  top: 210px;
}
.comparison {
  overflow-anchor: none;
  width: min(720px, 100%);
  margin-inline: auto;
}
.compare-slider {
  --compare-pos: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.compare-slider.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.compare-slider.is-hinting .compare-panel-ohne {
  transition: width .7s cubic-bezier(.22, 1, .36, 1);
}
.compare-slider.is-hinting .compare-divider {
  transition: left .7s cubic-bezier(.22, 1, .36, 1);
}
.compare-slider.is-dragging .compare-panel-ohne,
.compare-slider.is-dragging .compare-divider {
  transition: none;
}
.compare-slider-frame {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  overflow-anchor: none;
  border: 1px solid rgba(39, 199, 255, .28);
  background: #07111a;
  box-shadow: inset 0 0 50px #1fb8ff0d, 0 0 46px #1cb2ff14;
  isolation: isolate;
}
.compare-corner-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  pointer-events: none;
}
.compare-corner-ohne {
  left: 22px;
  color: #8a9eab;
}
.compare-corner-mit {
  right: 22px;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(39, 199, 255, .35);
}
.compare-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.compare-panel-mit {
  z-index: 1;
  background:
    radial-gradient(ellipse at 88% 42%, rgba(39, 199, 255, .16), transparent 42%),
    radial-gradient(ellipse at 80% 20%, rgba(39, 199, 255, .1), transparent 55%),
    #07111a;
}
.compare-panel-ohne {
  z-index: 2;
  width: var(--compare-pos);
  border-right: 0;
  background: #07111a;
  will-change: width;
}
.compare-watermark {
  position: absolute;
  right: 18px;
  bottom: 96px;
  z-index: 0;
  font-family: Space Grotesk;
  font-size: clamp(72px, 18vw, 140px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.06em;
  color: rgba(39, 199, 255, .12);
  text-shadow: 0 0 40px rgba(39, 199, 255, .12);
  pointer-events: none;
  user-select: none;
}
.compare-watermark-ohne {
  right: auto;
  left: 46%;
  color: rgba(56, 80, 95, .28);
  text-shadow: none;
}
.compare-side-note {
  position: absolute;
  right: 28px;
  top: 46%;
  z-index: 0;
  max-width: 150px;
  text-align: right;
  pointer-events: none;
}
.compare-side-note strong {
  display: block;
  color: var(--cyan);
  font-family: Space Grotesk;
  font-size: 15px;
  letter-spacing: .04em;
  margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(39, 199, 255, .35);
}
.compare-side-note span {
  display: block;
  color: #6f8796;
  font-size: 11px;
  line-height: 1.45;
}
.compare-panel-body {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--compare-frame-width, 100%);
  padding: 56px 40px 40px;
  box-sizing: border-box;
  z-index: 1;
}
.compare-panel-ohne .compare-panel-body {
  border-right: 1px solid rgba(255, 255, 255, .06);
}
.compare-label {
  display: inline-block;
  color: #718897;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 25px;
}
.compare-panel-mit .compare-label {
  color: var(--cyan);
}
.compare-panel-body h3 {
  font-size: 28px;
  margin: 0 0 24px;
  max-width: 15ch;
}
.compare-panel-body ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 420px;
}
.compare-panel-body li,
.price-card li {
  position: relative;
  padding: 13px 0 13px 26px;
  color: #9bb0bd;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.compare-panel-body li:before,
.price-card li:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #536875;
}
.compare-panel-mit li:before,
.price-card li:before {
  background: var(--cyan);
  box-shadow: 0 0 10px #27c7ffb3;
}
.compare-panel-mit li {
  color: #c5d7e2;
}
.compare-text-short {
  display: none;
}
.compare-stat {
  position: absolute;
  bottom: 34px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.compare-stat strong {
  font-family: Space Grotesk;
  font-size: 68px;
  line-height: .8;
  color: #38505f;
  display: inline-block;
}
.compare-panel-mit .compare-stat strong {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(39, 199, 255, .25);
}
.compare-stat > span {
  color: #708895;
  font-size: 13px;
  text-align: right;
}
.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  z-index: 6;
  width: 44px;
  margin-left: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
  outline: none;
}
.compare-divider:focus-visible .compare-divider-handle {
  box-shadow:
    0 0 0 3px #02070d,
    0 0 0 5px var(--cyan),
    0 0 28px rgba(39, 199, 255, .55);
}
.compare-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--cyan) 12%, var(--cyan) 88%, transparent);
  box-shadow: 0 0 16px rgba(39, 199, 255, .65);
  pointer-events: none;
}
.compare-divider-handle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: #06131c;
  box-shadow: 0 0 24px rgba(39, 199, 255, .45), inset 0 0 12px rgba(39, 199, 255, .18);
  pointer-events: none;
}
.compare-divider-handle:before,
.compare-divider-handle:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--cyan-soft);
  border-right: 2px solid var(--cyan-soft);
  opacity: .95;
  box-shadow: none;
}
.compare-divider-handle:before {
  left: 11px;
  transform: translateY(-50%) rotate(-135deg);
}
.compare-divider-handle:after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
}
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  min-height: 500px;
  position: relative;
  align-self: stretch;
  perspective: 900px;
}
.about-visual-stage {
  position: relative;
  min-height: 500px;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.portrait-glow {
  position: absolute;
  left: 8%;
  right: 18%;
  top: 8%;
  bottom: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 199, 255, .22) 0%, rgba(39, 199, 255, .06) 42%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  animation: about-glow-pulse 7s ease-in-out infinite;
}
.portrait-card {
  position: absolute;
  top: 20px;
  right: 50px;
  bottom: 70px;
  left: 0;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #06111c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  box-shadow: 0 30px 70px #00000059;
}
.portrait-card img {
  width: 68%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  align-self: center;
  border-radius: 50%;
  box-shadow: 0 0 45px #27c7ff2e;
  transform: none;
}
.portrait-card div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portrait-card span,
.code-card span,
.code-type {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .12em;
}
.portrait-card strong {
  font-family: Space Grotesk;
  font-size: 25px;
}
.code-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 76%;
  padding: 24px;
  border: 1px solid rgba(39, 199, 255, .35);
  border-radius: 15px;
  background: #091724;
  box-shadow: 0 20px 50px #00000073;
  animation: about-code-float 4.5s ease-in-out infinite;
}
.code-type {
  display: inline-block;
  min-height: 1.2em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .04em;
  white-space: pre;
}
.code-type:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--cyan);
  opacity: 0;
}
.code-type.is-typing:after {
  opacity: .85;
  animation: about-caret-blink .7s steps(1) infinite;
}
.code-type.is-done:after {
  display: none;
}
.code-card b {
  display: block;
  margin-top: 10px;
  font-family: Space Grotesk;
  font-size: 14px;
}
.about-copy {
  position: relative;
  padding-top: 8px;
  min-width: 0;
}
.about-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}
.about-progress {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #718897;
  font-family: Space Grotesk;
  font-size: 13px;
  letter-spacing: .14em;
}
.about-progress [data-about-progress] {
  color: var(--cyan);
  font-weight: 700;
}
.about-progress-sep {
  opacity: .55;
}
.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-tab {
  border: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: #7f96a5;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.about-tab:hover {
  color: #dff8ff;
  border-color: rgba(39, 199, 255, .35);
}
.about-tab.is-active {
  color: #041018;
  background: var(--cyan);
  border-color: var(--cyan);
}
.about-tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.about-steps {
  position: relative;
  min-height: 260px;
}
.about-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  visibility: hidden;
}
.about-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  visibility: visible;
}
.about-copy > p,
.about-step > p {
  color: #9fb2be;
  font-size: 17px;
  line-height: 1.75;
}
.about-step h2 {
  margin: 0 0 18px;
}
.about-step h2 em {
  color: var(--cyan);
  font-style: normal;
}
.about-step .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.about-switch {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.about-switch-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(39, 199, 255, .35);
  background: #07131c;
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.about-switch-btn:hover {
  background: #0a1c28;
  border-color: var(--cyan);
}
.about-switch-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.mini-stats span {
  color: #718897;
  font-size: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.about-step.is-active .mini-stats.is-revealed span {
  opacity: 1;
  transform: translateY(0);
}
.about-step.is-active .mini-stats.is-revealed span:nth-child(1) { transition-delay: .05s; }
.about-step.is-active .mini-stats.is-revealed span:nth-child(2) { transition-delay: .16s; }
.about-step.is-active .mini-stats.is-revealed span:nth-child(3) { transition-delay: .27s; }
.mini-stats b {
  color: #dff8ff;
  display: block;
  margin-bottom: 4px;
}
.about-step.is-active .mini-stats.is-revealed b {
  color: var(--cyan);
}
@keyframes about-glow-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.04); }
}
@keyframes about-code-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes about-caret-blink {
  0%, 49% { opacity: .85; }
  50%, 100% { opacity: 0; }
}
.portfolio,
.services {
  width: min(1320px, calc(100% - 48px));
}
.portfolio-showcase {
  width: 100%;
  max-width: none;
  padding: 100px 0 80px;
  overflow: visible;
}
.portfolio-pin-space {
  position: relative;
  height: auto;
}
.portfolio-sticky {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}
.portfolio-showcase.is-pinned-mode .portfolio-pin-space {
  height: auto;
}
.portfolio-showcase.is-pinned-mode .portfolio-sticky {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 12px;
}
.portfolio-showcase.is-pinned-mode .portfolio-viewport {
  overflow: hidden;
}
.portfolio-showcase.is-pinned-mode .portfolio-track {
  will-change: transform;
}
.portfolio-showcase.is-pinned-mode .portfolio-sticky,
.portfolio-showcase.is-desktop-carousel .portfolio-sticky {
  position: relative;
  top: auto;
  min-height: 0;
  display: block;
}
.portfolio-glow {
  position: absolute;
  inset: 8% 12% auto;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--portfolio-glow, #27c7ff) 22%, transparent), transparent 72%);
  filter: blur(36px);
  opacity: .4;
  pointer-events: none;
  z-index: 0;
  transition: background .6s ease, opacity .6s ease;
}
.portfolio-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 18px;
}
.portfolio-head .section-heading {
  margin-bottom: 0;
  max-width: 520px;
}
.portfolio-head .section-heading h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 0;
  line-height: 1.15;
}
.portfolio-head .eyebrow {
  margin-bottom: 8px;
}
.portfolio-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.portfolio-progress {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #718897;
  font-family: Space Grotesk;
  font-size: 13px;
  letter-spacing: .14em;
}
.portfolio-progress [data-portfolio-progress] {
  color: var(--cyan);
  font-weight: 700;
}
.portfolio-progress-sep {
  opacity: .5;
}
.portfolio-nav {
  display: flex;
  gap: 8px;
}
.portfolio-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(39, 199, 255, .35);
  background: #07131c;
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.portfolio-nav-btn:hover:not(:disabled) {
  background: #0a1c28;
  border-color: var(--cyan);
}
.portfolio-nav-btn:disabled {
  opacity: .35;
  cursor: default;
}
.portfolio-nav-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.portfolio-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.portfolio-viewport.is-mobile-snap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.portfolio-viewport.is-mobile-snap::-webkit-scrollbar {
  display: none;
}
.portfolio-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  will-change: transform;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}
.portfolio-showcase.is-desktop-carousel .portfolio-track {
  padding-inline: 0;
}
.portfolio-viewport.is-mobile-snap .portfolio-track {
  transform: none !important;
  transition: none;
  padding-inline: 16px;
  width: max-content;
}
.showcase-card {
  flex: 0 0 min(62vw, 720px);
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: #07111b;
  overflow: hidden;
  opacity: .48;
  transform: scale(.88);
  transform-origin: center center;
  transition:
    opacity .45s ease,
    transform .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
  scroll-snap-align: center;
}
.showcase-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: color-mix(in srgb, var(--card-accent, #27c7ff) 70%, #fff 10%);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--card-accent, #27c7ff) 30%, transparent),
    0 0 32px color-mix(in srgb, var(--card-accent, #27c7ff) 18%, transparent);
}
.showcase-browser {
  margin: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #03080e;
  box-shadow: 0 12px 28px #0000003d;
}
.browser-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: #00000038;
}
.browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff4d;
}
.browser-bar em {
  margin-left: auto;
  color: #6f8796;
  font-style: normal;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.showcase-shot {
  position: relative;
  width: 100%;
  height: clamp(300px, 42vh, 420px);
  overflow: hidden;
  background: #02070d;
}
.showcase-shot img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 145%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  transition: transform 3.8s ease-in-out;
  will-change: transform;
}
.showcase-shot.is-panning img {
  transform: translateY(-31%);
}
.showcase-meta {
  padding: 4px 16px 16px;
}
.showcase-meta-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.showcase-number,
.showcase-category {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.showcase-meta h3 {
  margin: 0 0 6px;
  font-family: Space Grotesk;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -.03em;
}
.showcase-desc {
  margin: 0;
  color: #849ba9;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.showcase-desc.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.showcase-tags li {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(39, 199, 255, .22);
  color: #9ec4d4;
  font-size: 10px;
}
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.showcase-btn.primary {
  background: var(--cyan);
  color: #041018;
}
.showcase-btn.ghost {
  background: transparent;
  color: #9ec4d4;
  border-color: rgba(255, 255, 255, .14);
}
.showcase-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.portfolio-state {
  flex: 1 1 100%;
  min-width: min(100%, 640px);
  padding: 48px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #07111a;
  text-align: center;
  color: #849ba9;
}
.portfolio-state strong {
  display: block;
  color: #dff8ff;
  font-family: Space Grotesk, sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}
.portfolio-state-error {
  border-color: rgba(255, 120, 120, .28);
}
.project-skeleton .skeleton-block,
.project-skeleton .skeleton-line {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, #0a1620 25%, #122433 50%, #0a1620 75%);
  background-size: 200% 100%;
  animation: skeleton-shine 1.4s ease-in-out infinite;
}
.project-skeleton .skeleton-block {
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 0;
}
.project-skeleton .skeleton-line {
  height: 14px;
  margin: 10px 0;
  width: 70%;
}
.project-skeleton .skeleton-line.short {
  width: 40%;
  height: 10px;
}
.project-skeleton .skeleton-line.tiny {
  width: 88px;
  height: 10px;
}
@keyframes skeleton-shine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.services {
  width: min(1180px, calc(100% - 48px));
}
.service-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.25fr);
  gap: 28px 56px;
  align-items: start;
  margin-top: 12px;
}
.service-lab-indicator {
  position: absolute;
  left: 0;
  width: 2px;
  height: 44px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(39, 199, 255, .55);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), height .35s ease;
  pointer-events: none;
  z-index: 2;
}
.service-lab-item {
  display: contents;
}
.service-lab-trigger {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 0 18px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: transparent;
  color: #7f96a5;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease;
}
.service-lab-trigger:hover,
.service-lab-trigger:focus-visible {
  color: #dff8ff;
}
.service-lab-trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.service-lab-item.is-active .service-lab-trigger {
  color: #edfaff;
}
.service-lab-num {
  font-family: Space Grotesk;
  font-size: 13px;
  letter-spacing: .08em;
  color: #5f7686;
  transition: color .25s ease, transform .35s ease;
}
.service-lab-item.is-active .service-lab-num {
  color: var(--cyan);
  transform: translateX(2px);
}
.service-lab-name {
  font-family: Space Grotesk;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -.03em;
  transition: transform .35s ease, color .25s ease;
}
.service-lab-item.is-active .service-lab-name {
  transform: translateX(4px);
  color: #fff;
}
.service-lab-chevron {
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: .45;
  flex-shrink: 0;
  transition: transform .3s ease, opacity .25s ease, border-color .25s ease;
}
.service-lab-item.is-active .service-lab-chevron {
  transform: rotate(-135deg) translate(-1px, -1px);
  opacity: 1;
  border-color: var(--cyan);
}
.service-lab-hint {
  display: none;
  margin: 10px 0 0;
  font-size: 14px;
  color: #6f8796;
  letter-spacing: .01em;
}
.service-lab-body {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
  position: relative;
}
.service-lab-item.is-active .service-lab-body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}
@media (min-width: 901px) {
  .service-lab-body[hidden] {
    display: block !important;
  }
}
.service-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.service-points li {
  position: relative;
  padding-left: 18px;
  color: #9fb2be;
  font-size: 15px;
}
.service-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(39, 199, 255, .45);
}
.service-browser {
  position: relative;
  border: 1px solid rgba(39, 199, 255, .28);
  border-radius: 16px;
  overflow: hidden;
  background: #07111a;
  box-shadow: 0 24px 50px #00000055;
}
.service-browser:before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 199, 255, .2), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.service-browser .browser-bar {
  position: relative;
  z-index: 1;
}
.service-visual {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(8, 20, 32, .2), rgba(2, 7, 13, .55)),
    #061018;
}
.service-visual-design {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 22px 1fr 1fr;
  gap: 12px;
}
.sv-frame {
  grid-column: 1 / -1;
  height: 10px;
  border-radius: 999px;
  background: rgba(39, 199, 255, .18);
}
.sv-hero {
  grid-row: 2 / 4;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(39, 199, 255, .35), transparent 55%),
    #0c1c2a;
  border: 1px solid rgba(39, 199, 255, .22);
}
.sv-col,
.sv-col-b {
  border-radius: 12px;
  background: #0b1824;
  border: 1px solid rgba(255, 255, 255, .08);
}
.sv-col-b {
  background: #0e2030;
}
.sv-chip {
  position: absolute;
  right: 34px;
  bottom: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(39, 199, 255, .16);
  border: 1px solid rgba(39, 199, 255, .35);
  color: var(--cyan-soft);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-visual-dev {
  perspective: 700px;
}
.sv-layer {
  height: 64px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(39, 199, 255, .2);
  background: #0b1a27;
  transform-origin: left center;
}
.sv-layer-1 { transform: translateZ(0) rotateX(8deg); width: 92%; }
.sv-layer-2 { transform: translateZ(20px) rotateX(8deg); width: 84%; background: #0d2132; }
.sv-layer-3 { transform: translateZ(40px) rotateX(8deg); width: 76%; background: #102739; }
.sv-code {
  margin-top: 8px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}
.service-visual-seo {
  display: grid;
  gap: 14px;
}
.sv-search {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0a1622;
  color: #9fb2be;
  font-size: 13px;
}
.sv-result {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0b1824;
}
.sv-result b {
  display: block;
  color: #8ab4f8;
  margin-bottom: 4px;
}
.sv-result span {
  display: block;
  color: #7dcea0;
  font-size: 12px;
  margin-bottom: 8px;
}
.sv-result p {
  margin: 0;
  color: #9fb2be;
  font-size: 13px;
}
.sv-seo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sv-seo-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(39, 199, 255, .25);
  color: var(--cyan-soft);
  font-size: 11px;
}
.service-visual-care {
  display: grid;
  gap: 12px;
}
.sv-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0b1824;
  color: #c5d7e2;
  font-size: 14px;
}
.sv-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dffb5;
  box-shadow: 0 0 10px rgba(61, 255, 181, .55);
}
.sv-pulse {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(39, 199, 255, .15), rgba(39, 199, 255, .55), rgba(39, 199, 255, .15));
  background-size: 200% 100%;
  animation: service-pulse 2.8s linear infinite;
}
@keyframes service-pulse {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (max-width: 900px) {
  .service-lab {
    display: block;
  }
  .service-lab-indicator {
    display: none;
  }
  .service-lab-hint {
    display: block;
  }
  .service-lab-item {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .service-lab-trigger {
    border-bottom: 0;
    padding: 16px 4px;
    min-height: 52px;
  }
  .service-lab-trigger:active {
    background: rgba(39, 199, 255, .04);
  }
  .service-lab-name {
    font-size: 22px;
  }
  .service-lab-body {
    grid-column: auto;
    grid-row: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    padding: 0 4px 18px;
  }
  .service-lab-item.is-active .service-lab-body {
    display: block;
  }
  .service-visual {
    min-height: 220px;
    padding: 16px;
  }
}

@media (min-width: 901px) {
  .service-lab-chevron {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-lab-indicator,
  .service-lab-body,
  .service-lab-num,
  .service-lab-name,
  .service-lab-chevron {
    transition: none !important;
  }
  .sv-pulse {
    animation: none !important;
  }
}
.process {
  width: min(1180px, calc(100% - 48px));
}
.process-space {
  position: relative;
}
.process-sticky {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.2fr);
  gap: 48px 64px;
  align-items: start;
}
.process-intro {
  min-width: 0;
  position: static;
}
.process-intro .section-heading {
  margin-bottom: 0;
}
.process-intro h2 {
  max-width: 11ch;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}
.process-progress {
  margin: 14px 0 18px;
  font-family: Space Grotesk, sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--cyan);
}
.process-browser {
  position: relative;
  border: 1px solid rgba(39, 199, 255, .24);
  border-radius: 14px;
  overflow: hidden;
  background: #07111a;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}
.process-browser-desktop {
  max-width: 360px;
}
.process-browser-mobile {
  display: none;
  margin-top: 14px;
}
.process-browser .browser-bar {
  position: relative;
  z-index: 2;
}
.process-canvas {
  position: relative;
  min-height: 188px;
  padding: 12px;
}
.process-canvas.is-static {
  min-height: 0;
}
.process-canvas.is-static .pp-layer.is-shown {
  position: relative;
  inset: auto;
}
.pp-layer {
  position: absolute;
  inset: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s, filter .4s ease;
  pointer-events: none;
}
.pp-layer.is-shown,
.process-browser[data-stage="0"] .pp-brief,
.process-browser[data-stage="1"] .pp-wire,
.process-browser[data-stage="2"] .pp-wire,
.process-browser[data-stage="2"] .pp-build,
.process-browser[data-stage="3"] .pp-live {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.process-browser[data-stage="1"] .pp-brief {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
}
.process-browser[data-stage="2"] .pp-wire {
  opacity: .22;
  filter: grayscale(1);
  transform: none;
}
.process-browser[data-stage="3"] .pp-build {
  opacity: 0;
  visibility: hidden;
}
.process-browser[data-stage="3"] .pp-wire {
  opacity: 0;
  visibility: hidden;
}
.process-browser.has-launch-glow {
  box-shadow:
    0 20px 44px rgba(0, 0, 0, .4),
    0 0 0 1px rgba(39, 199, 255, .35),
    0 0 36px rgba(39, 199, 255, .28);
}
.pp-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.pp-brief-grid {
  display: grid;
  gap: 10px;
}
.pp-brief-grid div {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
}
.pp-brief-grid strong {
  font-size: 12px;
  color: #d7ecf5;
}
.pp-brief-grid span {
  font-size: 13px;
  color: #8aa0ae;
}
.pp-wire-nav,
.pp-wire-hero,
.pp-wire-row i {
  border-radius: 8px;
  background: linear-gradient(90deg, #2a3540, #3a4652, #2a3540);
  background-size: 200% 100%;
}
.pp-wire-nav {
  height: 18px;
  margin-bottom: 10px;
  opacity: .7;
}
.pp-wire-hero {
  height: 72px;
  margin-bottom: 10px;
  opacity: .85;
}
.pp-wire-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pp-wire-row i {
  display: block;
  height: 42px;
  opacity: .55;
}
.pp-site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pp-site-nav b {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: rgba(39, 199, 255, .55);
}
.pp-site-nav b.pp-logo {
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  color: #fff;
  font-family: Space Grotesk, sans-serif;
  font-size: 13px;
  letter-spacing: -.02em;
}
.pp-site-nav span {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 10px;
  color: transparent;
}
.pp-live .pp-site-nav span {
  width: auto;
  height: auto;
  background: none;
  color: #8aa0ae;
}
.pp-site-hero {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(39, 199, 255, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(39, 199, 255, .18);
  margin-bottom: 10px;
}
.pp-site-hero em {
  display: block;
  height: 10px;
  width: 72%;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
}
.pp-site-hero em.pp-line.short {
  width: 48%;
  height: 8px;
  background: rgba(255, 255, 255, .18);
}
.pp-site-hero button {
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--cyan);
  color: #031018;
  font-size: 11px;
  font-weight: 700;
  cursor: default;
}
.pp-site-hero.is-live strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  letter-spacing: -.02em;
}
.pp-site-hero.is-live p {
  margin: 0 0 10px;
  color: #9fb2be;
  font-size: 12px;
}
.pp-site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pp-site-cards > div {
  min-height: 44px;
  border-radius: 10px;
  background: rgba(39, 199, 255, .1);
  border: 1px solid rgba(39, 199, 255, .14);
}
.pp-site-cards.is-live > div {
  padding: 8px;
  display: grid;
  gap: 6px;
  align-content: start;
}
.pp-site-cards.is-live span {
  display: block;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(39, 199, 255, .35), rgba(39, 199, 255, .08));
}
.pp-site-cards.is-live em {
  font-style: normal;
  font-size: 10px;
  color: #b7c9d3;
}
.pp-live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(61, 255, 181, .14);
  border: 1px solid rgba(61, 255, 181, .45);
  color: #3dffb5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.process-steps-wrap {
  position: relative;
  padding-left: 28px;
  min-width: 0;
}
.process-rail {
  position: absolute;
  left: 7px;
  top: 22px;
  bottom: 22px;
  width: 2px;
}
.process-rail-track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
}
.process-rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(39, 199, 255, .45);
  transition: height .15s linear;
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.process-step {
  position: relative;
  padding: 4px 0;
  opacity: .5;
  transition: opacity .35s ease;
}
.process-step-trigger {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  width: 100%;
  padding: 20px 8px 20px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
}
.process-step-trigger:focus {
  outline: none;
}
.process-step-trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.process-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: -28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #071018;
  color: #7f96a5;
  font-family: Space Grotesk, sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.process-step-title {
  display: block;
  margin-bottom: 6px;
  color: #c5d4dc;
  font-family: Space Grotesk, sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -.02em;
  transition: color .3s ease;
}
.process-step-text {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  color: #849ba9;
  line-height: 1.6;
  font-size: 15px;
  transition: opacity .35s ease, transform .35s ease, max-height .35s ease;
}
.process-step.is-active {
  opacity: 1;
}
.process-step.is-active .process-step-num {
  color: var(--cyan);
  border-color: rgba(39, 199, 255, .7);
  box-shadow: 0 0 0 4px rgba(39, 199, 255, .1);
}
.process-step.is-active .process-step-title {
  color: #fff;
}
.process-step.is-active .process-step-text {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 2px;
}

@media (min-width: 901px) {
  .process-browser-mobile {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .process-sticky {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-intro h2 {
    max-width: none;
  }
  .process-browser-desktop {
    display: none;
  }
  .process-browser-mobile {
    display: block;
  }
  .process-progress {
    margin-bottom: 0;
  }
  .process-step {
    opacity: 1;
  }
  .process-step-text {
    max-height: none;
    opacity: .9;
    transform: none;
    overflow: visible;
  }
  .process-step:not(.is-active) {
    opacity: .62;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-layer,
  .process-step,
  .process-step-num,
  .process-step-title,
  .process-step-text,
  .process-rail-fill,
  .process-browser {
    transition: none !important;
  }
}
#datenschutz {
  scroll-margin-top: 120px;
}
.finder {
  width: min(920px, 100%);
  margin: 28px auto 0;
}
.finder-progress {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.finder-progress li {
  display: grid;
  gap: 6px;
  justify-items: start;
  padding-top: 10px;
  border-top: 2px solid rgba(255, 255, 255, .1);
  color: #6f8796;
  font-size: 12px;
  letter-spacing: .02em;
  transition: color .25s ease, border-color .25s ease;
}
.finder-progress li span {
  font-family: Space Grotesk, sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  color: inherit;
}
.finder-progress li.is-active,
.finder-progress li.is-done {
  border-top-color: var(--cyan);
  color: #dff6ff;
}
.finder-progress li.is-active {
  color: #fff;
}
.finder-body,
.finder-result {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: #07111a;
}
.finder-count {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.finder-question {
  margin: 0 0 8px;
  font-family: Space Grotesk, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.finder-hint {
  margin: 0 0 18px;
  color: #7f96a5;
  font-size: 14px;
}
.finder-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.finder-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  color: #d7e8f0;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.finder-option:hover,
.finder-option:focus-visible {
  border-color: rgba(39, 199, 255, .45);
  color: #fff;
}
.finder-option:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.finder-option.is-selected {
  border-color: rgba(39, 199, 255, .75);
  background: rgba(39, 199, 255, .08);
  box-shadow: 0 0 24px rgba(39, 199, 255, .12);
  color: #fff;
}
.finder-option-mark {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  position: relative;
}
.finder-option[data-multi] .finder-option-mark {
  border-radius: 5px;
}
.finder-option.is-selected .finder-option-mark {
  border-color: var(--cyan);
  background: var(--cyan);
}
.finder-option.is-selected .finder-option-mark:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #031018;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.finder-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 24px;
}
.finder-nav[hidden] {
  display: none !important;
}
.finder-nav .primary-button:disabled,
.finder-nav .secondary-button:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.finder-body .finder-budget-banner {
  margin-top: 18px;
  width: 100%;
}
.finder-live-preview {
  margin: 14px 0 0;
  text-align: center;
  color: #dff6ff;
  font-size: 14px;
  line-height: 1.45;
  min-height: 1.45em;
}
.finder-live-preview:empty {
  display: none;
}
.finder-scale {
  margin-top: 28px;
  padding: 22px 8px 4px;
}
.finder-scale-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  margin: 0 8px 18px;
}
.finder-scale-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(39, 199, 255, .35), var(--cyan));
  transition: width .45s cubic-bezier(.22, 1, .36, 1);
}
.finder-scale-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid #031018;
  box-shadow: 0 0 0 4px rgba(39, 199, 255, .18), 0 0 22px rgba(39, 199, 255, .45);
  transform: translate(-50%, -50%);
  transition: left .45s cubic-bezier(.22, 1, .36, 1);
}
.finder-scale-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.finder-scale-labels span {
  display: grid;
  gap: 2px;
  color: #6f8796;
  font-size: 12px;
  text-align: center;
  transition: color .25s ease;
}
.finder-scale-labels span b {
  color: #9fb2be;
  font-family: Space Grotesk, sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.finder-scale-labels span.is-active {
  color: #dff6ff;
}
.finder-scale-labels span.is-active b {
  color: var(--cyan);
}
.finder-result-eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
}
.finder-result-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.finder-result-head h3 {
  margin: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -.03em;
}
.finder-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cyan);
  color: #021019;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.finder-result-price-block {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
}
.finder-price-official {
  color: var(--cyan-soft);
  font-family: Space Grotesk, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.03em;
}
.finder-price-estimate {
  color: #c5d6df;
  font-size: 16px;
}
.finder-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 8px 0 0;
  color: #849ba9;
  font-size: 14px;
}
.finder-result-custom-note {
  margin: 12px 0 0;
  color: #9fb2be;
  font-size: 14px;
}
.finder-result-why {
  margin: 22px 0 0;
  color: #c5d6df;
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
}
.finder-result-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  margin-top: 28px;
}
.finder-result-grid > div:nth-child(n + 3) {
  grid-column: 1 / -1;
}
.finder-result-grid h4 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8aa0ae;
}
.finder-result-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.finder-result-grid li {
  position: relative;
  padding-left: 16px;
  color: #b7c9d3;
  font-size: 14px;
  line-height: 1.45;
}
.finder-result-grid li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.finder-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.finder-handoff {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.finder-handoff-title {
  margin: 0 0 8px;
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
  letter-spacing: -.02em;
}
.finder-handoff-lead {
  margin: 0 0 18px;
  color: #849ba9;
  font-size: 14px;
  line-height: 1.5;
}
.finder-handoff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.finder-field {
  display: grid;
  gap: 8px;
  color: #9fb2be;
  font-size: 13px;
}
.finder-field-full {
  margin-top: 14px;
}
.finder-field em {
  color: var(--cyan);
  font-style: normal;
}
.finder-field input,
.finder-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  color: #edfaff;
  resize: vertical;
}
.finder-field input:focus,
.finder-field textarea:focus,
.finder-consent input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-color: rgba(39, 199, 255, .55);
}
.finder-field-error {
  margin: 0;
  color: #ff8f9f;
  font-size: 12px;
}
.finder-field.is-invalid input,
.finder-field.is-invalid textarea {
  border-color: rgba(255, 120, 140, .55);
}
.finder-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  color: #9fb2be;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.finder-consent input {
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}
.finder-consent a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.finder-consent.is-invalid {
  color: #ffb4bf;
}
.finder-whatsapp-note {
  margin: 12px 0 0;
  color: #6f8796;
  font-size: 12px;
  line-height: 1.5;
}
.finder-result-actions .primary-button:disabled {
  opacity: .55;
  cursor: wait;
}
.finder-budget-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  width: min(640px, 100%);
  margin: 16px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(39, 199, 255, .35);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(39, 199, 255, .12), rgba(39, 199, 255, .03));
  box-shadow: 0 0 28px rgba(39, 199, 255, .1);
}
.finder-budget-banner[hidden] {
  display: none !important;
}
.finder-budget-banner.is-result {
  width: 100%;
  margin: 22px 0 0;
  justify-content: space-between;
}
.finder-budget-banner p {
  margin: 0;
  color: #d7ecf5;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}
.budget-open-btn {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--cyan);
  color: #021019;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(39, 199, 255, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.budget-open-btn:hover,
.budget-open-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(39, 199, 255, .4);
  outline: none;
}
.budget-open-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .finder-budget-banner,
  .finder-budget-banner.is-result {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .finder-budget-banner p {
    text-align: center;
  }
  .budget-open-btn {
    width: 100%;
  }
}

.budget-modal[hidden] {
  display: none !important;
}
.budget-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}
.budget-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 13, .72);
  border: 0;
}
.budget-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(39, 199, 255, .28);
  border-radius: 20px;
  background: #07111a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.budget-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.budget-modal-header h3 {
  margin: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.03em;
}
.budget-modal-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: transparent;
  color: #dff6ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.budget-modal-close:hover,
.budget-modal-close:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}
.budget-modal-intro {
  margin: 0 0 18px;
  color: #9fb2be;
  line-height: 1.55;
  max-width: 62ch;
}
.budget-tech-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(39, 199, 255, .25);
  border-radius: 12px;
  background: rgba(39, 199, 255, .06);
  color: #d7ecf5;
  font-size: 14px;
  line-height: 1.5;
}
.budget-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.budget-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
}
.budget-card-toggle {
  display: none;
}
.budget-card-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.budget-card-eyebrow {
  margin: 0;
  color: #7f96a5;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.budget-card-heading,
.budget-card h4 {
  margin: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 24px;
  letter-spacing: -.02em;
}
.budget-card-price {
  margin: 0;
  color: var(--cyan-soft);
  font-family: Space Grotesk, sans-serif;
  font-size: 28px;
  letter-spacing: -.03em;
}
.budget-card-price span {
  color: #849ba9;
  font-size: 14px;
  font-family: DM Sans, sans-serif;
  letter-spacing: 0;
}
.budget-card-desc,
.budget-card-delivery,
.budget-card-notice,
.budget-mini-blocked,
.budget-custom-rates {
  margin: 0;
  color: #9fb2be;
  font-size: 14px;
  line-height: 1.5;
}
.budget-card-notice {
  font-size: 12px;
  color: #6f8796;
}
.budget-card-notice.is-soft {
  color: #7f96a5;
}
.budget-customer-box {
  margin: 14px 0;
  padding: 14px 14px 12px;
  border: 1px solid rgba(157, 184, 198, 0.18);
  background: rgba(10, 22, 30, 0.35);
}
.budget-customer-box h5 {
  margin: 0 0 8px;
  color: #d7ecf5;
  font-size: 13px;
  font-weight: 600;
}
.budget-customer-box .budget-list {
  margin-bottom: 10px;
}
.budget-lists {
  display: grid;
  gap: 14px;
}
.budget-lists h5 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8aa0ae;
}
.budget-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.budget-list li {
  position: relative;
  padding-left: 18px;
  color: #b7c9d3;
  font-size: 13px;
  line-height: 1.4;
}
.budget-list.is-included li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 12px;
}
.budget-list.is-excluded li:before {
  content: "–";
  position: absolute;
  left: 0;
  color: #6f8796;
}
.budget-rate-toggle {
  display: flex;
  gap: 8px;
}
.budget-rate-toggle button {
  flex: 1;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  color: #c5d6df;
  cursor: pointer;
  font-weight: 600;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.budget-rate-toggle button:hover,
.budget-rate-toggle button:focus-visible {
  border-color: rgba(39, 199, 255, .55);
  color: #fff;
}
.budget-rate-toggle button.is-active {
  border-color: rgba(39, 199, 255, .85);
  background: rgba(39, 199, 255, .14);
  color: #fff;
  box-shadow: 0 0 18px rgba(39, 199, 255, .16);
}
.budget-rate-toggle button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.budget-rate-list {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  color: #d7ecf5;
  font-size: 14px;
}
.budget-card .primary-button {
  margin-top: 8px;
  width: 100%;
  flex-shrink: 0;
}
.budget-card .budget-install-cta {
  margin-top: 8px;
  order: 0;
}
.budget-card.is-disabled .primary-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.budget-mini-blocked {
  color: #ffb4bf;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .budget-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .budget-modal-panel {
    padding: 20px 16px;
  }
  .budget-card {
    padding: 0;
    gap: 0;
    overflow: hidden;
  }
  .budget-card-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    color: #dff6ff;
    text-align: left;
    cursor: pointer;
  }
  .budget-card-toggle:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: -2px;
  }
  .budget-card-toggle-text {
    display: grid;
    gap: 2px;
  }
  .budget-card-toggle-title {
    font-family: Space Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
  }
  .budget-card-toggle-sub {
    color: #7f96a5;
    font-size: 13px;
  }
  .budget-card-chevron {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    transform: rotate(45deg);
    transition: transform .2s ease;
  }
  .budget-card.is-open .budget-card-chevron {
    transform: rotate(-135deg);
  }
  .budget-card-panel {
    display: none;
    padding: 0 18px 18px;
  }
  .budget-card.is-open .budget-card-panel {
    display: flex;
  }
  .budget-card.is-open {
    border-color: rgba(39, 199, 255, .35);
    box-shadow: 0 0 24px rgba(39, 199, 255, .08);
  }
  .budget-card-heading {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .budget-modal,
  .budget-modal-panel,
  .budget-card-chevron {
    transition: none !important;
  }
}

.finder-disclaimer {
  margin: 22px 0 0;
  text-align: center;
  color: #607887;
  font-size: 12px;
  line-height: 1.5;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .finder-option,
  .finder-progress li,
  .finder-scale-fill,
  .finder-scale-thumb,
  .finder-scale-labels span {
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .finder-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
  }
  .finder-body,
  .finder-result {
    padding: 22px 18px;
  }
  .finder-result-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .finder-handoff-grid {
    grid-template-columns: 1fr;
  }
  .finder-scale-labels {
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
  }
  .finder-nav {
    flex-direction: column-reverse;
  }
  .finder-nav .primary-button,
  .finder-nav .secondary-button,
  .finder-result-actions .primary-button,
  .finder-result-actions .secondary-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .finder-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact {
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 80px;
  width: min(1180px, calc(100% - 48px));
  border: 1px solid rgba(39, 199, 255, .28);
  border-radius: 28px;
  background: #06111b;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  overflow: hidden;
}
.contact:before {
  left: -380px;
  top: 0;
}
.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}
.contact-copy>p {
  color: #91a8b6;
  line-height: 1.7;
  font-size: 17px;
}
.contact-details {
  display: grid;
  gap: 15px;
  margin-top: 34px;
  color: #6f8998;
  font-size: 13px;
}
.contact-details b {
  display: block;
  color: #d9f7ff;
  margin-bottom: 4px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  color: #8da4b2;
  font-size: 12px;
}
.contact-form label:nth-of-type(3),
.contact-form label:nth-of-type(4),
.contact-form .contact-consent,
.contact-form .primary-button,
.form-status,
.form-success {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  color: #e8f9ff;
  border: 1px solid rgba(125, 190, 215, .18);
  border-radius: 9px;
  outline: 0;
  background: #030b12;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px #27c7ff1a;
}
.contact-form textarea {
  resize: vertical;
}
.contact-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
  color: #9fb2be;
  font-size: 13px;
  line-height: 1.45;
}
.contact-consent input {
  margin-top: 3px;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}
.contact-consent a {
  color: var(--cyan-soft);
}
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status.is-info {
  color: #d7ecf5;
  border: 1px solid rgba(39, 199, 255, .28);
  background: rgba(39, 199, 255, .08);
}
.legal-placeholder {
  display: inline;
  padding: 0 4px;
  border-radius: 4px;
  background: rgba(255, 196, 86, .12);
  color: #ffd27a;
  border: 1px dashed rgba(255, 196, 86, .45);
  font-family: Space Grotesk, sans-serif;
  font-size: .92em;
}
.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
}
.legal-page .section-heading h1 {
  margin: 0 0 12px;
  font-family: Space Grotesk, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -.03em;
}
.legal-content {
  max-width: 72ch;
  display: grid;
  gap: 14px;
  color: #9fb2be;
  line-height: 1.65;
}
.legal-content h2 {
  margin: 18px 0 0;
  color: #edfaff;
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
}
.legal-content p {
  margin: 0;
}
.legal-content a {
  color: var(--cyan-soft);
}
.legal-note {
  margin-top: 12px !important;
  padding: 14px 16px;
  border: 1px solid rgba(255, 196, 86, .28);
  border-radius: 12px;
  background: rgba(255, 196, 86, .06);
  color: #e7d3a4;
  font-size: 14px;
}
a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-form .form-success {
  display: none !important;
}
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 13px;
  align-items: center;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand strong {
  font-family: Space Grotesk;
  letter-spacing: .06em;
}
.footer-brand span,
.footer-legal {
  color: #587182;
  font-size: 12px;
}
.footer-menu {
  display: flex;
  gap: 18px;
}
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  gap: 18px;
}
.footer-legal button,
.footer-legal a {
  padding: 0;
  font-size: 12px;
}
@media (max-width: 1200px) {
  .section {
    width: min(100% - 40px, 1100px);
    padding: 100px 0;
  }
  .portfolio,
  .services {
    width: min(100% - 40px, 1100px);
  }
  .hero {
    gap: 36px;
    min-height: 820px;
  }
  h1 {
    font-size: clamp(44px, 5vw, 68px);
  }
  .nav {
    gap: 10px;
  }
  .nav button {
    font-size: 12px;
  }
}

@media (max-width: 1100px) {
  .topbar {
    width: min(100% - 28px, 1080px);
  }
  .nav {
    gap: 8px;
  }
  .nav button {
    font-size: 12px;
  }
  .nav-cta {
    padding: 0 12px;
    min-height: 42px;
    font-size: 12px;
  }
}

@media (max-width: 1040px) {
  .topbar {
    width: min(100% - 28px, 980px);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 160px;
    min-height: auto;
    gap: 48px;
  }
  .hero-glow {
    animation: none;
    will-change: auto;
  }
  .hero-glow-monitor {
    opacity: 0.11;
    right: 50%;
    transform: translateX(35%);
    top: 58%;
  }
  .hero-glow-headline {
    opacity: 0.08;
  }
  .hero-copy {
    max-width: 720px;
  }
  .monitor-wrap {
    max-width: min(720px, 100%);
    width: 100%;
    margin: 0 auto;
    padding-bottom: 88px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    position: relative;
    top: auto;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    perspective: none;
  }
  .about-visual-stage {
    transform: none !important;
  }
  .portrait-glow {
    animation: none;
    opacity: .7;
  }
  .code-card {
    animation: none;
  }
  .about-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .about-tabs {
    width: 100%;
  }
  .about-tab {
    flex: 1 1 auto;
  }
  .about-steps {
    min-height: 0;
  }
  .mini-stats span {
    opacity: 1;
    transform: none;
  }
  .process {
    width: min(100% - 40px, 1100px);
  }
  .showcase-card {
    flex-basis: min(88vw, 480px);
    max-width: 480px;
  }
  .portfolio-sticky {
    width: calc(100% - 28px);
    padding-top: 12px;
  }
  .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .portfolio-head .section-heading h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 40px;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .compare-slider-frame {
    min-height: 480px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .section {
    width: calc(100% - 28px);
    padding: 72px 0;
    scroll-margin-top: 88px;
  }
  .portfolio,
  .services {
    width: calc(100% - 28px);
  }
  .topbar {
    top: max(10px, env(safe-area-inset-top));
    height: 58px;
    width: calc(100% - 16px);
    padding: 0 10px 0 12px;
    border-radius: 14px;
  }
  .brand {
    gap: 8px;
    letter-spacing: .04em;
  }
  .brand span {
    font-size: 12px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .desktop-cta,
  .nav {
    display: none;
  }
  .menu-button {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
  }
  .lang-switch:not(.lang-switch-mobile) {
    margin-right: 8px;
  }
  .nav.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    left: 0;
    right: 0;
    top: 64px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #06101a;
    box-shadow: 0 20px 50px #00000080;
    z-index: 60;
  }
  .nav.open .lang-switch-mobile {
    display: inline-flex;
  }
  .nav.open button,
  .nav.open a {
    text-align: left;
    padding: 14px 12px;
    font-size: 15px;
  }
  .hero {
    padding-top: 120px;
    gap: 36px;
  }
  .hero-grid {
    opacity: 0.03;
    background-size: 40px 40px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
    margin-bottom: 16px;
  }
  h1 {
    font-size: clamp(40px, 11vw, 56px);
    margin-bottom: 20px;
  }
  .hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions button,
  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 46px;
  }
  .trust-row {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
  }
  .monitor-wrap {
    padding-bottom: 70px;
    max-width: 100%;
  }
  .monitor {
    padding: 6px;
    border-radius: 14px;
  }
  .monitor-screen {
    border-radius: 10px;
  }
  .monitor-empty {
    padding: 20px 18px;
  }
  .monitor-empty h2 {
    font-size: clamp(22px, 6vw, 32px);
  }
  .monitor-neck {
    height: 40px;
    width: 52px;
  }
  .monitor-base {
    width: 150px;
    height: 12px;
  }
  .project-switcher {
    bottom: 8px;
    max-width: calc(100% - 8px);
    padding: 5px;
  }
  .project-switcher button {
    padding: 10px 16px;
    font-size: 12px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(30px, 8vw, 40px);
    margin-bottom: 16px;
  }
  .section-heading p {
    font-size: 15px;
  }
  .comparison,
  .about,
  .contact,
  .mini-stats,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .compare-slider-frame {
    min-height: 430px;
  }
  .compare-panel-body {
    padding: 52px 22px 24px;
  }
  .compare-side-note {
    display: none;
  }
  .compare-watermark {
    right: 10px;
    bottom: 78px;
    font-size: 72px;
  }
  .compare-watermark-ohne {
    left: 52%;
  }
  .compare-panel-body h3 {
    font-size: 22px;
    margin-bottom: 18px;
    max-width: none;
  }
  .compare-panel-body li {
    padding: 10px 0 10px 22px;
    font-size: 14px;
  }
  .compare-panel-body li:before {
    top: 16px;
    width: 6px;
    height: 6px;
  }
  .compare-text-full {
    display: none;
  }
  .compare-text-short {
    display: inline;
  }
  .compare-stat {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .compare-stat strong {
    font-size: 48px;
  }
  .compare-corner-label {
    top: 14px;
    font-size: 10px;
  }
  .compare-corner-ohne {
    left: 16px;
  }
  .compare-corner-mit {
    right: 16px;
  }
  .compare-divider-handle {
    width: 40px;
    height: 40px;
  }
  .about {
    gap: 36px;
  }
  .about-visual {
    min-height: 380px;
    max-width: 100%;
  }
  .about-visual-stage {
    min-height: 380px;
  }
  .portrait-card {
    top: 12px;
    right: 12px;
    bottom: 56px;
    left: 0;
    padding: 22px;
  }
  .portrait-card strong {
    font-size: 20px;
  }
  .code-card {
    width: min(88%, 320px);
    padding: 18px;
  }
  .about-step h2 {
    font-size: clamp(28px, 7vw, 36px);
  }
  .about-step > p {
    font-size: 15px;
  }
  .mini-stats {
    grid-template-columns: 1fr;
  }
  .showcase-browser {
    margin: 8px;
    border-radius: 10px;
  }
  .showcase-meta {
    padding: 4px 12px 14px;
  }
  .showcase-card {
    flex: 0 0 min(86vw, 340px);
    max-width: 340px;
    opacity: .55;
    transform: none;
    border-radius: 16px;
  }
  .showcase-card.is-active {
    opacity: 1;
    transform: none;
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--card-accent, #27c7ff) 30%, transparent),
      0 0 24px color-mix(in srgb, var(--card-accent, #27c7ff) 16%, transparent);
  }
  .showcase-shot {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .showcase-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none !important;
  }
  .showcase-meta h3 {
    font-size: 18px;
  }
  .showcase-desc {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
  .showcase-actions {
    margin-top: 10px;
  }
  .showcase-btn {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }
  .portfolio-showcase {
    padding: 72px 0 56px;
  }
  .portfolio-viewport.is-mobile-snap {
    scroll-padding-inline: 7vw;
  }
  .portfolio-viewport.is-mobile-snap .portfolio-track {
    padding-inline: 7vw;
    gap: 14px;
  }
  .portfolio-toolbar {
    width: 100%;
    justify-content: space-between;
  }
  .service-card {
    min-height: auto;
    padding: 24px;
  }
  .service-card h3 {
    margin-top: 36px;
    font-size: 22px;
  }
  .process-step-title {
    font-size: 19px;
  }
  .process-step-trigger {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 16px 0;
  }
  .process-steps-wrap {
    padding-left: 22px;
  }
  .process-step-num {
    width: 30px;
    height: 30px;
    margin-left: -22px;
    font-size: 11px;
  }
  .contact {
    width: calc(100% - 28px);
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 28px 18px;
    gap: 32px;
    border-radius: 20px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label {
    grid-column: 1 / -1;
  }
  footer {
    width: calc(100% - 28px);
    padding: 32px 0 max(32px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
  }
  .footer-menu,
  .footer-legal {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}

@media (max-width: 480px) {
  .section,
  .portfolio,
  .services {
    width: calc(100% - 20px);
    padding: 64px 0;
  }
  .topbar {
    width: calc(100% - 12px);
    height: 54px;
  }
  .brand span {
    font-size: 11px;
  }
  .hero {
    padding-top: 108px;
    gap: 28px;
  }
  h1 {
    font-size: clamp(36px, 12vw, 46px);
    letter-spacing: -.04em;
  }
  .trust-row {
    font-size: 12px;
  }
  .trust-row b {
    font-size: 14px;
  }
  .monitor-empty p {
    font-size: 13px;
  }
  .about-visual {
    min-height: 340px;
  }
  .mini-stats {
    gap: 8px;
  }
  .contact {
    width: calc(100% - 20px);
    padding: 24px 14px;
  }
  footer {
    width: calc(100% - 20px);
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1041px) and (max-width: 1200px) {
  .showcase-card {
    flex-basis: min(58vw, 560px);
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .showcase-shot {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .showcase-shot img {
    /* Fit screenshot to frame width (no over-zoom) */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none !important;
  }
  .showcase-shot.is-panning img {
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .compare-slider {
    transform: translateY(12px);
    transition-duration: .45s;
  }
  .compare-slider.is-visible {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-glow {
    animation: none !important;
    will-change: auto;
  }
  .compare-slider {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .compare-panel-ohne {
    will-change: auto;
  }
  .portrait-glow,
  .code-card {
    animation: none !important;
  }
  .about-visual-stage {
    transform: none !important;
  }
  .about-step,
  .mini-stats span {
    transition: none !important;
  }
  .about-step:not(.is-active) {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
  }
  .about-step.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .about-step.is-active .mini-stats.is-revealed span {
    opacity: 1 !important;
    transform: none !important;
  }
  .code-type:after {
    display: none !important;
  }
  .showcase-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .showcase-shot img {
    transition: none !important;
    transform: none !important;
  }
  .portfolio-track {
    transition: none !important;
  }
  .reveal-ready[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .has-parallax {
    transform: none !important;
    will-change: auto !important;
  }
  .back-to-top {
    transition: none !important;
  }
  .nav button .nav-glow {
    transition: none !important;
  }
}

/* ---------------------------------------------------------------------------
   Georgian typography (lang=ka) — local FiraGO only (OFL / commercial-OK)
   No NC/ND fonts. No Sylfaen / system-ui / serif fallbacks.
--------------------------------------------------------------------------- */
html[lang="ka"] body {
  font-family: "FiraGO", sans-serif;
  font-weight: 400;
  font-synthesis: none;
}
html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] .hero-title,
html[lang="ka"] .hero h1,
html[lang="ka"] .section-heading h2,
html[lang="ka"] .about-step h2,
html[lang="ka"] .finder-question {
  font-family: "FiraGO", sans-serif;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: normal;
}
html[lang="ka"] h3,
html[lang="ka"] h4,
html[lang="ka"] h5,
html[lang="ka"] p,
html[lang="ka"] li,
html[lang="ka"] label,
html[lang="ka"] .wa-message,
html[lang="ka"] .wa-note,
html[lang="ka"] .wa-status,
html[lang="ka"] .finder-hint,
html[lang="ka"] .finder-disclaimer,
html[lang="ka"] .budget-card-desc,
html[lang="ka"] .budget-modal-intro {
  font-family: "FiraGO", sans-serif;
  font-weight: 400;
}
html[lang="ka"] nav,
html[lang="ka"] .nav,
html[lang="ka"] .nav button,
html[lang="ka"] .nav a,
html[lang="ka"] .footer-menu button,
html[lang="ka"] .footer-menu a,
html[lang="ka"] .menu-button,
html[lang="ka"] button,
html[lang="ka"] .primary-button,
html[lang="ka"] .secondary-button,
html[lang="ka"] .nav-cta,
html[lang="ka"] .finder-option,
html[lang="ka"] .about-tab,
html[lang="ka"] .wa-cta,
html[lang="ka"] .budget-open-btn,
html[lang="ka"] input,
html[lang="ka"] textarea,
html[lang="ka"] select {
  font-family: "FiraGO", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
html[lang="ka"] .wa-name {
  font-family: "FiraGO", sans-serif;
  font-weight: 600;
}
html[lang="ka"] .price,
html[lang="ka"] .brand,
html[lang="ka"] .brand-name,
html[lang="ka"] .latin-text,
html[lang="ka"] .technical-label,
html[lang="ka"] .finder-scale-labels b,
html[lang="ka"] .finder-price-official,
html[lang="ka"] .finder-price-estimate,
html[lang="ka"] .budget-card-price,
html[lang="ka"] .budget-card-toggle-sub,
html[lang="ka"] .lang-btn,
html[lang="ka"] .footer-brand strong {
  font-family: "Space Grotesk", "FiraGO", sans-serif;
}
html[lang="ka"] .eyebrow,
html[lang="ka"] .compare-label,
html[lang="ka"] .compare-corner-label,
html[lang="ka"] .service-lab-name,
html[lang="ka"] .finder-progress,
html[lang="ka"] .finder-result-eyebrow,
html[lang="ka"] .budget-card-eyebrow,
html[lang="ka"] .about-tab,
html[lang="ka"] .portrait-card span,
html[lang="ka"] .code-card b {
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: "FiraGO", sans-serif;
  font-weight: 600;
}
html[lang="ka"] .brand-name,
html[lang="ka"] .footer-brand strong {
  text-transform: none;
  letter-spacing: 0.08em;
  font-weight: 700;
}
html[lang="ka"] .primary-button,
html[lang="ka"] .secondary-button,
html[lang="ka"] .nav-cta,
html[lang="ka"] .finder-option,
html[lang="ka"] .wa-cta,
html[lang="ka"] .budget-open-btn {
  min-height: 48px;
  height: auto;
  white-space: normal;
  line-height: 1.25;
  padding-top: 10px;
  padding-bottom: 10px;
}
html[lang="ka"] .nav button,
html[lang="ka"] .nav a {
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
html[lang="ka"] .showcase-card,
html[lang="ka"] .budget-card,
html[lang="ka"] .finder-result,
html[lang="ka"] .about-step {
  overflow: visible;
}
html[lang="ka"] .topbar {
  height: auto;
  min-height: 70px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 980px) {
  html[lang="ka"] .nav.open {
    max-height: min(80vh, 640px);
    overflow-y: auto;
  }
  html[lang="ka"] .nav.open button {
    white-space: normal;
    text-align: left;
  }
}
