:root {
  --ink: #f7fbff;
  --muted: #9aa8ba;
  --line: rgba(255, 255, 255, 0.14);
  --soft: #0f1524;
  --soft-2: #172034;
  --paper: #080b12;
  --brand: #00d4ff;
  --brand-2: #ff4fd8;
  --brand-dark: #7cff6b;
  --danger: #ffb15f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --glow-cyan: 0 0 42px rgba(0, 212, 255, 0.28);
  --glow-pink: 0 0 54px rgba(255, 79, 216, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 212, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(255, 79, 216, 0.14), transparent 30rem),
    linear-gradient(180deg, #070a12 0%, #0b1020 46%, #090d15 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.page-shell {
  flex: 1 0 auto;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 5.4vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

h3 {
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.82);
  backdrop-filter: blur(20px);
}

.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  border-bottom-color: rgba(255, 255, 255, 0.13);
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(18px);
}

body.home-page {
  overflow-x: hidden;
}

.home-page .brand-text strong,
.home-page .brand-text span,
.home-page .nav-menu a,
.home-page .nav-dropdown-button {
  color: #fff;
}

.home-page .nav-menu a:hover,
.home-page .nav-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 0 16px 0 0;
}

.brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 14px;
  min-width: 0;
  font-weight: 650;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(58px, 5.4vw, 68px);
  object-fit: contain;
  aspect-ratio: 16 / 10;
  background: #020407;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.brand-text {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}

.brand-text strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(1.48rem, 1.95vw, 1.9rem);
  font-weight: 650;
  line-height: 0.95;
}

.brand-text .brand-claim {
  display: inline;
  flex: 0 0 auto;
  margin-left: 0.22em;
  color: rgba(247, 251, 255, 0.62);
  font-size: clamp(1.48rem, 1.95vw, 1.9rem);
  font-weight: 650;
  line-height: 0.95;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex: 1;
}

.nav-menu a,
.nav-dropdown-button,
.dropdown-trigger {
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  color: rgba(247, 251, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-dropdown.active .nav-dropdown-button,
.nav-dropdown-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown {
  position: relative;
  --dropdown-width: 240px;
}

.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  text-decoration: none;
}

.dropdown-list {
  position: absolute;
  display: none;
  width: var(--dropdown-width);
  min-width: var(--dropdown-width);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 10, 18, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dropdown-level-1 {
  background: linear-gradient(180deg, rgba(8, 12, 21, 0.98), rgba(6, 9, 16, 0.98));
  border-color: rgba(255, 255, 255, 0.16);
}

.dropdown-level-2 {
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(8, 13, 24, 0.98));
  border-color: rgba(0, 212, 255, 0.24);
}

.dropdown-level-3 {
  background: linear-gradient(180deg, rgba(17, 17, 34, 0.98), rgba(13, 10, 26, 0.98));
  border-color: rgba(255, 79, 216, 0.24);
}

.dropdown-panel {
  position: absolute;
  display: none;
  top: calc(100% + 10px);
  left: var(--dropdown-panel-offset, 0px);
  width: var(--dropdown-width);
  min-width: var(--dropdown-width);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.dropdown-panel > .dropdown-list {
  position: static !important;
  display: block !important;
  width: 100%;
}

.dropdown-list {
  top: 0;
  left: calc(100% - 1px);
}

.nav-dropdown.open > .dropdown-panel,
.has-submenu.open > .dropdown-list {
  display: block;
}

.dropdown-list {
  list-style: none;
  margin: 0;
}

.dropdown-item {
  position: relative;
}

.has-submenu::after {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 2px;
  content: "";
}

.dropdown-item a,
.dropdown-trigger {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(247, 251, 255, 0.78);
  text-align: left;
  white-space: normal;
}

.dropdown-item.has-submenu:hover > .dropdown-trigger,
.dropdown-item.has-submenu.open > .dropdown-trigger {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown-label {
  flex: 1 1 auto;
  min-width: 0;
}

.dropdown-item a:hover,
.dropdown-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-actions {
  display: flex;
  gap: 9px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-contact-button {
  display: none;
}

.nav-toggle svg,
.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #051017;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6beaff, #c6ff8f);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.page-shell {
  min-height: 60vh;
}

.page-shell > .section:first-child {
  padding-top: 150px;
}

.pricing-page .page-shell > .pricing-overview-section:first-child,
.faq-page .page-shell > .section:first-child,
.contact-page .page-shell > .section:first-child {
  padding-top: 104px;
}

.page-shell > .hero:first-child,
.page-shell > .trust-strip:first-child {
  margin-top: 0;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.soft {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.09), rgba(255, 79, 216, 0.05)),
    var(--soft);
}

.colourgrading-service-page .page-shell {
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero.short {
  min-height: 520px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 6, 12, 0.84), rgba(4, 6, 12, 0.48) 52%, rgba(4, 6, 12, 0.1));
  z-index: 1;
  pointer-events: none;
}

.video-hero::before,
.header-video-hero::before {
  background: transparent;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero {
  min-height: 100svh;
}

.hero:has(.hero-video) {
  min-height: 100svh;
  align-items: start;
}

.hero.short:has(.hero-video) {
  min-height: 100svh;
}

.hero:has(.hero-video)::before {
  background: transparent;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.22s ease;
}

.hero-video:fullscreen,
.hero-video:-webkit-full-screen,
.gallery-hero:fullscreen .gallery-video,
.gallery-hero:-webkit-full-screen .gallery-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.hero-video::backdrop,
.gallery-hero::backdrop {
  background: #000;
}

.video-hero.is-paused-by-scroll .hero-video {
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 120px 0 82px;
}

.hero h1,
.hero h2,
.hero p {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.home-page .video-hero {
  align-items: start;
}

.home-page .video-hero .home-hero-content {
  width: auto;
  min-height: 100svh;
  margin-left: clamp(28px, 4.4vw, 72px);
  margin-right: clamp(28px, 4.4vw, 72px);
  padding: clamp(122px, 16vh, 184px) 0 clamp(34px, 5.5vh, 58px);
}

.hero:has(.hero-video) .hero-content {
  padding: clamp(132px, 18vh, 210px) 0 300px;
}

.home-page .video-hero h1 {
  max-width: 860px;
  color: var(--brand);
  text-align: left;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.64),
    1px -1px 0 rgba(0, 0, 0, 0.64),
    -1px 1px 0 rgba(0, 0, 0, 0.64),
    1px 1px 0 rgba(0, 0, 0, 0.64),
    0 4px 26px rgba(0, 0, 0, 0.7);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.36);
}

.home-page .home-hero-tagline,
.gallery-page .gallery-current-title {
  margin-top: clamp(2px, 0.75vh, 8px);
  color: var(--brand-dark);
  font-size: clamp(1.58rem, 2.8vw, 2.55rem);
  font-weight: 900;
  line-height: 1.35;
  text-shadow:
    -1.4px -1.4px 0 rgba(0, 0, 0, 0.84),
    1.4px -1.4px 0 rgba(0, 0, 0, 0.84),
    -1.4px 1.4px 0 rgba(0, 0, 0, 0.84),
    1.4px 1.4px 0 rgba(0, 0, 0, 0.84),
    0 5px 24px rgba(0, 0, 0, 0.78);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.72);
}

.gallery-page .page-shell {
  display: flex;
  flex-direction: column;
}

.gallery-hero {
  min-height: 100svh;
  align-items: start;
}

.gallery-page .gallery-hero::before {
  background: transparent;
}

.gallery-page .gallery-hero .gallery-hero-content {
  display: grid;
  width: auto;
  min-height: 100svh;
  margin-left: clamp(28px, 4.4vw, 72px);
  margin-right: clamp(28px, 4.4vw, 72px);
  padding: clamp(122px, 16vh, 184px) 0 clamp(34px, 5.5vh, 58px);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
  pointer-events: none;
}

.gallery-title-group {
  align-self: start;
  justify-self: start;
}

.gallery-page .gallery-hero h1 {
  max-width: 860px;
  color: var(--brand);
  text-align: left;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.64),
    1px -1px 0 rgba(0, 0, 0, 0.64),
    -1px 1px 0 rgba(0, 0, 0, 0.64),
    1px 1px 0 rgba(0, 0, 0, 0.64),
    0 4px 26px rgba(0, 0, 0, 0.7);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.36);
}

.gallery-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(14px, 2.4vw, 34px);
  pointer-events: none;
}

.gallery-arrow {
  display: grid;
  width: clamp(46px, 5vw, 66px);
  height: clamp(46px, 5vw, 66px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 6, 12, 0.56);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.gallery-arrow span {
  display: block;
  width: clamp(11px, 1.4vw, 16px);
  height: clamp(11px, 1.4vw, 16px);
  border: solid currentColor;
  border-width: 0 4px 4px 0;
}

.gallery-arrow--prev span {
  transform: rotate(135deg);
}

.gallery-arrow--next span {
  transform: rotate(-45deg);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: rgba(124, 255, 107, 0.72);
  background: rgba(4, 6, 12, 0.78);
  transform: scale(1.04);
}

.hero:has(.hero-video) h1 {
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.64),
    1px -1px 0 rgba(0, 0, 0, 0.64),
    -1px 1px 0 rgba(0, 0, 0, 0.64),
    1px 1px 0 rgba(0, 0, 0, 0.64),
    0 4px 26px rgba(0, 0, 0, 0.7);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.36);
}

.hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-generated-page .service-hero {
  min-height: 100svh;
}

.service-generated-page .service-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 12, 0.78), rgba(4, 6, 12, 0.42) 34%, rgba(4, 6, 12, 0.12) 62%, rgba(4, 6, 12, 0.02)),
    linear-gradient(180deg, rgba(4, 6, 12, 0.18), rgba(4, 6, 12, 0.03) 42%, rgba(4, 6, 12, 0.66));
}

.service-generated-page .service-hero.header-video-hero::before {
  background: transparent;
}

.service-hero-layout {
  align-items: stretch;
}

.service-generated-page .service-hero-content,
.service-generated-page .hero:has(.hero-video) .service-hero-content {
  padding: clamp(122px, 16vh, 184px) 0 clamp(34px, 5.5vh, 58px);
}

.service-hero-layout .service-hero-content {
  display: grid;
  width: auto;
  min-height: 100svh;
  margin-left: clamp(28px, 4.4vw, 72px);
  margin-right: clamp(28px, 4.4vw, 72px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: stretch;
}

.service-hero-copy {
  display: grid;
  max-width: 860px;
  gap: 0;
}

.service-hero-main {
  display: grid;
  align-self: start;
  justify-items: start;
  text-align: left;
}

.service-hero-main h1 {
  grid-row: 1;
  max-width: 860px;
  text-align: left;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.86),
    1px -1px 0 rgba(0, 0, 0, 0.86),
    -1px 1px 0 rgba(0, 0, 0, 0.86),
    1px 1px 0 rgba(0, 0, 0, 0.86),
    0 6px 28px rgba(0, 0, 0, 0.76);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.54);
}

.service-hero-main .hero-actions {
  grid-row: 2;
  justify-content: flex-start;
  margin-top: clamp(18px, 2.5vh, 26px);
}

.service-hero-bullets {
  display: grid;
  width: min(100%, 610px);
  align-self: end;
  justify-self: start;
  grid-template-columns: 1fr;
  gap: clamp(11px, 1.3vw, 15px);
  padding: 0;
  margin: clamp(42px, 9vh, 92px) 0 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  list-style: none;
}

.service-hero-bullets--3 {
  grid-template-columns: 1fr;
}

.service-hero-bullets--4 {
  grid-template-columns: 1fr;
}

.service-hero-bullets--5 {
  grid-template-columns: 1fr;
}

.service-hero-bullets--5 li {
  grid-column: auto;
}

.service-hero-bullets--5 li:nth-child(4) {
  grid-column: auto;
}

.service-hero-bullets--5 li:nth-child(5) {
  grid-column: auto;
}

.service-hero-bullets li {
  display: flex;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  font-weight: 820;
  line-height: 1.42;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.76),
    1px -1px 0 rgba(0, 0, 0, 0.76),
    -1px 1px 0 rgba(0, 0, 0, 0.76),
    1px 1px 0 rgba(0, 0, 0, 0.76),
    0 4px 18px rgba(0, 0, 0, 0.8);
}

.home-page .video-hero h1,
.home-page .home-hero-tagline,
.gallery-page .gallery-hero h1,
.gallery-page .gallery-current-title,
.hero:has(.hero-video) h1,
.service-hero-main h1,
.capture-hero-content h1 {
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
  -webkit-text-stroke: 0;
  paint-order: normal;
}

.service-hero-grading-bg {
  --grade-position: 88%;
  --grade-tint: 0.12;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050811;
  user-select: none;
}

.service-hero-grading-bg .grading-base,
.service-hero-grading-bg .grading-layer,
.service-hero-grading-bg .grading-tint,
.service-hero-grading-bg .grading-grid,
.service-hero-grading-bg .grading-handle,
.service-hero-grading-bg .grading-range,
.service-hero-grading-bg .grading-labels {
  z-index: auto;
}

.service-hero-grading-bg .grading-range {
  z-index: 2;
}

.colourgrading-hero .service-hero-content {
  pointer-events: none;
  user-select: text;
}

.colourgrading-hero .service-hero-main,
.colourgrading-hero .service-hero-main h1,
.colourgrading-hero .service-hero-bullets,
.colourgrading-hero .service-hero-bullets li,
.colourgrading-hero .hero-actions,
.colourgrading-hero .hero-actions .btn {
  pointer-events: auto;
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: -190px auto 0;
  background: rgba(9, 14, 25, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-item {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.trust-item p {
  margin-top: 8px;
}

.trust-item:last-child {
  border-right: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  font-size: 1.06rem;
}

.home-services-container {
  width: min(100% - 32px, 1440px);
}

.home-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.services-showcase {
  min-width: 0;
}

@media (min-width: 901px) {
  .services-showcase .visual-service-grid[data-service-deck] .visual-card {
    width: clamp(200px, 14vw, 225px);
  }

  .services-showcase .visual-service-grid[data-service-deck] .visual-card:nth-child(6) {
    width: clamp(220px, 16vw, 250px);
  }
}

.services-showcase .section-head {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.pilot-profile h2 {
  margin: 0 0 42px;
}

.pilot-profile > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 22px 54px rgba(2, 8, 20, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pilot-facts {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-facts li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.48;
}

.pilot-facts li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-dark);
  content: "";
}

.pilot-facts li:first-child {
  color: #fff;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capture-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.capture-choice-card {
  min-height: 0;
  padding: 20px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.capture-choice-card:hover,
.capture-choice-card:focus-visible {
  border-color: rgba(0, 212, 255, 0.42);
  outline: 0;
  box-shadow: var(--shadow), var(--glow-cyan);
  transform: translateY(-2px);
}

.capture-choice-card h3 {
  font-size: 1.08rem;
}

.capture-choice-hero {
  min-height: 100svh;
  align-items: stretch;
}

.capture-choice-hero .capture-hero-content,
.capture-choice-hero.hero:has(.hero-video) .capture-hero-content {
  display: grid;
  width: auto;
  max-width: 1060px;
  margin-left: clamp(28px, 4.4vw, 72px);
  margin-right: clamp(28px, 4.4vw, 72px);
  padding: clamp(124px, 17vh, 190px) 0 clamp(48px, 7vh, 76px);
  align-content: center;
  gap: clamp(26px, 4vh, 42px);
}

.capture-hero-content h1 {
  max-width: 900px;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, 0.86),
    1px -1px 0 rgba(0, 0, 0, 0.86),
    -1px 1px 0 rgba(0, 0, 0, 0.86),
    1px 1px 0 rgba(0, 0, 0, 0.86),
    0 6px 28px rgba(0, 0, 0, 0.76);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.54);
}

.capture-choice-grid--hero {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin-top: 0;
}

.capture-choice-grid--hero .capture-choice-card {
  min-height: 76px;
  justify-content: center;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 11, 20, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.capture-choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.capture-choice-actions .btn {
  min-height: 42px;
  padding-inline: 12px;
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 16, 28, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.card.featured {
  border-color: rgba(0, 212, 255, 0.36);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.card .card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: #061017;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--glow-cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.card p {
  flex: 1;
}

.visual-service-grid {
  grid-auto-flow: dense;
}

.visual-service-grid[data-service-deck] {
  --deck-drag-x: 0px;
  position: relative;
  display: block;
  min-height: clamp(980px, 82vw, 1120px);
  margin-top: 46px;
  isolation: isolate;
  perspective: 1500px;
}

.visual-service-grid[data-service-deck]::before {
  position: absolute;
  inset: 8% -3% 12%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 56% 72%, rgba(255, 79, 216, 0.16), transparent 30rem);
  content: "";
  pointer-events: none;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  justify-content: flex-end;
  padding: 0;
}

.visual-service-grid[data-service-deck] .visual-card {
  --card-z: 1;
  --deck-x: 0%;
  --deck-y: 0px;
  --deck-rotate: 0deg;
  --deck-scale: 1;
  --drag-x: 0px;
  --drag-y: 0px;
  --hover-y: 0px;
  position: absolute;
  top: var(--deck-y);
  left: var(--deck-x);
  z-index: var(--card-z);
  width: clamp(218px, 17.2vw, 240px);
  min-height: 380px;
  cursor: grab;
  touch-action: none;
  transform:
    translate3d(var(--drag-x), var(--drag-y), 0)
    translateY(var(--hover-y))
    rotate(var(--deck-rotate))
    scale(var(--deck-scale));
  transform-origin: 50% 88%;
  transition:
    transform 260ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(1) {
  --deck-x: 1%;
  --deck-y: 140px;
  --deck-rotate: -10deg;
  --deck-scale: 0.96;
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(2) {
  --deck-x: 25%;
  --deck-y: 56px;
  --deck-rotate: -4deg;
  --deck-scale: 0.99;
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(3) {
  --deck-x: 51%;
  --deck-y: 56px;
  --deck-rotate: 4deg;
  --deck-scale: 1.02;
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(4) {
  --deck-x: 76%;
  --deck-y: 140px;
  --deck-rotate: 10deg;
  --deck-scale: 0.96;
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(5) {
  --deck-x: 13%;
  --deck-y: 548px;
  --deck-rotate: -7deg;
  --deck-scale: 0.98;
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(6) {
  --deck-x: 38%;
  --deck-y: 470px;
  --deck-rotate: 0deg;
  --deck-scale: 1.04;
  width: clamp(240px, 20vw, 270px);
}

.visual-service-grid[data-service-deck] .visual-card:nth-child(7) {
  --deck-x: 64%;
  --deck-y: 548px;
  --deck-rotate: 7deg;
  --deck-scale: 0.98;
}

.visual-service-grid[data-service-deck]:not(.is-interacting) .visual-card:hover,
.visual-service-grid[data-service-deck] .visual-card:focus-within {
  --hover-y: -22px;
  filter: saturate(1.16) brightness(1.04);
}

.visual-service-grid[data-service-deck] .visual-card.is-dragging {
  --hover-y: 0px;
  cursor: grabbing;
  filter: saturate(1.22) brightness(1.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 38px rgba(0, 212, 255, 0.34);
  transition: filter 160ms ease, box-shadow 160ms ease;
}

.visual-service-grid[data-service-deck] .visual-card h3 {
  overflow-wrap: break-word;
  hyphens: auto;
  font-size: clamp(0.98rem, 1.22vw, 1.16rem);
}

.visual-service-grid[data-service-deck] .visual-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.visual-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 8, 17, 0.08), rgba(5, 8, 17, 0.88)),
    radial-gradient(circle at 70% 18%, rgba(0, 212, 255, 0.26), transparent 16rem);
}

.visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.visual-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.18);
}

.visual-card > :not(img) {
  position: relative;
  z-index: 2;
  margin-left: 24px;
  margin-right: 24px;
}

.visual-card .card-icon {
  margin-bottom: auto;
  margin-top: 24px;
}

.visual-card h3 {
  margin-top: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.visual-card p {
  color: rgba(247, 251, 255, 0.76);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.visual-card .btn {
  width: max-content;
  margin-bottom: 24px;
}

.visual-card.wide {
  grid-column: span 2;
}

.action-card {
  min-height: 430px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 255, 107, 0.22), transparent 18rem),
    radial-gradient(circle at 24% 78%, rgba(255, 79, 216, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.action-card::before {
  display: none;
}

.action-card > :not(img) {
  margin-left: 0;
  margin-right: 0;
}

.grading-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 42px;
  align-items: center;
}

.grading-widget {
  --grade-position: 88%;
  --grade-tint: 0.12;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #050811;
  box-shadow: var(--shadow), var(--glow-pink);
  user-select: none;
}

.grading-base,
.grading-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.grading-base {
  filter: grayscale(0.92) saturate(0.22) contrast(1.04) brightness(0.76);
}

.grading-layer {
  clip-path: inset(0 0 0 var(--grade-position));
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
}

.grading-tint {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--grade-position));
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0), rgba(255, 118, 35, var(--grade-tint)));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.grading-grid {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(0, 212, 255, 0.34);
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 79, 216, 0.16) 1px, transparent 1px);
  background-size: 18% 22%;
  opacity: 0.55;
  pointer-events: none;
}

.grading-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--grade-position);
  z-index: 3;
  width: 1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.grading-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 8, 17, 0.88);
  box-shadow: var(--glow-cyan);
  font-size: 0.82rem;
}

