/* ============================================
   DESIGN TOKENS — Aqua Light
   White canvas · Turquoise accents
   ============================================ */
:root {
  /* Core palette — light surfaces (was dark; var names kept for compatibility) */
  --c-void: #ffffff;
  --c-obsidian: #fafbfc;
  --c-charcoal: #f1f5f9;
  --c-graphite: #e2eaef;
  --c-slate: #cbd5dc;

  /* Accents — turquoise family (var names kept for compatibility) */
  --c-amber: #14b8a6;       /* primary turquoise */
  --c-amber-deep: #0d9488;  /* deep teal */
  --c-gold: #5eead4;        /* mint highlight */
  --c-copper: #0f8d80;      /* dark teal */
  --c-glow: #99f6e4;        /* soft mint glow */
  --c-electric: #06b6d4;    /* cyan */
  --c-electric-dim: #0891b2;

  /* Neutrals — dark text on light bg */
  --c-bone: #0f172a;        /* primary text (slate-900) */
  --c-pearl: #475569;       /* secondary text (slate-600) */
  --c-mute: #64748b;        /* muted (slate-500) */
  --c-faint: #94a3b8;       /* faint (slate-400) */

  /* Surfaces — subtle dark tints on white */
  --glass: rgba(15, 23, 42, 0.025);
  --glass-strong: rgba(15, 23, 42, 0.045);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-border-bright: rgba(20, 184, 166, 0.35);

  /* Type */
  --f-display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spatial */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--c-void);
}

body {
  font-family: var(--f-body);
  background: var(--c-obsidian);
  color: var(--c-bone);
  line-height: 1.6;
  font-weight: 400;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient backdrop layers */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(20, 184, 166, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(94, 234, 212, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06   0 0 0 0 0.09   0 0 0 0 0.16  0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* Selection */
::selection { background: var(--c-amber); color: var(--c-void); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--c-void); }
::-webkit-scrollbar-thumb { background: var(--c-graphite); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-slate); }

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  padding-block: clamp(5rem, 12vw, 10rem);
  z-index: 2;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-amber);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-amber);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--c-bone);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

h2 em {
  font-style: italic;
  color: var(--c-gold);
}

h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--c-pearl);
  max-width: 620px;
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--c-bone);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-amber) 0%, var(--c-gold) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.logo-mark svg { width: 22px; height: 22px; filter: drop-shadow(0 0 4px rgba(0,0,0,0.3)); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
}
.logo-text .sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--c-pearl);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.25s var(--ease-out);
  position: relative;
}

.nav-links a:hover { color: var(--c-amber); }

.nav-cta {
  background: linear-gradient(135deg, var(--c-amber), var(--c-amber-deep));
  color: var(--c-void) !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.25);
  transition: all 0.3s var(--ease-out) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
  color: var(--c-void) !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--c-bone);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 0.5rem;
  }
  .nav-links.open a { width: 100%; padding: 0.8rem 1rem; }
  .nav-burger { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 0%;
}

/* Video hero background */
/* Fixed scroll-driven video background — stays fixed, visible behind whole page */
.page-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Cinematic fallback gradient if video fails */
  background:
    radial-gradient(ellipse 70% 60% at 75% 30%, rgba(20, 184, 166, 0.30), transparent 60%),
    radial-gradient(ellipse 60% 50% at 25% 70%, rgba(94, 234, 212, 0.18), transparent 65%),
    linear-gradient(135deg, #0a1525 0%, #0f172a 35%, #0f766e 100%);
}

/* Native HTML5 video — GPU-decoded, no JS overhead */
.page-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Legacy classes — no longer used */
.hero-video-wrap, .hero-frames-canvas, .hero-frames-poster { display: none; }

.hero-video-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    /* Even dark scrim — text-readable everywhere */
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.20) 50%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    /* Cinematic vignette */
    radial-gradient(ellipse 100% 90% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.40) 100%),
    /* Turquoise atmosphere */
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(20, 184, 166, 0.15), transparent 65%);
}
.hero-video {
  /* legacy class kept for backward compat — not used anymore */
  display: none;
}

/* Canvas-based frame sequence player */
.hero-frames-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.hero-frames-canvas.ready {
  opacity: 1;
}

/* Poster image fills the canvas area until JS is ready / first frame loaded */
.hero-frames-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* slight blur during initial load for premium feel */
  transition: opacity 0.6s var(--ease-out);
}
.hero-frames-poster.hidden {
  opacity: 0;
  pointer-events: none;
}



