/* ══════════════════════════════════════════════════════
   NORTH-TEC — Shared Stylesheet
   Shared across: index.html, dc.html, ac.html,
   backend.html, kunden.html, kontakt.html, support.html
   ══════════════════════════════════════════════════════ */

/* RESET & BASE */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --bg: #08080a;
  --bg2: #111114;
  --blue: #0094C0;
  --blue-d: #007DA3;
  --w: #fafafa;
  --w2: #f5f5f7;
  --w3: #eeeef0;
  --g3: #c0c0c8;
  --g4: #8e8e99;
  --g5: #6e6e7a;
  --g6: #4e4e58;
  --g7: #333340;
  --g8: #1e1e26;
  --d: #111114;
  --sans: 'Inter', sans-serif;
  --serif: 'Inter', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1)
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--w);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior: none
}

.ctn {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px)
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.rv.v {
  opacity: 1;
  transform: translateY(0)
}

.rv-d1 {
  transition-delay: .1s
}

.rv-d2 {
  transition-delay: .2s
}

.rv-d3 {
  transition-delay: .3s
}

.rv-d4 {
  transition-delay: .4s
}

/* KEYFRAMES */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes sp {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

@keyframes mq {
  to {
    transform: translateX(-50%)
  }
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

/* NAV — pill, fixed, centered */
nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1300px, calc(100% - 40px));
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 22px;
  background: rgba(8, 8, 10, .65);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
  animation: navIn .6s var(--ease) .2s both;
  transition: background .4s, border-color .4s, box-shadow .4s
}

nav.scrolled {
  background: rgba(8, 8, 10, .88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

nav.light {
  background: rgba(245, 245, 247, .82);
  border-color: rgba(0, 0, 0, .08)
}

nav.light .nl img {
  filter: invert(1)
}

nav.light .nk-center a {
  color: #6e6e7a
}

nav.light .nk-center a:hover {
  color: #111;
  background: rgba(0, 0, 0, .04)
}

nav.light .ls {
  color: #6e6e7a;
  border-color: rgba(0, 0, 0, .12)
}

nav.light .nt span {
  background: #111
}

nav.light .nl-div {
  background: rgba(0, 0, 0, .1)
}

nav.light .nl-tag {
  color: #6e6e7a;
  border-color: rgba(0, 0, 0, .1)
}

/* Nav: left logo */
.nl {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

.nl img {
  height: 44px;
  transition: filter .4s
}

.nl-div {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .12)
}

.nl-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g5);
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px
}

/* Nav: center (flex item, never overlaps the side groups) */
.nk-center {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0
}

.nk-center a {
  font-size: 16px;
  color: var(--g4);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color .2s, background .2s
}

.nk-center a:hover,
.nk-center a.active {
  color: var(--w);
  background: rgba(255, 255, 255, .07)
}

/* Nav dropdown */
.nd {
  position: relative;
  display: flex;
  align-items: center
}

.nd-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer
}

.nd-trigger svg {
  transition: transform .25s;
  flex-shrink: 0;
  opacity: .5
}

.nd:hover .nd-trigger svg {
  transform: rotate(180deg);
  opacity: 1
}

.nd-drop {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(14, 14, 18, .97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 200
}

/* invisible bridge fills the gap so mouse can travel from trigger to dropdown */
.nd-drop::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px
}

.nd:hover .nd-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.nd-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--g3);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 10px;
  transition: background .18s, color .18s;
  white-space: nowrap
}

.nd-drop a:hover {
  background: rgba(255, 255, 255, .07);
  color: var(--w)
}

.nd-drop a .nd-sub {
  font-size: 16px;
  color: var(--g6);
  display: block;
  margin-top: 1px
}

.nd-sep {
  height: 1px;
  background: rgba(255, 255, 255, .06);
  margin: 4px 0
}

/* Dropdown item: "kommt bald" — disabled, non-clickable */
.nd-soon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--g6);
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  cursor: not-allowed;
  opacity: .7
}

.nd-soon .nd-sub {
  font-size: 16px;
  color: var(--g7);
  display: block;
  margin-top: 1px
}

nav.light .nd-soon {
  color: #9a9aa2
}

