@font-face {
  font-family: 'PT Root UI VF';
  src: url('fonts/PT-Root-UI/pt-root-ui_vf.woff2') format('woff2'),
       url('fonts/PT-Root-UI/pt-root-ui_vf.woff') format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  position: relative;
  margin: 0;
  background: #F9FAFB;
}

.gradient {
  position: absolute;
  width: 100vw;
  height: 400px;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #E4EAF6 0%, #F9FAFB 100%);
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #4285F4;
}

.header__container {
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.header__logo img {
  height: 36px;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__link {
  font-weight: 600;
  font-size: 14px;
  color: #283349;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.header__link:hover {
  color: #000;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__btn {
  font-weight: 600;
  font-size: 14px;
  border-radius: 24px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.header__btn--primary {
  background: #283349;
  color: #F3F5F6;
}

.header__btn--primary:hover {
  background: #1a2233;
}

.header__btn--secondary {
  background: #fff;
  color: #283349;
  border: 1px solid #283349;
}

.header__btn--secondary:hover {
  background: #f3f5f6;
}

.hero {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0 96px 0;
  gap: 10px;
}

.hero__container {
  width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  height: auto;
}

.hero__content {
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  height: auto;
}

.hero__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 800px;
}

.hero__desc-block-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: auto;
}

.hero__title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  color: #283349;
  margin: 0;
}

.hero__subtitle {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #283349;
  margin: 0;
}

.hero__desc {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin: 0;
}

.hero__desc-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;

  @media (max-width: 600px) {
    flex-direction: column;
  }
}

.hero__features-block {
  width: 800px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  height: auto;
}

.hero__features-col {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
}

.hero__icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-sizing: border-box;
}

.hero__btn {
  min-width: 273px;
  width: auto;
  padding: 10px 48px;
  background: #283349;
  color: #fff;
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  height: 56px;
  margin-top: 0;
}

.hero__btn:hover {
  background: #1a2233;
}

.hero__image-wrap {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 400px;
  height: 400px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero__subtitle-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #E4EAF633 0%, #BCCBE833 100%);
  border: 1px solid #E4EAF6;
  border-radius: 16px;
  width: fit-content;
}

.hero__subtitle-logo {
  width: 139px;
  height: 32px;
  object-fit: contain;
}

.hero__subtitle-text {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin: 0;
}

.partners {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
  gap: 10px;
}

.partners__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.partners__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #283349;
}

.partners__cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 1200px;
  flex-wrap: wrap;
}

.partners__card {
  background: #fff;
  box-shadow: 0px 8px 16px rgba(95, 105, 133, 0.04);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 373.33px;
  height: 112px;
  box-sizing: border-box;
}

.partners__card-icon-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.partners__card-icon-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(228,234,246,0.2) 0%, rgba(188,203,232,0.2) 100%);
}

.partners__card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #E4EAF6 0%, #B5C5E4 100%);
  border-radius: 24px;
  padding: 9px;
  box-sizing: border-box;
  box-shadow: 0px 2px 10px #BAC9E8;
  border: 2px solid #fff;
}

.partners__card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #283349;
  margin-left: 0;
  align-self: center;
  flex: 1;
}

.simple-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  gap: 10px;
}

.simple-section__container {
  width: 515px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simple-section__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #283349;
  text-align: center;
}

.contact-form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.contact-form-bg {
  width: 1200px;
  background: linear-gradient(90deg, #D5DDEF 0%, #E4EAF6 13.94%, #ECE8F4 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 120px;
  box-sizing: border-box;
  isolation: isolate;

  overflow: hidden;
}

.contact-form-bg::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 200px;
  background: #FDFDFF;
  opacity: 0.7;
  filter: blur(60px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.contact-form {
  width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 2;
}

.contact-form__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #283349;
  text-align: center;
  margin: 0;
  max-width: 712px;
  height: 60px;
}

.contact-form__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}

.contact-form__row--full {
  width: 100%;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 358px;
  height: 76px;
}

.contact-form__field--full {
  width: 100%;
  height: auto;
}

.contact-form__field label {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
}