/* ===== Text legibility — pumped up ===== */
.hero h1 {
  color: #ffffff;
  text-shadow:
    0 1px 2px  rgba(0, 0, 0, 0.95),
    0 2px 6px  rgba(0, 0, 0, 0.80),
    0 4px 18px rgba(0, 0, 0, 0.60),
    0 8px 40px rgba(0, 0, 0, 0.35);
}
.hero h1 em {
  color: #5eead4;
  font-style: italic;
  text-shadow:
    0 2px 6px  rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.40),
    0 0 32px   rgba(20, 184, 166, 0.55);
  background: none;
  -webkit-text-fill-color: #5eead4;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}
.hero-badge .dot {
  background: var(--c-gold);
  box-shadow: 0 0 14px var(--c-gold);
}

.hero-actions .btn-ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
}

.scroll-hint {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.scroll-hint .line {
  background: rgba(255, 255, 255, 0.75);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  will-change: transform, opacity;
  transform-origin: 50% 0%;
  backface-visibility: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 2px 6px rgba(0, 0, 0, 0.75);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease-out) both;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 12px #5eead4;
  animation: pulse 2s infinite;
}
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  animation: heroLine 1.1s var(--ease-out) both;
}
.hero h1 .line:nth-child(2) { animation-delay: 0.15s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.3s; }

.hero h1 em {
  font-style: italic;
  color: #5eead4;
  -webkit-text-fill-color: #5eead4;
  display: inline-block;
  position: relative;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 2rem 0 3rem;
  animation: fadeUp 1.2s 0.5s var(--ease-out) both;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item .k {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: #5eead4;
  line-height: 1;
  text-shadow:
    0 2px 4px  rgba(0, 0, 0, 0.85),
    0 4px 12px rgba(0, 0, 0, 0.65),
    0 0 24px   rgba(20, 184, 166, 0.45);
}
.hero-meta-item .l {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0.5rem;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.65);
  font-weight: 600;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 500;
  text-shadow:
    0 1px 2px  rgba(0, 0, 0, 0.95),
    0 2px 6px  rgba(0, 0, 0, 0.85),
    0 4px 16px rgba(0, 0, 0, 0.65),
    0 8px 32px rgba(0, 0, 0, 0.40);
  animation: fadeUp 1.2s 0.4s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 1.2s 0.6s var(--ease-out) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-amber), var(--c-amber-deep));
  color: var(--c-void);
  box-shadow: 0 10px 36px rgba(20, 184, 166, 0.3), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(20, 184, 166, 0.45);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 2; }

.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--c-bone);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--glass-strong);
  border-color: var(--c-amber);
  color: var(--c-amber);
  transform: translateY(-3px);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 1.5s 1s var(--ease-out) both;
}
.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-amber), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-hint .line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2.2s infinite;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
  max-width: 820px;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
  perspective: 1500px;
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
  cursor: pointer;
  transform-style: preserve-3d;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(20, 184, 166, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover {
  border-color: var(--glass-border-bright);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.04), var(--glass));
}
.service-card:hover::before { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.service-num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-faint);
  margin-bottom: 2rem;
  display: block;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(94, 234, 212, 0.05));
  border: 1px solid var(--glass-border-bright);
  display: grid;
  place-items: center;
  margin-bottom: 1.75rem;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-icon {
  transform: scale(1.05) rotate(-3deg);
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--c-gold); }

.service-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}
.service-card h3 em {
  font-style: italic;
  color: var(--c-amber);
}

.service-card p {
  color: var(--c-mute);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--c-pearl);
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-amber);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 0.85rem; }

/* Whole service-card is now an <a> wrapper — entire area clickable, image included */
.service-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.service-link { pointer-events: none; }

/* ============================================
   STATS / WHY
   ============================================ */
.stats-section {
  background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.03), transparent);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat {
  position: relative;
}
.stat::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}
.stat:last-child::after { display: none; }

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-style: italic;
  background: linear-gradient(120deg, var(--c-amber), var(--c-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-pearl);
  margin-top: 0.75rem;
}

.stat-detail {
  font-size: 0.85rem;
  color: var(--c-mute);
  margin-top: 0.5rem;
}

/* ============================================
   ABOUT / PROCESS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border-bright);
  background: linear-gradient(135deg, var(--c-charcoal), var(--c-graphite));
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-out);
}
.about-visual:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.18), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(6, 182, 212, 0.08), transparent 50%);
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  z-index: 2;
}

.about-visual-tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
}

.about-visual-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.25;
  color: var(--c-bone);
}
.about-visual-quote::before {
  content: "„";
  font-size: 5rem;
  line-height: 0.5;
  color: var(--c-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.about-visual-sig {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-gold);
  margin-top: 1rem;
}
.about-visual-sig span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-style: normal;
  margin-top: 0.5rem;
}

/* SVG layers inside visual */
.about-visual .circuit {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
}

