/* ============================================================
   DOZENTO LANDINGPAGE — style.css
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:          #07100e;
  --verdigris:   #1F3835;
  --verdigris-d: #0F1E1C;
  --copper:      #C07840;
  --copper-d:    #6E3E1A;
  --ivory:       #F5F0E8;
  --ivory-d:     #E8E0D4;
  --text-dark:   #1a2e2b;
  --text-muted:  #6b7c79;

  /* v2.4 Multi-Stop Gradients */
  --verdigris-gradient: linear-gradient(150deg, #142B28 0%, #1F3835 24%, #253630 42%, #2E3829 56%, #243531 70%, #172E2B 88%, #0F1E1C 100%);
  --verdigris-gradient-dark: linear-gradient(145deg,#060E0D 0%,#0F1E1C 22%,#1F3835 44%,#2E3829 58%,#253530 72%,#182E2B 100%);
  --copper-gradient:    linear-gradient(135deg, #A86830 0%, #BF7640 30%, #D08B52 55%, #C07840 78%, #A86830 100%);
  --copper-gradient-short: linear-gradient(135deg, #A86830 0%, #C07840 50%, #D08B52 100%);
  --essence-gradient:   linear-gradient(135deg,#A86830 0%,#BF7640 30%,#D08B52 55%,#C07840 78%,#A86830 100%);

  --font: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --max-w: 1160px;
  --section-pad: 100px 0;

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

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Typography helpers ─────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--copper);
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.18s var(--ease),
              box-shadow 0.22s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--copper-gradient-short);
  color: var(--ivory);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(192, 120, 64, 0.32), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: var(--copper-gradient);
  border-color: transparent;
  box-shadow: 0 10px 32px rgba(192, 120, 64, 0.52), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245,240,232,0.3);
}
.btn-ghost:hover {
  border-color: var(--ivory);
  background: rgba(245,240,232,0.06);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(26,46,43,0.25);
}
.btn-ghost-dark:hover {
  border-color: var(--text-dark);
  background: rgba(26,46,43,0.06);
}

.btn-lg { padding: 17px 36px; font-size: 15px; }

.btn svg { flex-shrink: 0; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(7, 16, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(245,240,232,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.nav-logo-mark {
  color: var(--ivory);
  display: flex;
  align-items: center;
}

.nav-wordmark {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ivory);
  padding-right: 0.04em;
  line-height: 1;
}
.nav-wordmark-accent { color: var(--copper); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg);
  overflow: hidden;
}

/* Blueprint grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.016) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

/* Copper glow orb — aligned to right column (signal visual) */
.hero-glow {
  position: absolute;
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(192,120,64,0.13) 0%,
    rgba(192,120,64,0.07) 30%,
    rgba(110,62,26,0.03) 55%,
    transparent 72%);
  top: 48%; left: 72%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  animation: glow-pulse 10s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 80px 40px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Split hero layout */
.hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
  padding: 100px 40px 80px;
}

.hero-copy {}
.hero-copy .hero-pre { justify-content: flex-start; }
.hero-copy .hero-ctas { justify-content: flex-start; }
.hero-copy .hero-trust { justify-content: flex-start; }
.hero-copy .hero-sub { margin-left: 0; }

.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Signal Mark illustration ───────────────────────────── */
.signal-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.4s forwards;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.signal-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Ring opacity animations — staggered, each ring own range */
.sig-r1 { animation: sr1 5.5s ease-in-out infinite; }
.sig-r2 { animation: sr2 5.5s ease-in-out infinite 0.7s; }
.sig-r3 { animation: sr3 5.5s ease-in-out infinite 1.4s; }
.sig-r4 { animation: sr4 5.5s ease-in-out infinite 2.1s; }
.sig-r5 { animation: sr5 5.5s ease-in-out infinite 2.8s; }

@keyframes sr1 { 0%,100%{opacity:0.82} 50%{opacity:0.38} }
@keyframes sr2 { 0%,100%{opacity:0.55} 50%{opacity:0.24} }
@keyframes sr3 { 0%,100%{opacity:0.34} 50%{opacity:0.13} }
@keyframes sr4 { 0%,100%{opacity:0.20} 50%{opacity:0.07} }
@keyframes sr5 { 0%,100%{opacity:0.11} 50%{opacity:0.03} }

/* Core dot pulse */
.sig-core {
  transform-origin: 60px 230px;
  animation: sig-core-pulse 3.2s ease-in-out infinite;
}
@keyframes sig-core-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.28); opacity: 0.78; }
}

