/* ============================================================
   Visitfy3 – style.css
   Design: Monochrome / Black-White / Liquid Glass / Premium
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --surface:      #0e0e0e;
  --surface-2:    #131313;
  --surface-3:    #1a1a1a;
  --text:         #ffffff;
  --text-dim:     rgba(255,255,255,0.62);
  --text-muted:   rgba(255,255,255,0.45);
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.18);
  --shadow:       rgba(0,0,0,0.55);
  --focus:        #ffffff;

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Glass (Apple: flach, kaum Material) */
  --glass-bg:      rgba(255,255,255,0.025);
  --glass-bg-s:    rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.06);
  --glass-border-h:rgba(255,255,255,0.12);
  --glass-blur:    12px;
  --glass-blur-s:  18px;
  --glass-shadow:  none;
  --glass-shadow-h:none;

  --radius:    20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --container: 1200px;
  --gap:       clamp(1rem, 3vw, 2rem);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 56px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

/* Snap-Targets auf alle Sections.
   `proximity` rastet nur ein, wenn man nah genug an einem Anker ist —
   im GSAP-gepinnten Bereich (Karten in .scroll-stack-section) bleibt
   damit der Scroll frei, statt zu skippen oder rauszuziehen.
   .scroll-stack-section bekommt den Anker an ihrer Oberkante, damit
   man sauber dort landet, bevor GSAP übernimmt. */
.hero,
.section,
.scroll-stack-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#main-content {
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ── Focus ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ── Section spacing ────────────────────────────────────── */
.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

/* ── Typography (Apple-style: präzise, ruhig) ───────────── */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-align: center;
}

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.62);
  max-width: 56ch;
  margin-bottom: 3.5rem;
  text-align: center;
  margin-inline: auto;
  line-height: 1.55;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 30px;
  border-radius: 980px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.3s var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s, opacity 0.25s;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
}
.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.18);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.32);
  opacity: 0.95;
}

/* ── Glass utility (Apple: flach, subtil) ───────────────── */
.glass {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

/* Fallback for unsupported backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  .glass { background: rgba(255, 255, 255, 0.04); }
}

.glass:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--line-strong);
  margin-block: 1.5rem;
}

/* ============================================================
   INTRO / PRELOADER
   ============================================================ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

#intro.hide {
  opacity: 0;
  visibility: hidden;
}

#intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#intro-text {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

#intro-text.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

#intro-text .intro-logo-mark {
  width: clamp(180px, 26vw, 300px);
  margin-inline: auto;
  filter: brightness(0) invert(1) opacity(0.95) drop-shadow(0 0 30px rgba(171, 196, 236, 0.24));
}

#intro-text p {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

#intro-text.show p {
  opacity: 1;
  transform: translateY(0);
}

#intro-text .scroll-hint {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease 0.9s;
  animation: pulse-hint 2s ease infinite 1.5s;
}

#intro-text.show .scroll-hint {
  opacity: 1;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}

#skip-btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
#skip-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--text);
}

/* ── Reduced motion: skip intro ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #intro { display: none !important; }
  #main-content { opacity: 1 !important; }
}

/* ============================================================
   NAVIGATION  – Apple-style full-width sticky bar
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.45em 0.95em;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-phone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 980px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.nav-phone svg { opacity: 0.85; }
.nav-phone:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  flex-shrink: 0;
  padding: 8px 18px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 980px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.nav-mobile-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  color: var(--text) !important;
  font-weight: 500 !important;
}
.nav-mobile-phone svg { opacity: 0.8; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

/* Mobile nav drawer – aligns under the full-width bar */
.nav-mobile {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.25rem;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
  pointer-events: none;
}

.nav-mobile.open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  padding: 0.85em 0.25em;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--text); }

