.neoo-static-page {
  background: #f8f9ff;
  color: #11143f;
}

.neoo-static {
  width: min(1120px, calc(100% - 48px));
  min-height: 70vh;
  margin: 0 auto;
  padding: clamp(148px, 15vw, 196px) 0 96px;
}

.neoo-static__hero {
  max-width: 860px;
  margin-bottom: 54px;
}

.neoo-static__eyebrow {
  margin: 0 0 18px;
  color: #5966f2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
}

.neoo-static h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--cb-display-font);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
}

.neoo-static__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #515978;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: -.018em;
  line-height: 1.6;
}

.neoo-static__updated {
  margin-top: 20px;
  color: #707895;
  font-size: .92rem;
}

.neoo-static__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.neoo-static__cards article,
.neoo-static__legal section {
  border: 1px solid #e1e5f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(38, 42, 92, .07);
}

.neoo-static__cards article {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}

.neoo-static__cards--hub { margin-bottom: 22px; }

.neoo-static__card-index {
  display: inline-block;
  margin-bottom: 24px;
  color: #6672f1;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.neoo-static :is(.neoo-static__cards, .neoo-static__legal) h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.18;
}

.neoo-static :is(.neoo-static__cards, .neoo-static__legal) p {
  margin: 0;
  color: #555d7b;
  font-size: 1.02rem;
  line-height: 1.7;
}

.neoo-static__button {
  display: inline-flex;
  min-height: 48px;
  margin: 26px 0 12px;
  padding: 0 22px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff;
  background: #2510f3;
  font-weight: 700;
  text-decoration: none;
}

.neoo-static__cards small {
  display: block;
  color: #727a98;
}

.neoo-static--contact {
  width: min(1240px, calc(100% - 48px));
  padding-top: clamp(122px, 10vw, 146px);
  padding-bottom: 72px;
}

.neoo-static__contact-stage {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  grid-template-areas:
    "intro form"
    "routes form"
    "note form";
  column-gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.neoo-static__contact-stage > .neoo-static__hero {
  grid-area: intro;
  max-width: 520px;
  margin: 0;
}

.neoo-static--contact h1 {
  max-width: 520px;
  font-size: clamp(3.4rem, 5.25vw, 5rem);
}

.neoo-static--contact .neoo-static__lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.5;
}

.neoo-static__contact-stage > .neoo-static__form {
  grid-area: form;
  margin: 0;
  padding: clamp(26px, 3vw, 34px);
  box-shadow: 0 24px 70px rgba(38, 42, 92, .11);
}

.neoo-static__contact-stage .neoo-static__form h2 {
  margin-bottom: 18px;
}

.neoo-static__contact-stage .neoo-static__form-intro {
  margin: -8px 0 20px;
}

.neoo-static__contact-stage .neoo-static__field {
  gap: 6px;
  margin-bottom: 13px;
}

.neoo-static__contact-stage .neoo-static__field input,
.neoo-static__contact-stage .neoo-static__field select,
.neoo-static__contact-stage .neoo-static__field textarea {
  padding: 11px 14px;
  border-radius: 12px;
}

.neoo-static__contact-stage .neoo-static__field textarea {
  min-height: 112px;
}

.neoo-static__contact-stage .neoo-static__consent {
  margin-bottom: 14px;
  font-size: .88rem;
  line-height: 1.42;
}

.neoo-static__contact-stage .neoo-static__captcha {
  margin-bottom: 12px;
}

.neoo-static__cards--hub {
  grid-area: routes;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.neoo-static__route {
  display: flex;
  min-height: 158px;
  padding: 18px;
  flex-direction: column;
  border: 1px solid #dfe4f2;
  border-radius: 18px;
  color: #11143f;
  background: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.neoo-static__route:hover {
  border-color: #b7c0f4;
  box-shadow: 0 12px 30px rgba(38, 42, 92, .08);
  transform: translateY(-2px);
}

.neoo-static__route:focus-visible {
  outline: 3px solid #2510f3;
  outline-offset: 3px;
}

.neoo-static__route .neoo-static__card-index {
  margin-bottom: 10px;
}

.neoo-static__route strong {
  font-size: 1rem;
  line-height: 1.25;
}

.neoo-static__route small {
  margin-top: 7px;
  font-size: .84rem;
  line-height: 1.42;
}

.neoo-static__route-action {
  display: inline-flex;
  margin-top: auto;
  padding-top: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #2510f3;
  font-size: .78rem;
  font-weight: 700;
}

.neoo-static__contact-stage > .neoo-static__note {
  grid-area: note;
  margin: 18px 0 0;
  font-size: .9rem;
}

.neoo-static__form {
  margin-bottom: 22px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #e1e5f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(38, 42, 92, .07);
}

.neoo-static__form h2 {
  margin: 0 0 24px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.18;
}

.neoo-static__form-intro {
  margin: -12px 0 28px;
  color: #626a87;
  line-height: 1.6;
}

.neoo-static__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.neoo-static__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
}

.neoo-static__field label {
  color: #31385d;
  font-size: .95rem;
  font-weight: 600;
}

.neoo-static__field input,
.neoo-static__field select,
.neoo-static__field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d5daea;
  border-radius: 14px;
  background: #f8f9ff;
  color: #11143f;
  font: inherit;
  font-size: 1rem;
}

.neoo-static__field textarea {
  min-height: 150px;
  resize: vertical;
}

.neoo-static__field input:focus-visible,
.neoo-static__field select:focus-visible,
.neoo-static__field textarea:focus-visible {
  border-color: #2510f3;
  outline: 2px solid #2510f3;
  outline-offset: 1px;
  background: #fff;
}