.contact-form__field input {
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid #E8EAED;
  box-shadow: 0px 4px 16px rgba(95, 105, 133, 0.06);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 16px;
  color: #283349;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}

.contact-form__field input:focus {
  border: 1.5px solid #283349;
}

.contact-form__field select {
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid #E8EAED;
  box-shadow: 0px 4px 16px rgba(95, 105, 133, 0.06);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 16px;
  color: #283349;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
  appearance: none;
}

.contact-form__field select:focus {
  border: 1.5px solid #283349;
}

.contact-form__field textarea {
  width: 100%;
  min-height: 120px;
  background: #fff;
  border: 1px solid #E8EAED;
  box-shadow: 0px 4px 16px rgba(95, 105, 133, 0.06);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 16px;
  color: #283349;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
  resize: vertical;
}

.contact-form__field textarea::placeholder {
  color: #A0A8B3;
}

.contact-form__field textarea:focus {
  border: 1.5px solid #283349;
}

.contact-form__submit {
  background: #283349;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  border-radius: 32px;
  padding: 10px 32px;
  border: none;
  cursor: pointer;
  width: 280px;
  height: 56px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.contact-form__submit:hover {
  background: #1a2233;
}

.contact-form-bg-svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 572px;
  height: 552px;
  pointer-events: none;
  z-index: 1;
}

.footer {
  width: 100%;
  min-height: 933px;
  background: linear-gradient(180deg, #F9FAFB 0%, #E4EAF6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 27px;
  gap: 64px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-sizing: border-box;
}

.footer__bg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1511.49px;
  height: 1223px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.footer__bg-vector {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
}

.footer__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.footer__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  width: 1200px;
  min-height: 508px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
}

.footer__section--logo {
  width: 240px;
  min-height: 148px;
}

.footer__logo {
  width: 169px;
  height: 40px;
  margin-bottom: 16px;
}

.footer__desc {
  font-family: 'PT Root UI VF', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #283349;
  margin-bottom: 8px;
}

.footer__section-title {
  font-family: 'PT Root UI VF', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #283349;
  margin-bottom: 0;
}

.footer__section-link {
  font-family: 'PT Root UI VF', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #283349;
  margin-bottom: 0;
}

.footer__section-link:hover {
  color: #4285F4;
}

.footer__section:not(:first-child) {
  width: 200px;
}

.footer__section-link + .footer__section-link {
  margin-top: 0;
}

@media (max-width: 1240px) {
  .footer__main {
    width: 100%;
    min-width: 0;
    gap: 24px;
  }
  .footer__section--logo,
  .footer__section {
    width: auto;
    min-width: 0;
  }
}

.footer__sponsors {
  width: 1200px;
  min-height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  justify-content: center;
  z-index: 2;
}

/* === Footer Bottom Block (Frame 208) === */
.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  width: 1200px;
  height: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer__bottom-section {
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: flex-start; */
  padding: 0;
  gap: 16px;
  width: 580px;
  height: 40px;
  font-family: 'PT Root UI VF', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #283349;
  /* justify-content: flex-start; */
}

@media (max-width: 1240px) {
  .footer__bottom {
    width: 100%;
    min-width: 0;
    gap: 24px;
  }
  .footer__bottom-section {
    width: auto;
    min-width: 0;
  }
}

/* === Footer Certs Block (Frame 308) === */
.footer__certs-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  width: 1200px;
  height: 65px;
  margin: 0 auto 32px auto;
  z-index: 3;
}

.footer__certs-divider {
  width: 1200px;
  height: 0;
  border: none;
  border-top: 1px solid rgba(201, 210, 223, 0.8);
  margin: 0;
}

.footer__certs-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 41px;
}

.footer__cert {
  display: block;
  margin: 0 auto;
}

.footer__cert:nth-child(1) { width: 87px; height: 25px; }
.footer__cert:nth-child(2) { width: 141px; height: 21px; }
.footer__cert:nth-child(3) { width: 116px; height: 25px; }
.footer__cert:nth-child(4) { width: 64px; height: 31px; }
.footer__cert:nth-child(5) { width: 47px; height: 21px; }
.footer__cert:nth-child(6) { width: 125px; height: 21px; }
.footer__cert:nth-child(7) { width: 99px; height: 41px; }
.footer__cert:nth-child(8) { width: 152px; height: 18px; }
.footer__cert:nth-child(9) { width: 80px; height: 36px; }

.footer__cert {
  object-fit: contain;
}

@media (max-width: 1240px) {
  .footer__certs-block, .footer__certs-divider, .footer__certs-row {
    width: 100%;
    min-width: 0;
  }
  .footer__certs-row {
    gap: 24px;
  }
}

header, main, footer {
  position: relative;
  z-index: 1;
}