.about-text h2 { margin-bottom: 2rem; }
.about-text p {
  color: var(--c-pearl);
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-style: italic;
  float: left;
  line-height: 0.85;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
  color: var(--c-gold);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--c-pearl);
}
.credential svg { width: 16px; height: 16px; stroke: var(--c-amber); }

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { transform: none; max-width: 480px; margin: 0 auto; }
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-section { background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.05), transparent); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber), var(--c-amber), transparent);
  opacity: 0.4;
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-circle {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--c-obsidian);
  border: 1px solid var(--glass-border-bright);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--c-gold);
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.step-circle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.step:hover .step-circle { transform: translateY(-4px); }
.step:hover .step-circle::before { opacity: 1; }

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-style: italic;
}
.step p {
  font-size: 0.92rem;
  color: var(--c-mute);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process-steps::before { display: none; }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  position: relative;
}

.reviews-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.reviews-score {
  text-align: center;
}
.reviews-score .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.5rem;
  background: linear-gradient(120deg, var(--c-amber), var(--c-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.reviews-score .stars {
  display: flex;
  gap: 0.15rem;
  justify-content: center;
  margin-top: 0.5rem;
  color: var(--c-gold);
  font-size: 1.1rem;
}
.reviews-score .lbl {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 0.5rem;
}

.reviews-google {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.reviews-google svg { width: 28px; height: 28px; }
.reviews-google div { display: flex; flex-direction: column; line-height: 1.2; }
.reviews-google .a { font-size: 0.78rem; color: var(--c-mute); }
.reviews-google .b { font-weight: 600; color: var(--c-bone); font-size: 0.95rem; }

.reviews-grid {
  columns: 3 320px;
  column-gap: 1.5rem;
}

.review {
  break-inside: avoid;
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.review:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-4px);
}

.review-quote {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--c-amber);
  opacity: 0.15;
  line-height: 0.6;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: var(--c-gold);
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-pearl);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), var(--c-copper));
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-void);
  font-weight: 600;
  flex-shrink: 0;
}
.review-author-info { display: flex; flex-direction: column; line-height: 1.2; }
.review-author-info .name { font-weight: 600; color: var(--c-bone); font-size: 0.92rem; }
.review-author-info .when {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--c-mute);
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.faq-item[open] {
  background: var(--glass-strong);
  border-color: var(--glass-border-bright);
}

.faq-item summary {
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-bone);
  list-style: none;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-amber); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-amber);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item[open] .faq-icon {
  background: var(--c-amber);
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon::before { background: var(--c-void); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); background: var(--c-void); }

.faq-body {
  padding: 0 1.75rem 1.5rem;
  color: var(--c-mute);
  line-height: 1.7;
  font-size: 0.97rem;
}

@media (max-width: 920px) {
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-card {
  position: relative;
  background: linear-gradient(135deg, var(--c-charcoal), var(--c-obsidian));
  border: 1px solid var(--glass-border-bright);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -20%;
  width: 90%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.16), transparent 60%);
  z-index: 0;
}

.contact-card > * { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p {
  color: var(--c-pearl);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--c-amber); }
.contact-item-info { display: flex; flex-direction: column; line-height: 1.3; }
.contact-item-info .lbl {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.contact-item-info .val {
  font-size: 1.05rem;
  color: var(--c-bone);
  font-weight: 500;
  margin-top: 2px;
  text-decoration: none;
}
.contact-item-info a.val:hover { color: var(--c-amber); }

/* Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.25rem;
  backdrop-filter: blur(12px);
}

.contact-form h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.65rem;
  margin-bottom: 1.75rem;
  color: var(--c-bone);
}

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--c-bone);
  font-family: var(--f-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-amber);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--c-mute);
  margin: 1rem 0 1.5rem;
  line-height: 1.5;
}
.consent input { margin-top: 3px; flex-shrink: 0; }
.consent a { color: var(--c-amber); text-decoration: none; }
.consent a:hover { text-decoration: underline; }

.contact-form .btn { width: 100%; justify-content: center; }

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--c-void);
  border-top: 1px solid var(--glass-border);
  padding-top: 5rem;
  padding-bottom: 2rem;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand p {
  color: var(--c-mute);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  color: var(--c-pearl);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--c-amber); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--c-faint);
}
.footer-bottom a { color: var(--c-mute); text-decoration: none; }
.footer-bottom a:hover { color: var(--c-amber); }
.footer-bottom .legal-links { display: flex; gap: 1.5rem; }

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLine {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0); transform: scale(1.1); }
}
@keyframes scrollPulse {
  0% { top: -40px; }
  100% { top: 100%; }
}

/* Reveal on scroll — premium 3D entrance */
.reveal {
  opacity: 0;
  transform: translate3d(0, 50px, 0) rotateX(6deg) scale(0.97);
  transform-origin: center bottom;
  transition:
    opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   NEW COMPONENTS — Images, Subpages, Reviews v2
   ============================================ */

/* IMAGE PRIMITIVES */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-amber) 0%, var(--c-gold) 100%);
  isolation: isolate;
}
.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.img-frame:hover img { transform: scale(1.04); }
.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.08));
  pointer-events: none;
}
.img-frame.img-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--c-amber), var(--c-gold)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 50%);
}

