#section-6.section-6 {
  position: relative;
  display: block;
  width: 100%;
  padding: clamp(80px, 8vw, 160px) clamp(20px, 5vw, 80px);
  background: linear-gradient(135deg, #0A1428 0%, #1A2440 50%, #0A1428 100%);
  overflow: hidden;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: initial;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.section-6__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 4vw, 80px);
  max-width: min(1280px, 88vw);
  margin: 0 auto;
  align-items: center;
}

.section-6__head {
  color: #FFFFFF;
  transform: translateY(clamp(-72px, -5vw, -40px));
}

#section-6 .section-6__title {
  font-size: clamp(32px, 3.6vw, 60px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 clamp(16px, 1.4vw, 28px);
  color: #FFFFFF;
}

#section-6 .section-6__subtitle {
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 400;
  color: rgba(255,255,255,.72);
  margin: 0;
  line-height: 1.5;
}

.section-6__form {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border-radius: clamp(20px, 1.6vw, 32px);
  padding: clamp(32px, 3vw, 56px);
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 24px 60px rgba(0,0,0,.12),
    0 8px 20px rgba(0,0,0,.06);
}

.section-6__row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(16px, 1.4vw, 32px);
  margin-bottom: clamp(24px, 2vw, 36px);
}

.section-6__row:has(.section-6__dropdown[data-open="true"]) {
  z-index: 30;
}

.section-6__row:last-of-type {
  margin-bottom: 0;
}

.section-6__row--1col {
  grid-template-columns: 1fr;
}

.section-6__row--2col {
  grid-template-columns: 1fr 1fr;
}

.section-6__field {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, .5vw, 10px);
}

.section-6__label {
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 500;
  color: var(--text);
}

.section-6__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(10,20,40,.2);
  background: transparent;
  padding: clamp(10px, .8vw, 14px) 0;
  font-size: max(16px, clamp(15px, 1vw, 18px));
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .35s var(--ease);
}

.section-6__input:focus {
  border-bottom-color: var(--main);
}

.section-6__input::placeholder {
  color: rgba(10,20,40,.4);
  text-align: left;
}

.section-6__chips {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, .7vw, 14px);
  margin-top: clamp(4px, .4vw, 8px);
}

.section-6__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, .7vw, 12px) clamp(16px, 1.2vw, 24px);
  background: rgba(56,189,248,.04);
  border: 1px solid rgba(10,20,40,.12);
  border-radius: 999px;
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 500;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: color .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}

@media (hover: hover) {
  .section-6__chip:hover {
    border-color: var(--main);
    background: rgba(56,189,248,.08);
  }
}

.section-6__chip[data-selected="true"] {
  background: var(--main);
  border-color: var(--main);
  color: #FFFFFF;
}

.section-6__dropdown {
  position: relative;
  margin-top: clamp(4px, .4vw, 8px);
}

.section-6__dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 1vw, 16px) clamp(16px, 1.4vw, 24px);
  background: rgba(56,189,248,.04);
  border: 1px solid rgba(10,20,40,.12);
  border-radius: 999px;
  font-size: clamp(14px, .95vw, 17px);
  color: var(--text);
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
  font-family: inherit;
}

@media (hover: hover) {
  .section-6__dropdown-trigger:hover {
    border-color: var(--main);
  }
}

.section-6__dropdown[data-open="true"] .section-6__dropdown-trigger {
  border-color: var(--main);
  background: #FFFFFF;
}

.section-6__dropdown-text {
  flex: 1;
  text-align: left;
  color: rgba(10,20,40,.6);
}

.section-6__dropdown[data-selected="true"] .section-6__dropdown-text {
  color: var(--text);
}

.section-6__dropdown-arrow {
  width: clamp(12px, .9vw, 16px);
  height: clamp(8px, .55vw, 10px);
  color: rgba(10,20,40,.5);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  margin-left: 12px;
}

.section-6__dropdown[data-open="true"] .section-6__dropdown-arrow {
  transform: rotate(180deg);
}

.section-6__dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(10,20,40,.08);
  border-radius: clamp(12px, 1vw, 18px);
  box-shadow: 0 16px 40px rgba(10,20,40,.12);
  list-style: none;
  margin: 0;
  padding: clamp(6px, .5vw, 10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
  z-index: 10;
  max-height: clamp(200px, 30vh, 320px);
  overflow-y: auto;
}

