.logo-title img {
  height: 40px;
  width: auto;
}
.main-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.step-top {
  margin-bottom: 20px;
}

.step-label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

/* Background Bar */
.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  overflow: hidden;
}

/* Moving Progress */
.progress {
  height: 100%;
  width: 0%;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(180, 230, 255, 0.8),
    rgba(120, 200, 255, 0.9),
    rgba(200, 255, 255, 0.8)
  );

  box-shadow:
    0 0 15px rgba(120, 200, 255, 0.6),
    0 0 30px rgba(180, 230, 255, 0.4);

  transition: width 0.4s ease;
}
.glass-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(123 136 162);
  border-radius: 24px;

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);

  width: 90%; /* responsive */
  max-width: 400px; /* macht die Box kleiner */
  margin: 80px auto; /* zentriert horizontal + Abstand oben */
  padding: 50px 40px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* verstecke Standard Radio */
.radio-group input[type="radio"] {
  display: none;
}

/* Label wird zur Glass-Card */
.radio-group label {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;

  cursor: pointer;

  transition: all 0.25s ease;
}

/* Hover Effekt */
.radio-group label:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ACTIVE (wenn ausgewählt) */
.radio-group input[type="radio"]:checked + span {
  font-weight: 600;
}

/* Label wenn selected (wichtig!) */
.radio-group input[type="radio"]:checked + span,
.radio-group label:has(input[type="radio"]:checked) {
  background: rgba(180, 230, 255, 0.25);
  border: 1px solid rgba(180, 230, 255, 0.6);
  box-shadow: 0 0 20px rgba(120, 200, 255, 0.3);
}

.form-group {
  margin-top: 20px;
}

.form-group select {
  width: 100%;
  box-sizing: border-box;

  padding: 12px 15px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);

  color: white;
  font-family: "Poppins", sans-serif;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  outline: none;
  cursor: pointer;

  transition: all 0.25s ease;

  /* Pfeil verstecken/modernisieren */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* eigener Dropdown-Pfeil */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.form-group select:focus {
  border: 1px solid rgba(120, 200, 255, 0.7);
  box-shadow: 0 0 15px rgba(120, 200, 255, 0.3);
}

.form-group select option {
  background: #0b1a2a;
  color: white;
}

.form-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 15px;

  background: transparent; /* kein Hintergrund */
  border: 1px solid rgba(255, 255, 255, 0.4); /* feine Umrandung */

  border-radius: 10px;

  color: white; /* Textfarbe */
  font-family: "Poppins", sans-serif;

  outline: none; /* entfernt blauen Fokus-Rahmen */
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
  width: 100%;
  min-height: 120px;

  box-sizing: border-box;

  padding: 12px 15px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: white;
  font-family: "Poppins", sans-serif;

  resize: none; /* optional: verhindert hässliches ziehen */
  outline: none;

  transition: all 0.25s ease;
}

.form-group textarea:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.form-group textarea:focus {
  border: 1px solid rgba(120, 200, 255, 0.7);
  box-shadow: 0 0 18px rgba(120, 200, 255, 0.3);
}

.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Poppins", sans-serif;
}

.checkbox-group {
  margin-top: 20px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;

  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;

  user-select: none;
}

/* Standard Checkbox verstecken */
.custom-checkbox input {
  display: none;
}

/* Neues Kästchen */
.checkmark {
  width: 22px;
  height: 22px;

  border-radius: 6px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
  position: relative;
}

/* Hover Effekt */
.custom-checkbox:hover .checkmark {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Check Zustand */
.custom-checkbox input:checked + .checkmark {
  background: rgba(120, 200, 255, 0.25);
  border: 1px solid rgba(120, 200, 255, 0.7);
  box-shadow: 0 0 15px rgba(120, 200, 255, 0.4);
}

/* Haken Symbol */
.custom-checkbox input:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.checkbox-group {
  margin-bottom: 20px;
}

.main-button {
  width: 100%;
  padding: 12px 18px;

  margin-top: 20px;

  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 12px;

  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;

  cursor: pointer;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}
.main-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sekundär-button {
  width: 100%;
  padding: 12px 18px;

  margin-top: 1px;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 12px;

  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;

  cursor: pointer;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}
.sekundär-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.footer-content {
  padding: 20px;
  text-align: center;

  font-size: 12px;
  color: #081426;

  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-content a {
  color: #081426;
  text-decoration: none;
  margin: 0 5px;
}

.footer-content a:hover {
  text-decoration: underline;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("images/pexels-hugosykes-20433835.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1; /* hinter allem */
}

.threats {
  font-family: "Poppins", sans-serif;
  color: white;
}

.location {
  font-family: "Poppins", sans-serif;
  color: white;
}

.ice-name {
  font-family: "Poppins", sans-serif;
  color: white;
}
.step-label {
  color: white;
}
p {
  font-family: "Poppins", sans-serif;
  color: white;
}

h1 {
  font-family: "Franklin Gothic Heavy", sans-serif;
  font-size: 50px;
  color: white;
}

h2 {
  font-family: "Franklin Gothic Heavy", sans-serif;
  color: white;
}
.form-group label {
  font-family: "Poppins", sans-serif;
  color: white;
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 6px;
}

form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  background: #fff;
  min-height: 120px;
  resize: vertical;
}

form textarea:focus {
  border-color: #333;
}

@media (max-width: 600px) {
  .main-header {
    padding: 10px;
  }

  .logo-title img {
    height: 32px; /* Logo kleiner auf Mobile */
  }

  .glass-card {
    width: 92%;
    padding: 30px 20px;
    margin: 40px auto;
    border-radius: 18px;
  }

  h1 {
    font-size: 32px; /* viel kleiner für Handy */
  }

  .form-group input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .main-button {
    padding: 10px 14px;
    font-size: 14px;
  }

  .footer-content {
    font-size: 11px;
    padding: 15px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .glass-card {
    width: 85%;
    max-width: 500px;
    padding: 40px 30px;
  }

  h1 {
    font-size: 42px;
  }

  .logo-title img {
    height: 38px;
  }
}

@media (min-width: 1440px) {
  .glass-card {
    max-width: 500px; /* etwas breiter auf grossen Screens */
    padding: 60px 50px; /* mehr Luft */
    border-radius: 28px;
  }

  h1 {
    font-size: 56px; /* wirkt auf grossen Monitoren nicht zu klein */
  }

  .logo-title img {
    height: 50px;
  }

  .form-group input {
    padding: 14px 16px;
    font-size: 15px;
  }

  .main-button {
    padding: 14px 18px;
    font-size: 15px;
  }

  .footer-content {
    font-size: 13px;
  }
}

/* =========================
   SUCCESS PAGE WRAPPER
========================= */

.success-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Poppins", sans-serif;
}

/* Full Screen Center */
.success-screen {
  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;
}

/* Icon oben */
.success-icon {
  font-size: 48px;
  margin-bottom: 15px;

  filter: drop-shadow(0 0 10px rgba(120, 200, 255, 0.4));
}

/* Titel */
.success-card h1 {
  font-family: "Franklin Gothic Heavy", sans-serif;
  font-size: 42px;
  color: white;
  margin-bottom: 15px;
}

/* Text */
.success-card p {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Button nutzt deinen bestehenden Style */
.success-card .main-button {
  width: 100%;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