nav.light .nd-soon .nd-sub {
  color: #b4b4bc
}

/* mobile: .open class */
.nd.open .nd-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.nd.open .nd-trigger svg {
  transform: rotate(180deg);
  opacity: 1
}

/* light nav override for dropdown */
nav.light .nd-trigger {
  color: #6e6e7a
}

nav.light .nd-drop {
  background: rgba(245, 245, 247, .97);
  border-color: rgba(0, 0, 0, .08)
}

nav.light .nd-drop a {
  color: #6e6e7a
}

nav.light .nd-drop a:hover {
  background: rgba(0, 0, 0, .04);
  color: #111
}

/* Nav: right */
.nk-right {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0
}

.nc {
  background: var(--blue) !important;
  color: var(--w) !important;
  padding: 9px 18px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  transition: all .25s !important;
  text-decoration: none !important
}

.nc:hover {
  background: var(--blue-d) !important;
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 148, 192, .35) !important
}

.ls {
  font-size: 16px;
  color: var(--g5);
  cursor: pointer;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  background: 0;
  font-family: var(--sans);
  transition: all .2s
}

.ls:hover {
  color: var(--w);
  border-color: rgba(255, 255, 255, .25)
}

/* Language switcher (DE / EN / DA) */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px;
  padding: 2px;
  flex-shrink: 0
}

.lang a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--g4);
  text-decoration: none;
  padding: 5px 7px;
  border-radius: 100px;
  line-height: 1;
  transition: color .2s, background .2s
}

.lang a:hover {
  color: var(--w)
}

.lang a.active {
  color: var(--w);
  background: var(--blue)
}

nav.light .lang {
  border-color: rgba(0, 0, 0, .14)
}

nav.light .lang a {
  color: #6e6e7a
}

nav.light .lang a:hover {
  color: #111
}

nav.light .lang a.active {
  color: #fff;
  background: var(--blue)
}

/* mobile copy of the switcher (shown only inside the open mobile menu) */
.lang-mob {
  display: none
}

/* Burger */
.nt {
  display: none;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  cursor: pointer;
  padding: 10px 14px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.nt span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--w);
  border-radius: 2px;
  transition: all .3s var(--ease)
}

/* Mobile-only CTA in nav — hidden globally, shown only in open mobile menu */
.nc-mob {
  display: none !important
}

/* HERO — canvas scroll animation (index.html only) */
.hero {
  position: relative;
  height: 300vh
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(8, 8, 10, .75) 0%, rgba(8, 8, 10, .1) 20%, rgba(8, 8, 10, .25) 55%, rgba(8, 8, 10, .92) 100%)
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 180px rgba(8, 8, 10, .6);
  pointer-events: none
}

#heroLoader {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity .6s ease
}

#heroLoader.done {
  opacity: 0;
  pointer-events: none
}

.hl-bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  border-radius: 1px;
  overflow: hidden
}

.hl-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 1px;
  transition: width .1s linear
}

.hl-pct {
  font-size: 16px;
  color: var(--g5);
  letter-spacing: .15em;
  font-weight: 500
}

.hero-c {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 10vh, 100px);
  width: 100%;
  max-width: 1380px;
  margin: 0 auto
}

.hero-ey {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--blue);
  margin-bottom: 20px;
  animation: fu .7s var(--ease) .3s both;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6)
}

.hero h1 {
  font-size: clamp(44px, 7.5vw, 104px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
  animation: fu .7s var(--ease) .4s both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .7), 0 1px 4px rgba(0, 0, 0, .5)
}

.hero h1 em {
  font-style: normal;
  font-weight: inherit;
  color: var(--blue)
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(250, 250, 250, .85);
  max-width: 480px;
  margin-top: 20px;
  animation: fu .7s var(--ease) .5s both;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8)
}

.hero-act {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  animation: fu .7s var(--ease) .6s both
}

.hero-sc {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fu .7s var(--ease) .8s both
}

.hero-sc span {
  font-size: 16px;
  color: var(--g5);
  letter-spacing: .06em;
  text-transform: none
}

.scl {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: sp 2s ease-in-out infinite
}