.grading-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.grading-labels {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.grading-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 212, 255, 0.16), transparent 16rem),
    rgba(10, 16, 28, 0.72);
  box-shadow: var(--shadow);
}

.grading-panel .btn {
  width: max-content;
}

.portfolio-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 79, 216, 0.13), transparent 26rem),
    radial-gradient(circle at 86% 70%, rgba(0, 212, 255, 0.11), transparent 30rem);
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-tile {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(10, 16, 28, 0.8);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.portfolio-tile.featured-tile {
  grid-column: span 2;
  min-height: 300px;
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 212, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 24% 78%, rgba(255, 79, 216, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.portfolio-tile span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-tile h3 {
  max-width: 680px;
}

.portfolio-tile p {
  margin-top: 14px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.42fr);
  gap: 42px;
  align-items: start;
}

.compact-service-section {
  padding: 74px 0 96px;
}

.compact-service-card {
  max-width: 820px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 212, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 24, 0.78);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.compact-service-card h2 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.compact-service-card .check-list {
  max-width: 680px;
  margin-top: 28px;
}

.compact-service-card .check-list li {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
}

.compact-service-card-inline {
  max-width: none;
  align-self: stretch;
}

.compact-service-card-inline h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.license-card {
  padding: 26px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.18), transparent 18rem),
    rgba(10, 16, 28, 0.86);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.license-card h3 {
  margin-bottom: 14px;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 28, 0.82);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card-body {
  padding: 20px;
}

.media-card-body p {
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow-pink);
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.plain-list li::before {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--brand-2);
  content: "";
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 2px 0 4px;
}

.price strong {
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-tier-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 20px;
}

.pricing-tier-strip div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 212, 255, 0.14), transparent 12rem),
    rgba(14, 21, 34, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.pricing-tier-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-tier-strip strong {
  display: block;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.24;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(124, 255, 107, 0.1), transparent 22rem),
    radial-gradient(circle at 8% 0%, rgba(0, 212, 255, 0.13), transparent 24rem),
    rgba(8, 12, 21, 0.9);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  vertical-align: middle;
}

.pricing-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: rgba(247, 251, 255, 0.92);
  background: rgba(11, 18, 31, 0.96);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table tbody th {
  width: 21%;
  color: #fff;
  font-weight: 900;
}

.pricing-table tbody td {
  color: rgba(247, 251, 255, 0.82);
}

.pricing-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.025);
}

.pricing-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.08);
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4),
.pricing-table td:nth-child(5),
.pricing-table th:nth-child(3),
.pricing-table th:nth-child(4),
.pricing-table th:nth-child(5) {
  text-align: right;
}

.pricing-table td:nth-child(5),
.pricing-table th:nth-child(5) {
  background: rgba(0, 212, 255, 0.055);
}

.pricing-table strong {
  color: #fff;
  font-size: 1.04rem;
}

.pricing-table .service-indent {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.pricing-table .service-indent::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "↳";
}

.pricing-card-matrix {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 212, 255, 0.08), transparent 18rem),
    rgba(14, 21, 34, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.pricing-overview-section .pricing-card-matrix {
  margin-top: 0;
}

.pricing-overview-section .container,
.pricing-tiers-section .container {
  width: min(100% - 32px, 1400px);
}

.pricing-matrix-layout {
  position: relative;
  margin-top: 22px;
  overflow-x: visible;
  overflow-y: visible;
  padding-right: 0;
}

.pricing-overview-section .pricing-card-matrix,
.pricing-tiers-section .tier-coverage-matrix {
  width: 100%;
}

.payment-options {
  margin-top: 24px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 212, 255, 0.1), transparent 18rem),
    radial-gradient(circle at 92% 18%, rgba(124, 255, 107, 0.08), transparent 15rem),
    rgba(14, 21, 34, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.payment-options h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.payment-options > p {
  max-width: 780px;
  color: rgba(218, 230, 247, 0.78);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.payment-card {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(7, 10, 18, 0.42);
}

.payment-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.payment-card strong {
  display: block;
  font-size: 1.22rem;
}

.payment-card p,
.payment-card code {
  color: rgba(218, 230, 247, 0.76);
}

.payment-card code {
  display: block;
  margin-top: 8px;
  white-space: normal;
  word-break: break-word;
}

.paypal-qr-frame {
  position: relative;
  display: grid;
  min-height: 210px;
  margin-top: 18px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(239, 244, 252, 0.94);
}

.paypal-qr-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 280px);
  max-height: 360px;
  object-fit: contain;
}

.paypal-qr-frame img[src="assets/paypal-qr.png"] {
  min-height: 180px;
}

.paypal-qr-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(7, 10, 18, 0.58);
  font-weight: 950;
}

.bank-details {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
}

.bank-details div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(124, 255, 107, 0.2);
  border-radius: 12px;
  background: rgba(124, 255, 107, 0.04);
}

.bank-details dt {
  color: rgba(218, 230, 247, 0.7);
  font-weight: 850;
}

.bank-details dd {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
  word-break: break-word;
}

.copy-button {
  display: inline-grid;
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.42);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.copy-button svg {
  width: 21px;
  height: 21px;
}

.copy-button:hover,
.copy-button:focus-visible,
.copy-button.is-copied {
  border-color: rgba(124, 255, 107, 0.78);
  outline: 0;
  box-shadow: 0 0 18px rgba(124, 255, 107, 0.2);
  transform: translateY(-1px);
}

.pricing-interaction-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
  margin: -14px 0 18px;
}

.discount-control {
  display: flex;
}