/* SUBPAGE HERO with image */
.subpage-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.15), transparent 60%),
    radial-gradient(circle at 10% 100%, rgba(94, 234, 212, 0.10), transparent 60%);
  z-index: 1;
}
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .subpage-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.subpage-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
.subpage-hero h1 em {
  font-style: italic;
  color: var(--c-amber);
  -webkit-text-fill-color: var(--c-amber);
}
.subpage-hero .lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--c-pearl);
  margin-bottom: 2rem;
  max-width: 540px;
}
.subpage-hero-image {
  aspect-ratio: 4/5;
  position: relative;
}
.subpage-hero-image .img-frame {
  width: 100%;
  height: 100%;
  box-shadow:
    0 30px 80px -20px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.05);
}
.subpage-hero-image .floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.12);
  z-index: 3;
  max-width: 240px;
}
.floating-badge .badge-num {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
  display: block;
}
.floating-badge .badge-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-mute);
}
@media (max-width: 880px) {
  .subpage-hero-image .floating-badge { left: 1rem; bottom: -1rem; }
}

/* DETAIL SECTIONS (alternating text + image) */
.detail-section {
  padding: 5rem 0;
}
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.detail-row:last-child { margin-bottom: 0; }
.detail-row.reverse { direction: rtl; }
.detail-row.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .detail-row,
  .detail-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; margin-bottom: 4rem; }
}
.detail-text .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}
.detail-text h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.detail-text h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-text p {
  color: var(--c-pearl);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.detail-image {
  aspect-ratio: 5/4;
}
.detail-image .img-frame {
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.15);
}

/* SPEC GRID — feature list */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 2rem 0;
}
.spec-item {
  background: rgba(255, 255, 255, 0.65);
  padding: 1.75rem 1.5rem;
  transition: background 0.3s;
}
.spec-item:hover { background: rgba(255, 255, 255, 0.95); }
.spec-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-amber), var(--c-copper));
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.spec-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
.spec-item h4 {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--c-bone);
}
.spec-item p {
  font-size: 0.88rem;
  color: var(--c-pearl);
  line-height: 1.55;
  margin: 0;
}

/* INCLUDED LIST */
.included-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}
@media (max-width: 600px) {
  .included-list { grid-template-columns: 1fr; }
}
.included-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--c-pearl);
  line-height: 1.5;
  font-size: 0.95rem;
}
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--c-amber), var(--c-copper));
  background-image: linear-gradient(135deg, var(--c-amber), var(--c-copper)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-blend-mode: normal;
  background-size: cover, 14px 14px;
  background-position: center, center;
  background-repeat: no-repeat;
}

