/* =========================
   SCHNELLCHECK PAGE
========================= */
.schnellcheck-page {
  background: #f7f9fc;
}

.schnellcheck-section {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.schnellcheck-container {
  max-width: 640px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 64, 128, 0.12);
  padding: 56px;
}

.schnellcheck-container h1 {
  font-size: 36px;
  color: #004080;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.schnellcheck-container .subtext {
  margin-bottom: 36px;
}

@media (max-width: 700px) {
  .schnellcheck-container {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .schnellcheck-section {
    padding: 130px 0 60px;
  }
}

/* =========================
   CUSTOM ANIMATED DROPDOWN
========================= */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 64, 128, 0.2);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(0, 64, 128, 0.35);
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.custom-select.open .custom-select-trigger,
.custom-select.filled .custom-select-trigger {
  border-bottom-color: #004080;
}

.custom-select.filled .custom-select-label {
  color: #004080;
}

.custom-select-arrow {
  color: #004080;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 64, 128, 0.18);
  overflow: hidden;
  z-index: 20;

  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.3s ease;
}

.custom-select.open .custom-select-options {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-option {
  padding: 16px 20px;
  font-size: 14.5px;
  color: #004080;
  cursor: pointer;
  transition: background 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid rgba(0, 64, 128, 0.06);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover,
.custom-select-option.active {
  background: rgba(0, 64, 128, 0.06);
  padding-left: 26px;
}

/* =========================
   SUCCESS VIEW
========================= */
.schnellcheck-success {
  text-align: center;
  padding: 20px 0;
  animation: successFadeIn 0.5s ease;
}

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

.success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #004080;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.schnellcheck-success h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.schnellcheck-success p {
  max-width: 440px;
  margin: 0 auto;
}

.redirect-hint {
  margin-top: 24px !important;
  font-size: 14px !important;
  color: rgba(0, 64, 128, 0.5) !important;
}