.discount-switch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255, 78, 95, 0.42);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 78, 95, 0.16), transparent 12rem),
    rgba(14, 21, 34, 0.84);
  box-shadow:
    inset 0 0 18px rgba(255, 78, 95, 0.08),
    0 0 18px rgba(255, 78, 95, 0.18);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.discount-switch:hover {
  border-color: rgba(255, 119, 131, 0.8);
  box-shadow:
    inset 0 0 20px rgba(255, 78, 95, 0.12),
    0 0 24px rgba(255, 78, 95, 0.28);
  transform: translateY(-1px);
}

.switch-track {
  position: relative;
  display: inline-block;
  width: 66px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.34);
}

.switch-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.discount-control.is-active .discount-switch {
  border-color: rgba(255, 78, 95, 0.94);
  box-shadow:
    inset 0 0 22px rgba(255, 78, 95, 0.16),
    0 0 28px rgba(255, 78, 95, 0.42);
}

.discount-control.is-active .switch-track {
  border-color: rgba(255, 78, 95, 0.84);
  background: rgba(255, 78, 95, 0.2);
}

.discount-control.is-active .switch-thumb {
  background: #ff7783;
  box-shadow: 0 0 18px rgba(255, 78, 95, 0.72);
  transform: translateX(31px);
}

.switch-copy {
  display: grid;
  gap: 2px;
}

.switch-copy strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.1;
}

.switch-copy span {
  color: rgba(247, 251, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.2;
}

.pricing-promo-row {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.referral-discount {
  --discount-red: #ff4e5f;
  --discount-glow: rgba(255, 78, 95, 0.58);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 clamp(18px, 2.5vw, 32px);
  border: 1px solid rgba(255, 78, 95, 0);
  border-radius: 16px;
  opacity: 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 78, 95, 0.16), transparent 20rem),
    radial-gradient(circle at 72% 52%, rgba(255, 78, 95, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(10, 14, 24, 0.92), rgba(7, 10, 18, 0.9));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 26px rgba(255, 78, 95, 0.44),
    0 18px 70px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  transform: translateY(-14px) scale(0.985);
  transition:
    max-height 0.38s ease,
    margin 0.28s ease,
    padding 0.28s ease,
    opacity 0.26s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.28s ease;
}

.referral-discount.is-active {
  max-height: 340px;
  margin: 0 0 24px;
  padding: clamp(18px, 2.5vw, 32px);
  border-color: rgba(255, 78, 95, 0.94);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  cursor: pointer;
}

.referral-discount.is-active:hover,
.referral-discount.is-active:focus-visible {
  border-color: #ff7783;
  outline: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 36px rgba(255, 78, 95, 0.62),
    0 22px 80px rgba(0, 0, 0, 0.48);
  transform: translateY(-2px);
}

.discount-badge {
  position: relative;
  display: grid;
  width: clamp(174px, 15vw, 216px);
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  justify-self: center;
  border: 2px solid #ff7783;
  border-radius: 999px;
  text-align: center;
  text-transform: uppercase;
  background:
    radial-gradient(circle, rgba(255, 78, 95, 0.22), rgba(255, 78, 95, 0.05) 62%, transparent 66%),
    rgba(255, 78, 95, 0.03);
  box-shadow:
    0 0 30px rgba(255, 78, 95, 0.46),
    inset 0 0 34px rgba(255, 78, 95, 0.24);
}

.discount-badge strong {
  display: block;
  color: #fff;
  font-size: clamp(2.78rem, 4.45vw, 4.45rem);
  font-weight: 950;
  line-height: 0.86;
  text-shadow:
    0 0 16px rgba(255, 78, 95, 0.7),
    0 3px 30px rgba(255, 78, 95, 0.5);
}

.discount-badge span:not(.spark) {
  display: block;
  margin-top: clamp(10px, 1.1vw, 15px);
  max-width: 82%;
  font-size: clamp(1.12rem, 1.75vw, 1.72rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px rgba(255, 78, 95, 0.72);
}

.discount-badge-step {
  width: clamp(126px, 11vw, 162px);
}

.discount-badge-step strong {
  font-size: clamp(2.05rem, 3.35vw, 3.35rem);
}

.discount-badge-step span:not(.spark) {
  margin-top: clamp(7px, 0.8vw, 11px);
  font-size: clamp(0.9rem, 1.32vw, 1.32rem);
}

.spark {
  position: absolute;
  width: 26px;
  height: 26px;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 78, 95, 0.9));
}

.spark::before,
.spark::after {
  position: absolute;
  inset: 50% auto auto 50%;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.spark::before {
  width: 2px;
  height: 100%;
}

.spark::after {
  width: 100%;
  height: 2px;
}

.spark-one {
  top: 18%;
  left: -9%;
}

.spark-two {
  right: -8%;
  bottom: 18%;
  transform: scale(0.82);
}

.discount-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.22fr auto 1fr;
  gap: clamp(8px, 1.2vw, 14px);
  align-items: center;
  width: min(100%, 760px);
  min-width: 0;
}

.discount-step {
  display: grid;
  gap: 9px;
  justify-items: center;
  text-align: center;
}

.discount-icon,
.discount-icon-stack {
  display: grid;
  place-items: center;
  width: clamp(62px, 6.2vw, 78px);
  min-height: clamp(62px, 6.2vw, 78px);
  border: 1px solid rgba(255, 119, 131, 0.48);
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 78, 95, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 22px rgba(255, 78, 95, 0.14),
    0 0 18px rgba(255, 78, 95, 0.16);
}

.discount-icon svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 9px rgba(255, 78, 95, 0.82));
}

.discount-icon-stack {
  grid-template-columns: 1fr;
  gap: 6px;
  min-height: clamp(98px, 9vw, 120px);
  padding: 8px;
}

.discount-icon.small {
  width: clamp(44px, 4.2vw, 54px);
  min-height: clamp(44px, 4.2vw, 54px);
  border-radius: 10px;
}

.discount-icon.small svg {
  width: 28px;
  height: 28px;
}

.google-logo-mark {
  display: grid;
  place-items: center;
}

.google-logo-mark svg {
  width: 34px;
  height: 34px;
  filter:
    drop-shadow(0 0 7px rgba(255, 78, 95, 0.58))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
}

.discount-step p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.78rem, 1.03vw, 0.92rem);
  font-weight: 800;
  line-height: 1.2;
}

.discount-step p span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #ff7783;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  box-shadow: 0 0 12px rgba(255, 78, 95, 0.62);
}

.discount-arrow {
  color: rgba(255, 255, 255, 0.36);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 78, 95, 0.34);
}

.discount-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 clamp(16px, 1.8vw, 26px);
  border: 2px solid #ff7783;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 78, 95, 0.1);
  box-shadow:
    0 0 22px rgba(255, 78, 95, 0.58),
    inset 0 0 24px rgba(255, 78, 95, 0.14);
  font-size: clamp(0.96rem, 1.35vw, 1.16rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.discount-cta:hover,
.discount-cta:focus-visible {
  background: rgba(255, 78, 95, 0.18);
  outline: 0;
  box-shadow:
    0 0 32px rgba(255, 78, 95, 0.76),
    inset 0 0 30px rgba(255, 78, 95, 0.18);
  transform: translateY(-1px);
}

.discount-cta svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 9px rgba(255, 78, 95, 0.78));
}

.pricing-real-matrix {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--text);
}

.pricing-real-matrix th,
.pricing-real-matrix td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
}

.pricing-real-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: rgba(247, 251, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 900;
  background: rgba(20, 28, 43, 0.98);
}

.pricing-real-matrix thead th.matrix-highlight {
  color: #061017;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.16);
}

.pricing-real-matrix a {
  color: inherit;
  text-decoration: none;
}

.pricing-real-matrix thead a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.pricing-real-matrix:not(.pricing-benefit-matrix) thead .tier-basic > a::after,
.pricing-real-matrix:not(.pricing-benefit-matrix) thead .tier-plus > a::after,
.pricing-real-matrix:not(.pricing-benefit-matrix) thead .tier-premium > a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.pricing-real-matrix:not(.pricing-benefit-matrix) thead th:has(> a:focus-visible) {
  outline: 2px solid #fff;
  outline-offset: -3px;
}

.pricing-real-matrix thead a:hover,
.price-link:hover strong {
  color: var(--brand-dark);
}

.price-link {
  display: inline-flex;
  align-items: baseline;
  min-height: 32px;
}

.price-original,
.price-discount {
  display: block;
}

.price-discount {
  display: none;
}

body.discount-prices-active .pricing-real-matrix:not(.pricing-benefit-matrix) .price-link {
  min-height: 46px;
}

body.discount-prices-active .pricing-real-matrix:not(.pricing-benefit-matrix) .price-link strong {
  display: inline-grid;
  gap: 4px;
  justify-items: end;
  align-items: center;
  line-height: 1.02;
}

body.discount-prices-active .pricing-real-matrix:not(.pricing-benefit-matrix) .price-original {
  color: rgba(247, 251, 255, 0.58);
  font-size: 0.66em;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(247, 251, 255, 0.68);
  text-shadow: none;
}