/* Ripple rings — expand + fade from core */
.sig-ripple {
  transform-origin: 60px 230px;
  animation: sig-ripple-out 4.2s ease-out infinite;
}
.sig-ripple-2 { animation-delay: 2.1s; }
@keyframes sig-ripple-out {
  0%   { transform: scale(1);  opacity: 0.55; }
  100% { transform: scale(13); opacity: 0; }
}

/* ── Floating cards ─────────────────────────────────────── */
.fc-wrap {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.fc-wrap.fc-visible { opacity: 1; }

.fc-w1 { top: 7%;    right: 0;  }
.fc-w2 { top: 46%;   right: 4%; }
.fc-w3 { bottom: 5%; right: 2%; }

.float-card {
  background: rgba(7, 14, 12, 0.92);
  border: 1px solid rgba(192, 120, 64, 0.22);
  border-radius: 10px;
  padding: 14px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(192,120,64,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: card-float 5s ease-in-out infinite;
}

.fc-w1 .float-card { animation-duration: 4.6s; }
.fc-w2 .float-card { animation-duration: 5.4s; animation-delay: 1.4s; }
.fc-w3 .float-card { animation-duration: 5s;   animation-delay: 0.7s; }

@keyframes card-float {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-8px); }
}

/* Status dot (green = done) */
.fc-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.45);
  flex-shrink: 0;
  animation: dot-blink 2.8s ease-in-out infinite;
}
@keyframes dot-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}

.fc-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 2px;
}
.fc-sub {
  font-size: 10px;
  color: rgba(245,240,232,0.38);
  font-weight: 300;
  white-space: nowrap;
}

/* Metric card */
.fc-metric-card {
  flex-direction: column;
  align-items: center;
  padding: 16px 22px;
  gap: 3px;
}
.fc-big-num {
  font-size: 38px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.03em;
}
.fc-big-label {
  font-size: 10px;
  font-weight: 400;
  color: rgba(245,240,232,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Progress card */
.fc-progress-inner { min-width: 162px; }
.fc-phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.fc-phase-tag {
  font-size: 10px;
  font-weight: 500;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.fc-phase-frac {
  font-size: 11px;
  font-weight: 600;
  color: var(--copper);
}
.fc-bar-track {
  height: 3px;
  background: rgba(245,240,232,0.09);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}
.fc-bar-fill {
  height: 100%;
  width: 77%;
  background: linear-gradient(90deg, var(--copper-d), var(--copper));
  border-radius: 2px;
}
.fc-phase-current {
  font-size: 10px;
  color: rgba(245,240,232,0.38);
  font-weight: 300;
}

.hero-pre {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: fade-up 0.7s 0.1s var(--ease-out) forwards;
}

.hero-pre::before,
.hero-pre::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,120,64,0.5));
}
.hero-pre::after {
  background: linear-gradient(90deg, rgba(192,120,64,0.5), transparent);
}

.hero-h1 {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s 0.2s var(--ease-out) forwards;
}

.hero-h1-thin {
  display: block;
  font-weight: 300;
  color: rgba(245,240,232,0.85);
}

.hero-h1-bold {
  display: block;
  font-weight: 700;
  color: var(--ivory);
}

.hero-h1-bold em {
  font-style: normal;
  color: var(--copper);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.8s 0.3s var(--ease-out) forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s 0.4s var(--ease-out) forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s 0.5s var(--ease-out) forwards;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.02em;
}

.trust-badge svg { color: var(--copper); opacity: 0.8; flex-shrink: 0; }

.trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(245,240,232,0.12);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--verdigris-gradient);
  padding: 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,120,64,0.3), transparent);
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.stat-item {
  flex: 1;
  max-width: 280px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(245,240,232,0.1);
}

.stat-value {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value span { color: var(--copper); }

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--ivory);
  padding: var(--section-pad);
  color: var(--text-dark);
}

.section-header {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header .label { color: var(--copper-d); }
.section-header .label::before { background: var(--copper-d); }

.section-h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--ivory-d);
  padding: 36px 32px;
  border-radius: 12px;
  position: relative;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.problem-card:hover {
  border-color: rgba(192,120,64,0.3);
  box-shadow: 0 8px 32px rgba(26,46,43,0.06);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 40px; height: 40px;
  background: rgba(192,120,64,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--copper-d);
}