.neoo-static__consent {
  display: flex;
  max-width: 850px;
  margin: 2px 0 20px;
  align-items: flex-start;
  gap: 12px;
  color: #5c6481;
  font-size: .92rem;
  line-height: 1.55;
}

.neoo-static__consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: #2510f3;
}

.neoo-static__consent a { color: #2510f3; }

.neoo-static__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.neoo-static__form .neoo-static__button {
  margin: 8px 0 0;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.neoo-static__form .neoo-static__button:disabled {
  cursor: wait;
  opacity: .6;
}

.neoo-static__captcha {
  min-height: 65px;
  margin: 0 0 18px;
}

.neoo-static-page [hidden] {
  display: none !important;
}

.neoo-static__status {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  color: #31385d;
  background: #eef0fb;
  font-size: .98rem;
  line-height: 1.5;
}

.neoo-static__status[data-state="success"] {
  color: #0c5132;
  background: #e3f6ec;
}

.neoo-static__status[data-state="error"] {
  color: #8f1f33;
  background: #fdeaee;
}

.neoo-static__form[data-state="success"] {
  border-color: #d9d6ff;
  background: linear-gradient(155deg, #fff 0%, #f7f7ff 100%);
}

.neoo-static__success {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: neoo-contact-success-in 240ms ease-out both;
  outline: none;
}

.neoo-static__success:focus-visible {
  box-shadow: none;
}

.neoo-static__success:focus-visible .neoo-static__success-icon {
  box-shadow: 0 0 0 4px rgba(37, 16, 243, .14);
}

.neoo-static__success-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 22px;
  color: #2510f3;
  background: #eeecff;
}

.neoo-static__success-icon svg {
  width: 44px;
  height: 44px;
  overflow: visible;
}

.neoo-static__success-icon circle {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 2;
}

.neoo-static__success-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.neoo-static__success-eyebrow {
  margin: 24px 0 10px;
  color: #5143dd;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.neoo-static__form .neoo-static__success h2 {
  max-width: 480px;
  margin: 0;
  color: #11143f;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.06;
}

.neoo-static__success-text {
  max-width: 510px;
  margin: 18px 0 0;
  color: #4f5878;
  font-size: 1.05rem;
  line-height: 1.6;
}

.neoo-static__reference {
  display: grid;
  width: min(100%, 510px);
  box-sizing: border-box;
  margin-top: 28px;
  padding: 16px 18px;
  gap: 6px;
  border: 1px solid #dedcf7;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
}

.neoo-static__reference span {
  color: #626a87;
  font-size: .78rem;
  font-weight: 600;
}

.neoo-static__reference strong {
  color: #11143f;
  font-size: .98rem;
  letter-spacing: .055em;
  overflow-wrap: anywhere;
}

.neoo-static__success-next {
  margin: 12px 0 0;
  color: #69718d;
  font-size: .88rem;
  line-height: 1.5;
}

.neoo-static__success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.neoo-static__success-actions .neoo-static__button {
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #2510f3;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.neoo-static__success-actions .neoo-static__button--secondary {
  color: #2510f3;
  background: transparent;
}

.neoo-static__success-actions :is(a, button):focus-visible {
  outline: 2px solid #2510f3;
  outline-offset: 3px;
}

@keyframes neoo-contact-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.neoo-static__note,
.neoo-static__operator {
  margin: 30px 0 0;
  color: #626a87;
  line-height: 1.6;
}

.neoo-static__legal {
  display: grid;
  gap: 16px;
}

.neoo-static__legal section {
  padding: clamp(24px, 4vw, 36px);
}

.neoo-static__siblings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #dfe3ef;
}

.neoo-static__siblings a {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #31385d;
  background: #fff;
  text-decoration: none;
}

.neoo-static__siblings a[aria-current="page"] {
  color: #fff;
  background: #2510f3;
}

@media (max-width: 760px) {
  .neoo-static {
    width: min(100% - 28px, 1120px);
    padding-top: 118px;
  }

  .neoo-static__cards {
    grid-template-columns: 1fr;
  }

  .neoo-static__form-grid {
    grid-template-columns: 1fr;
  }

  .neoo-static--contact {
    width: min(100% - 28px, 1120px);
    padding-top: 100px;
    padding-bottom: 56px;
  }

  .neoo-static--contact h1 {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  .neoo-static--contact .neoo-static__lead {
    margin-top: 16px;
    font-size: 1.02rem;
  }

  .neoo-static__contact-stage > .neoo-static__form {
    padding: 22px 18px;
  }

  .neoo-static__success {
    min-height: 0;
    padding: 10px 0 4px;
  }

  .neoo-static__success-actions {
    width: 100%;
    flex-direction: column;
  }

  .neoo-static__success-actions .neoo-static__button {
    width: 100%;
    justify-content: center;
  }

  .neoo-static__cards--hub {
    grid-template-columns: 1fr;
  }

  .neoo-static__route {
    min-height: 0;
  }
}

@media (max-width: 1040px) {
  .neoo-static__contact-stage {
    grid-template-columns: minmax(0, 760px);
    grid-template-areas:
      "intro"
      "form"
      "routes"
      "note";
    justify-content: center;
    row-gap: 28px;
  }

  .neoo-static__contact-stage > .neoo-static__hero,
  .neoo-static--contact h1 {
    max-width: 760px;
  }

  .neoo-static__cards--hub,
  .neoo-static__contact-stage > .neoo-static__note {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neoo-static__route,
  .neoo-static__success {
    transition: none;
    animation: none;
  }
}