@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO  – Apple-style full-width, left-anchored content
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-scroll-y: 0px;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(0, var(--hero-scroll-y), 0);
  will-change: transform;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translate3d(
    calc(var(--hero-parallax-x) * -0.08),
    calc(var(--hero-parallax-y) * -0.08),
    0
  );
  transition: transform 0.7s var(--ease-out);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: clamp(1.25rem, 6vw, 5rem);
}

.hero-text {
  max-width: min(62%, 880px);
  text-align: left;
}

.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 11vw, 10rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.hero-rotating-prefix,
.hero-rotating-word {
  display: inline-block;
}

.hero-rotating-prefix {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.hero-rotating-word {
  color: #ffffff;
  transition: opacity 0.42s var(--ease-in-out), transform 0.42s var(--ease-in-out), filter 0.42s var(--ease-in-out);
  will-change: opacity, transform, filter;
}

.hero-rotating-word.is-exiting {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  filter: blur(8px);
}

.hero-rotating-word.is-entering {
  opacity: 0;
  transform: translateY(-16px) scale(1.03);
  filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotating-word {
    transition: none;
    transform: none;
    filter: none;
  }

  #hero-canvas,
  .hero-canvas-wrap {
    animation: none;
    transform: none;
    transition: none;
  }
}

.hero-subline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ── Hero Trust Row – monochrom, kompakt ────────────────── */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.hero-trust-pill svg {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ── Hero Tour Teasers – floating thumbnails (desktop only) ── */
.hero-tours {
  display: none;
}

@media (min-width: 1024px) {
  .hero-tours {
    position: absolute;
    top: 0;
    bottom: 0;
    right: clamp(1.5rem, 4vw, 4rem);
    width: clamp(20rem, 32vw, 30rem);
    z-index: 1;
    display: block;
    pointer-events: none;
  }
}

.hero-tour-card {
  --r: 0deg;
  position: absolute;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    radial-gradient(circle at 30% 20%, rgba(120, 150, 200, 0.18), transparent 60%),
    #131313;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  rotate: var(--r);
  translate: 0 0;
  transition: transform 0.4s var(--ease-out), opacity 0.25s ease, box-shadow 0.4s ease;
  pointer-events: auto;
  will-change: translate, rotate, transform;
}

.hero-tour-card:hover {
  transform: scale(1.025);
  box-shadow:
    0 32px 76px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-tour-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.hero-tour-card img.is-broken {
  opacity: 0;
}

.hero-tour-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.hero-tour-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 980px;
}

/* Cluster positions – subtle layered look */
.hero-tour-1 { --r: 2deg;    width: 58%; top: 8%;  right: 0;
  animation: hero-tour-drift-1 11s ease-in-out -2.4s infinite alternate; }
.hero-tour-2 { --r: -1.5deg; width: 46%; top: 40%; right: -6%;
  animation: hero-tour-drift-2 13.5s ease-in-out -5.1s infinite alternate; }
.hero-tour-3 { --r: 1.5deg;  width: 62%; bottom: 2%; right: 4%;
  animation: hero-tour-drift-3 16s ease-in-out -7.6s infinite alternate; }

/* Organic drift – translate + slight rotate variation per card.
   Apple-feel: jede Animation eigene Frequenz, leicht versetzt gestartet,
   `alternate` läuft sanft zurück statt zu springen. */
@keyframes hero-tour-drift-1 {
  from { translate:  0 0;       rotate: 2deg;   }
  to   { translate:  6px -10px; rotate: 3.4deg; }
}
@keyframes hero-tour-drift-2 {
  from { translate:  0 0;       rotate: -1.5deg; }
  to   { translate: -7px -7px;  rotate: -2.6deg; }
}
@keyframes hero-tour-drift-3 {
  from { translate:  0 0;       rotate: 1.5deg; }
  to   { translate:  5px -8px;  rotate: 2.6deg; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tour-card {
    --r: 0deg;
    animation: none;
    translate: 0 0;
    rotate: 0deg;
  }
  .hero-tour-card:hover { transform: none; }
}

/* Responsive ─ Tablet: content fills more, still left ──── */
@media (max-width: 1024px) {
  .hero-text { max-width: 100%; }
  .hero { padding: 7rem 0 4rem; }
}

@media (max-width: 600px) {
  .hero {
    padding: 6rem 0 3.5rem;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }
  .hero-subline {
    font-size: 1.02rem;
  }
}

/* Form Reassurance – unterhalb Submit-Button */
.form-reassurance {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  letter-spacing: 0.01em;
}

/* Mobile: Trust-Row kompakter */
@media (max-width: 640px) {
  .hero-trust-row { gap: 0.4rem 1rem; }
  .hero-trust-pill { font-size: 0.7rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes hero-sheen {
  0% { transform: translate3d(-2%, 0, 0); opacity: 0.18; }
  50% { opacity: 0.36; }
  100% { transform: translate3d(2%, 0, 0); opacity: 0.18; }
}

/* ============================================================
   DEVICE MOCKUP SECTION
   ============================================================ */
.mockup-section {
  background: var(--surface);
  overflow: hidden;
}

.mockup-devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: 3.5rem;
  position: relative;
}

/* Gemeinsamer Look: Screenshots schweben mit sattem Drop-Shadow.
   Die Bilder bringen ihre eigene Browser-/Device-Chrome mit, deshalb
   verzichten wir hier auf zusätzliche Fake-Rahmen und nutzen nur
   große Radien + Shadow für den „floating product"-Look. */
.mockup-laptop-screen,
.mockup-tablet-screen,
.mockup-phone-screen {
  position: relative;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 16px 32px -8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mockup-laptop-screen img,
.mockup-tablet-screen img,
.mockup-phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Laptop – Bild enthält bereits Safari-Chrome */
.mockup-laptop {
  flex-shrink: 0;
  width: clamp(320px, 50vw, 680px);
}
.mockup-laptop-screen {
  border-radius: 14px;
  aspect-ratio: 16 / 10;
}

/* Tablet */
.mockup-tablet {
  flex-shrink: 0;
  width: clamp(170px, 22vw, 270px);
}
.mockup-tablet-screen {
  border-radius: 22px;
  aspect-ratio: 3 / 4;
}

/* Phone */
.mockup-phone {
  flex-shrink: 0;
  width: clamp(105px, 14vw, 165px);
}
.mockup-phone-screen {
  border-radius: 26px;
  aspect-ratio: 9 / 19;
}

/* ── Fly-in animations ─────────────────────────────────── */
.mockup-device {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.flyin-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-flyin-group].flyin-pending .flyin-item {
  will-change: transform, opacity;
}

[data-flyin-group].flyin-pending .flyin-item--left {
  opacity: 0;
  transform: translate3d(calc(-100vw - 100%), 0, 0);
}

[data-flyin-group].flyin-pending .flyin-item--bottom {
  opacity: 0;
  transform: translate3d(0, calc(100vh + 100%), 0);
}

[data-flyin-group].flyin-pending .flyin-item--right {
  opacity: 0;
  transform: translate3d(calc(100vw + 100%), 0, 0);
}

[data-flyin-group].flyin-animate .flyin-item--left {
  animation: mockup-enter-left 2s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

[data-flyin-group].flyin-animate .flyin-item--bottom {
  animation: mockup-enter-bottom 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

[data-flyin-group].flyin-animate .flyin-item--right {
  animation: mockup-enter-right 2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

[data-flyin-group].flyin-complete .flyin-item {
  animation: none;
  opacity: 1;
  transform: none;
  will-change: auto;
}

@keyframes mockup-enter-left {
  from {
    opacity: 0;
    transform: translate3d(calc(-100vw - 100%), 0, 0);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mockup-enter-bottom {
  from {
    opacity: 0;
    transform: translate3d(0, calc(100vh + 100%), 0);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mockup-enter-right {
  from {
    opacity: 0;
    transform: translate3d(calc(100vw + 100%), 0, 0);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Placeholder (until real images are added) */
.mockup-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.5rem;
}

.mockup-placeholder svg {
  opacity: 0.35;
}

@media (max-width: 600px) {
  .mockup-devices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: end;
  }
  /* Desktop spans full width on top */
  .mockup-laptop {
    grid-column: 1 / -1;
    width: 85vw;
    margin: 0 auto;
  }
  /* Tablet + Phone side by side below */
  .mockup-tablet { width: 88%; justify-self: end; }
  .mockup-phone  { width: 48%; justify-self: start; }
  .mockup-placeholder span { display: none; }

  [data-flyin-group].flyin-pending .flyin-item--bottom {
    transform: translate3d(calc(-100vw - 100%), 0, 0);
  }

  [data-flyin-group].flyin-animate .flyin-item--bottom {
    animation-name: mockup-enter-left;
  }
}

/* ============================================================
   COMPARE / VORTEILE SECTION
   ============================================================ */
.compare-section {
  background: var(--surface);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 3rem;
  max-width: 820px;
  margin-inline: auto;
}

.compare-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease-out), border-color 0.25s, opacity 0.25s;
}

.compare-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
}

.compare-card--with,
.compare-card--without,
.compare-card--with:hover,
.compare-card--without:hover {
  border-color: rgba(255, 255, 255, 0.06);
}
.compare-card--with:hover,
.compare-card--without:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.compare-card-header {
  margin-bottom: 1.75rem;
}

/* Badge / Pill */
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4em 1em;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.compare-badge--negative {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
}

.compare-badge--negative svg {
  color: rgba(255, 255, 255, 0.35);
}

.compare-badge--positive {
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.22);
  color: rgba(140, 230, 170, 0.95);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
}

.compare-badge--positive svg {
  color: rgba(52, 199, 89, 0.9);
}

/* List */
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.compare-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.compare-list li:first-child {
  padding-top: 0;
}

/* Check icons */
.compare-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.compare-check--muted {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.3);
}

.compare-check--muted svg {
  opacity: 0.4;
}

.compare-check--green {
  background: rgba(52, 199, 89, 0.1);
  color: rgba(52, 199, 89, 0.85);
}

/* Positive card items slightly brighter */
.compare-list--positive li {
  color: rgba(255, 255, 255, 0.82);
}

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

/* ============================================================
   MINI CASE STUDIES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

.case-card {
  padding: 2.25rem;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-out), border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
}

.case-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 980px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.case-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.case-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.case-card-results {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.case-stat-value {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.case-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.005em;
}

/* ============================================================
   KPI / STATS SECTION
   ============================================================ */
.kpi-section { background: var(--surface); margin-top: 10px}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

.kpi-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.35s var(--ease-out), border-color 0.25s;
}

.kpi-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
}

.kpi-number {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.005em;
}

/* ============================================================
   VALUE PANELS – „Warum 360°"  (Apple-style claim panels)
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  margin-top: 3.5rem;
}

.value-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 320px;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.value-panel:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

/* Nummer mit kontinuierlichem Chrome-Shimmer
   (Gradient-Sweep, sehr langsam, subtil — kein Disco-Flicker). */
.value-panel-num {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.32) 42%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.32) 58%,
    rgba(255, 255, 255, 0.32) 100%
  );
  background-size: 220% 100%;
  background-position: 140% 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: value-num-shimmer 5s linear infinite;
}

@keyframes value-num-shimmer {
  from { background-position: 140% 0; }
  to   { background-position: -140% 0; }
}

/* Sequentieller Pop-Reveal pro Panel.
   .fade-up wird vom bestehenden IntersectionObserver getriggert;
   wir überschreiben nur Transform/Easing für den Pop und nutzen
   --reveal-delay (inline pro Panel) für die Staffelung. */
.value-panel.fade-up {
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  transition:
    opacity 0.65s var(--ease-out) var(--reveal-delay, 0s),
    transform 0.85s cubic-bezier(0.34, 1.32, 0.64, 1) var(--reveal-delay, 0s);
}

.value-panel.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Headline-Anker an die Boden-Linie, damit die Claim
   visuell „landet" — Apple-typisches Tile-Pattern. */
.value-panel-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: auto;
  text-wrap: balance;
}

.value-panel-text {
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  max-width: 42ch;
}

@media (max-width: 768px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-panel {
    min-height: auto;
    padding: 2rem 1.75rem;
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-panel-num {
    animation: none;
    background-image: none;
    color: rgba(255, 255, 255, 0.4);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.4);
  }
  .value-panel.fade-up,
  .value-panel.fade-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   SCROLL-STACK (Example Tours) — GSAP pin per card
   ============================================================ */
.scroll-stack-section {
  position: relative;
  z-index: 2;
  background: var(--surface);
}

.scroll-stack-intro {
  text-align: center;
  margin-bottom: 4rem;
}

/* Outer wrapper: extra bottom-padding on desktop compensates for
   pinSpacing:false (pinned cards collapse out of flow). */
.stack-wrapper {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 769px) {
}

/* Inner cards column */
.stack-cards {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* Each card-wrapper gets pinned by GSAP; perspective for the 3D tilt */
.stack-item {
  width: 100%;
  margin-bottom: 50px;
  perspective: 500px;
}
.stack-item:last-child {
  margin-bottom: 0;
}

.stack-card {
  width: 100%;
  border-radius: var(--radius-lg);
  /* Solid background — Karten stacken via GSAP übereinander, transparentes
     Material würde untere Texte durchscheinen lassen. */
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform-origin: top center;
  will-change: transform;
}

.stack-card-header {
  padding: 1.75rem 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stack-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stack-card-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 980px;
}

.stack-card-desc {
  padding: 0 2rem 1.25rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

/* iFrame container 16:9 */
.iframe-wrap {
  position: relative;
  padding-top: 56.25%;
  background: var(--surface-3);
  border-top: 1px solid var(--line);
}

.iframe-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  cursor: pointer;
  transition: background 0.3s;
}

.iframe-placeholder::after {
  content: '▶ Rundgang laden';
  padding: 0.7em 1.6em;
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color 0.2s, border-color 0.2s;
}

.iframe-placeholder:hover::after {
  color: var(--text);
  border-color: rgba(255,255,255,0.4);
}

.stack-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* — Fullscreen button on tour cards — */
.iframe-wrap { position: relative; }

.tour-fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  pointer-events: auto;
}

.iframe-wrap:hover .tour-fullscreen-btn,
.iframe-wrap:focus-within .tour-fullscreen-btn {
  opacity: 1;
}

.tour-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
}

/* — Tour Fullscreen Modal — */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.tour-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tour-modal-content {
  position: relative;
  width: calc(100vw - 32px);
  height: calc(100vh - 32px);
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tour-modal.is-open .tour-modal-content {
  transform: translateY(0) scale(1);
}

.tour-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.tour-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-modal-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

@media (max-width: 540px) {
  .tour-modal-content {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .tour-modal-close {
    top: 12px;
    right: 12px;
  }
  .tour-fullscreen-btn {
    opacity: 1;
    bottom: 8px;
    right: 8px;
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}

/* Reduced motion: disable pin effect, plain vertical list */
@media (prefers-reduced-motion: reduce) {
  .stack-item {
    perspective: none !important;
    margin-bottom: var(--gap) !important;
  }
  .stack-card {
    transform: none !important;
  }
}

/* ============================================================
   LOGO MARQUEE
   ============================================================ */
.marquee-section {
  padding-block: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.25rem;
}

.marquee-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  min-width: 130px;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s;
}
.marquee-logo:hover { color: var(--text); }

.marquee-logo img {
  display: block;
  max-height: 100px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.marquee-logo--empty {
  min-width: auto;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Reduced motion: static grid */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }
}

@media (max-width: 900px) {
  .marquee-logo {
    height: 82px;
  }

  .marquee-logo img {
    max-height: 64px;
  }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

.process-card {
  padding: 2.25rem;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-out), border-color 0.25s;
}

.process-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.process-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  opacity: 0.85;
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.25rem;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-out), border-color 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  opacity: 0.9;
}

.testimonial-text {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 1.5rem;
  quotes: "\201E" "\201C";
}

.testimonial-text::before { content: open-quote; }
.testimonial-text::after  { content: close-quote; }

.testimonial-author {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.testimonial-company {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  letter-spacing: -0.005em;
}

/* ============================================================
   ABOUT / DIFFERENCE SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  margin-top: 3rem;
}

.about-features h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.about-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}

.about-features li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}

.about-panel {
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 3rem;
}

.about-difference-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}

.about-team-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.about-team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.about-team-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.about-team-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.jason-gradient-link {
  background: linear-gradient(135deg, rgb(255, 107, 107), rgb(168, 85, 247), rgb(78, 205, 196));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.jason-gradient-link:hover {
  opacity: 0.9;
}

/* ── About page enhancements ─────────────────────────────── */
.about-page-hero {
  min-height: auto;
  padding-block: 9rem 5rem;
}

.about-hero-panel {
  max-width: 980px;
}

.about-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 72ch;
  margin: 0 auto;
}

.about-hero-copy p {
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  color: var(--text-dim);
  line-height: 1.8;
  margin: 0;
}

/* Panel badge (small label with icon before difference title) */
.about-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3em 0.85em;
  border: 1px solid var(--line);
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* Icon circle inside feature list items */
.about-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  color: #5ed945;
  transition: background 0.2s, border-color 0.2s;
}