.problem-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.problem-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution {
  background: var(--ivory-d);
  padding: var(--section-pad);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}


.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-left .section-h2 {
  margin-bottom: 20px;
}

.solution-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.solution-point-icon {
  width: 36px; height: 36px;
  background: rgba(31,56,53,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--verdigris);
}

.solution-point-body {}

.solution-point-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.solution-point-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  background: var(--verdigris-gradient);
  padding: var(--section-pad);
  position: relative;
}

.hiw .section-header .section-h2 { color: var(--ivory); }
.hiw .section-header .section-sub { color: rgba(245,240,232,0.5); }
.hiw .section-header .label { color: var(--copper); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(192,120,64,0.4) 20%,
    rgba(192,120,64,0.4) 80%,
    transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hiw-steps.line-animated::before { transform: scaleX(1); }

.hiw-step {
  padding: 0 24px;
  text-align: center;
}

.hiw-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(192,120,64,0.35);
  background: rgba(7,16,14,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.hiw-step:hover .hiw-step-num {
  background: rgba(192,120,64,0.15);
  border-color: var(--copper);
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hiw-step-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.hiw-step-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 1.65;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--ivory);
  padding: var(--section-pad);
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ivory-d);
  border: 1px solid var(--ivory-d);
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  transition: background 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.feature-card:hover {
  background: #fdfaf6;
  box-shadow: 0 8px 28px rgba(26,46,43,0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px; height: 40px;
  background: rgba(31,56,53,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--verdigris);
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--verdigris-gradient-dark);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.014) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.pricing .section-header .section-h2 { color: var(--ivory); }
.pricing .section-header .section-sub { color: rgba(245,240,232,0.45); }

.pricing-card-wrap {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(31,56,53,0.45);
  border: 1px solid rgba(192,120,64,0.25);
  border-radius: 16px;
  padding: 52px 48px;
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(192,120,64,0.1) inset;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(192,120,64,0.35);
  padding: 6px 14px;
  margin-bottom: 32px;
}

.pricing-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.pricing-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 16px;
}

.pricing-amount {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  margin-top: 6px;
}

.pricing-value {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ivory);
  line-height: 1;
}

.pricing-period {
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  margin-bottom: 36px;
  font-weight: 300;
}

.pricing-divider {
  height: 1px;
  background: rgba(245,240,232,0.08);
  margin: 32px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.5;
}

.pricing-feature svg { color: var(--copper); flex-shrink: 0; margin-top: 2px; }

.pricing-cta-wrap { margin-bottom: 24px; }
.pricing-cta-wrap .btn { width: 100%; justify-content: center; }

.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(245,240,232,0.3);
}

.pricing-trust-item svg { flex-shrink: 0; }

.pricing-info {
  max-width: 540px;
  margin: 24px auto 0;
  padding: 16px 20px;
  background: rgba(192,120,64,0.06);
  border: 1px solid rgba(192,120,64,0.15);
  border-left: 2px solid var(--copper);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(245,240,232,0.55);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.pricing-info svg { color: var(--copper); flex-shrink: 0; margin-top: 1px; }
.pricing-info strong { color: rgba(245,240,232,0.8); }

.pricing-revshare {
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--ivory);
  padding: var(--section-pad);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 52px 56px;
  box-shadow:
    0 4px 24px rgba(26,46,43,0.06),
    0 0 0 1px rgba(26,46,43,0.05);
  position: relative;
}

.testimonial-quote-mark {
  font-size: 100px;
  line-height: 0.6;
  color: var(--copper);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--verdigris);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonial-meta { text-align: left; }

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--copper-d);
  margin-bottom: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--ivory-d);
  padding: var(--section-pad);
  color: var(--text-dark);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,46,43,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(26,46,43,0.1);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1.4;
}

.faq-q:hover { background: #fdfaf6; }
.faq-item.open .faq-q {
  color: var(--verdigris);
  background: #fdfaf6;
}

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid rgba(26,46,43,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.2s var(--ease),
              border-color 0.2s var(--ease);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--verdigris);
  border-color: var(--verdigris);
  color: var(--ivory);
}

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-a {
  padding: 0 28px 22px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  background: #fdfaf6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.014) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(192,120,64,0.06) 0%,
    transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.cta-h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 16px;
}