/* PAGE HERO — for subpages (no canvas) */
.ph {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 94px
}

.ph-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform
}

.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 10, .7) 0%, rgba(8, 8, 10, .2) 30%, rgba(8, 8, 10, .55) 65%, rgba(8, 8, 10, .97) 100%)
}

.ph-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px rgba(8, 8, 10, .75);
  pointer-events: none
}

.ph-c {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 8vh, 100px);
  width: 100%;
  max-width: 1380px;
  margin: 0 auto
}

.ph-ey {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  color: #fff;
  margin-bottom: 20px;
  animation: fu .7s var(--ease) .3s both;
  background: rgba(0, 148, 192, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 148, 192, .45);
  padding: 5px 14px;
  border-radius: 100px
}

.ph h1 {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  animation: fu .7s var(--ease) .4s both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .7)
}

.ph h1 em {
  font-style: normal;
  font-weight: inherit;
  color: var(--blue)
}

.ph-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(250, 250, 250, .95);
  max-width: 480px;
  margin-top: 18px;
  animation: fu .7s var(--ease) .5s both;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8)
}

.ph-act {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  animation: fu .7s var(--ease) .6s both
}

/* Breadcrumb */
.ph-bc {
  position: absolute;
  top: calc(94px + 20px);
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 clamp(24px, 5vw, 80px);
  animation: fu .5s var(--ease) .1s both
}

.ph-bc a,
.ph-bc span {
  font-size: 16px;
  color: var(--g5);
  text-decoration: none;
  transition: color .2s
}

.ph-bc a:hover {
  color: var(--w)
}

.ph-bc .sep {
  margin: 0 8px;
  color: var(--g7)
}

/* BUTTONS */
.bp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--w);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .25s
}

.bp:hover {
  background: var(--blue-d);
  transform: translateY(-1px)
}

.bp svg {
  transition: transform .3s
}

.bp:hover svg {
  transform: translateX(3px)
}

.bs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: 0;
  color: var(--g3);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .25s
}

.bs:hover {
  border-color: rgba(255, 255, 255, .3);
  color: var(--w)
}

/* MARQUEE */
.mq {
  overflow: hidden;
  white-space: nowrap;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.mq-t {
  display: inline-flex;
  gap: 60px;
  animation: mq 30s linear infinite
}

.mq-t span {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 600;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, .18);
  flex-shrink: 0
}

.mq-t span em {
  font-style: normal;
  color: rgba(0, 148, 192, .35)
}

/* IMG BREAK */
.ib {
  position: relative;
  overflow: hidden;
  height: clamp(50vh, 70vh, 85vh)
}

.ib-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform
}

.ib-ov {
  position: absolute;
  inset: 0
}

.ib-ov.d2w {
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 65%, var(--w2) 100%)
}

.ib-ov.w2d {
  background: linear-gradient(to bottom, var(--w2) 0%, transparent 15%, transparent 65%, var(--bg) 100%)
}

.ib-ov.d2d {
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 18%, transparent 55%, var(--bg) 100%)
}

.ib-ov.w2w {
  background: linear-gradient(to bottom, var(--w2) 0%, transparent 15%, transparent 65%, var(--w2) 100%)
}

.ib-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 5vw, 80px);
  z-index: 2
}

.ib-cl {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  color: #fff;
  margin-bottom: 8px;
  background: rgba(0, 148, 192, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 148, 192, .45);
  padding: 4px 12px;
  border-radius: 100px
}

.ib-ct {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .9), 0 1px 4px rgba(0, 0, 0, .8)
}

.ib-ct em {
  font-style: normal;
  color: var(--blue)
}

.ib-cs {
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
  font-weight: 300;
  margin-top: 8px;
  max-width: 400px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .9)
}

.ib-cap.dark .ib-ct {
  color: var(--d);
  text-shadow: none
}

.ib-cap.dark .ib-cl {
  color: var(--blue);
  background: rgba(0, 148, 192, .1);
  border-color: rgba(0, 148, 192, .3)
}

.ib-cap.dark .ib-cs {
  color: var(--g5);
  text-shadow: none
}

.ib-cap.d2w-cap .ib-ct {
  color: var(--d);
  text-shadow: none
}