/* Hide the CSS dot for icon-enhanced items */
.about-features li.about-icon-item::before {
  display: none;
}

/* Subtle hover highlight on icon */
.about-features li:hover .about-item-icon {
  background: rgba(255,255,255,0.12);
  border-color: var(--line-strong);
}

/* Stagger fade-in for list items when parent panel is revealed */
@keyframes about-item-reveal {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fade-up.visible .about-features li {
  animation: about-item-reveal 0.4s var(--ease-out) both;
}
.fade-up.visible .about-features li:nth-child(1) { animation-delay: 0.06s; }
.fade-up.visible .about-features li:nth-child(2) { animation-delay: 0.13s; }
.fade-up.visible .about-features li:nth-child(3) { animation-delay: 0.20s; }
.fade-up.visible .about-features li:nth-child(4) { animation-delay: 0.27s; }
.fade-up.visible .about-features li:nth-child(5) { animation-delay: 0.34s; }
.fade-up.visible .about-features li:nth-child(6) { animation-delay: 0.41s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up.visible .about-features li { animation: none; }
}

/* ── Perfection icon boxes ─────────────────────────────── */
.perfection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 3rem;
}

.perfection-box {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.perfection-box:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.perfection-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.perfection-box:hover .perfection-icon {
  background: rgba(255,255,255,0.10);
  border-color: var(--line-strong);
}

.perfection-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .perfection-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .perfection-grid { grid-template-columns: 1fr; }
}