/* HUB CARDS (leistungen.html overview) */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.hub-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.15);
  border-color: var(--c-amber);
}
.hub-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-amber), var(--c-gold));
  position: relative;
}
.hub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.hub-card:hover .hub-card-image img { transform: scale(1.06); }
.hub-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.4));
}
.hub-card-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: white;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
}
.hub-card-body {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hub-card-body h3 {
  font-family: var(--f-display);
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--c-bone);
}
.hub-card-body h3 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hub-card-body p {
  color: var(--c-pearl);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.hub-card-link {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.hub-card:hover .hub-card-link { gap: 0.9rem; }

/* REVIEWS v2 — Featured + Highlights */
.reviews-section-v2 {
  padding: 7rem 0;
  position: relative;
}
.reviews-aggregate {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews-aggregate .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-bone);
}
.reviews-aggregate .google-badge svg { width: 18px; height: 18px; }
.reviews-aggregate .big-score {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.reviews-aggregate .big-stars {
  font-size: 1.25rem;
  color: var(--c-amber);
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.reviews-aggregate .big-meta {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .reviews-layout { grid-template-columns: 1fr; }
}
.review-featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 3rem 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.review-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(20, 184, 166, 0.08), transparent 60%);
  pointer-events: none;
}
.review-featured > * { position: relative; }
.review-featured .big-quote {
  font-family: var(--f-display);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--c-amber);
  opacity: 0.4;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-style: italic;
}
.review-featured .featured-stars {
  color: var(--c-amber);
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
  position: relative;
  font-size: 1rem;
}
.review-featured .featured-text {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--c-bone);
  margin-bottom: 2rem;
  font-style: italic;
}
.review-featured .featured-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
}
.review-featured .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), var(--c-copper));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
}
.review-featured .author-name {
  font-weight: 700;
  color: var(--c-bone);
  font-size: 0.95rem;
}
.review-featured .author-when {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-mini {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.review-mini:hover {
  border-color: var(--c-amber);
  transform: translateX(4px);
}
.review-mini .mini-stars {
  color: var(--c-amber);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.review-mini .mini-text {
  color: var(--c-bone);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.review-mini .mini-author {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-mute);
}
.review-mini .mini-author strong {
  color: var(--c-amber);
  font-weight: 600;
}

.reviews-cta-row {
  text-align: center;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: white;
  color: #1a1f2e;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 0 0 1px var(--glass-border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-google:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.12),
    0 0 0 1px var(--c-amber);
}
.btn-google svg { width: 20px; height: 20px; }
.btn-google .arr { color: var(--c-amber); margin-left: 0.25rem; }
.reviews-cta-row .sub-cta {
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* PROCESS MINI (service subpages) */
.process-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: pm;
}
.process-mini-step {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  counter-increment: pm;
  position: relative;
}
.process-mini-step::before {
  content: counter(pm, decimal-leading-zero);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.5rem;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.process-mini-step h4 {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-bone);
}
.process-mini-step p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-pearl);
}

/* MINI FAQ (subpage specific) */
.mini-faq {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mini-faq details {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s;
}
.mini-faq details[open] { border-color: var(--c-amber); }
.mini-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--c-bone);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.mini-faq summary::-webkit-details-marker { display: none; }
.mini-faq summary::after {
  content: "+";
  color: var(--c-amber);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s;
}
.mini-faq details[open] summary::after { content: "−"; }
.mini-faq .faq-mini-body {
  margin-top: 0.85rem;
  color: var(--c-pearl);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* GALLERY STRIP (for service subpages) */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin: 3rem 0;
}
@media (max-width: 700px) { .gallery-strip { grid-template-columns: 1fr 1fr; } }
.gallery-strip .img-frame { aspect-ratio: 1; }
.gallery-strip .img-frame:first-child { aspect-ratio: 1.1; }
@media (max-width: 700px) {
  .gallery-strip .img-frame:first-child { grid-column: span 2; aspect-ratio: 2; }
}

/* INFO BAND — pricing or highlight callouts */
.info-band {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(94, 234, 212, 0.04));
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--r-lg);
  padding: 2.25rem 2.5rem;
  margin: 2.5rem 0;
}
.info-band .ib-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.5rem;
}
.info-band h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--c-bone);
}
.info-band p {
  color: var(--c-pearl);
  line-height: 1.65;
  margin: 0;
}


/* ============================================
   NEW MODULES — added during redesign
   ============================================ */

/* ---------- Image-Hero (service detail pages) ---------- */
.hero-detail {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 4rem;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 75% center;
  background-color: var(--c-graphite);
  z-index: 1;
  filter: saturate(0.9) contrast(0.95);
}
.hero-detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 30%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 70%, rgba(255,255,255,0.5) 100%),
    linear-gradient(120deg, rgba(20,184,166,0.08), transparent 60%);
}
.hero-detail .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-detail .crumbs {
  margin-bottom: 1.5rem;
}
.hero-detail h1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero-detail h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-detail .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--c-pearl);
  max-width: 640px;
  line-height: 1.55;
}
.hero-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero-detail-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-amber);
}

