:root {
  --bg: #f4f8fb;
  --main: #fff;
  --text: #222;
  --primary: #357ab8;
  --secondary: #4a90e2;
  --banner-gradient: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  --banner-shadow: 0 8px 40px rgba(67,233,123,0.18);
  --card-bg: #f4f8fb;
  --card-border: #e0f7ef;
  --input-bg: #f8fffa;
  --input-border: #b2f2d7;
  --scrollbar-bg: #e0f7ef;
  --scrollbar-thumb: #43e97b;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  /* Sanfter, mehrfarbiger Hintergrundverlauf */
  background: linear-gradient(120deg, #43e97b 0%, #a3c8f5 40%, #f4a3e7 80%, #ff00cc 100%);
  margin: 0;
  padding: 0;
}

h1 {
  color: #357ab8;
  text-align: center;
  margin-top: 48px;
  font-size: 2.5em;
  letter-spacing: 1px;
}

h2 {
  color: #4a90e2;
  text-align: center;
  margin-top: 12px;
  font-size: 1.5em;
  font-weight: 400;
}

p {
  color: #222;
  text-align: center;
  font-size: 1.1em;
  margin-top: 18px;
}

.banner {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  padding: 60px 0 40px 0;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 40px rgba(67,233,123,0.18);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.banner::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 120%;
  height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(67,233,123,0.01) 80%);
  z-index: 1;
}
.banner h1 {
  color: #fff;
  font-size: 3em;
  margin: 0 0 16px 0;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(67,233,123,0.18);
  position: relative;
  z-index: 2;
}
.banner p {
  color: #eafff3;
  font-size: 1.5em;
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

nav, .main-navbar, .main-nav, .new-nav {
  background: #23272b !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border-radius: 18px;
}
nav ul li a, .nav-links li a {
  color: #fff !important;
}

nav {
  background: var(--main);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(53,122,184,0.10);
  margin: -32px auto 32px auto;
  max-width: 900px;
  position: relative;
  z-index: 10;
}
body.night-mode nav {
  background: #23272b;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 22px;
}
nav ul li a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15em;
  padding: 18px 0 14px 0;
  display: block;
  transition: color 0.2s, background 0.2s;
}
body.night-mode nav ul li a {
  color: #fff;
}
nav ul li a:hover, .nav-links li a:hover {
  color: #43e97b !important;
  background: rgba(67,233,123,0.10);
  border-radius: 8px;
}
body.night-mode nav ul li a:hover, body.night-mode .nav-links li a:hover {
  color: #38f9d7 !important;
  background: rgba(56,249,215,0.10);
}
nav ul li a:hover {
  color: #43e97b;
}
body.night-mode nav ul li a:hover {
  color: #38f9d7;
}

.main-content {
  max-width: 900px;
  margin: 0 auto 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(53,122,184,0.10);
  padding: 48px 44px 44px 44px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.section {
  margin-bottom: 48px;
  padding-bottom: 22px;
  border-bottom: 1.5px solid #e0e0e0;
}
.section:last-child {
  border-bottom: none;
}
.section h2 {
  color: #357ab8;
  margin-bottom: 18px;
  text-align: left;
  font-size: 1.5em;
  font-weight: 700;
}
.section ul {
  padding-left: 24px;
}
.section li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.1em;
}

.referenz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.referenz-card {
  background: #0000FF;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(53,122,184,0.13);
  padding: 22px 18px;
  text-align: center;
  border: 1.5px solid #e0f7ef;
  transition: transform 0.15s, box-shadow 0.15s;
}
body.night-mode .referenz-card {
  color: #fff;
}
.referenz-card strong, .referenz-card span {
  color: #fff;
}
.referenz-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 32px rgba(67,233,123,0.18);
}
.referenz-card img {
  display: block;
  margin: 0 auto 10px auto;
  background: transparent;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  width: 60px;
  height: 60px;
  object-fit: contain;
}

button, .btn {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(67,233,123,0.13);
  transition: background 0.2s, transform 0.1s;
}
button:hover, .btn:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
  transform: translateY(-2px) scale(1.05);
}

input, textarea {
  border: 1.5px solid #b2f2d7;
  border-radius: 8px;
  padding: 12px;
  font-size: 1.05em;
  background: #f8fffa;
  margin-top: 8px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  border: 1.5px solid #43e97b;
  outline: none;
}

::-webkit-scrollbar {
  width: 12px;
  background: #e0f7ef;
}
::-webkit-scrollbar-thumb {
  background: #43e97b;
  border-radius: 8px;
}

/* Entfernt: .night-toggle Button und Nightmode Styles */
.night-toggle { display: none !important; }
body.night-mode { background: unset; }
body.night-mode .main-content { background: unset !important; }

