.registration-flow-page {
  background:
    radial-gradient(circle at 78% 14%, rgba(44, 93, 220, 0.28), transparent 36%),
    linear-gradient(180deg, #101f7f 0%, #16276d 55%, #172868 100%);
  color: #fff;
  font-family: "DM Sans", Arial, sans-serif;
}

.registration-flow-page .app-shell {
  min-height: 100vh;
  background: transparent;
}

.registration-flow-page .registration-flow-header {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #132170;
  box-shadow: 0 3px 12px rgba(5, 10, 36, 0.22);
}

.registration-flow-page .registration-flow-header-inner,
.registration-flow-page .registration-flow-inner {
  width: 1326px;
  max-width: calc(100% - 36px);
  margin: 0 auto;
}

.registration-flow-page .registration-flow-header-inner {
  padding: 14px 0;
}

.registration-flow-page .top-nav {
  height: 48px;
  display: grid;
  grid-template-columns: 351px 1fr auto;
  align-items: center;
  column-gap: 24px;
}

.registration-flow-page .brand img {
  width: 112px;
  height: auto;
  display: block;
}

.registration-flow-page .nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.registration-flow-page .nav-links a {
  color: #f8f9fc;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
}

.registration-flow-page .nav-links a.active {
  color: #ffcc00;
}

.registration-flow-page .top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.registration-flow-page .request-btn {
  border: none;
  background: #ffcc00;
  color: #111125;
  width: 180px;
  height: 46px;
  border-radius: 54px;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: "DM Sans", Arial, sans-serif;
  box-shadow: none;
}

.registration-flow-page .bell-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: transparent;
  position: relative;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.registration-flow-page .bell-btn img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.registration-flow-page .bell-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ff4b5c;
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
}

.registration-flow-page .menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(11, 24, 68, 0.72);
  padding: 9px 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.registration-flow-page .menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  display: block;
}

.registration-flow-page .registration-flow-main {
  padding: 44px 0 88px;
}

.registration-flow-page .registration-flow-hero {
  margin-bottom: 18px;
}

.registration-flow-page .section-titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  max-width: 900px;
}

.registration-flow-page .section-titles h4 {
  margin: 0;
  color: #ffcc00;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.registration-flow-page .section-titles h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.registration-flow-page .section-titles p {
  margin: 0;
  color: #dce6ff;
  font-size: 16px;
  line-height: 1.55;
  max-width: 680px;
}

.registration-flow-page .registration-flow-panel {
  background:
    linear-gradient(180deg, rgba(24, 61, 155, 0.95) 0%, rgba(19, 47, 131, 0.95) 100%);
  border-radius: 22px;
  padding: 22px;
  max-width: 1220px;
  margin: 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 18px 50px rgba(5, 11, 40, 0.24);
}

.registration-flow-page .stepper-wrap {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 22px;
}

.registration-flow-page .step {
  color: rgba(231, 238, 255, 0.82);
}

.registration-flow-page .step:not(:last-child)::after {
  background: rgba(255,255,255,0.3);
}

.registration-flow-page .step .dot {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}

.registration-flow-page .step.active,
.registration-flow-page .step.done {
  color: #fff;
}

.registration-flow-page .step.active .dot {
  background: #ffcc00;
  color: #111125;
  border-color: #ffcc00;
}

.registration-flow-page .step.done .dot {
  background: #ffffff;
  color: #132170;
  border-color: #ffffff;
}

.registration-flow-page .step.active::after {
  background: #ffcc00;
}

.registration-flow-page .form-card {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 16px 34px rgba(5, 11, 40, 0.14);
}

.registration-flow-page .section-header {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 22px;
  color: #17317a;
}

.registration-flow-page label {
  font-family: "DM Sans", Arial, sans-serif;
  color: #233f85;
}

.registration-flow-page label .req {
  color: #17317a;
}

.registration-flow-page .hint-inline,
.registration-flow-page .help {
  color: #63759e;
}

.registration-flow-page input,
.registration-flow-page select,
.registration-flow-page textarea {
  border: 1px solid #c7d2ec;
  border-radius: 12px;
  padding: 14px 16px;
  color: #22345f;
  font-family: "DM Sans", Arial, sans-serif;
}

.registration-flow-page input::placeholder,
.registration-flow-page textarea::placeholder {
  color: #8c9ab8;
}