/* ---------- Intro block ---------- */
.intro-block {
  padding: 5rem 0 2rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.intro-grid .label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-amber);
  font-weight: 600;
}
.intro-grid h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 0.75rem;
}
.intro-grid h2 em {
  font-style: italic;
  color: var(--c-amber);
}
.intro-grid .intro-text p {
  font-size: 1.08rem;
  color: var(--c-pearl);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.intro-grid .intro-text p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.5rem 0 0;
  color: var(--c-amber);
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- Features block (detailed service items) ---------- */
.features-block {
  padding: 4rem 0;
  position: relative;
}
.features-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.features-section-head .label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.features-section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.features-section-head h2 em {
  font-style: italic;
  color: var(--c-amber);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-item {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-bright);
  background: linear-gradient(180deg, rgba(20,184,166,0.06), var(--glass));
}
.feature-item .feature-num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--c-amber);
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
}
.feature-item h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--c-bone);
}
.feature-item p {
  color: var(--c-pearl);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Photo-strip (image showcase) ---------- */
.photo-strip {
  padding: 4rem 0;
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 520px;
}
.photo-tile {
  background-size: cover;
  background-position: center;
  background-color: var(--c-graphite);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-out);
}
.photo-tile:hover { transform: scale(1.015); }
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.55) 100%);
  pointer-events: none;
}
.photo-tile-1 { grid-row: 1 / 3; }
.photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 2;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 700px) {
  .photo-strip-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
    height: auto;
  }
  .photo-tile-1 { grid-column: 1 / 3; grid-row: 1; }
}

/* ---------- Process mini (4-step inline) ---------- */
.process-mini {
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.04), transparent);
}
.process-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.process-mini-step {
  position: relative;
  padding: 1.5rem;
}
.process-mini-step .step-n {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.process-mini-step .step-n::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-amber), transparent);
  display: inline-block;
}
.process-mini-step h4 {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--c-bone);
}
.process-mini-step p {
  font-size: 0.92rem;
  color: var(--c-pearl);
  line-height: 1.55;
}

/* ---------- FAQ Mini (service-specific) ---------- */
.faq-mini {
  padding: 5rem 0;
}
.faq-mini-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- CTA block (already exists in leistungen, ensure global) ---------- */
.section-cta {
  padding: 5rem 0 7rem;
}
.section-cta .cta-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--c-amber), var(--c-copper));
  border-radius: var(--r-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 184, 166, 0.25);
}
.section-cta .cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(255,255,255,0.15), transparent 50%);
}
.section-cta .cta-card > * { position: relative; }
.section-cta .cta-card h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-cta .cta-card p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.section-cta .cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta .cta-card .btn {
  background: #fff;
  color: var(--c-amber-deep) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.section-cta .cta-card .btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: none;
}
.section-cta .cta-card .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ---------- Service overview grid (Leistungen page redesign) ---------- */
.services-overview {
  padding: 4rem 0 7rem;
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 3rem auto 0;
}
.service-overview-card {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.service-overview-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-bright);
  box-shadow: 0 24px 60px rgba(20, 184, 166, 0.12);
}
.service-overview-card .img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--c-graphite);
  background-size: cover;
  background-position: center;
}
.service-overview-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.05), rgba(20,184,166,0.1));
  transition: opacity 0.4s;
}
.service-overview-card:hover .img-wrap::after {
  opacity: 0.4;
}
.service-overview-card .card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-overview-card .card-tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--c-amber);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.service-overview-card h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  color: var(--c-bone);
  line-height: 1.1;
}
.service-overview-card p {
  color: var(--c-pearl);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-overview-card .more-link {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-amber);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.service-overview-card:hover .more-link { gap: 0.85rem; }
.service-overview-card .more-link::after {
  content: "→";
  transition: transform 0.3s;
}

/* ---------- Redesigned Reviews (Index) ---------- */
.reviews-redesign {
  padding: 6rem 0;
  position: relative;
}
.reviews-redesign-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1180px;
  margin: 0 auto 4rem;
  align-items: end;
}
@media (max-width: 900px) {
  .reviews-redesign-head { grid-template-columns: 1fr; gap: 2rem; }
}
.reviews-redesign-head .head-left .label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-amber);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.reviews-redesign-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-redesign-head h2 em {
  font-style: italic;
  color: var(--c-amber);
}

.google-summary {
  background: linear-gradient(135deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.google-summary-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.google-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.google-summary-rating {
  display: flex;
  flex-direction: column;
}
.google-summary-rating .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.15rem;
}
.google-summary-rating .stars svg {
  width: 18px; height: 18px;
  fill: #fbbf24;
}
.google-summary-rating .meta {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--c-mute);
  text-transform: uppercase;
}
.google-summary-rating .meta strong { color: var(--c-bone); font-weight: 600; }
.google-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--c-bone);
  color: #fff;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  align-self: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}