/* ── Team photos ──────────────────────────────────────── */
.about-team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 2px solid var(--glass-border);
  transition: border-color 0.3s;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-card:hover .about-team-photo {
  border-color: var(--line-strong);
}

/* Team avatar circle (SVG fallback when no photo uploaded) */
.about-team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  transition: background 0.25s, border-color 0.25s;
}

.about-team-card:hover .about-team-avatar {
  background: rgba(255,255,255,0.10);
  border-color: var(--line-strong);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-page-hero { padding-block: 8rem 4rem; }
}

@media (max-width: 900px) {
  #ueber {
    display: none;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: radial-gradient(ellipse 100% 60% at 50% 120%, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.footer-brand .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .nav-logo img { height: 42px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.footer-links-group h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-links-group a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-block: 0.3rem;
  transition: color 0.2s;
  position: relative;
}

.footer-links-group a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.25s var(--ease-out);
}
.footer-links-group a:hover { color: var(--text); }
.footer-links-group a:hover::after { width: 100%; }

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--text); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  max-width: 800px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(255, 255, 255, 0.14); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--text); }

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: transform 0.3s var(--ease-out), background 0.2s, border-color 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.faq-answer-inner ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.contact-info a:hover { color: var(--text); border-color: var(--line-strong); }

.contact-form-box {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9em 1em;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

input[type="checkbox"] {
  width: auto;
  -webkit-appearance: auto;
  appearance: auto;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

select option { background: #111; color: #fff; }

textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  margin-top: 2px;
  padding: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.28);
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.form-check input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.16s ease;
}

.form-check input[type="checkbox"]:checked {
  background: #f3efe6;
  border-color: #f3efe6;
}

.form-check input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.form-check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243,239,230,0.16);
}