.ib-cap.d2w-cap .ib-cl {
  color: var(--blue);
  background: rgba(0, 148, 192, .1);
  border-color: rgba(0, 148, 192, .3)
}

.ib-cap.d2w-cap .ib-cs {
  color: var(--g5);
  text-shadow: none
}

/* SECTIONS */
section {
  padding: clamp(80px, 12vh, 140px) 0
}

.se {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--blue);
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(0, 148, 192, .35)
}

.st {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 680px
}

.st em {
  font-style: normal;
  color: var(--blue)
}

.sd {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--g4);
  max-width: 500px;
  margin-top: 16px
}

/* SOLUTIONS */
.sol {
  background: var(--bg2)
}

.sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  overflow: hidden
}

.sc {
  background: var(--bg2);
  padding: 44px 32px;
  position: relative;
  transition: all .5s
}

.sc::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s
}

.sc:hover::before {
  transform: scaleX(1)
}

.sc:hover {
  background: rgba(0, 148, 192, .04)
}

.sn{font-size:56px;font-weight:600;letter-spacing:-.04em;color:#007da3;line-height:1;margin-bottom:20px;font-style:normal}

.sc h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  color: var(--w)
}

.sc p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--g3)
}

/* PRODUCTS — white section */
.products {
  background: #f8f8fa;
  color: var(--d);
  padding: clamp(80px, 12vh, 140px) 0
}

.products .se {
  color: var(--blue)
}

.products .st {
  color: var(--d)
}

.products .sd {
  color: var(--g5)
}

.pg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px
}

.pc {
  background: #f8f8fa;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s;
  border: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column
}

.pf {
  background: #ffffff
}

.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .1)
}

.pi {
  width: 100%;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8fa;
  position: relative
}

.pi img {
  max-width: 58%;
  max-height: 90%;
  object-fit: contain;
  transition: transform .7s var(--ease)
}

.pc:hover .pi img {
  transform: scale(1.05)
}

.pf {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff
}

.plb {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--blue);
  margin-bottom: 8px
}

.pf h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  color: var(--d)
}

.pf-model {
  font-size: 16px;
  color: var(--g4);
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 12px
}

.pf>div>p {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px
}

/* Spec table */
.pst {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--w3);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px
}

.psr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--w3);
  gap: 12px
}

.psr:last-child {
  border-bottom: none
}

.psr-l {
  font-size: 16px;
  color: var(--g5);
  font-weight: 400;
  flex: 1
}

.psr-v {
  font-size: 16px;
  font-weight: 600;
  color: var(--d);
  text-align: right;
  white-space: nowrap
}

.psr-badge {
  font-size: 16px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(0, 148, 192, .08);
  color: var(--blue);
  border: 1px solid rgba(0, 148, 192, .15);
  white-space: nowrap
}

/* Tags */
.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px
}

.ptag {
  font-size: 16px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, .08);
  color: var(--g5);
  background: #f5f5f7
}

.plk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: auto;
  transition: gap .3s
}

.plk:hover {
  gap: 14px
}

/* PROCESS */
.proc {
  background: var(--bg)
}

.pl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative
}

.pl::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255, 255, 255, .06)
}

.ps {
  text-align: center;
  padding: 0 12px;
  position: relative
}

.pd {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2
}

.ps h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px
}

.ps p {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.6
}

/* BACKEND */
.bk {
  background: var(--bg2)
}

.bg2 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px
}

.bf {
  display: flex;
  flex-direction: column
}

.bft {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.bft h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px
}

.bft p {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.6
}

.bv {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible
}

@keyframes bkFloat {

  0%,
  100% {
    transform: perspective(900px) rotateY(-6deg) rotateX(3deg) translateY(0px)
  }

  50% {
    transform: perspective(900px) rotateY(-6deg) rotateX(3deg) translateY(-12px)
  }
}

.bv-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 8px 24px rgba(0, 148, 192, .1);
  animation: bkFloat 5s ease-in-out infinite;
  transform-origin: center center;
  display: block
}

/* REFERENCE */
.rg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px
}

.rs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px
}

.rst {
  background: var(--bg2);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .04)
}

.rsv {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1
}