.cta-h2 em {
  font-style: normal;
  color: var(--copper);
}

.cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  margin-bottom: 48px;
  line-height: 1.65;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.form-input,
.form-textarea {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 18px;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.12);
  color: var(--ivory);
  border-radius: 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245,240,232,0.2);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(192,120,64,0.5);
  background: rgba(245,240,232,0.06);
}

.form-textarea { resize: none; min-height: 90px; }

.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-privacy {
  font-size: 11px;
  color: rgba(245,240,232,0.2);
  text-align: center;
  line-height: 1.5;
  margin-top: 8px;
}

/* Thank you state */
.cta-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px;
  background: rgba(31,56,53,0.3);
  border: 1px solid rgba(192,120,64,0.2);
}

.cta-thanks-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(192,120,64,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}

.cta-thanks h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ivory);
}

.cta-thanks p {
  font-size: 14px;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer[role="contentinfo"] {
  background: var(--verdigris-d);
  padding: 32px 0 18px;
  border-top: 1px solid rgba(245,240,232,0.06);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; flex-direction: column; gap: 10px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
}

.footer-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ivory);
  line-height: 1;
}
.footer-wordmark-accent { color: var(--copper); }

.footer-claim {
  font-size: 11px;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  font-weight: 300;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover { color: rgba(245,240,232,0.8); }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(245,240,232,0.25);
  font-weight: 300;
  transition: color 0.2s var(--ease);
}

.footer-legal a:hover { color: rgba(245,240,232,0.5); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(245,240,232,0.06);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: 10px;
  color: rgba(245,240,232,0.18);
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 72px 0; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { padding: 60px 24px 80px; }
  .hero-inner--split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 80px 24px 60px;
  }
  .hero-copy .hero-pre { justify-content: center; }
  .hero-copy .hero-ctas { justify-content: center; }
  .hero-copy .hero-trust { justify-content: center; }
  .hero-copy .hero-sub { margin: 0 auto 40px; }
  .hero-visual { height: 320px; }
  .fc-sub { display: none; }
  .fc-w1 { top: 4%; right: 0; }
  .fc-w2 { top: 44%; right: 2%; }
  .fc-w3 { bottom: 2%; right: 0; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 180px; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  .solution-layout { grid-template-columns: 1fr; gap: 48px; }

  .hiw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hiw-steps::before { display: none; }

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

  .pricing-card { padding: 36px 28px; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: 38px; }
  .hero-trust { gap: 16px; }
  .trust-sep { display: none; }

  .hiw-steps { grid-template-columns: 1fr; }

  .cta-inner { padding: 0 24px; }
  .pricing-value { font-size: 56px; }

}

/* ============================================================
   ICONS — CI-Farben (Kupfer statt Verdigris-Grau)
   ============================================================ */
.feature-icon {
  background: rgba(192,120,64,0.1) !important;
  color: var(--copper-d) !important;
  transition: background 0.22s ease, transform 0.22s ease;
}
.problem-icon {
  background: rgba(192,120,64,0.1) !important;
  color: var(--copper-d) !important;
}