body.discount-prices-active .pricing-real-matrix:not(.pricing-benefit-matrix) .price-discount {
  display: block;
  color: #ff7783;
  text-shadow:
    0 0 10px rgba(255, 78, 95, 0.86),
    0 0 22px rgba(255, 78, 95, 0.58),
    0 0 34px rgba(255, 78, 95, 0.34);
}

.pricing-real-matrix th:first-child {
  width: 43%;
}

.pricing-real-matrix th:not(:first-child),
.pricing-real-matrix td {
  width: 19%;
}

.pricing-real-matrix tbody th {
  font-size: 1rem;
  font-weight: 900;
}

.pricing-real-matrix tbody td {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-real-matrix td.tier-basic,
.pricing-real-matrix td.tier-plus,
.pricing-real-matrix td.tier-premium {
  text-align: center;
}

.pricing-real-matrix tbody tr:last-child th,
.pricing-real-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-real-matrix tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.pricing-real-matrix strong {
  display: inline-block;
  min-width: 7.4ch;
  color: var(--brand);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.pricing-real-matrix td:last-child {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.05), rgba(124, 255, 107, 0.1));
}

.pricing-real-matrix .tier-basic,
.pricing-real-matrix .tier-plus,
.pricing-real-matrix .tier-premium {
  position: relative;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
}

.pricing-real-matrix thead .tier-basic,
.pricing-real-matrix thead .tier-plus,
.pricing-real-matrix thead .tier-premium {
  border-top-width: 1px;
  border-top-style: solid;
}

.pricing-real-matrix tbody tr:last-child .tier-basic,
.pricing-real-matrix tbody tr:last-child .tier-plus,
.pricing-real-matrix tbody tr:last-child .tier-premium {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.pricing-real-matrix .tier-basic {
  border-color: rgba(0, 212, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.14), rgba(0, 116, 214, 0.06)),
    rgba(10, 14, 24, 0.18);
  box-shadow: inset 0 0 18px rgba(0, 176, 255, 0.2);
}

.pricing-real-matrix .tier-plus {
  border-color: rgba(45, 222, 187, 0.72);
  background:
    radial-gradient(circle at 70% 18%, rgba(51, 225, 190, 0.2), transparent 14rem),
    linear-gradient(135deg, rgba(0, 192, 255, 0.12), rgba(90, 255, 143, 0.12)),
    rgba(10, 14, 24, 0.12);
  box-shadow: inset 0 0 24px rgba(32, 221, 185, 0.2);
}

.pricing-real-matrix .tier-premium {
  border-color: rgba(105, 239, 110, 0.56);
  background:
    linear-gradient(180deg, rgba(105, 239, 110, 0.1), rgba(24, 91, 52, 0.11)),
    rgba(10, 14, 24, 0.2);
  box-shadow: inset 0 0 18px rgba(84, 232, 110, 0.14);
}

.pricing-real-matrix thead .tier-basic {
  box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.24), 0 -1px 22px rgba(0, 176, 255, 0.26);
}

.pricing-real-matrix thead .tier-plus {
  box-shadow: inset 0 0 26px rgba(45, 222, 187, 0.28), 0 -1px 30px rgba(32, 221, 185, 0.28);
}

.pricing-real-matrix thead .tier-premium {
  box-shadow: inset 0 0 18px rgba(105, 239, 110, 0.18), 0 -1px 18px rgba(84, 232, 110, 0.18);
}

.pricing-real-matrix .tier-basic strong {
  color: #28ddff;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.5);
}

.pricing-real-matrix .tier-plus strong {
  background: linear-gradient(90deg, #36bfff, #73f07d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(45, 222, 187, 0.54);
}

.pricing-real-matrix .tier-premium strong {
  color: #8ef36f;
  text-shadow: 0 0 16px rgba(105, 239, 110, 0.34);
}

.pricing-real-matrix .coverage-check { color: #8ef36f; }

body.discount-prices-active .pricing-real-matrix .price-discount {
  color: #ff7783;
  text-shadow:
    0 0 10px rgba(255, 78, 95, 0.9),
    0 0 22px rgba(255, 78, 95, 0.62),
    0 0 34px rgba(255, 78, 95, 0.38);
}

.pricing-category-row th,
.pricing-category-row td {
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--brand);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.055);
}

.pricing-service-row th,
.pricing-service-row td {
  padding-top: 18px;
  padding-bottom: 18px;
  color: rgba(247, 251, 255, 0.96);
  font-size: 1rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-sub-row th span {
  display: inline-block;
  padding-left: 30px;
  color: rgba(247, 251, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 800;
}

.pricing-sub-row th span::before {
  content: "↳";
  margin-right: 10px;
  color: var(--brand-dark);
}

#preisstufen,
#preisstufe-basic,
#preisstufe-plus,
#preisstufe-premium {
  scroll-margin-top: 112px;
}

.pricing-tier-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-tier-detail {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 212, 255, 0.08), transparent 17rem),
    rgba(14, 21, 34, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.pricing-tier-detail.featured {
  border-color: rgba(0, 212, 255, 0.54);
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 255, 107, 0.14), transparent 14rem),
    rgba(16, 28, 42, 0.95);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.08), var(--glow-cyan);
}

.pricing-tier-detail > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-tier-detail h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.pricing-tier-detail h4 {
  margin-bottom: 0;
  color: rgba(247, 251, 255, 0.92);
  font-size: 0.95rem;
}

.tier-feature-list,
.tier-fit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tier-feature-list li,
.tier-fit-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.tier-feature-list li::before,
.tier-fit-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.tier-fit-list {
  margin-top: -4px;
}

.tier-fit-list li::before {
  color: var(--brand-dark);
}

.pricing-tier-detail p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.pricing-tier-detail strong {
  color: var(--brand);
}

.tier-coverage-matrix {
  overflow-x: auto;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 212, 255, 0.08), transparent 18rem),
    rgba(14, 21, 34, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.pricing-benefit-matrix {
  min-width: 760px;
}

.pricing-benefit-matrix th:not(:first-child),
.pricing-benefit-matrix td {
  text-align: center;
}

.pricing-benefit-matrix tbody th {
  font-size: 0.94rem;
  font-weight: 800;
}

.pricing-benefit-matrix tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.018);
}

.coverage-check,
.coverage-dash {
  display: inline-flex;
  min-width: 28px;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 900;
}

.coverage-check {
  color: var(--brand-dark);
}

.coverage-dash {
  color: rgba(247, 251, 255, 0.42);
}

.notice {
  padding: 20px;
  border: 1px solid rgba(255, 177, 95, 0.42);
  border-radius: var(--radius);
  color: var(--danger);
  background: rgba(255, 177, 95, 0.08);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 74px;
}

.step::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #061017;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  counter-increment: step;
  content: counter(step);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 28, 0.82);
}

.faq-item summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.45rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
  justify-content: center;
  width: min(100% - 32px, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.contact-page .page-shell {
  display: flex;
  flex-direction: column;
}

.contact-page .page-shell > .section:first-child {
  display: flex;
  min-height: calc(100svh - 76px);
  align-items: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 16, 28, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.field select option {
  color: #0b1020;
}

.form-dropdown {
  position: relative;
}

.form-dropdown-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(247, 251, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(8, 12, 21, 0.98), rgba(6, 9, 16, 0.98));
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.form-dropdown-button:hover,
.form-dropdown.open .form-dropdown-button {
  color: #fff;
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.14);
}

.form-dropdown.is-invalid .form-dropdown-button {
  border-color: rgba(255, 78, 95, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 78, 95, 0.14);
}

.form-dropdown-arrow {
  flex: 0 0 auto;
  transform: rotate(90deg);
  color: rgba(247, 251, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1;
}

.form-dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  display: none;
  width: 100%;
  min-width: 100%;
  max-height: min(52vh, 480px);
  overflow-y: auto;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 12, 21, 0.98), rgba(6, 9, 16, 0.98));
  box-shadow: var(--shadow);
  list-style: none;
  backdrop-filter: blur(18px);
}

.form-dropdown .dropdown-list {
  list-style: none;
}

.form-dropdown.open .form-dropdown-list {
  display: block;
}

.form-dropdown .dropdown-trigger {
  border-radius: 0;
  font-size: 0.92rem;
}

.form-dropdown-option {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 11px;
  border: 0;
  color: rgba(247, 251, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}

.form-dropdown-option:hover,
.form-dropdown-option:focus-visible,
.form-dropdown-option[aria-selected="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(0, 212, 255, 0.2);
  border-color: var(--brand);
}

.form-success {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(0, 212, 255, 0.34);
  border-radius: 8px;
  color: var(--brand);
  background: rgba(0, 212, 255, 0.08);
  font-weight: 750;
}

.form-success.show {
  display: block;
}

.contact-methods {
  display: grid;
  gap: 14px;
  width: 100%;
}

.contact-direct {
  display: grid;
  align-self: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(10, 16, 28, 0.82);
  box-shadow: var(--shadow);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.contact-direct strong {
  color: #fff;
}

.contact-direct h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.contact-direct p {
  margin: 0 0 6px;
}

.contact-direct a {
  color: var(--brand);
  font-weight: 800;
}

.contact-direct .contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
}



.contact-channel-text {
  display: grid;
  grid-template-columns: minmax(128px, max-content) minmax(0, 1fr);
  column-gap: 18px;
  align-items: baseline;
}

.contact-channel-label,
.contact-channel-value {
  min-width: 0;
  -webkit-user-select: text;
  user-select: text;
}

.contact-channel-value {
  overflow-wrap: anywhere;
}

.contact-channel-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--brand);
}