.rsl {
  font-size: 16px;
  color: var(--g5);
  margin-top: 3px
}

.ri {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3
}

.ri img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* INDUSTRIES */
.it {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap
}

.itg {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 100px;
  font-size: 16px;
  color: var(--g4);
  transition: all .3s;
  cursor: default
}

.itg:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--w)
}

/* CTA */
.cta {
  text-align: center;
  padding: clamp(100px, 16vh, 200px) 0;
  position: relative
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 148, 192, .06), transparent 70%);
  pointer-events: none
}

.cta .st {
  margin: 0 auto
}

.cta .sd {
  margin: 16px auto 0;
  text-align: center
}

.cb {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center
}

.cp {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px
}

.ca {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 148, 192, .3);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3)
}

.ca img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ci {
  text-align: left
}

.cn {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em
}

.cr {
  font-size: 16px;
  color: var(--g5);
  margin-top: 3px
}

.cl {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.cl a {
  font-size: 16px;
  color: var(--blue);
  text-decoration: none
}

/* CTA STRIP — inline mid-page nudge (avatar + text + button, with side rules) */
.cta-strip-wrap {
  padding: clamp(48px, 8vh, 88px) 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.cta-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px)
}

.cta-strip .csl {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .1)
}

.cta-strip-in {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0
}

.cta-strip-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 148, 192, .3);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.cta-strip-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-strip-txt h3 {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--w);
  line-height: 1.15
}

.cta-strip-txt p {
  font-size: 16px;
  font-weight: 300;
  color: var(--g4);
  margin-top: 3px
}

.cta-strip .bp {
  flex-shrink: 0;
  white-space: nowrap
}

@media(max-width:900px) {
  .cta-strip .csl {
    display: none
  }

  .cta-strip {
    flex-direction: column;
    gap: 24px;
    text-align: center
  }

  .cta-strip-in {
    flex-direction: column;
    gap: 16px
  }
}

/* LEGAL / TEXT PAGES (impressum, datenschutz, barrierefreiheit) */
.legal-head {
  padding: calc(94px + clamp(40px, 8vh, 80px)) 0 0
}

.legal {
  max-width: 820px;
  margin: 0 auto
}

.legal h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--w);
  margin: 44px 0 14px
}

.legal h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--w);
  margin: 28px 0 8px
}

.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--g3);
  margin-bottom: 14px
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 14px
}

.legal a {
  color: var(--blue);
  text-decoration: none
}

.legal a:hover {
  text-decoration: underline
}

.legal strong {
  color: var(--w);
  font-weight: 500
}

.legal .addr {
  color: var(--g3);
  line-height: 1.8;
  margin-bottom: 14px
}

.legal-updated {
  font-size: 16px;
  color: var(--g5);
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

/* FOOTER */
footer {
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .04)
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px
}

.fb p {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 260px
}

.fc h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 12px
}

.fc a {
  display: block;
  font-size: 16px;
  color: var(--g5);
  text-decoration: none;
  margin-bottom: 7px;
  transition: color .2s
}

.fc a:hover {
  color: var(--w)
}

.fbt {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.fbt p {
  font-size: 16px;
  color: var(--g6)
}

.fl {
  display: flex;
  gap: 16px
}

.fl a {
  font-size: 16px;
  color: var(--g6);
  text-decoration: none
}

.fl a:hover {
  color: var(--w)
}

/* ── SUBPAGE-SPECIFIC ────────────────────────────────── */

/* SPEC FULL TABLE (dc.html, ac.html) */
.spec-section {
  background: #f8f8fa;
  color: var(--d);
  padding: clamp(80px, 12vh, 140px) 0
}

.spec-section .se {
  color: var(--blue)
}

.spec-section .st {
  color: var(--d)
}

.spec-section .sd {
  color: var(--g5)
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px
}

.spec-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  border: 1px solid rgba(0, 0, 0, .06)
}

.spec-visual img {
  max-width: 65%;
  max-height: 440px;
  object-fit: contain
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 0
}

.spec-group {
  margin-bottom: 28px
}

.spec-group-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--blue);
  margin-bottom: 10px
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--w3);
  gap: 16px
}