/* ── Feature Cards — stärkeres Hover-Erlebnis ───────────── */
.feature-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.feature-card:hover {
  background: #fefbf7;
  box-shadow: 0 12px 40px rgba(192,120,64,0.08), 0 2px 8px rgba(26,46,43,0.06);
  transform: translateY(-4px);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover .feature-icon {
  background: rgba(192,120,64,0.18) !important;
  transform: scale(1.1);
}

/* ── Problem Cards — stärkeres Hover ───────────────────── */
.problem-card:hover .problem-icon {
  background: rgba(192,120,64,0.18) !important;
  transform: scale(1.08);
}
.problem-icon { transition: background 0.22s ease, transform 0.22s ease; }

/* ── Solution Point Icons — Kupfer-Akzent ───────────────── */
.solution-point-icon {
  background: rgba(192,120,64,0.1) !important;
  color: var(--copper-d) !important;
}

/* ============================================================
   TESTIMONIALS — neu
   ============================================================ */
.testimonial {
  background: var(--ivory);
  padding: var(--section-pad);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.testimonial .section-header { margin-bottom: 48px; }

/* ── Video-Section ─────────────────────────────────────────── */
.testimonial--video { padding-bottom: 60px; }
.testimonial--text  { padding-top: 60px; }

.testi-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-video-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(26,46,43,0.06);
  box-shadow: 0 4px 16px rgba(26,46,43,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.testi-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,46,43,0.09);
  border-color: rgba(192,120,64,0.18);
}
.testi-video-card--hidden { display: none; }
.testi-video-grid--expanded .testi-video-card--hidden { display: flex; }

/* Frame — 16:9 */
.testi-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--verdigris-d);
  overflow: hidden;
}
.testi-video {
  width: 100%;
  height: 100%;
  object-fit: cover;              /* Vorschau/Poster: bildfüllend */
  object-position: center 30%;
  display: block;
  background: #000;
  cursor: pointer;
}
/* Hochkant-Quelle: Poster trotzdem bildfüllend (cover, Gesicht zentriert) */
.testi-video-frame--portrait-src .testi-video {
  object-fit: cover;
  object-position: center 25%;
}
/* Beim Abspielen: Video ins 16:9 einpassen (contain) — schwarze Balken links/rechts */
.testi-video-card--playing .testi-video {
  object-fit: contain;
  object-position: center;
  background: #000;
  cursor: auto;
}
.testi-video-card--playing .testi-video-frame {
  background: #000;
}

.testi-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(7,16,14,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid rgba(192,120,64,0.28);
  z-index: 2;
  pointer-events: none;
}

.testi-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(245,240,232,0.5);
  background:
    linear-gradient(135deg, rgba(192,120,64,0.08) 0%, rgba(31,56,53,0.0) 100%),
    var(--verdigris-gradient-dark);
}

/* Foto als Video-Vorschau (Video folgt) */
.testi-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.testi-video-frame--portrait-src .testi-video-poster {
  object-position: center 25%;
}

/* Blurry-Background-Variante: Hochformat/quadratisches Foto ohne schwarze Ränder,
   Vordergrund proportional komplett sichtbar (z. B. Jenny im 16:9) */
.testi-video-frame--blur-bg {
  background: var(--verdigris-d);
}
.testi-video-poster-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) saturate(1.1) brightness(0.55);
  transform: scale(1.15);
  z-index: 0;
  pointer-events: none;
}
.testi-video-poster--contain {
  object-fit: contain;
  z-index: 1;
}

/* Play-Button rein dekorativ (Linda, Jenny — Video folgt) */
.testi-video-play--decorative {
  pointer-events: none;
}

.testi-video-coming {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(7,16,14,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid rgba(192,120,64,0.28);
  z-index: 2;
  pointer-events: none;
}
.testi-video-placeholder svg { opacity: 0.6; color: var(--copper); }
.testi-video-placeholder span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.testi-video-card--placeholder { opacity: 0.92; }

/* Poster wird im 16:9-Frame zentriert, Gesicht im oberen Drittel */
.testi-video[poster] { object-position: center 30%; }
.testi-video-frame--portrait-src .testi-video[poster] { object-position: center 25%; }

/* Custom Play-Button — transparent, mittig, dezent */
.testi-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,240,232,0.85);
  background: rgba(7,16,14,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  padding: 0 0 0 4px;
  box-shadow: 0 4px 18px rgba(7,16,14,0.28);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.testi-video-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.45);
  opacity: 0.7;
  animation: testiPulse 2.4s ease-out infinite;
}
@keyframes testiPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  80%  { transform: scale(1.25); opacity: 0;   }
  100% { transform: scale(1.25); opacity: 0;   }
}
.testi-video-card:hover .testi-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(192,120,64,0.55);
  border-color: rgba(245,240,232,1);
  box-shadow: 0 8px 28px rgba(7,16,14,0.42);
}
.testi-video-play:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ivory), 0 0 0 6px rgba(192,120,64,0.6);
}
.testi-video-card--playing .testi-video-play {
  opacity: 0;
  pointer-events: none;
}
.testi-video-card--playing .testi-video-play::before { display: none; }

.testi-video-name-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  max-width: calc(100% - 140px);
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
  background: linear-gradient(135deg, rgba(7,16,14,0.82), rgba(7,16,14,0.62));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
  border: 1px solid rgba(192,120,64,0.32);
  box-shadow: 0 6px 18px rgba(7,16,14,0.28);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}