/* @media (max-width: 900px) { */
@media (max-width: 1240px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }
  .header__container,
  .hero__container,
  .partners__container,
  .simple-section__container,
  .contact-form-bg,
  .footer__container,
  .footer__main,
  .footer__bottom,
  .footer__certs-block,
  .footer__certs-row,
  .footer__sponsors {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .footer__certs-block {
    height: auto;
  }

  .hero__container,
  .footer__main,
  .footer__bottom,
  .footer__certs-row,
  .partners__cards,
  .contact-form__fields,
  .contact-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    height: auto;
  }
  .hero__content {
    width: 100%;
    height: auto;
    gap: 24px;
  }
  .hero__text-block {
    width: 100%;
    height: auto;
    gap: 16px;
  }
  .hero__features-block {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 16px;
  }
  .hero__features-col {
    width: 100%;
    gap: 12px;
  }
  .hero__image-wrap,
  .hero__image {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
  .partners__container {
    gap: 16px;
  }
  .partners__cards {
    width: 100%;
    gap: 16px;
  }
  .partners__card {
    width: 100%;
    min-width: 0;
    height: auto;
    flex-direction: row;
    gap: 12px;
    padding: 16px;
  }
  .simple-section__container {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }

  .contact-form-section {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .contact-form__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    /* margin: 0; */
    /* max-width: 712px; */
    height: auto;
  }
  

  .contact-form-bg {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 24px 8px;
    border-radius: 16px;
  }
  .contact-form {
    width: 100%;
    min-width: 0;
    gap: 24px;
  }
  .contact-form__row,
  .contact-form__fields {
    gap: 16px;
  }
  .contact-form__field {
    width: 100%;
    min-width: 0;
    height: auto;
  }
  .contact-form-bg-svg {
    display: none;
  }
  .footer__main > .footer__section,
  .footer__main > .footer__section--logo {
    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
  }
  .footer__bottom-section {
    width: 100%;
    height: auto;
    gap: 8px;
    margin-bottom: 12px;
  }
  .footer__certs-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    height: auto;
  }
  .footer__cert {
    width: 40vw !important;
    max-width: 120px;
    height: auto !important;
    margin-bottom: 8px;
  }
  .footer__certs-divider {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 32px;
    line-height: 40px;
  }
  .hero__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .footer__cert {
    width: 70vw !important;
    max-width: 90px;
  }
} 

/* === Feature Block (Frame 264) === */
.feature-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.feature-block__container {
  width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 64px;
  gap: 40px;
  background: linear-gradient(90deg, #D5DDEF 0%, #E4EAF6 13.94%, #ECE8F4 100%);
  border-radius: 32px;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  overflow: hidden;
}

.feature-block__ellipse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: #FDFDFF;
  opacity: 0.7;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.feature-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 556px;
  /* height: 344px; */
  position: relative;
  z-index: 1;
}

.feature-block__content > * {
  align-self: stretch;
}

.feature-block__subgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: flex-start;
}

.feature-block__title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #283349;
  margin: 0;
}

.feature-block__subtitle {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #697080;
  margin-bottom: 0;
}

.feature-block__highlight {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #283349;
  margin-bottom: 0;
}

.feature-block__desc {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin-bottom: 0;
}