.blue-btn {
  background: linear-gradient(90deg, #357ab8 0%, #4a90e2 100%) !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(53,122,184,0.13);
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
  margin: 0 auto;
}
.blue-btn:hover {
  background: linear-gradient(90deg, #4a90e2 0%, #357ab8 100%) !important;
  transform: translateY(-2px) scale(1.05);
}
.section#kontakt p {
  text-align: center;
}

.main-header {
  background: #181b1e;
  box-shadow: 0 2px 12px rgba(53,122,184,0.10);
  padding: 0;
}

.new-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px 18px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 28px !important;
  height: 28px !important;
  border-radius: 8px;
  vertical-align: middle;
}
.nav-title {
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #43e97b, #357ab8, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s linear infinite alternate;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover {
  color: #43e97b;
  background: rgba(67,233,123,0.10);
  border-radius: 8px;
}

/* Zusätzliche Stile für die Navbar-Links */
.nav-links .academy-link {
  color: #fff;
  background: #43e97b;
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
  margin-left: 4px;
  display: block;
  text-align: center;
  min-width: 100px;
}
.nav-links .academy-link:hover {
  background: #38f9d7;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: linear-gradient(90deg, #23272b 60%, #181b1e 100%);
  padding: 64px 0 48px 0;
  min-height: 340px;
}
.hero-content {
  max-width: 480px;
}
.hero-content h1 {
  font-size: 2.5em;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #fff;
  background: linear-gradient(90deg, #fff, #43e97b, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 6s linear infinite alternate;
}
.hero-content p {
  font-size: 1.25em;
  color: #e0e0e0;
  margin-bottom: 32px;
}
.hero-btn {
  font-size: 1.1em;
  padding: 16px 36px;
  border-radius: 10px;
  background: linear-gradient(90deg, #357ab8 0%, #43e97b 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 12px rgba(67,233,123,0.13);
  transition: background 0.2s, transform 0.1s;
}
.hero-btn:hover {
  background: linear-gradient(90deg, #43e97b 0%, #357ab8 100%);
  transform: translateY(-2px) scale(1.05);
}
.hero-image img {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(53,122,184,0.13);
  background: #23272b;
}

.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 32px 24px;
}
.features h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 36px;
  color: #43e97b;
  background: linear-gradient(90deg, #43e97b, #ff00cc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature-card {
  background: #23272b;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(53,122,184,0.10);
  padding: 32px 28px;
  max-width: 320px;
  flex: 1 1 260px;
  text-align: center;
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 32px rgba(67,233,123,0.18);
}
.feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  /* Optional: für Retina-Schärfe */
  image-rendering: auto;
}
@media (max-width: 700px) {
  .feature-icon {
    width: 70px;
    height: 70px;
  }
}
.feature-card h3 {
  margin: 0 0 12px 0;
  font-size: 1.2em;
  color: #43e97b;
}
.feature-card p {
  color: #e0e0e0;
  font-size: 1em;
}

.about {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 32px 24px;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.about-portrait {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(53,122,184,0.10);
  background: #23272b;
}
.about-content h2 {
  margin: 0 0 12px 0;
  color: #43e97b;
}
.about-content p {
  color: #e0e0e0;
  font-size: 1.1em;
}

.references {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 32px 24px;
}
.references h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 36px;
  color: #43e97b;
}
.references-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.reference-card {
  background: #23272b;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(53,122,184,0.10);
  padding: 24px 18px;
  max-width: 300px;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.reference-card img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #181b1e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.reference-card strong {
  color: #43e97b;
  font-size: 1.1em;
}
.reference-card p {
  color: #e0e0e0;
  margin: 0;
  font-size: 1em;
}

.contact {
  max-width: 700px;
  margin: 0 auto 48px auto;
  padding: 56px 24px 32px 24px;
  text-align: center;
}
.contact h2 {
  color: #43e97b;
  margin-bottom: 18px;
}
.contact p {
  color: #e0e0e0;
  margin-bottom: 24px;
}
.contact .btn {
  font-size: 1.1em;
  padding: 16px 36px;
  border-radius: 10px;
  background: linear-gradient(90deg, #357ab8 0%, #43e97b 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 12px rgba(67,233,123,0.13);
  transition: background 0.2s, transform 0.1s;
}
.contact .btn:hover {
  background: linear-gradient(90deg, #43e97b 0%, #357ab8 100%);
  transform: translateY(-2px) scale(1.05);
}

.footer {
  background: #23272b;
  color: #e0e0e0;
  padding: 32px 0 18px 0;
  text-align: center;
  font-size: 1em;
  border-radius: 24px 24px 0 0;
  margin-top: 48px;
}
.footer-content a {
  color: #43e97b;
  text-decoration: none;
  margin: 0 8px;
}
.footer-content a:hover {
  text-decoration: underline;
}

.ad-banner,
.ad-banner-left,
.ad-banner-right {
  display: none !important;
}
.ad-banner {
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
  width: 160px;
  max-width: 22vw;
  height: auto;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border-radius: 0 28px 28px 0;
  background: #fff;
  transition: width 0.2s, left 0.2s, right 0.2s, top 0.2s;
}
.ad-banner-right {
  right: 64px;
  left: auto;
  border-radius: 28px 0 0 28px;
}
.ad-banner-left {
  left: 64px;
  right: auto;
}
@media (max-width: 1100px) {
  .ad-banner {
    width: 110px;
    border-radius: 0 18px 18px 0;
  }
  .ad-banner-right {
    right: 24px;
    border-radius: 18px 0 0 18px;
  }
  .ad-banner-left {
    left: 24px;
  }
}
@media (max-width: 800px) {
  .ad-banner {
    width: 70px;
    border-radius: 0 12px 12px 0;
  }
  .ad-banner-right {
    right: 8px;
    border-radius: 12px 0 0 12px;
  }
  .ad-banner-left {
    left: 8px;
  }
}
@media (max-width: 600px) {
  .ad-banner {
    display: none;
  }
}

/* Responsives Design */
@media (max-width: 1200px) {
  .main-content {
    max-width: 700px;
    padding: 20px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .banner h1 {
    font-size: 2.5em;
  }

  .banner p {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .main-content {
    max-width: 90%;
    padding: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 8px 0;
  }

  .banner h1 {
    font-size: 2em;
  }

  .banner p {
    font-size: 1em;
  }
}

/* Burger-Menü für kleine Geräte */
@media (max-width: 768px) {
  .main-nav {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--main);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .burger-menu {
    display: block;
    cursor: pointer;
    background: var(--primary);
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-content {
    max-width: 100%;
    padding: 5px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }

  .banner h1 {
    font-size: 1.5em;
  }

  .banner p {
    font-size: 0.9em;
  }
}

@media (max-width: 900px) {
  .main-header, .features, .about, .references, .contact {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .new-nav {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8vw 18px 8vw;
  }
  .nav-links {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .hero {
    flex-direction: column;
    gap: 18px;
    padding: 32px 0 18px 0;
  }
  .features-grid, .references-grid {
    flex-direction: column;
    gap: 18px;
  }
  .about-content {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.6em;
    margin-top: 28px;
  }
  h2 {
    font-size: 1.1em;
  }
  p {
    font-size: 1em;
  }
  .main-content {
    padding: 10px 2vw 10px 2vw;
  }
}
@media (max-width: 500px) {
  .main-content {
    padding: 8px 2vw 8px 2vw;
  }
  h1 {
    font-size: 1.2em;
    margin-top: 18px;
  }
  .banner {
    padding: 18px 0 8px 0;
    border-radius: 0 0 14px 14px;
  }
}

.kontakt-form {
  max-width: 740px !important;
  padding: 64px 58px 60px 58px !important;
  border-radius: 28px !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.16) !important;
}

.hero-wild {
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(120deg, #43e97b 0%, #ff00cc 100%);
            position: relative;
            overflow: hidden;
            border-radius: 0 0 80px 80px;
            box-shadow: 0 8px 64px #ff00cc80;
        }
        .hero-wild h1 {
            font-size: 3.5em;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #fff, #43e97b, #ff00cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            /* text-fill-color entfernt, da nicht standardisiert */
            animation: gradient-move 6s linear infinite alternate;
            margin-bottom: 0.2em;
            text-shadow: 0 8px 32px #43e97b40;
        }
        .hero-wild p {
            font-size: 1.6em;
            color: #fff;
            font-weight: 600;
            margin-bottom: 2em;
            text-shadow: 0 2px 12px #23272b80;
        }
        .hero-wild .cta-btn {
            background: linear-gradient(90deg, #ff00cc, #43e97b);
            color: #fff;
            font-size: 1.4em;
            font-weight: 800;
            border: none;
            border-radius: 18px;
            padding: 22px 60px;
            box-shadow: 0 4px 32px #ff00cc80;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            text-decoration: none;
            margin-top: 1em;
        }
        .hero-wild .cta-btn:hover {
            background: linear-gradient(90deg, #43e97b, #ff00cc);
            color: #23272b;
            transform: scale(1.08) rotate(-2deg);
        }
        .hero-wild .hero-bg-anim {
            position: absolute;
            top: -120px; left: -120px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, #ff00cc88 0%, transparent 80%);
            z-index: 0;
            filter: blur(24px);
            animation: float 5s ease-in-out infinite alternate;
        }
        .hero-wild .hero-bg-anim2 {
            position: absolute;
            bottom: -120px; right: -120px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, #43e97b88 0%, transparent 80%);
            z-index: 0;
            filter: blur(24px);
            animation: float2 7s ease-in-out infinite alternate;
        }
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(40px); }
        }
        @keyframes float2 {
            0% { transform: translateY(0); }
            100% { transform: translateY(-40px); }
        }
        .section-wild {
            margin: 80px auto 0 auto;
            max-width: 1100px;
            padding: 48px 24px;
            border-radius: 32px;
            background: linear-gradient(120deg, #23272b 60%, #357ab8 100%);
            box-shadow: 0 4px 32px #357ab880;
            color: #fff;
            text-align: center;
        }
        .section-wild h2 {
            font-size: 2.3em;
            font-weight: 900;
            background: linear-gradient(90deg, #43e97b, #ff00cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 32px;
        }
        .features-wild {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }
        .feature-wild {
            background: linear-gradient(120deg, #181b1e 60%, #43e97b 100%);
            border-radius: 24px;
            box-shadow: 0 4px 32px #43e97b80;
            padding: 36px 32px;
            min-width: 240px;
            max-width: 320px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }
        .feature-wild:hover {
            transform: scale(1.07) rotate(-2deg);
            box-shadow: 0 8px 48px #ff00cc80;
        }
        .feature-wild img {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            margin-bottom: 18px;
            box-shadow: 0 2px 12px #43e97b80;
        }
        .feature-wild h3 {
            font-size: 1.5em;
            font-weight: 800;
            color: #43e97b;
            margin-bottom: 12px;
        }
        .feature-wild p {
            color: #fff;
            font-size: 1.1em;
        }
        .about-wild {
            display: flex;
            align-items: center;
            gap: 48px;
            justify-content: center;
            margin: 80px auto 0 auto;
            max-width: 900px;
            background: linear-gradient(90deg, #23272b 60%, #ff00cc 100%);
            border-radius: 32px;
            box-shadow: 0 4px 32px #ff00cc80;
            padding: 48px 36px;
        }
        .about-wild img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 6px solid #43e97b;
            box-shadow: 0 4px 32px #43e97b80;
        }
        .about-wild .about-content-wild h2 {
            font-size: 2.2em;
            font-weight: 900;
            background: linear-gradient(90deg, #43e97b, #ff00cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .about-wild .about-content-wild p {
            font-size: 1.2em;
            color: #fff;
            margin-top: 18px;
        }
        .references-wild {
            margin: 80px auto 0 auto;
            max-width: 1200px;
            text-align: center;
        }
        .references-wild h2 {
            font-size: 2.2em;
            font-weight: 900;
            background: linear-gradient(90deg, #43e97b, #ff00cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 32px;
        }
        .references-grid-wild {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .reference-card-wild {
            background: linear-gradient(120deg, #23272b 60%, #357ab8 100%);
            border-radius: 24px;
            box-shadow: 0 4px 32px #357ab880;
            padding: 32px 24px;
            min-width: 220px;
            max-width: 320px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .reference-card-wild:hover {
            transform: scale(1.07) rotate(2deg);
            box-shadow: 0 8px 48px #43e97b80;
        }
        .reference-card-wild img {
            width: 100%;
            max-width: 180px;
            border-radius: 16px;
            margin-bottom: 12px;
            box-shadow: 0 2px 12px #ff00cc80;
        }
        .reference-card-wild strong {
            color: #43e97b;
            font-size: 1.2em;
        }
        .reference-card-wild p {
            color: #fff;
        }
        .footer-wild {
            margin-top: 96px;
            background: #23272b;
            color: #fff;
            text-align: center;
            padding: 32px 0 16px 0;
            font-size: 1.1em;
            border-radius: 32px 32px 0 0;
            box-shadow: 0 -2px 24px #357ab880;
        }
        .footer-wild a {
            color: #43e97b;
            text-decoration: underline;
        }
        @media (max-width: 900px) {
            .features-wild, .references-grid-wild, .about-wild {
                flex-direction: column;
                gap: 32px;
                align-items: center;
            }
            .about-wild {
                padding: 32px 12px;
            }
        }
        @media (max-width: 600px) {
            .main-nav {
                flex-direction: column;
                gap: 12px;
            }
            .nav-title {
                font-size: 1.2em;
            }
            .hero-wild h1 {
                font-size: 2em;
            }
            .about-wild img {
                width: 100px;
                height: 100px;
            }
        }