.spec-row:last-child {
  border-bottom: none
}

.spec-row-l {
  font-size: 16px;
  color: var(--g5);
  font-weight: 400
}

.spec-row-v {
  font-size: 16px;
  font-weight: 600;
  color: var(--d);
  text-align: right
}

.spec-badge {
  font-size: 16px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(0, 148, 192, .08);
  color: var(--blue);
  border: 1px solid rgba(0, 148, 192, .15)
}

/* FEATURES GRID */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .04);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px
}

.feat-card {
  background: var(--bg2);
  padding: 40px 32px
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 148, 192, .1);
  border: 1px solid rgba(0, 148, 192, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.feat-icon svg {
  color: var(--blue)
}

.feat-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px
}

.feat-card p {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.65
}

/* USE CASES */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

.uc-card {
  background: var(--bg2);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .04);
  transition: border-color .3s
}

.uc-card:hover {
  border-color: rgba(0, 148, 192, .25)
}

.uc-icon {
  font-size: 28px;
  margin-bottom: 14px
}

.uc-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px
}

.uc-card p {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.6
}

/* CONTACT FORM (kontakt.html) */
.form-section {
  background: var(--bg2)
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-group.full {
  grid-column: 1/-1
}

label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g5)
}

input,
textarea,
select {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--w);
  font-family: var(--sans);
  transition: border-color .2s, box-shadow .2s;
  outline: none
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 148, 192, .12)
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6
}

select option {
  background: var(--bg2)
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 500
}

/* TEAM / SUPPORT */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px
}

.team-card {
  background: var(--bg2);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color .3s
}

.team-card:hover {
  border-color: rgba(0, 148, 192, .2)
}

.team-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 148, 192, .25);
  flex-shrink: 0
}

.team-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.team-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em
}

.team-role {
  font-size: 16px;
  color: var(--g5);
  margin-top: 3px
}

.team-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.team-links a {
  font-size: 16px;
  color: var(--blue);
  text-decoration: none;
  transition: opacity .2s
}

.team-links a:hover {
  opacity: .75
}

/* SUPPORT TIERS */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

.sup-card {
  background: var(--bg2);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, .04);
  transition: border-color .3s, transform .4s var(--ease)
}

.sup-card:hover {
  border-color: rgba(0, 148, 192, .25);
  transform: translateY(-4px)
}

.sup-card.featured {
  border-color: rgba(0, 148, 192, .35);
  background: rgba(0, 148, 192, .04)
}

.sup-badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 148, 192, .12);
  color: var(--blue);
  border: 1px solid rgba(0, 148, 192, .2);
  margin-bottom: 20px
}

.sup-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px
}

.sup-desc {
  font-size: 16px;
  color: var(--g5);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px
}

.sup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.sup-list li {
  font-size: 16px;
  color: var(--g4);
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.sup-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 148, 192, .12);
  border: 1px solid rgba(0, 148, 192, .25);
  flex-shrink: 0;
  margin-top: 2px
}

/* CUSTOMER LOGOS */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px
}

.logo-cell {
  background: var(--bg2);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-cell img {
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) brightness(.7);
  transition: filter .3s
}

.logo-cell:hover img {
  filter: grayscale(0) brightness(1)
}

/* QUOTE / TESTIMONIAL */
.q-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px
}

.q-card {
  background: var(--bg2);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, .04)
}

.q-text {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--w);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 24px
}

.q-text::before {
  content: '\201E';
  color: var(--blue);
  font-size: 2em;
  line-height: 0;
  vertical-align: -.4em;
  margin-right: 4px
}

.q-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.q-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08)
}

.q-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.q-name {
  font-size: 16px;
  font-weight: 600
}

.q-role {
  font-size: 16px;
  color: var(--g5);
  margin-top: 2px
}

/* STATS BAR */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: 48px 0
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px
}

.stat-item {
  text-align: center
}

.stat-v {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--w)
}

.stat-v em {
  color: var(--blue);
  font-style: normal
}

.stat-l {
  font-size: 16px;
  color: var(--g5);
  margin-top: 6px
}

/* LOCATION TABLE (kunden.html) */
.loc-category {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06)
}