.google-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.google-cta svg { width: 18px; height: 18px; }

.reviews-redesign-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .reviews-redesign-grid { grid-template-columns: 1fr; }
}
.review-tile {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.review-tile:hover {
  transform: translateY(-3px);
  border-color: var(--glass-border-bright);
}
.review-tile.featured {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(20,184,166,0.05), var(--glass));
  border-color: rgba(20,184,166,0.18);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}
.review-tile-quote-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--c-amber);
  opacity: 0.45;
  margin-bottom: -1rem;
}
.review-tile.featured .review-tile-quote-mark {
  font-size: 5.5rem;
  opacity: 0.6;
}
.review-tile-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.review-tile-stars svg {
  width: 14px; height: 14px;
  fill: #fbbf24;
}
.review-tile.featured .review-tile-stars svg {
  width: 18px; height: 18px;
}
.review-tile-text {
  color: var(--c-pearl);
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.review-tile.featured .review-tile-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--c-bone);
  margin-bottom: 2rem;
}
.review-tile-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}
.review-tile-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), var(--c-copper));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--f-body);
  flex-shrink: 0;
}
.review-tile-author {
  display: flex;
  flex-direction: column;
}
.review-tile-author .name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-bone);
}
.review-tile-author .when {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--c-mute);
}

.reviews-redesign-footer {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Image-rich About section ---------- */
.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--c-graphite);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.7) 100%),
    linear-gradient(135deg, rgba(20,184,166,0.1), transparent 50%);
  pointer-events: none;
}

/* ---------- Stat band on subpages ---------- */
.stat-band {
  padding: 3rem 0;
  background: linear-gradient(180deg, transparent, var(--glass), transparent);
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-band-item .n {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--c-amber), var(--c-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-band-item .l {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-mute);
}

/* About visual: real photo background behind the circuit SVG + overlay */
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--c-graphite);
  z-index: 0;
  filter: saturate(0.85) contrast(0.95);
}
.about-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 30%, rgba(15,23,42,0.55) 100%),
    linear-gradient(135deg, rgba(20,184,166,0.15) 0%, transparent 50%);
}
.about-visual .circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  mix-blend-mode: screen;
}
.about-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.about-visual-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  margin-bottom: 1rem;
}
.about-visual-sig {
  font-family: var(--f-body);
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.about-visual-sig span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}
.about-visual-tag {
  color: var(--c-bone) !important;
}

/* FAQ-Mini buttons (used on service subpages — different from <details> in index.html) */
.faq-mini-list .faq-item {
  border-radius: 14px;
}
.faq-mini-list .faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-bone);
  transition: color 0.2s;
}
.faq-mini-list .faq-q:hover { color: var(--c-amber); }
.faq-mini-list .faq-q .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--glass-strong);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-amber);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), background 0.2s;
  font-family: var(--f-display);
  font-style: normal;
}
.faq-mini-list .faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
  background: var(--c-amber);
  color: #fff;
}
.faq-mini-list .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
  padding: 0 1.75rem;
}
.faq-mini-list .faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 1.75rem 1.4rem;
}
.faq-mini-list .faq-a p {
  color: var(--c-pearl);
  line-height: 1.7;
  font-size: 0.97rem;
}

/* ============================================
   REVIEWS V3 — Authentic Google-style
   ============================================ */
.reviews-v3 {
  padding: 7rem 0 6rem;
  position: relative;
}
.reviews-v3-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 4rem;
}
@media (max-width: 920px) {
  .reviews-v3-head { grid-template-columns: 1fr; gap: 2.5rem; }
}
.reviews-v3-intro .eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-amber);
  font-weight: 600;
  display: block;
  margin-bottom: 1.25rem;
}
.reviews-v3-intro h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.reviews-v3-intro h2 em {
  font-style: italic;
  color: var(--c-amber);
}
.reviews-v3-intro .lead {
  color: var(--c-pearl);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Google panel */
.google-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.google-panel-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.g-logo-lg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.g-panel-headline {
  display: flex;
  flex-direction: column;
}
.g-score-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g-score {
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--c-bone);
  letter-spacing: -0.02em;
}
.g-stars-row {
  display: inline-flex;
  gap: 1px;
}
.g-stars-row svg {
  width: 16px;
  height: 16px;
}
.g-score-meta {
  font-size: 0.82rem;
  color: var(--c-mute);
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}
.g-score-meta strong {
  color: var(--c-bone);
  font-weight: 600;
}