.section-6__dropdown[data-open="true"] .section-6__dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s 0s;
}

.section-6__dropdown-item {
  padding: clamp(10px, .8vw, 14px) clamp(14px, 1.2vw, 20px);
  font-size: clamp(13px, .95vw, 16px);
  color: var(--text);
  cursor: pointer;
  border-radius: clamp(8px, .6vw, 12px);
  transition: background-color .2s var(--ease);
}

.section-6__dropdown-item[aria-selected="true"] {
  background: rgba(56,189,248,.06);
}

@media (hover: hover) {
  .section-6__dropdown-item:hover {
    background: rgba(56,189,248,.06);
  }
}

.section-6__submit {
  position: relative;
  width: 100%;
  height: clamp(52px, 4vw, 68px);
  background: var(--main);
  border: none;
  border-radius: clamp(10px, .9vw, 16px);
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  transition: box-shadow .35s var(--ease);
  margin-top: clamp(8px, .8vw, 16px);
}

@media (hover: hover) {
  .section-6__submit:hover {
    box-shadow: 0 12px 32px rgba(56,189,248,.32);
  }
}

.section-6__submit-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0A1428;
  transform: translateX(-101%) translateZ(0);
  transition: transform .5s var(--ease);
  border-radius: inherit;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (hover: hover) {
  .section-6__submit:hover .section-6__submit-mask {
    transform: translateX(0) translateZ(0);
  }
}

.section-6__submit-text {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 600;
  letter-spacing: .04em;
}

.section-6__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255,255,255,.85);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), visibility 0s .3s;
  z-index: 20;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.section-6__form[data-loading="true"] .section-6__loading {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .3s var(--ease), visibility 0s 0s;
}

.section-6__loader {
  width: clamp(36px, 3vw, 48px);
  height: clamp(36px, 3vw, 48px);
  color: var(--main);
  animation: section-6-spin .8s linear infinite;
}

@keyframes section-6-spin {
  to {
    transform: rotate(360deg);
  }
}

.section-6__toast {
  position: fixed;
  top: clamp(20px, 3vw, 40px);
  top: max(clamp(20px, 3vw, 40px), env(safe-area-inset-top, 20px));
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  display: flex;
  align-items: center;
  gap: clamp(10px, .8vw, 14px);
  padding: clamp(14px, 1.2vw, 20px) clamp(20px, 1.8vw, 32px);
  background: rgba(10,20,40,.94);
  color: #FFFFFF;
  border-radius: clamp(12px, 1vw, 18px);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s .4s;
  z-index: 9999;
  max-width: calc(100% - clamp(32px, 6vw, 64px));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.section-6__toast[data-show="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s 0s;
}

.section-6__toast-icon {
  width: clamp(20px, 1.4vw, 24px);
  height: clamp(20px, 1.4vw, 24px);
  color: #5BD0FB;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .section-6__inner {
    grid-template-columns: 1fr;
    gap: clamp(32px, 8vw, 56px);
  }

  .section-6__head {
    text-align: left;
    transform: none;
  }

  #section-6 .section-6__title {
    font-size: clamp(26px, 7vw, 36px);
  }

  #section-6 .section-6__subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }

  .section-6__form {
    width: calc(100% - clamp(20px, 5vw, 32px));
    margin: 0 auto;
    padding: clamp(24px, 6vw, 40px);
  }
}

@media (max-width: 767px) {
  .section-6__row--2col {
    grid-template-columns: 1fr;
  }

  .section-6__chip {
    font-size: clamp(12px, 3.5vw, 14px);
    padding: clamp(7px, 2vw, 10px) clamp(14px, 4vw, 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-6__input,
  .section-6__chip,
  .section-6__dropdown-trigger,
  .section-6__dropdown-arrow,
  .section-6__dropdown-list,
  .section-6__dropdown-item,
  .section-6__submit,
  .section-6__submit-mask,
  .section-6__loading,
  .section-6__toast {
    transition: none !important;
  }

  .section-6__loader {
    animation: none !important;
  }
}