.testi-video-card--playing .testi-video-name-overlay {
  opacity: 0;
  transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {
  .testi-video-play::before { animation: none; }
}

/* Mehr-anzeigen-Button */
.testi-more-wrap {
  text-align: center;
  margin-top: 36px;
}
.testi-more-label-less { display: none; }
.testi-more-btn[aria-expanded="true"] .testi-more-label-more { display: none; }
.testi-more-btn[aria-expanded="true"] .testi-more-label-less { display: inline; }
.testi-more-btn[aria-expanded="true"] .testi-more-icon { transform: rotate(180deg); }
.testi-more-icon { transition: transform 0.25s var(--ease); }

/* ── Text-Testimonials Grid ──────────────────────────────── */
.testi-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1400px;
}

.testi-text-card {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(192,120,64,0.05) 0%, transparent 55%),
    #fff;
  border-radius: 14px;
  padding: 34px 30px 28px;
  border: 1px solid rgba(26,46,43,0.06);
  box-shadow: 0 4px 16px rgba(26,46,43,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.45s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.testi-text-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.testi-text-card::after {
  content: '\201E';
  position: absolute;
  top: -26px;
  right: 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 180px;
  line-height: 1;
  color: var(--copper);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s var(--ease);
  transform: translateZ(0);
}
.testi-text-card:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(-4deg) scale(1.015);
  box-shadow:
    0 28px 60px rgba(26,46,43,0.14),
    0 8px 20px rgba(192,120,64,0.08);
  border-color: rgba(192,120,64,0.22);
}
.testi-text-card:hover::before { opacity: 1; }
.testi-text-card:hover::after {
  opacity: 0.14;
  transform: translateZ(40px) rotate(-4deg);
}
.testi-text-card > * { transform: translateZ(0); }
.testi-text-card:hover .testi-quote { transform: translateZ(24px); }
.testi-text-card:hover .testi-person { transform: translateZ(36px); }
.testi-text-card:hover .testi-stars { transform: translateZ(18px); }
.testi-quote,
.testi-person,
.testi-stars { transition: transform 0.45s var(--ease); }

.testi-text-card--placeholder {
  opacity: 0.85;
  background: rgba(26,46,43,0.02);
}
.testi-text-card--placeholder:hover {
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
}
.testi-text-card--placeholder::after { display: none; }

@media (hover: none) {
  .testi-text-card:hover {
    transform: translateY(-4px);
  }
  .testi-text-card:hover .testi-quote,
  .testi-text-card:hover .testi-person,
  .testi-text-card:hover .testi-stars { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .testi-text-card,
  .testi-text-card * { transition: none !important; }
  .testi-text-card:hover { transform: none; }
}
.testi-placeholder-mark {
  font-size: 46px;
  line-height: 1;
  color: var(--copper);
  opacity: 0.35;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--copper-d);
}

.testi-quote {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testi-quote--muted {
  font-style: normal;
  color: var(--text-muted);
  font-size: 13px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(26,46,43,0.08);
}
.testi-person--muted { opacity: 0.7; }

/* Text-Testimonial-Avatare — etwas größer, luftig, ohne harten Farbkasten */
.testi-text-card .testi-avatar {
  width: 48px;
  height: 48px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px rgba(192,120,64,0.22),
    0 4px 12px rgba(26,46,43,0.08);
}
/* Fallback-Hintergrund nur wenn kein Bild drin ist */
.testi-avatar:not(:has(img)) { background: var(--verdigris); }
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-avatar--muted {
  background: rgba(26,46,43,0.10);
  color: var(--text-muted);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(26,46,43,0.08);
}
.testi-meta { text-align: left; min-width: 0; }
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.testi-role {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .testi-video-grid,
  .testi-text-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 620px) {
  .testi-video-grid,
  .testi-text-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO BACKGROUND IMAGE LAYER
   ============================================================ */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: screen;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  transform: translate(-5%, -5%);
}

/* Ensure signal + cards are above the bg layer */
.signal-wrap, .fc-wrap { z-index: 10; }
.hero-copy { position: relative; z-index: 10; }

/* ============================================================
   HERO — VIDEO-BACKGROUND
   ============================================================ */
.hero-video-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.hero-video-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(7,16,14,0.0) 0%, rgba(7,16,14,0.35) 55%, rgba(7,16,14,0.85) 100%),
    linear-gradient(180deg, rgba(7,16,14,0.35) 0%, rgba(7,16,14,0.0) 25%, rgba(7,16,14,0.0) 60%, rgba(7,16,14,0.75) 100%);
  pointer-events: none;
}

