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

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0c10;
  color: #ededf0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* cinematic custom scroll */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #14171c;
}
::-webkit-scrollbar-thumb {
  background: #2c7da0;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3b9bcf;
}

/* GLOBAL & CINEMATIC OVERLAYS */
.section {
  padding: 100px 5%;
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* NEON GLOW EFFECTS */
.glow-text {
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.5),
    0 0 20px rgba(0, 180, 255, 0.3);
}
.btn-glow {
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 255, 210, 0.3);
}
.btn-glow:hover {
  box-shadow: 0 0 22px rgba(0, 230, 250, 0.8);
  transform: translateY(-3px);
}

/* NAVBAR (cinematic transparency) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 0);
}
.navbar.scrolled {
  padding: 14px 5%;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;

  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}
.circle-logo {
  display: inline-block;
}
.logo i {
  color: #2c9aff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  margin-right: 6px;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #eef5ff;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2c9aff;
  transition: 0.3s;
}
.nav-links a:hover:after {
  width: 100%;
}
.nav-links a:hover {
  color: #8cd4ff;
}
.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* HERO SECTION - CINEMATIC SPLASH */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #02070f 0%, #091a2a 100%);
}
.hero-bg {
  position: absolute;
  top: -10;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  filter: brightness(0.7) contrast(1.2);
  transition: transform 8s ease;
  object-position: center 100%;
}
.hero:hover .hero-bg {
  transform: scale(1.02);
}
.hero .container {
  z-index: 2;
  text-align: left;
  animation: fadeUp 1.2s ease-out;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.electric-accent {
  color: #e43bfc;
  text-shadow: 0 0 12px #9c129a;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #ccddee;
  font-weight: 400;
  margin-top: 0.5rem;
}
.cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn {
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-primary {
  background: linear-gradient(95deg, #b700dd8a, #e43bfc);
  color: white;
  border: 1px solid rgb(153, 12, 158);
}
.btn-outline {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid #e43bfc;
  color: #eef5ff;
}
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

/* Section Headings cinematic style */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #ffffff, #8acdff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  color: #9aaec5;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  border-left: 3px solid #2c9aff;
  padding-left: 18px;
}

/* cards */
.services-grid,
.features-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  flex: 1 1 250px; /* responsive equal widths */
  min-height: 160px; /* all cards same height */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  background: rgba(18, 25, 40, 0.65);
  backdrop-filter: blur(5px);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 160, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: white;
}
.service-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #2c9aff;
  box-shadow: 0 24px 44px rgba(0, 160, 255, 0.2);
  background: rgba(22, 32, 55, 0.85);
}
.service-card i,
.feature-card i {
  font-size: 2.5rem;
  color: #995bab;
  margin-bottom: 1.3rem;
}
.service-card h3,
.feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

/* Unsere referenzen */

.showcase-preview {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  margin-top: 30px;

  text-decoration: none;

  border: 1px solid rgba(228, 59, 252, 0.2);

  background: #111827;

  transition: 0.45s ease;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.showcase-preview:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 70px rgba(228, 59, 252, 0.18);
}

.showcase-preview img {
  width: 100%;
  height: 520px;
  object-fit: cover;

  transition: 0.6s ease;
}

.showcase-preview:hover img {
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 50px;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(228, 59, 252, 0.12);

  border: 1px solid rgba(228, 59, 252, 0.25);

  color: #f2bcff;

  margin-bottom: 22px;
}

.showcase-overlay h3 {
  font-size: clamp(2rem, 5vw, 4rem);

  color: white;

  margin-bottom: 18px;

  line-height: 1.05;
}

.showcase-overlay p {
  max-width: 700px;

  color: #d7e1ee;

  line-height: 1.8;

  margin-bottom: 28px;

  font-size: 1.05rem;
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;

  padding: 14px 26px;

  border-radius: 50px;

  background: linear-gradient(90deg, #e53bfc36, #b72bd4);

  color: white;

  font-weight: 600;

  transition: 0.3s ease;
}

.showcase-preview:hover .showcase-btn {
  transform: translateX(6px);
}

@media (max-width: 700px) {
  .showcase-preview img {
    height: 420px;
  }

  .showcase-overlay {
    padding: 30px;
  }
}

/* about section with parallax and cinematic flair */
.about {
  background: linear-gradient(145deg, #0b1018, #03070f);
  position: relative;
}
.about-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-text p {
  line-height: 1.6;
  margin: 1rem 0;
  color: #bfd6f0;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
}
.stat {
  text-align: center;
}
.stat h4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e43bfc;
}
.about-image {
  flex: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.about-image:hover img {
  transform: scale(1.03);
}

/* contact form cinematic */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.contact-info,
.contact-form {
  flex: 1;
  background: rgba(10, 18, 28, 0.6);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid rgba(0, 180, 250, 0.3);
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.info-item i {
  font-size: 1.8rem;
  width: 40px;
  color: #e43bfc;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 1.2rem;
  background: #0f1620;
  border: 1px solid #2a4058;
  border-radius: 24px;
  color: white;
  font-family: inherit;
  transition: 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3bc0fc;
  box-shadow: 0 0 8px #0099ff;
}
.contact-form button {
  background: linear-gradient(95deg, #da82e629, #e43bfc);
  border: none;
  width: 100%;
  border-radius: 100px;
  height: 50px;
}
/* FOOTER */

.footer {
  background: #03060c;
  padding: 40px 5% 20px;
  border-top: 1px solid rgba(228, 59, 252, 0.15);
  text-align: center;
}

.footer-credit {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-credit a {
  color: #b8c7ff;
  text-decoration: none;
  font-size: 0.85rem;

  transition:
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;

  display: inline-block;
}

.footer-credit a:hover {
  color: #e43bfc;

  text-shadow:
    0 0 8px rgba(228, 59, 252, 0.8),
    0 0 18px rgba(228, 59, 252, 0.5);

  transform: translateY(-2px);
}

/* scrolling reveal animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1),
    transform 0.7s ease;
}
.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(3, 8, 18, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    gap: 2.5rem;
    z-index: 999;
    border-left: 1px solid #2c9aff;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-btn {
    display: block;
    z-index: 1001;
  }
  .navbar.scrolled .menu-btn {
    color: white;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* lightning pulse effect on CTA */
.pulse-electric {
  animation: pulseRing 1.8s infinite;
}
@keyframes pulseRing {
  0% {
    text-shadow: 0 0 0px #2c9aff;
  }
  70% {
    text-shadow: 0 0 12px #00e0ff;
  }
  100% {
    text-shadow: 0 0 0px #2c9aff;
  }
}
