* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 132, 255, 0.16), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(140, 0, 255, 0.14), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.header-btn {
  color: #050505;
  background: #ffffff;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 145px 7vw 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(0, 140, 255, 0.4), transparent 35%),
    radial-gradient(circle at 18% 72%, rgba(151, 71, 255, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 45%);
  transform: translateY(0);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #050505 95%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #b8b8b8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1 {
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin: 10px 0 30px;
  max-width: 1100px;
}

h2 {
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0 0 38px;
  max-width: 1000px;
}

h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

p {
  font-size: 20px;
  line-height: 1.6;
  color: #c9c9c9;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 17px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: #ffffff;
  color: #050505;
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(255,255,255,0.13);
}

.section {
  padding: 120px 7vw;
  position: relative;
}

.proof {
  padding-top: 40px;
  padding-bottom: 60px;
}

.proof-text {
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #ffffff;
  max-width: 1050px;
}

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

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

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

.card {
  min-height: 210px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  color: #ffffff;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 44px 110px rgba(0,0,0,0.52);
  background: linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.055));
}

.card p {
  font-size: 16px;
  margin: 0;
}

.pain-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: #8ab4ff;
  font-weight: 800;
}

.section-btn {
  margin-top: 34px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  max-width: 930px;
}

.benefit-item {
  padding: 26px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.09);
}

.benefit-item strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.benefit-item p {
  margin: 10px 0 0;
  font-size: 17px;
}

.steps {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.step {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 21px;
}

.step strong {
  color: #8ab4ff;
  min-width: 42px;
}

.why p {
  font-size: 24px;
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(0,140,255,0.24), transparent 45%);
  padding-bottom: 150px;
}

.cta h2,
.cta p {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 88px 6vw;
  }

  .hero {
    padding: 130px 6vw 75px;
  }

  .site-header {
    padding: 17px 6vw;
  }

  .header-btn {
    display: none;
  }

  .step {
    align-items: flex-start;
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }
}
.impulse {
  padding: 0 7vw 45px;
  margin-top: -110px;
  position: relative;
  z-index: 5;
}

.impulse-box {
  max-width: 960px;
  padding: 20px 24px;
  border-radius: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(138, 180, 255, 0.22);
  box-shadow: 0 18px 60px rgba(0, 102, 255, 0.08);
  backdrop-filter: blur(14px);
}

.impulse-box span {
  font-size: 22px;
  line-height: 1.2;
}

.impulse-box p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  max-width: 820px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* REVIEW FIX FINAL */

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

.review-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.review-top div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-top strong {
  font-size: 14px;
}

.role {
  font-size: 12px;
  color: #aaa;
}

.stars {
  color: #ffd36a;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

 .logo-marquee {
  overflow: hidden;
  width: 100%;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-block;
  color: rgba(255,255,255,0.72);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .impulse {
    margin-top: -35px;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .impulse-box {
    flex-direction: column;
  }

  .marquee-track span {
    font-size: 18px;
  }
}


/* Dot header */ 

.live-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* kleiner lassen */
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.08);
  border: 1px solid rgba(0, 255, 120, 0.25);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 255, 120, 0.08);
  position: relative;
  z-index: 10;
}

.live-stat strong {
  color: #8ab4ff;
  font-weight: 900;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: #00ff88;
  position: relative;
  display: inline-block;

  margin-right: 6px; /* 🔥 DAS ist der echte Abstand */
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
}

/* Animation */
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 136, 0.5);
  animation: pulseDot 1.5s ease-out infinite;
}


@keyframes pulseDot {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
}

/* Stolper Stopper */
.hero-bg {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.site-header {
  transform: translateZ(0);
}

.hero {
  isolation: isolate;
}

/* Scroll-gesteuerter H1 & H2 Glow */
h1.glow-text,
h2.glow-text {
  background-image: linear-gradient(
    110deg,
    #ffffff 0%,
    #ffffff 30%,
    #00ff88 48%,
    #8ab4ff 52%,
    #ffffff 70%,
    #ffffff 100%
  );

  background-size: 350% 100%;
  background-position: var(--glow-pos, 90%) 20%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: none;
}