.form-check label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  cursor: pointer;
}

.form-honeypot { display: none; }

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}
.form-status.success { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2); display: block; }
.form-status.error   { background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.2); color: rgba(255,160,160,0.9); display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PARTNER PAGE
   ============================================================ */
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}

.partner-page-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 48%),
    var(--surface);
}

.partner-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.partner-hero-inner p {
  max-width: 56ch;
  margin-inline: auto;
}

.partner-hero-inner .btn {
  margin-top: 1.5rem;
}

.partner-proof-section {
  background: var(--bg);
}

.partner-proof-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.benefit-card {
  padding: 2rem;
  border-radius: var(--radius);
  min-height: 100%;
  transition: transform 0.35s var(--ease-out), border-color 0.25s;
}
.benefit-card:hover { transform: translateY(-3px); border-color: var(--glass-border-h); }

.partner-card-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.benefit-card p { font-size: 0.94rem; color: var(--text-dim); line-height: 1.75; }

.partner-fit-panel {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.partner-fit-copy {
  display: grid;
  gap: 1rem;
}

.partner-fit-copy p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.partner-fit-note {
  font-weight: 700;
  color: var(--text);
}

.partner-form-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .partner-fit-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  [data-flyin-group] {
    overflow-x: clip;
  }
}

/* ============================================================
   IMPRESSUM / DATENSCHUTZ
   ============================================================ */
.legal-content {
  max-width: 760px;
  margin-top: 3rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p, .legal-content li {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.legal-content a:hover { color: var(--text); border-color: var(--line-strong); }

.legal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-block: 8rem 4rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SCROLL REVEAL (fade-up)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Slide-in from left */
.slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--slide-delay, 0s);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--slide-delay, 0s);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .slide-left, .slide-right { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NOISE TEXTURE (optional premium overlay)
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ── Horizontal rule ──────────────────────────────────────── */
hr {
  border: none;
  border-top: 1px solid var(--line);
  margin-block: 3rem;
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.8rem; }
  .stack-card-header { flex-direction: column; align-items: flex-start; }
  .contact-form-box { padding: 1.5rem; }
  .kpi-section { margin-top: 0px;}
}

/* ── Cookie Consent Banner ──────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 320px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

#cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner-text {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 14px;
}

.cookie-banner-text a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover { color: #111; }

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-btn-accept {
  padding: 8px 16px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
  font-family: inherit;
}

.cookie-btn-accept:hover {
  background: #222;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: none;
  border: none;
  padding: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
  font-family: inherit;
}

.cookie-btn-decline:hover { color: #333; }

@media (max-width: 420px) {
  #cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 16px;
    width: auto;
  }
}