.contact-channel--mail .contact-channel-icon {
  color: #ea4335;
}

.contact-channel--whatsapp .contact-channel-icon {
  color: #25d366;
}

.contact-channel--youtube .contact-channel-icon {
  color: #ff0033;
}

.contact-channel--instagram .contact-channel-icon {
  color: #e4405f;
}

.contact-channel--tiktok .contact-channel-icon {
  color: #22d3ee;
}

.contact-direct .contact-channel:hover {
  color: #fff;
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 28, 0.82);
}

.contact-method strong {
  display: block;
}

.cta-band {
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 79, 216, 0.22), transparent 30rem),
    linear-gradient(135deg, #061017, #101a32);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.legal-content {
  max-width: 860px;
}

.impressum-section {
  display: grid;
  min-height: calc(100svh - 76px);
  align-items: center;
}

.impressum-content {
  max-width: 860px;
}

.impressum-content h1 {
  margin-bottom: 34px;
}

.impressum-block {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.impressum-block:last-child {
  border-bottom: 1px solid var(--line);
}

.impressum-content .impressum-block h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.impressum-content .impressum-block p {
  color: rgba(218, 230, 247, 0.78);
  font-size: 1.02rem;
}

.impressum-content a {
  color: var(--brand);
  font-weight: 800;
}

.impressum-content a:hover {
  color: var(--brand-dark);
}

.contact-mail-card h1 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.contact-mail-card p {
  max-width: 620px;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-content p {
  margin-top: 12px;
}

.legal-link-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 20px;
}

.legal-link-list a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: #050811;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 0.9fr;
  gap: 28px;
  padding: 54px 0;
}