.feature-block__image {
  position: absolute;
  right: 0;
  top: 50%;
  width: 600px;
  height: 533px;
  transform: translateY(-50%);
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 1240px) {
  .feature-block {
    padding: 16px;
    box-sizing: border-box;
  }

  .feature-block__container {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 24px;
    gap: 24px;
  }
  .feature-block__content {
    width: 100%;
    height: auto;
    gap: 24px;
  }
  .feature-block__image {
    width: 100%;
    max-width: 320px;
    height: auto;
    position: static;
    transform: none;
    margin: 0 auto;
    display: block;
  }
  .feature-block__ellipse {
    width: 320px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .feature-block__container {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .feature-block__title {
    font-size: 28px;
    line-height: 36px;
  }
  .feature-block__subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .feature-block__highlight {
    font-size: 18px;
    line-height: 24px;
  }
  .feature-block__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .feature-block__ellipse {
    width: 180px;
    height: 60px;
  }
} 

/* === Features Section (Frame 267) === */
.features-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 27px;
  gap: 40px;
  box-sizing: border-box;
  z-index: 4;
}

.features-section__header {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.features-section__title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #283349;
  margin: 0;
}

.features-section__desc {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin: 0;
}

.features-section__rows {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.features-section__row {
  width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 373.33px;
  min-height: 188px;
  box-sizing: border-box;
}

.feature-card__icon-bg {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: linear-gradient(180deg, rgba(228,234,246,0.2) 0%, rgba(188,203,232,0.2) 100%);
  border-radius: 40px;
  box-sizing: border-box;
}

.feature-card__icon-inner {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px;
  background: linear-gradient(180deg, #E4EAF6 0%, #B5C5E4 100%);
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: 0px 2px 10px #BAC9E8;
  /* border: 2px solid #fff; */
}

.feature-card__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.feature-card__title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #283349;
  margin: 0;
}

.feature-card__desc {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin: 0;
}

@media (max-width: 1240px) {
  .features-section,
  .features-section__header,
  .features-section__rows,
  .features-section__row {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
  }
  .features-section__header {
    gap: 16px;
  }
  .features-section__rows {
    gap: 32px;
  }
  .features-section__row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .feature-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 48px 0;
    gap: 24px;
  }
  .features-section__title {
    font-size: 28px;
    line-height: 36px;
  }
  .features-section__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .feature-card__title {
    font-size: 16px;
    line-height: 22px;
  }
  .feature-card__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .feature-card__icon-bg {
    width: 48px;
    height: 48px;
    padding: 6px;
  }
  .feature-card__icon-inner {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
  .feature-card__icon {
    width: 16px;
    height: 16px;
  }
} 

/* === Who For Section (Frame 289) === */
.who-for-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 0 0 0;
  gap: 40px;
  box-sizing: border-box;
  z-index: 6;
}

.who-for-section__header {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.who-for-section__title {
  width: 100%;
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #283349;
  margin: 0;
}

.who-for-section__desc {
  width: 100%;
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin: 0;
}

.who-for-section__rows {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.who-for-section__row {
  width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.who-for-card {
  width: 373.33px;
  height: 148px;
  background: #fff;
  box-shadow: 0px 8px 16px rgba(95, 105, 133, 0.04);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  box-sizing: border-box;
}

.who-for-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.who-for-card__title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #283349;
  margin: 0;
}

.who-for-card__desc {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #283349;
  margin: 0;
}

@media (max-width: 1240px) {
  .who-for-section__title,
  .who-for-section__rows,
  .who-for-section__row {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
  }
  .who-for-section__rows {
    gap: 24px;
  }
  .who-for-section__row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .who-for-card {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .who-for-section {
    padding: 48px 0;
    gap: 24px;
  }
  .who-for-section__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  .who-for-card__title {
    font-size: 16px;
    line-height: 22px;
  }
  .who-for-card__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .who-for-card {
    padding: 16px;
  }
} 

/* === Partners MCP Section (Frame 253) === */
.partners-new-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 96px 0;
  position: relative;
}

.partners-new-container {
  width: 1200px;
  position: relative;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partners-new-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 327.65px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
}

.partners-topology-lines {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partners-new-content {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.partners-new-title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #283349;
  text-align: center;
  margin: 0;
}

.partners-new-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.partners-new-item {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #283349;
  text-align: center;
  margin: 0;
}

.partners-new-dot {
  width: 4px;
  height: 4px;
  background: #9499A4;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 1240px) {
  .partners-new-container {
    width: calc(100% - 48px);
    margin: 0 24px;
    padding: 32px;
  }
  .partners-new-list {
    gap: 12px;
    flex-direction: column;
  }
  .partners-new-dot {
    display: none;
  }
}

@media (max-width: 600px) {
  .partners-new-section {
    padding: 48px 0;
  }
  .partners-new-container {
    margin: 0 16px;
    padding: 24px;
  }
  .partners-new-title {
    font-size: 24px;
    line-height: 32px;
  }
  .partners-new-item {
    font-size: 14px;
    line-height: 20px;
  }
  .partners-new-bg {
    width: 200px;
    height: 200px;
  }
} 

/* === Questions Section (Frame 215) === */
.questions-section {
  width: 100%;
  background: linear-gradient(0deg, #E4E8F6 0%, rgba(232, 235, 244, 0) 100%);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 0;
  gap: 10px;
  position: relative;
  z-index: 9;
}

.questions-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0;
  box-sizing: border-box;
}

.questions-section__title {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #283349;
  text-align: center;
  margin: 0;
}

.questions-section__links {
  width: 1180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
}

.questions-section__link {
  font-family: 'PT Root UI VF', 'Public Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #283349;
  text-align: center;
  text-decoration: none;
  margin: 0;
  transition: color 0.2s;
}

a.questions-section__link  {
  color: #4285F4;
}

@media (max-width: 1240px) {
  .questions-section__container {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }
  .questions-section__links {
    width: 100%;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .questions-section {
    padding-bottom: 48px;
  }
  .questions-section__title {
    font-size: 28px;
    line-height: 36px;
  }
  .questions-section__link {
    font-size: 14px;
    line-height: 20px;
  }
} 


.container {
  width: 100%;
  
  @media (min-width: 1239px) {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 27px;
  }
}

.border-line {
  width: 100%;
  height: 1px;
  background: rgba(232, 234, 237, 1);
}