.loc-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0, 148, 192, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 16px;
  font-weight: 500
}

.loc-cat-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 148, 192, .12);
  border-radius: 6px;
  color: var(--blue);
  flex-shrink: 0
}

.loc-cat-count {
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--blue);
  background: rgba(0, 148, 192, .1);
  padding: 3px 10px;
  border-radius: 100px
}

.loc-table {
  width: 100%
}

.loc-row {
  display: grid;
  grid-template-columns: 1fr 110px 110px 60px;
  padding: 10px 18px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  transition: background .15s
}

.loc-row:last-child {
  border-bottom: none
}

.loc-row:not(.loc-row-head):hover {
  background: rgba(255, 255, 255, .02)
}

.loc-row span:not(:first-child) {
  text-align: center;
  color: var(--g4)
}

.loc-row-head {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g6);
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(0, 0, 0, .2)
}

.loc-row-head span {
  color: var(--g6) !important
}

.loc-row-more {
  font-size: 16px;
  color: var(--g6);
  font-style: italic;
  background: rgba(255, 255, 255, .01);
  padding: 10px 18px;
  grid-template-columns: 1fr
}

.dc-dot {
  color: var(--blue) !important;
  font-weight: 600
}

/* MEDIA QUERIES */
@media(max-width:1024px) {

  .sg,
  .pg,
  .feat-grid,
  .uc-grid,
  .support-grid {
    grid-template-columns: 1fr
  }

  .bg2,
  .rg,
  .rg,
  .spec-grid,
  .team-grid,
  .logo-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .q-grid {
    grid-template-columns: 1fr
  }

  .pl {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .pl::before {
    display: none
  }

  .fg {
    grid-template-columns: 1fr 1fr
  }

  .hero {
    height: 200vh
  }

  nav {
    width: calc(100% - 24px);
    top: 10px
  }
}

/* Nav collapses to the burger menu early enough that the centered links never
   collide with the language switcher / CTA on the right. */
@media(max-width:1240px) {
  .nk-center {
    display: none
  }

  .nk-right {
    display: none
  }

  .nt {
    display: flex
  }

  .nk-center.open {
    display: flex;
    position: fixed;
    top: 104px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(10, 10, 14, .97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    padding: 20px 16px;
    gap: 4px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .09);
    z-index: 99;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .6)
  }

  .nk-center.open a {
    font-size: 17px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--g3)
  }

  .nk-center.open .nd-trigger {
    justify-content: space-between;
    width: 100%
  }

  .nk-center.open .nd {
    width: 100%;
    flex-direction: column;
    align-items: stretch
  }

  .nk-center.open .nd-drop {
    position: static;
    transform: none;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    margin: 4px 0;
    border: none;
    padding: 6px;
    transition: opacity .2s ease, max-height .25s ease
  }

  .nk-center.open .nd.open .nd-drop {
    opacity: 1;
    pointer-events: auto;
    max-height: 380px
  }

  .nk-center.open .nd-sep {
    display: none
  }

  .nk-center.open .nc-mob {
    display: flex !important;
    margin-top: 8px;
    width: 100%;
    justify-content: center
  }

  .nk-center.open .lang-mob {
    display: inline-flex;
    align-self: center;
    margin-top: 10px
  }
}

@media(max-width:768px) {
  .pl {
    grid-template-columns: 1fr
  }

  .hero-act,
  .cb,
  .ph-act {
    flex-direction: column;
    align-items: flex-start
  }

  .cb {
    align-items: center
  }

  .fg {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .fbt {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }

  .fl {
    justify-content: center
  }

  .ib {
    height: 50vh
  }

  .hero {
    height: 150vh
  }

  .pi {
    height: 300px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .spec-grid,
  .bg2,
  .team-grid {
    grid-template-columns: 1fr
  }

  .stats-inner {
    flex-direction: column;
    align-items: center
  }

  .ph {
    height: 80vh;
    min-height: 480px
  }

  .loc-row {
    grid-template-columns: 1fr 70px 80px 50px;
    font-size: 16px;
    padding: 9px 14px
  }

  .loc-cat-header {
    flex-wrap: wrap;
    gap: 8px
  }
}