body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  gap: 30px;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 50px;
}

.logo-box span {
  font-size: 20px;
  font-weight: bold;
}

.logo-box {
  flex-shrink: 0;
}

/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transition: 0.3s;
  white-space: nowrap;
  font-size: 14px;
}

nav a:hover {
  opacity: 1;
  color: #00aaff;
}

/* HERO */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tag {
  color: #00aaff;
  font-size: 12px;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 40px;
  margin: 10px 0;
}

.sub {
  color: gray;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #00aaff, #0077ff);
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px #00aaff;
  color: white;
}

/* VIDEO BACKGROUND */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  filter: brightness(0.6) contrast(1.1);
  opacity: 0;
  animation: videoFade 1.5s ease forwards;
}

@keyframes videoFade {
  to {
    opacity: 1;
  }
}

.hero {
  margin-top: 80px;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00aaff;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 20px #00aaff;
  transition: 0.3s;
  z-index: 999;
}

.whatsapp:hover {
  transform: scale(1.1);
}
/* CONTENT ÜBER VIDEO */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}


.services {
  padding: 100px 10%;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.service-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 15px;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px #00aaff;
}
.cta {
  padding: 120px 10%;
  text-align: center;
  background: linear-gradient(to top, black, #001a25);
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  color: gray;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 15px 35px;
  background: linear-gradient(45deg, #00aaff, #0077ff);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #00aaff;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0,170,255,0.2);
  filter: blur(100px);
  border-radius: 50%;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}


/* TRUST & PRICING FIX */
.trust,
.preise {
  padding: 110px 10%;
  text-align: center;
}

.trust-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.trust-box,
.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  transition: 0.3s;
}

.trust-box:hover,
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,170,255,0.35);
}

.price {
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.price-card a,
.contact-options a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: linear-gradient(45deg, #00aaff, #0077ff);
  color: white;
  text-decoration: none;
  border-radius: 10px;
}

.contact-options {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* PROOF / RESULTS SECTION */
.proof {
  padding: 110px 10%;
  text-align: center;
  background: linear-gradient(to bottom, #00111a, #000000);
}

.proof h2 {
  font-size: 38px;
  margin: 12px 0 45px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 34px 28px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.proof-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,170,255,0.18), transparent 45%);
  opacity: 0;
  transition: 0.3s;
}

.proof-box:hover::before {
  opacity: 1;
}

.proof-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,170,255,0.35);
  border-color: rgba(0,170,255,0.5);
}

.proof-box span {
  display: inline-block;
  color: #00aaff;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.proof-box h3,
.proof-box p,
.proof-box span {
  position: relative;
  z-index: 2;
}

.proof-box h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.proof-box p {
  color: gray;
  line-height: 1.6;
}

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

  .navbar {
    padding: 16px 6%;
  }
}


/* FAQ SECTION */
.faq {
  padding: 110px 10%;
  text-align: center;
  background: linear-gradient(to bottom, #000000, #00111a);
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: #00aaff;
  box-shadow: 0 0 20px rgba(0,170,255,0.3);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: gray;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 60px 10%;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-brand img {
  width: 40px;
}

.footer-brand span {
  font-weight: bold;
  font-size: 18px;
}

.footer p {
  color: gray;
  margin: 10px 0;
}

.footer-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: #00aaff;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.6;
}