/* Copy zentriert über Video */
.hero-copy-centered {
  position: relative;
  z-index: 20;
  text-align: center;
  max-width: 780px;
  padding: 100px 24px;
  margin: 0 auto;
}
.hero-copy-centered .hero-pre {
  justify-content: center;
  color: var(--copper);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-copy-centered .hero-h1 {
  text-shadow: 0 4px 32px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.hero-copy-centered .hero-sub {
  margin: 0 auto 40px;
  color: rgba(245,240,232,0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero-copy-centered .hero-ctas { justify-content: center; }
.hero-copy-centered .hero-trust {
  justify-content: center;
  color: rgba(245,240,232,0.9);
}
.hero-copy-centered .trust-badge {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ============================================================
   SPLIT-SCROLL — Links Text / Rechts Explosion (halbseitig)
   ============================================================ */
.split-scroll-wrapper {
  height: 300vh;
  position: relative;
  background: var(--bg);
}

.split-scroll {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.split-scroll::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.split-scroll-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-scroll-text {
  padding-right: 16px;
}
.split-scroll-h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 22px;
}
.split-scroll-h2 em {
  font-style: normal;
  color: var(--copper);
  background: var(--copper-gradient-short);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split-scroll-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,240,232,0.78);
  max-width: 480px;
  margin-bottom: 26px;
}
.split-scroll-list {
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-scroll-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: rgba(245,240,232,0.9);
  line-height: 1.5;
}
.split-scroll-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}
.split-scroll-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.split-scroll-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.exp-stage {
  position: absolute;
  inset: 0;
}

/* Origin Anchor — Mitte der rechten Spalte */
.exp-origin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;
  z-index: 10;
  pointer-events: none;
}

/* Explosion-Partikel */
.exp-el {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 15;
  will-change: transform, opacity;
  opacity: 0;
  transform: translate(0,0) scale(0.25);
  pointer-events: none;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.35));
}

.exp-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.exp-sq-sm { width: 110px; margin: -55px 0 0 -55px; }
.exp-ld-sm { width: 130px; margin: -43px 0 0 -65px; }
.exp-ld-md { width: 150px; margin: -50px 0 0 -75px; }
.exp-pt-md { width: 115px; margin: -77px 0 0 -57px; }

/* Partikel-v2 (freigestellt, Nano Banana) */
.exp-p-wide  { width: 170px; margin: -64px 0 0 -85px; }   /* 4:3 Laptop/Browser Mockups */
.exp-p-tall  { width: 130px; margin: -86px 0 0 -65px; }   /* 3:4 Workbook */
.exp-p-phone { width: 100px; margin: -89px 0 0 -50px; }   /* 9:16 iPhone */
.exp-p-thumb { width: 180px; margin: -51px 0 0 -90px; }   /* 16:9 YouTube Thumb */
.exp-p-ad    { width: 125px; margin: -78px 0 0 -62px; }   /* 4:5 Ad Creative */
.exp-img img { filter: drop-shadow(0 14px 28px rgba(0,0,0,0.35)); border-radius: 0; }

/* HTML-Partikel */
.exp-badge {
  width: auto;
}
.exp-badge-card {
  background: var(--ivory);
  color: var(--verdigris);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  min-width: 140px;
  transform: translate(-50%, -50%);
}
.exp-badge-label {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}
.exp-badge-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--verdigris);
  letter-spacing: -0.02em;
  line-height: 1;
}

.exp-avatars-card {
  background: var(--ivory);
  border-radius: 14px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
}
.exp-avatars-stack {
  display: flex;
}
.exp-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--ivory);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: var(--ivory);
}
.exp-avatar:first-child { margin-left: 0; }
.exp-avatar-more {
  background: var(--verdigris-d) !important;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}