.footer-grid h2,
.footer-grid h3,
.footer-grid p,
.footer-grid a {
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-legal-only {
  justify-content: center;
}

.footer-legal-only a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal-only a:hover {
  color: #fff;
}

@media (max-width: 1320px) {
  .nav-actions {
    display: none;
  }
}

@media (max-width: 1040px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 881px) and (max-width: 1380px) {
  .nav-dropdown {
    --dropdown-width: 170px;
  }

  .dropdown-item a,
  .dropdown-trigger {
    gap: 8px;
    padding: 9px 8px;
    font-size: 0.78rem;
  }
}

@media (max-width: 880px) {
  .nav-wrap {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .home-page .nav-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .home-page .site-header.open .nav-menu {
    background: rgba(7, 10, 18, 0.96);
  }

  .home-page .site-header.open .nav-menu a {
    color: rgba(247, 251, 255, 0.78);
  }

  .home-page .site-header.open .nav-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    max-height: calc(100svh - 96px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 10, 18, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.open .nav-menu {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-menu a,
  .nav-dropdown-button {
    min-height: 44px;
    color: rgba(247, 251, 255, 0.78);
  }

  .nav-dropdown,
  .dropdown-item {
    position: static;
  }

  .nav-dropdown-button,
  .dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }

  .dropdown-panel,
  .dropdown-list {
    position: static;
    display: block;
    min-width: 0;
    width: auto;
    padding: 4px 0 4px 14px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-dropdown > .dropdown-panel,
  .dropdown-item.has-submenu > .dropdown-list {
    display: none;
  }

  .nav-dropdown.open > .dropdown-panel,
  .dropdown-item.has-submenu.open > .dropdown-list {
    display: block;
  }


  .dropdown-panel {
    margin: 2px 0 8px;
  }

  .dropdown-item a,
  .dropdown-trigger {
    white-space: normal;
  }

  .form-dropdown .dropdown-list {
    position: absolute;
    left: 0;
    width: 100%;
    min-width: 100%;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(8, 12, 21, 0.98), rgba(6, 9, 16, 0.98));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .form-dropdown .form-dropdown-list {
    top: calc(100% + 8px);
    display: none;
    max-height: min(52vh, 480px);
    overflow-y: auto;
  }

  .form-dropdown.open > .form-dropdown-list {
    display: block;
  }

  .form-dropdown .has-submenu {
    position: relative;
  }

  .form-dropdown .has-submenu > .dropdown-list {
    top: 0;
    left: calc(100% - 1px);
    display: none;
  }

  .form-dropdown .has-submenu:hover > .dropdown-list,
  .form-dropdown .has-submenu:focus-within > .dropdown-list {
    display: block;
  }

  .hero {
    min-height: calc(92svh - 68px);
  }

  .video-hero {
    min-height: 100svh;
  }

  .hero.short {
    min-height: 430px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(11, 23, 19, 0.86), rgba(11, 23, 19, 0.34));
  }

  .video-hero::before,
  .header-video-hero::before {
    background: transparent;
  }

  .hero-content {
    padding: 86px 0 58px;
  }

  .service-generated-page .service-hero {
    min-height: 100svh;
  }

  .service-generated-page .service-hero-content,
  .service-generated-page .hero:has(.hero-video) .service-hero-content {
    padding: 104px 0 30px;
  }

  .service-hero-layout .service-hero-content {
    min-height: 100svh;
  }

  .service-hero-bullets {
    grid-template-columns: 1fr;
    gap: 9px;
    width: min(100%, 560px);
    margin-top: 28px;
    padding: 0;
  }

  .service-hero-bullets--3,
  .service-hero-bullets--4,
  .service-hero-bullets--5 {
    grid-template-columns: 1fr;
  }

  .service-hero-bullets--5 li,
  .service-hero-bullets--5 li:nth-child(4),
  .service-hero-bullets--5 li:nth-child(5) {
    grid-column: auto;
  }

  .service-hero-bullets li {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .capture-choice-hero .capture-hero-content,
  .capture-choice-hero.hero:has(.hero-video) .capture-hero-content {
    margin-left: 20px;
    margin-right: 20px;
    padding: 104px 0 30px;
    align-content: center;
  }

  .capture-choice-grid--hero {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .section-head,
  .split,
  .contact-panel,
  .footer-grid,
  .grading-showcase,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: stretch;
    justify-content: center;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .capture-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-tier-strip {
    grid-template-columns: 1fr;
  }

  .pricing-tier-details {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .referral-discount {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 0;
    text-align: center;
  }

  .referral-discount.is-active {
    max-height: 760px;
  }

  .discount-flow {
    width: 100%;
    max-width: 640px;
  }

  .discount-cta {
    width: min(100%, 360px);
  }

  .pricing-service-card {
    grid-template-columns: 1fr;
  }

  .pricing-service-card.is-subservice {
    margin-left: 16px;
  }

  .visual-card.wide {
    grid-column: span 1;
  }

  .visual-service-grid[data-service-deck] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    margin-top: 28px;
    perspective: none;
  }

  .visual-service-grid[data-service-deck]::before {
    display: none;
  }

  .visual-service-grid[data-service-deck] .visual-card {
    position: relative;
    width: auto;
    min-height: 390px;
    transform:
      translate3d(var(--drag-x), var(--drag-y), 0)
      translateY(var(--hover-y))
      rotate(var(--deck-rotate));
  }

  .visual-service-grid[data-service-deck] .visual-card:nth-child(odd) {
    --deck-rotate: -1.5deg;
  }

  .visual-service-grid[data-service-deck] .visual-card:nth-child(even) {
    --deck-rotate: 1.5deg;
  }

  .service-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-tile.featured-tile {
    grid-column: span 2;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 1520px) {
}

@media (max-width: 900px) {
  .pricing-matrix-layout {
    display: grid;
    gap: 18px;
    overflow-x: auto;
  }

  .pricing-overview-section .pricing-card-matrix,
  .pricing-tiers-section .tier-coverage-matrix {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-content,
  .trust-strip {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    width: 100%;
    padding-right: 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    height: 46px;
  }

  .brand-text strong {
    font-size: clamp(1.08rem, 5vw, 1.32rem);
    font-weight: 650;
  }

  .brand-text span {
    display: none;
  }

  .hero-actions,
  .cta-row {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px 16px;
  }

  .pricing-levels {
    grid-template-columns: 1fr;
  }

  .pricing-service-info,
  .pricing-level {
    min-height: auto;
  }

  .pricing-service-card.is-subservice {
    margin-left: 0;
  }

  .pricing-interaction-row {
    justify-content: stretch;
  }

  .discount-control,
  .discount-switch {
    width: 100%;
  }

  .referral-discount {
    border-radius: 12px;
  }

  .referral-discount.is-active {
    max-height: 1040px;
    padding: 22px;
  }

  .discount-badge {
    width: min(74vw, 260px);
  }

  .discount-badge strong {
    font-size: clamp(3.2rem, 17vw, 4.9rem);
  }

  .discount-badge span:not(.spark) {
    font-size: clamp(1.35rem, 8vw, 2.15rem);
  }

  .discount-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .discount-arrow {
    transform: rotate(90deg);
  }

  .discount-step p {
    max-width: 250px;
  }

  .discount-cta {
    min-height: 64px;
    white-space: normal;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .capture-choice-grid,
  .capture-choice-actions {
    grid-template-columns: 1fr;
  }

  .form,
  .card {
    padding: 20px;
  }

  .visual-card {
    min-height: 360px;
    padding: 0;
  }

  .visual-service-grid[data-service-deck] {
    grid-template-columns: 1fr;
  }

  .visual-card > :not(img) {
    margin-left: 20px;
    margin-right: 20px;
  }

  .visual-card .card-icon {
    margin-top: 20px;
  }

  .visual-card .btn {
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }

  .action-card {
    padding: 20px;
  }

  .grading-widget {
    min-height: 280px;
  }

  .grading-panel {
    padding: 20px;
  }

  .grading-panel .btn {
    width: 100%;
  }

  .service-mosaic {
    grid-template-columns: 1fr;
  }

  .portfolio-tile,
  .portfolio-tile.featured-tile {
    grid-column: span 1;
    min-height: 220px;
  }

  .portfolio-tile span {
    margin-bottom: 34px;
  }

  .split-media img {
    min-height: 300px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Local experiment: high-contrast media text and a liquid-glass navigation bar. */
.site-header,
.home-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(148, 207, 255, 0.045) 46%, rgba(255, 255, 255, 0.075)),
    rgba(10, 19, 34, 0.2);
  box-shadow: 0 12px 34px rgba(2, 8, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.home-page .video-hero h1,
.home-page .home-hero-tagline,
.service-generated-page .service-hero h1,
.service-generated-page .service-hero-bullets li,
.capture-choice-hero h1,
.capture-choice-hero .capture-choice-card h3,
.gallery-page .gallery-hero h1,
.gallery-page .gallery-current-title,
.visual-card h3,
.visual-card p,
.visual-card .btn {
  -webkit-text-stroke: 0.7px rgba(1, 7, 16, 0.9);
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 rgba(1, 7, 16, 0.88),
    -1px -1px 0 rgba(1, 7, 16, 0.6),
    0 4px 14px rgba(0, 0, 0, 0.72);
}

.service-generated-page .service-hero .btn {
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow: none;
}

.trust-strip,
.card:not(.visual-card),
.faq-item,
.form,
.contact-methods,
.payment-card,
.compact-service-card,
.pricing-level,
.pricing-service-info,
.referral-discount {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(126, 198, 255, 0.035) 48%, rgba(255, 255, 255, 0.06)),
    rgba(8, 17, 31, 0.28);
  box-shadow: 0 16px 42px rgba(2, 8, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
}

.language-flag {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.38);
  object-fit: fill;
}

.language-toggle:hover,
.language-switcher.open .language-toggle {
  background: rgba(255, 255, 255, 0.24);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: none;
  width: 150px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(8, 18, 34, 0.68);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.language-switcher.open .language-menu {
  display: grid;
}

.language-menu button {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.language-menu .language-flag {
  flex: 0 0 auto;
}

.language-menu button:hover {
  background: rgba(255, 255, 255, 0.17);
}

/* Keep the complete desktop header collision-free at common laptop widths. */
@media (min-width: 881px) and (max-width: 2100px) {
  .nav-wrap {
    gap: clamp(8px, 0.7vw, 14px);
    padding-right: clamp(8px, 0.6vw, 16px);
  }

  .brand {
    gap: clamp(8px, 0.6vw, 12px);
  }

  .brand-logo {
    height: clamp(54px, 3.7vw, 64px);
  }

  .brand-text strong,
  .brand-text .brand-claim {
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu a,
  .nav-dropdown-button {
    padding: 9px clamp(6px, 0.55vw, 10px);
    font-size: clamp(0.78rem, 0.68vw, 0.9rem);
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding: 10px clamp(10px, 0.8vw, 15px);
  }

  .language-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 881px) and (max-width: 1500px) {
  .brand-text .brand-claim {
    display: none;
  }

  .brand-text strong {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
  }
}

@media (min-width: 901px) {
  .home-page .trust-strip {
    width: min(100% - 32px, var(--max));
    margin-top: -150px;
  }

  .home-page .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }

  .home-page .trust-item {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 18px;
  }

  .home-page .trust-item p {
    font-size: 0.94rem;
    line-height: 1.42;
  }
}

@media (max-width: 760px) {
  .language-switcher {
    order: 3;
  }
}

/* Interactive homepage service carousel */
.visual-service-grid[data-service-deck] {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(620px, 54vw, 720px);
  margin-top: 42px;
  isolation: isolate;
  perspective: 1600px;
}

.visual-service-grid[data-service-deck]::before {
  position: absolute;
  inset: 4% -18% 0;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 212, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 50% 68%, rgba(255, 79, 216, 0.16), transparent 34rem);
  content: "";
  pointer-events: none;
}

.visual-service-grid[data-service-deck] .visual-card {
  --deck-left: 50%;
  --deck-y: 82px;
  --deck-rotate: 0deg;
  --deck-scale: 1;
  --deck-opacity: 1;
  --deck-brightness: 1;
  --deck-saturation: 1;
  --deck-blur: 0px;
  --hover-y: 0px;
  position: absolute;
  top: var(--deck-y);
  left: var(--deck-left);
  z-index: var(--card-z);
  width: clamp(250px, 23vw, 310px);
  min-height: clamp(430px, 40vw, 500px);
  cursor: pointer;
  touch-action: pan-y;
  opacity: var(--deck-opacity);
  filter: brightness(var(--deck-brightness)) saturate(var(--deck-saturation)) blur(var(--deck-blur));
  transform:
    translate3d(calc(-50% + var(--deck-drag-x)), var(--hover-y), 0)
    rotate(var(--deck-rotate))
    scale(var(--deck-scale));
  transform-origin: 50% 86%;
  transition:
    left 420ms cubic-bezier(0.2, 0.72, 0.24, 1),
    top 420ms cubic-bezier(0.2, 0.72, 0.24, 1),
    transform 420ms cubic-bezier(0.2, 0.72, 0.24, 1),
    opacity 240ms ease,
    filter 240ms ease,
    box-shadow 240ms ease;
  will-change: left, top, transform, opacity, filter;
}

.visual-service-grid[data-service-deck] .visual-card h3 {
  margin-top: auto;
}

.visual-service-grid[data-service-deck] .visual-card p {
  flex: 0 0 auto;
}

.visual-service-grid[data-service-deck] .visual-card .btn {
  margin-top: 30px;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--center {
  --card-z: 5;
  --deck-left: 50%;
  --deck-y: 58px;
  --deck-rotate: 0deg;
  --deck-scale: 1.06;
  --deck-opacity: 1;
  --deck-brightness: 1.05;
  --deck-saturation: 1.12;
  cursor: default;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), 0 0 46px rgba(0, 212, 255, 0.3);
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--near-left {
  --card-z: 4;
  --deck-left: 30%;
  --deck-y: 98px;
  --deck-rotate: -7deg;
  --deck-scale: 0.9;
  --deck-opacity: 0.88;
  --deck-brightness: 0.72;
  --deck-saturation: 0.94;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--near-right {
  --card-z: 4;
  --deck-left: 70%;
  --deck-y: 98px;
  --deck-rotate: 7deg;
  --deck-scale: 0.9;
  --deck-opacity: 0.88;
  --deck-brightness: 0.72;
  --deck-saturation: 0.94;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--far-left {
  --card-z: 3;
  --deck-left: 6%;
  --deck-y: 142px;
  --deck-rotate: -13deg;
  --deck-scale: 0.76;
  --deck-opacity: 0.58;
  --deck-brightness: 0.42;
  --deck-saturation: 0.72;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--far-right {
  --card-z: 3;
  --deck-left: 94%;
  --deck-y: 142px;
  --deck-rotate: 13deg;
  --deck-scale: 0.76;
  --deck-opacity: 0.58;
  --deck-brightness: 0.42;
  --deck-saturation: 0.72;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--hidden {
  --card-z: 0;
  --deck-left: 50%;
  --deck-y: 210px;
  --deck-scale: 0.62;
  --deck-opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--near-left:hover,
.visual-service-grid[data-service-deck] .visual-card.deck-pos--near-right:hover {
  --hover-y: -14px;
  --deck-brightness: 0.9;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--far-left:hover,
.visual-service-grid[data-service-deck] .visual-card.deck-pos--far-right:hover {
  --hover-y: -10px;
  --deck-opacity: 0.72;
  --deck-brightness: 0.58;
}

.visual-service-grid[data-service-deck].is-swiping,
.visual-service-grid[data-service-deck].is-swiping .visual-card {
  cursor: grabbing;
  user-select: none;
}

.visual-service-grid[data-service-deck].is-swiping .visual-card {
  --hover-y: 0px;
  transition: none;
}

.visual-service-grid[data-service-deck] .visual-card.deck-pos--center h3 {
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
}

.visual-service-grid[data-service-deck] .visual-card h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 900px) {
  .home-services-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .pilot-profile {
    display: grid;
    grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
    gap: 0 28px;
    align-items: start;
  }

  .pilot-profile h2 {
    grid-column: 1 / -1;
  }

  .pilot-facts {
    margin-top: 0;
  }

  .visual-service-grid[data-service-deck] {
    min-height: 620px;
    touch-action: pan-y;
    user-select: none;
  }

  .visual-service-grid[data-service-deck] .visual-card {
    width: min(72vw, 300px);
    min-height: 430px;
  }

  .visual-service-grid[data-service-deck] .visual-card.deck-pos--near-left {
    --deck-left: 23%;
  }

  .visual-service-grid[data-service-deck] .visual-card.deck-pos--near-right {
    --deck-left: 77%;
  }

  .visual-service-grid[data-service-deck] .visual-card.deck-pos--far-left {
    --deck-left: 0%;
    --deck-opacity: 0.44;
    --deck-brightness: 0.38;
    pointer-events: auto;
    visibility: visible;
  }

  .visual-service-grid[data-service-deck] .visual-card.deck-pos--far-right {
    --deck-left: 100%;
    --deck-opacity: 0.44;
    --deck-brightness: 0.38;
    pointer-events: auto;
    visibility: visible;
  }
}

@media (max-width: 620px) {
  .pilot-profile {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .pilot-profile h2 {
    margin-bottom: 28px;
  }

  .pilot-facts {
    margin-top: 22px;
  }

  .pilot-facts li {
    font-size: 0.92rem;
  }

  .visual-service-grid[data-service-deck] {
    min-height: 560px;
  }

  .visual-service-grid[data-service-deck] .visual-card {
    width: min(78vw, 280px);
    min-height: 390px;
  }
}

/* Smartphone portrait: keep the desktop layout untouched while prioritising readable controls and full video frames. */
@media (max-width: 620px) and (orientation: portrait) {
  .contact-direct {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-direct .contact-channel {
    max-width: 100%;
  }

  .contact-channel-text {
    grid-template-columns: max-content max-content;
    column-gap: 10px;
    max-width: 100%;
    font-size: 0.9rem;
  }

  .contact-channel-value {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .site-header,
  .home-page .site-header {
    min-height: 64px;
  }

  .nav-wrap {
    min-height: 64px;
    gap: 8px;
    padding-right: max(8px, env(safe-area-inset-right));
    padding-left: max(0px, env(safe-area-inset-left));
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
    overflow: hidden;
  }

  .brand-logo {
    flex: 0 0 auto;
    width: 76px;
    height: 52px;
  }

  .brand-text {
    overflow: hidden;
  }

  .brand-text strong {
    overflow: hidden;
    font-size: 1.22rem;
    text-overflow: ellipsis;
  }

  .brand-text .brand-claim {
    display: none !important;
  }

  .language-switcher,
  .mobile-contact-button,
  .nav-toggle {
    flex: 0 0 42px;
  }

  .language-toggle,
  .mobile-contact-button,
  .nav-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
  }

  .mobile-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    color: #061018;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 10px 26px rgba(0, 229, 255, 0.18);
  }

  .mobile-contact-button svg {
    width: 19px;
    height: 19px;
  }

  .nav-menu {
    top: 72px;
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    max-height: calc(100svh - 80px);
  }

  .hero:has(.hero-video) {
    overflow: hidden;
    background: #030712;
  }

  .hero-video-fill {
    position: absolute;
    inset: -8%;
    z-index: 0;
    width: 116%;
    height: 116%;
    object-fit: cover;
    filter: blur(24px) brightness(0.38) saturate(0.82);
    opacity: 0.92;
    pointer-events: none;
    transform: scale(1.04);
  }

  .hero-video:not(.hero-video-fill) {
    z-index: 1;
    object-fit: contain;
    background: rgba(3, 7, 18, 0.2);
  }

  .hero:has(.hero-video) .hero-content {
    z-index: 2;
  }

  .service-generated-page .service-hero-main {
    display: contents;
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .service-generated-page .service-hero-content {
    grid-template-rows: auto minmax(0, 1fr) auto auto;
  }

  .service-generated-page .service-hero-main h1,
  .service-generated-page .header-video-hero .service-hero-main h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.08;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    grid-row: 1;
    justify-self: center;
  }

  .service-generated-page .service-hero-main .hero-actions {
    position: static;
    grid-row: 3;
    justify-self: center;
    width: 100%;
    margin: 0 0 16px;
    transform: none;
    justify-content: center;
  }

  .service-generated-page .service-hero-bullets {
    grid-row: 4;
    margin-top: 0;
  }

  .service-generated-page .service-hero-main .btn {
    width: min(220px, 100%);
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .service-generated-page .header-video-hero,
  .service-generated-page .header-video-hero .service-hero-content {
    min-height: max(760px, 100svh);
  }

  .service-generated-page .header-video-hero .service-hero-main .hero-actions {
    width: min(220px, calc(100% - 40px));
  }

  .home-page .video-hero .home-hero-content {
    min-height: calc(100svh - 64px);
    margin-right: 20px;
    margin-left: 20px;
    padding-top: 102px;
    padding-bottom: 46px;
  }

  .home-page .video-hero h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  .home-page .home-hero-tagline {
    max-width: 18rem;
    font-size: 1.8rem;
    line-height: 1.08;
  }

  .trust-strip {
    border-radius: 8px;
  }

  .trust-item {
    min-height: 0;
    padding: 18px;
  }

  .trust-item p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .pricing-matrix-layout,
  .pricing-card-matrix,
  .tier-coverage-matrix {
    overflow: visible;
  }

  .pricing-real-matrix {
    display: table;
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .pricing-real-matrix thead {
    display: table-header-group;
  }

  .pricing-real-matrix tbody {
    display: table-row-group;
  }

  .pricing-real-matrix thead tr,
  .pricing-real-matrix tbody tr,
  .pricing-real-matrix tbody tr.pricing-service-row {
    display: table-row;
  }

  .pricing-real-matrix thead th,
  .pricing-real-matrix thead th.matrix-highlight,
  .pricing-real-matrix tbody th,
  .pricing-real-matrix tbody td,
  .pricing-real-matrix tbody tr.pricing-service-row th,
  .pricing-real-matrix tbody tr.pricing-service-row td {
    display: table-cell;
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0;
    border-radius: 0;
  }

  .pricing-real-matrix thead th {
    position: sticky;
    top: 64px;
    z-index: 3;
    padding: 9px 4px;
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
  }

  .pricing-real-matrix thead th.matrix-highlight {
    padding: 9px 7px;
    text-align: left;
  }

  .pricing-real-matrix thead th.tier-basic,
  .pricing-real-matrix thead th.tier-plus,
  .pricing-real-matrix thead th.tier-premium {
    position: sticky;
    top: 64px;
    z-index: 3;
  }

  .pricing-real-matrix th:first-child {
    width: 43%;
  }

  .pricing-real-matrix th:not(:first-child),
  .pricing-real-matrix td {
    width: 19%;
  }

  .pricing-real-matrix tbody th,
  .pricing-real-matrix tbody tr.pricing-service-row th {
    padding: 9px 7px;
    font-size: 0.72rem;
    line-height: 1.28;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .pricing-real-matrix tbody td,
  .pricing-real-matrix tbody tr.pricing-service-row td {
    min-height: 0;
    padding: 8px 2px;
    border-top: 0;
    text-align: center;
  }

  .pricing-real-matrix tbody td::before {
    display: none;
    content: none;
  }

  .pricing-real-matrix .price-link {
    width: 100%;
    min-height: 0;
    justify-content: center;
  }

  .pricing-real-matrix strong {
    min-width: 0;
    font-size: 0.84rem;
    text-align: center;
  }

  body.discount-prices-active .pricing-real-matrix:not(.pricing-benefit-matrix) .price-link {
    min-height: 0;
  }

  body.discount-prices-active .pricing-real-matrix:not(.pricing-benefit-matrix) .price-link strong {
    justify-items: center;
    gap: 2px;
  }

  .pricing-real-matrix .coverage-check,
  .pricing-real-matrix .coverage-dash {
    min-width: 0;
    font-size: 1rem;
  }

  .pricing-real-matrix thead th,
  .pricing-real-matrix tbody th,
  .pricing-real-matrix tbody tr.pricing-service-row th,
  .pricing-real-matrix tbody td,
  .pricing-real-matrix tbody tr.pricing-service-row td,
  .pricing-real-matrix strong,
  .pricing-real-matrix .coverage-check,
  .pricing-real-matrix .coverage-dash {
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .pricing-real-matrix tbody th,
  .pricing-real-matrix tbody tr.pricing-service-row th {
    font-weight: 850;
  }

  .pricing-real-matrix .pricing-sub-row th span {
    padding-left: 18px;
    font-size: 0.82rem;
    line-height: 1.24;
    font-weight: 850;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .pricing-real-matrix .pricing-sub-row th span::before {
    margin-right: 6px;
  }
}
