/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

/* BODY */

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30,144,255,0.04), transparent 28%),
    radial-gradient(circle at bottom right, rgba(30,144,255,0.03), transparent 30%),
    #ffffff;
  color: #111111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow:
    0 4px 18px rgba(0,0,0,1),
    0 0 30px rgba(0,0,0,0.9);
}

.logo span {
  color: #1e90ff;
}

/* NAVIGATION */

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-shadow:
    0 4px 18px rgba(0,0,0,1),
    0 0 30px rgba(0,0,0,0.9);
  transition: all 0.25s ease;
  display: inline-block;
}

nav a:hover {
  color: #60a5fa;
  transform: translateY(-2px);
}
nav a.active {
  color: #60a5fa;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.68) 40%,
      rgba(0,0,0,0.35) 100%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.05)
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.hero-text {
  max-width: 720px;
}

.top-text {
  color: #3b82f6;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 28px;
  font-weight: 800;
}

.hero-description {
  font-size: 20px;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 40px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.25s ease;
}

.primary {
  background: #1e90ff;
  color: white;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* HERO INFO */

.hero-info {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #d1d5db;
}

/* HELP SECTION */

.help-section {
  padding: 90px 0;
}

.help-box {
  background: #f3f4f6;
  padding: 45px;
  border-radius: 24px;
}

.help-box h2 {
  margin-bottom: 15px;
  font-size: 34px;
}

/* TITLES */

.leistungen {
  padding: 110px 0;
  background: #f8fafc;
}

.ablauf {
  padding: 110px 0;
}
.leistungen h2,
.ablauf h2,
.kontakt h2,
.gebiet h2 {
  line-height: 1.1;
}

.gebiet,
.kontakt {
  padding: 90px 0;
}

.leistungen h2,
.gebiet h2,
.ablauf h2,
.kontakt h2 {
  font-size: 42px;
  margin-bottom: 45px;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.82);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.06),
    0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.12),
    0 10px 25px rgba(30,144,255,0.12);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(1.05) contrast(1.03);
}

.card:hover .card-image {
  transform: scale(1.06);
}

.card-content {
  padding: 30px;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.card p {
  color: #555;
}

/* GEBIET */

.gebiet {
  background: #111827;
  color: white;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.step {
  background: #f9fafb;
  padding: 30px;
  border-radius: 20px;
}

.step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #1e90ff;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: #555;
}

/* KONTAKT */

.kontakt {
  background: #ffffff;
  color: #111111;
  padding: 110px 0;
  text-align: left;
}

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

.kontakt h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 22px;
}

.kontakt-text {
  color: #444;
  font-size: 18px;
  margin-bottom: 28px;
}

.contact-form {
  margin-top: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #9ca3af;
  background: white;
  color: #111111;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 18px;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #333;
  font-size: 15px;
  margin-bottom: 22px;
}

.privacy-check input {
  width: auto;
  margin-top: 4px;
}

.kontakt-right img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

  .kontakt h2 {
    font-size: 32px;
  }

  .kontakt-right img {
    height: 360px;
  }
}


/* FOOTER */

.footer {
  background: #0b0b0b;
  color: #b5b5b5;
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 14px;
}

.footer p {
  color: #b5b5b5;
}

.footer a {
  color: #b5b5b5;
  text-decoration: none;
}

.footer a:hover {
  color: #1e90ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.25s ease;
}

.whatsapp-float img {
  width: 64px;
  height: 64px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.phone-float {
  position: fixed;
  right: 24px;
  bottom: 105px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.25s ease;
}

.phone-float img {
  width: 52px;
  height: 52px;
}

.phone-float:hover {
  transform: translateY(-4px) scale(1.05);
}
/* MENU */

.menu-toggle {
  display: none;
  font-size: 34px;
  color: white;
  cursor: pointer;
  text-shadow:
    0 4px 18px rgba(0,0,0,1),
    0 0 30px rgba(0,0,0,0.9);
}

/* ABOUT */

.about {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.about-image-box {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 50px;
}

.about-image {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.about-text {
  max-width: 850px;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.about-text p {
  color: #444;
  margin-bottom: 18px;
  font-size: 18px;
}

.stats-section {
  margin-top: -40px;
  padding: 40px 0 90px;
  position: relative;
  z-index: 4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-radius: 24px;
  background: #f8fafc;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box h3 {
  font-size: 52px;
  color: #1e90ff;
  margin-bottom: 12px;
}

.stat-box p {
  color: #555;
  font-size: 18px;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,1)
  );
  z-index: 2;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.2s;
}

.fade-delay-2 {
  animation-delay: 0.4s;
}

.fade-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {

  to {
    opacity: 1;
    transform: translateY(0);
  }

}
.gebiet-text {
  max-width: 760px;
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

.gebiet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gebiet-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
}
@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WHY US */

.why-us {
  margin-top: -70px;
  padding: 0 0 110px;
  position: relative;
  z-index: 5;
  background: transparent;
}

.why-us h2 {
  font-size: 42px;
  margin-bottom: 45px;
  line-height: 1.1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: #f8fafc;
  padding: 35px;
  border-radius: 24px;
  transition: 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.why-card p {
  color: #555;
  line-height: 1.7;
}

/* FAQ */

.faq {
  padding: 110px 0;
  background: #ffffff;
}

.faq h2 {
  font-size: 42px;
  margin-bottom: 45px;
  line-height: 1.1;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #f8fafc;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #555;
}

/* ANWALT */

.anwalt-section {
  padding: 110px 0;
  background: #111827;
  color: white;
}

.anwalt-box {
  max-width: 900px;
}

.anwalt-text {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}
.final-cta {
  padding: 110px 0;
  background: #0b0b0b;
  color: white;
  text-align: center;
}

.final-cta-box {
  max-width: 850px;
}

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

.final-cta p {
  color: #d1d5db;
  font-size: 18px;
  margin-bottom: 35px;
}
/* LEGAL PAGES */

.legal-page {
  padding: 120px 0;
  background: #ffffff;
  color: #111111;
}

.legal-container {
  max-width: 850px;
}

.legal-container h1 {
  font-size: 46px;
  margin-bottom: 35px;
}

.legal-container h2 {
  font-size: 24px;
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-container p {
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

.legal-container a {
  color: #1e90ff;
  text-decoration: none;
}

.back-link {
  display: inline-block;
  margin-bottom: 35px;
  font-weight: 600;
}

/* MOBILE */

@media (max-width: 768px) {

  .nav {
    flex-direction: row;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(15,15,15,0.72);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 22px;
    flex-direction: column;
    gap: 18px;
    display: none;
    min-width: 230px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
    animation: menuFade 0.25s ease;
  }

  nav.show {
    display: flex;
  }

  nav a {
    font-size: 17px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-description {
    font-size: 17px;
  }

  .leistungen h2,
  .gebiet h2,
  .ablauf h2,
  .kontakt h2 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about-image {
    height: 350px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .footer-content {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float img {
    width: 46px;
    height: 46px;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 24px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 15px;
  }

  .step span {
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
  .logo {
    font-size: 16px;
  }

  .header {
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 40px;
  }
  .phone-float {
    position: fixed;
    right: 24px;
    bottom: 105px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.25s ease;
  }

  .phone-float img {
    width: 52px;
    height: 52px;
  }

  .phone-float:hover {
    transform: translateY(-4px) scale(1.05);
  }
  .faq h2 {
    font-size: 32px;
  }

  .faq-item {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .final-cta h2 {
    font-size: 34px;
  }
}