.registration-flow-page input:focus,
.registration-flow-page select:focus,
.registration-flow-page textarea:focus {
  border-color: #4d97ff;
  box-shadow: 0 0 0 4px rgba(77, 151, 255, 0.16);
}

.registration-flow-page .field-group {
  background: #edf3ff;
  border: 1px solid #cfe0ff;
  border-radius: 14px;
  padding: 12px;
}

.registration-flow-page .upload-box {
  border: 2px dashed #bcd2ff;
  border-radius: 14px;
  background: #f7faff;
  color: #5d6e94;
}

.registration-flow-page .upload-title {
  color: #1f356b;
  font-size: 14px;
}

.registration-flow-page .upload-sub {
  color: #7386ad;
}

.registration-flow-page .radio-option {
  border-color: #c7d2ec;
  background: #fff;
  color: #22345f;
}

.registration-flow-page .radio-option input[type=radio] {
  border-color: #8ca0cc;
}

.registration-flow-page .radio-option input[type=radio]::before {
  background: #17317a;
}

.registration-flow-page .radio-option:has(input:checked) {
  border-color: #17317a;
  background: #eef4ff;
  box-shadow: 0 0 0 3px rgba(23,49,122,.08);
}

.registration-flow-page .bio-counter {
  color: #6f82aa;
}

.registration-flow-page .error {
  color: #b42318;
}

.registration-flow-page .panel-actions {
  margin-top: 22px;
}

.registration-flow-page .btn-soft {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.registration-flow-page .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}

.registration-flow-page .btn-dark {
  background: #ffcc00;
  color: #111125;
  box-shadow: none;
}

.registration-flow-page .btn-dark[disabled],
.registration-flow-page .btn[disabled] {
  opacity: .7;
}

.registration-flow-page .data-protection {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 22px;
  color: #edf3ff;
}

.registration-flow-page .data-protection h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 14px;
}

.registration-flow-page .data-protection ul {
  gap: 10px;
}

.registration-flow-page .data-protection li {
  font-size: 14px;
  color: #e3ebff;
}

.registration-flow-page .register-landing-copy {
  color: #dce6ff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.registration-flow-page .start-row {
  margin-top: 18px;
}

.registration-flow-page .site-footer {
  margin-top: 0;
  background: #0c1b63;
  padding-top: 72px;
}

.registration-flow-page .footer-inner {
  width: 1325px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 482px 412px 329px;
  gap: 51px;
}

.registration-flow-page .footer-about img {
  width: 104px;
  display: block;
  margin-bottom: 19px;
}

.registration-flow-page .footer-about h3 {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 500;
  font-size: 32px;
  line-height: 112%;
}

.registration-flow-page .footer-about p,
.registration-flow-page .footer-contact a,
.registration-flow-page .footer-bottom span {
  color: #e3ebff;
}

.registration-flow-page .footer-contact h4 {
  color: #fff;
}

.registration-flow-page .footer-map iframe {
  width: 100%;
  height: 251px;
  border: 0;
  border-radius: 8px;
}

.registration-flow-page .footer-bottom {
  width: 1325px;
  max-width: 100%;
  margin: 38px auto 0;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.registration-flow-page .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.registration-flow-page .footer-social img {
  width: 24px;
  height: 24px;
}

@media (max-width: 992px) {
  .registration-flow-page .registration-flow-header-inner,
  .registration-flow-page .registration-flow-inner {
    max-width: calc(100% - 24px);
  }

  .registration-flow-page .top-nav {
    grid-template-columns: 1fr auto auto;
    column-gap: 16px;
    position: relative;
  }

  .registration-flow-page .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: #122061;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(5, 11, 40, 0.22);
    z-index: 10;
  }

  .registration-flow-page .top-nav.is-open .nav-links {
    display: flex;
  }

  .registration-flow-page .menu-toggle {
    display: inline-flex;
  }

  .registration-flow-page .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .registration-flow-page .registration-flow-main {
    padding: 30px 0 64px;
  }

  .registration-flow-page .section-titles h2 {
    font-size: 34px;
  }

  .registration-flow-page .form-card {
    padding: 18px;
  }

  .registration-flow-page .panel-actions,
  .registration-flow-page .left-actions,
  .registration-flow-page .right-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .registration-flow-page .left-actions,
  .registration-flow-page .right-actions {
    width: 100%;
  }

  .registration-flow-page .btn {
    width: 100%;
  }
}