.exp-toast {
  background: var(--ivory);
  color: var(--verdigris);
  border-radius: 14px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 12px;
  transform: translate(-50%, -50%);
  min-width: 200px;
}
.exp-toast-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #3ecf6a;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(62, 207, 106, 0.5);
}
.exp-toast-title {
  font-size: 13px; font-weight: 600; color: var(--verdigris);
  line-height: 1.2;
}
.exp-toast-sub {
  font-size: 11px; color: var(--copper);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ────────────────────────────────────────────────
   Neue Erfolgs-Story: Vorher → Logo → Partikel → Nachher
   ──────────────────────────────────────────────── */

/* Szenen-Layer (Scroll-getriebene Frame-Sequenz mit Alpha) */
.exp-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.exp-scene--frames {
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-scene-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.45));
  transform: scale(1.18);
  transform-origin: center bottom;
}

/* Zentrales Logo — Horizontal-Lockup, dezent über den Experten schwebend */
.exp-logo {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  filter: drop-shadow(0 12px 28px rgba(192, 120, 64, 0.35)) drop-shadow(0 0 24px rgba(192, 120, 64, 0.15));
  pointer-events: none;
}
.exp-logo--horizontal svg {
  width: clamp(180px, 22vw, 240px);
  height: auto;
  display: block;
}
.exp-logo-mark { width: 96px; height: auto; }
.exp-logo-wordmark {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.exp-logo-doze { color: var(--ivory); }
.exp-logo-nto  { color: var(--copper); }
.exp-logo-claim {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: -4px;
}

/* Benefit-Card (ersetzt umsatz.png) */
.exp-benefit-card {
  background: var(--ivory);
  color: var(--verdigris);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
}
.exp-benefit-card > svg {
  color: #22a55a;
  flex-shrink: 0;
}
.exp-benefit-num {
  font-size: 22px;
  font-weight: 700;
  color: #22a55a;
  line-height: 1;
  letter-spacing: -0.02em;
}
.exp-benefit-label {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 3px;
}

/* Social-Cards (LinkedIn, Instagram) */
.exp-social-card {
  background: var(--ivory);
  color: var(--verdigris);
  border-radius: 14px;
  padding: 10px 14px 10px 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  min-width: 160px;
}
.exp-social-card > svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
  color: #fff;
}
.exp-social--linkedin > svg { background: #0A66C2; }
.exp-social--instagram > svg {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}
.exp-social-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--verdigris);
  line-height: 1.2;
}
.exp-social-sub {
  font-size: 10px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.06em;
  color: var(--copper);
  margin-top: 2px;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  transition: opacity 0.5s var(--ease);
  animation: scroll-hint-bounce 2.2s ease-in-out infinite;
}
.scroll-hint svg { color: var(--copper); opacity: 0.75; }

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* Mobile */
@media (max-width: 900px) {
  .split-scroll-wrapper { height: auto; }
  .split-scroll { position: relative; height: auto; min-height: auto; padding: 80px 0; }
  .split-scroll-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .split-scroll-text { padding-right: 0; }
  .split-scroll-visual {
    height: 480px;
    min-height: 480px;
  }
  .exp-p-wide  { width: 140px; margin: -52px 0 0 -70px; }
  .exp-p-tall  { width: 108px; margin: -72px 0 0 -54px; }
  .exp-p-phone { width:  82px; margin: -73px 0 0 -41px; }
  .exp-p-thumb { width: 150px; margin: -42px 0 0 -75px; }
  .exp-p-ad    { width: 102px; margin: -64px 0 0 -51px; }
  .exp-sq-sm { width: 90px; margin: -45px 0 0 -45px; }
  .exp-ld-sm { width: 110px; margin: -36px 0 0 -55px; }
  .exp-ld-md { width: 125px; margin: -42px 0 0 -62px; }
  .exp-pt-md { width: 95px; margin: -63px 0 0 -47px; }
  .exp-badge-card, .exp-avatars-card, .exp-toast,
  .exp-benefit-card, .exp-social-card { transform: translate(-50%, -50%) scale(0.8); }
  .exp-scene, .exp-logo { display: none; }
  .scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-video-layer { background: var(--verdigris-gradient); }
  .split-scroll-wrapper { height: auto; }
  .split-scroll { position: relative; height: auto; min-height: auto; padding: 80px 0; }
  .exp-scene, .exp-logo { display: none; }
  .exp-el {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    display: inline-block;
    margin: 6px;
  }
  .exp-stage {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    inset: auto;
  }
  .scroll-hint { display: none; }
}