/* Distribution chart */
.g-distribution {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1rem 0;
}
.g-dist-row {
  display: grid;
  grid-template-columns: 16px 1fr 24px;
  align-items: center;
  gap: 0.6rem;
}
.g-dist-label {
  font-size: 0.78rem;
  color: var(--c-mute);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.g-dist-bar {
  height: 8px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.g-dist-fill {
  height: 100%;
  background: linear-gradient(90deg, #FBBC04, #f5a623);
  border-radius: 4px;
}
.g-dist-n {
  font-size: 0.78rem;
  color: var(--c-mute);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.g-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #fff;
  color: var(--c-bone);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.3s, transform 0.3s;
}
.g-panel-cta:hover {
  border-color: rgba(15, 23, 42, 0.25);
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* Google-style review cards */
.g-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .g-reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .g-reviews-grid { grid-template-columns: 1fr; }
}

.g-review-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.g-review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 36px rgba(15, 23, 42, 0.10);
  border-color: rgba(15, 23, 42, 0.12);
}

.g-review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.g-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
  letter-spacing: 0;
}
.g-review-meta {
  flex: 1;
  min-width: 0;
}
.g-author {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-bone);
  line-height: 1.2;
}
.g-date {
  font-size: 0.78rem;
  color: var(--c-mute);
  margin-top: 0.2rem;
}
.g-verify {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  flex-shrink: 0;
}

.g-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.85rem;
}
.g-stars svg {
  width: 16px;
  height: 16px;
}

.g-text {
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0;
}

/* Trust footer */
.g-reviews-footer {
  max-width: 1180px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  flex-wrap: wrap;
}
.g-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-pearl);
  font-size: 0.92rem;
}
.g-write-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-amber);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.3s;
}
.g-write-cta:hover { gap: 0.85rem; }
.g-write-cta span { transition: transform 0.3s; }
.g-write-cta:hover span { transform: translateX(2px); }

@media (max-width: 620px) {
  .g-reviews-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.25rem 1.5rem;
  }
}

/* ============================================
   Service Card — Photo banner (added on homepage cards)
   ============================================ */
.service-card.has-photo {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.service-card.has-photo .service-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--c-graphite);
  border-radius: 24px 24px 0 0;
}
.service-card.has-photo .service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.18));
  transition: opacity 0.4s;
}
.service-card.has-photo:hover .service-photo::after {
  opacity: 0.5;
}
.service-card.has-photo .service-photo-num {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  font-weight: 600;
}
.service-card.has-photo .service-card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card.has-photo .service-card-body > h3 {
  margin-bottom: 0.75rem;
}
.service-card.has-photo .service-card-body > p {
  flex: 1;
}

/* ============================================
   Nav over video hero — light text until scrolled
   ============================================ */
body.has-video-hero .nav:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
body.has-video-hero .nav:not(.scrolled) .nav-links a:hover {
  color: var(--c-gold);
}
body.has-video-hero .nav:not(.scrolled) .logo .brand {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
body.has-video-hero .nav:not(.scrolled) .logo .sub {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
body.has-video-hero .nav:not(.scrolled) .nav-burger {
  color: #ffffff;
}
/* Anfrage-stellen CTA in nav stays branded but with darker text for contrast on bright button */
body.has-video-hero .nav:not(.scrolled) .nav-cta {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* ============================================
   FULL-PAGE VIDEO BACKGROUND — Lightweight section overlays
   No backdrop-filter (kills scroll perf). Plain semi-
   transparent colors so video shines through cheaply.
   ============================================ */

/* Page content sits above the fixed video */
body.has-video-hero .nav,
body.has-video-hero main,
body.has-video-hero footer,
body.has-video-hero section {
  position: relative;
  z-index: 2;
}
body.has-video-hero .page-video-bg { z-index: 0; }

/* Hero section is transparent — video fully visible */
body.has-video-hero .hero {
  background: transparent;
}

/* Content sections: simple semi-transparent — NO BLUR (perf!) */
body.has-video-hero section:not(.hero):not(.stats-section) {
  background: rgba(255, 255, 255, 0.88);
}
body.has-video-hero section:not(.hero):not(.stats-section):nth-of-type(even) {
  background: rgba(248, 250, 252, 0.90);
}

/* Body bg darkens behind so video still has cinematic feel */
body.has-video-hero {
  background: #0a1525;
}
body.has-video-hero::before,
body.has-video-hero::after {
  display: none;
}

/* CSS containment — limits layout/style work per section for faster scroll */
body.has-video-hero section {
  contain: layout style;
}
