:root {
  --bg: #f6f8fc;
  --panel: #fff;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --line-soft: #eef2f6;
  --danger: #d92d20;
  --success-bg: #ecfdf3;
  --success-text: #067647;
  --shadow: 0 16px 48px rgba(16, 24, 40, .08);
  --shadow-soft: 0 8px 24px rgba(16, 24, 40, .05);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

.app {
  min-height: 100vh;
  padding: 20px 0 40px 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(191, 219, 254, .16), transparent 22%), linear-gradient(180deg, #fbfcfe 0%, #f4f6fb 100%);
  color: var(--text)
}

.shell {
  max-width: 760px;
  margin: 0 auto
}

.hidden {
  display: none !important
}

.page {
  animation: fade .22s ease
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #344054
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #475467;
  font-size: 12px;
  font-weight: 800
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow)
}

.home-card,
.flow-card,
.success-card {
  padding: 30px 24px
}

h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.03em
}

.lead {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px
}

.actions {
  display: grid;
  gap: 14px;
  margin-top: 26px
}

.action {
  width: 100%;
  text-align: left;
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: .18s ease
}

.action:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: #d5dbe6
}

.action-sub {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
  color: #98a2b3
}

.arrow {
  font-size: 18px;
  color: #667085
}

.subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft)
}

.step {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #475467;
  font-size: 13px;
  font-weight: 800
}

.intro-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px
}

.intro-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.03em
}

.intro-text {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px
}

.quick-checks {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--line-soft)
}

.quick-checks-title {
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px
}

.quick-checks ul {
  margin: 0;
  padding-left: 18px
}

.quick-checks li {
  font-size: 14px;
  line-height: 1.7;
  color: #475467;
  margin: 0 0 4px
}

.section-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.02em
}

.form-layout {
  margin-top: 22px;
  display: grid;
  gap: 18px
}

.field {
  display: grid;
  gap: 8px
}

.field label {
  font-size: 14px;
  font-weight: 800;
  color: #101828
}

.required {
  color: var(--danger)
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid #d7dde8;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 15px 16px;
  font-size: 15px;
  color: #101828;
  outline: none;
  transition: .18s ease;
  font-family: inherit
}

.input::placeholder,
.textarea::placeholder {
  color: #98a2b3
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: #c8d2e3;
  box-shadow: 0 0 0 4px rgba(225, 231, 241, .85)
}

.textarea {
  min-height: 110px;
  resize: vertical
}

.upload-card {
  border: 1px solid var(--line-soft);
  background: #fbfcfe;
  border-radius: 20px;
  padding: 16px
}

.upload-title {
  font-size: 15px;
  font-weight: 800;
  color: #111827
}

.upload-help {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: #667085
}

.upload-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.upload-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #dbe2ee;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .18s ease
}

.upload-btn:hover {
  background: #f1f5f9
}

.upload-btn input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer
}

.upload-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px
}

.upload-file-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #eef2f6;
  font-size: 12px;
  color: #344054
}

.upload-file-tag .remove-file {
  cursor: pointer;
  color: #98a2b3;
  font-weight: 700;
  font-size: 14px;
  line-height: 1
}

.upload-file-tag .remove-file:hover {
  color: var(--danger)
}

.muted {
  font-size: 13px;
  line-height: 1.55;
  color: #98a2b3
}

.error {
  font-size: 13px;
  line-height: 1.5;
  color: var(--danger);
  font-weight: 700;
  margin-top: 8px
}

.hidden {
  display: none !important
}

.submit-wrap {
  display: grid;
  gap: 10px;
  margin-top: 8px
}

.submit {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #16224b 0%, #111b3a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 27, 58, .16)
}

.submit:hover {
  opacity: .95
}

.submit:disabled {
  opacity: .6;
  cursor: not-allowed
}

.footnote {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: #667085
}

.success-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success-text);
  font-size: 12px;
  font-weight: 800
}

.success-title {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.03em
}

.success-text {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.74;
  color: var(--muted)
}

.success-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--line-soft);
  display: grid;
  gap: 10px
}

.success-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #344054
}

.secondary {
  width: 100%;
  border-radius: 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: #101828;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 20px
}

.secondary:hover {
  background: #f9fafb
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.radio-group label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #16224b
}

@media (max-width: 768px) {

  .main_menu.home_menu,
  .section.footer-classic {
    display: none;
  }
}