@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: auto;
}

body {
  margin: 0;
  position: relative;
  min-height: 100vh;
}

*:focus {
  outline: 2px solid #5F45D4;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(92, 69, 212, 0.18);
}

.brand-bar {
  background: linear-gradient(135deg, #5F45D4 0%, #4a35b8 100%);
  padding: 6px 0;
}

.brand-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-bar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-bar__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #E2E5FE;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-bar__link:hover {
  color: #92D211;
}

.brand-bar__link svg {
  flex-shrink: 0;
}

.brand-bar__tagline {
  font-family: 'Cormorant', serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(226, 229, 254, 0.7);
  letter-spacing: 0.02em;
  font-style: italic;
}

.site-header {
  background: #ffffff;
  position: relative;
  box-shadow: 2px 7px 25px -2px rgba(92, 69, 212, 0.09);
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 24px 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.identity-box {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 24px;
}

.identity-box__mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-frame {
  width: 58px;
  height: 70px;
  border-radius: 1px;
  background: #ffffff;
  border: 1px solid rgba(92, 69, 212, 0.15);
  box-shadow: 2px 3px 5px -2px rgba(92, 69, 212, 0.08), 0 0 0 3px rgba(146, 210, 17, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-frame__image {
  width: 52px;
  height: 62px;
  object-fit: contain;
}

.identity-box__name {
  font-family: 'Cormorant', serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #5F45D4 0%, #3d2aa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.identity-box__descriptor {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #92D211;
  font-weight: 700;
  margin-top: 6px;
  text-transform: uppercase;
}

.header-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(92, 69, 212, 0.2), transparent);
  align-self: stretch;
  flex-shrink: 0;
  margin: 12px 0;
}

.primary-navigation {
  flex: 1;
  padding-bottom: 0;
}

.primary-navigation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}

.primary-navigation__item {
  position: relative;
}

.primary-navigation__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #2d2d2d;
  text-decoration: none;
  display: block;
  padding: 24px 24px 20px 24px;
  position: relative;
  transition: color 0.55s ease;
}

.primary-navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: #92D211;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.primary-navigation__link:hover {
  color: #5F45D4;
}

.primary-navigation__link:hover::after {
  transform: scaleX(1);
}

.primary-navigation__link.active {
  color: #5F45D4;
}

.primary-navigation__link.active::after {
  transform: scaleX(1);
  background: #5F45D4;
}

.site-footer {
  background: linear-gradient(160deg, #1a0f4e 0%, #2d1a8a 60%, #1e1460 100%);
  position: relative;
  overflow: hidden;
}

.site-footer__decoration {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 320px;
  height: 320px;
  border-radius: 38px;
  background: rgba(146, 210, 17, 0.06);
  pointer-events: none;
}

.site-footer__decoration--two {
  top: auto;
  bottom: -24px;
  right: auto;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(226, 229, 254, 0.04);
}

.site-footer__top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
}

.site-footer__anchor {
  font-family: 'Cormorant', serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: rgba(226, 229, 254, 0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 24px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-column__heading {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #92D211;
  margin-bottom: 24px;
}

.footer-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #E2E5FE;
  text-decoration: none;
  transition: color 0.7s ease;
  display: inline-block;
}

.footer-column__link:hover {
  color: #92D211;
}

.footer-contact__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.footer-contact__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(226, 229, 254, 0.5);
  text-transform: uppercase;
}

.footer-contact__value {
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.footer-contact__value:hover {
  color: #92D211;
}

.footer-contact__address {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: rgba(226, 229, 254, 0.65);
  font-style: normal;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-frame {
  width: 58px;
  height: 70px;
  border-radius: 1px;
  background: #ffffff;
  border: 1px solid rgba(226, 229, 254, 0.2);
  box-shadow: 2px 3px 5px -2px rgba(92, 69, 212, 0.08), 0 0 0 3px rgba(146, 210, 17, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-frame__image {
  width: 52px;
  height: 62px;
  object-fit: contain;
}

.footer-logo-box__name {
  font-family: 'Cormorant', serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(226, 229, 254, 0.1);
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(226, 229, 254, 0.5);
  text-decoration: none;
  transition: color 0.55s ease;
}

.footer-legal__link:hover {
  color: #E2E5FE;
}

.footer-copyright {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(226, 229, 254, 0.4);
}

.consent-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8000;
  background: #ffffff;
  box-shadow: 2px 10px 40px -2px rgba(92, 69, 212, 0.13);
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  display: none;
}

.consent-bar.visible {
  transform: translateX(0);
}

.consent-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consent-bar__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.consent-bar__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2d2d;
  flex: 1;
  min-width: 200px;
}

.consent-bar__description {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2d2d;
}

.consent-bar__heading {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F45D4;
  display: block;
  margin-top: 6px;
}

.consent-bar__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.consent-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 38px;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.consent-btn--accept {
  background: #5F45D4;
  color: #ffffff;
  border: 2px solid #5F45D4;
}

.consent-btn--accept:hover {
  border-color: #92D211;
}

.consent-btn--decline {
  background: transparent;
  color: #5F45D4;
  border: 2px solid #5F45D4;
}

.consent-btn--decline:hover {
  border-color: #92D211;
}

.consent-btn--manage {
  background: transparent;
  color: #2d2d2d;
  border: 2px solid rgba(92, 69, 212, 0.25);
}

.consent-btn--manage:hover {
  border-color: #5F45D4;
}

.consent-panel {
  border-top: 1px solid rgba(92, 69, 212, 0.1);
  padding-top: 12px;
}

.consent-panel__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consent-panel__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #2d2d2d;
}

.consent-toggle {
  width: 44px;
  height: 24px;
  border-radius: 38px;
  background: rgba(92, 69, 212, 0.15);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.55s ease;
  flex-shrink: 0;
}

.consent-toggle.on {
  background: #92D211;
}

.consent-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 2px 3px 5px -2px rgba(92, 69, 212, 0.08);
  transition: left 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.consent-toggle.on .consent-toggle__knob {
  left: 23px;
}

@media (max-width: 768px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__anchor {
    font-size: 33px;
  }

  .site-header__inner {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 0;
  }

  .header-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: linear-gradient(to right, transparent, rgba(92, 69, 212, 0.2), transparent);
  }

  .primary-navigation__link {
    padding: 12px 12px 12px 12px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-bar__tagline {
    display: none;
  }
}

@media (max-width: 480px) {
  .primary-navigation__list {
    gap: 0;
  }

  .primary-navigation__link {
    padding: 12px 12px;
    font-size: 14px;
  }

  .footer-legal__list {
    gap: 12px;
  }
}.agreement-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #2a2a3d;
    line-height: 1.9;
}

.agreement-section h1 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1b4b;
    margin-bottom: 24px;
    margin-top: 0;
}

.agreement-section h2 {
    font-size: 33px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2d2060;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2E5FE;
}

.agreement-section h3 {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #3b2fa0;
    margin-top: 48px;
    margin-bottom: 12px;
    font-weight: 700;
}

.agreement-section h4 {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #4a3db5;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.agreement-section h5 {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #5F45D4;
    margin-top: 24px;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.agreement-section h6 {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #6b5ce7;
    margin-top: 24px;
    margin-bottom: 6px;
    font-weight: 600;
}

.agreement-section ul {
    margin: 24px 0;
    padding-left: 24px;
    list-style: none;
}

.agreement-section ol {
    margin: 24px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter;
}

.agreement-section ul li {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2a2a3d;
    margin-bottom: 6px;
    padding-left: 24px;
    position: relative;
}

.agreement-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 38px;
    background-color: #92D211;
    box-shadow: 2px 3px 5px -2px rgba(146, 210, 17, 0.08);
}

.agreement-section ol li {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2a2a3d;
    margin-bottom: 6px;
    padding-left: 24px;
    position: relative;
    counter-increment: policy-counter;
}

.agreement-section ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: #5F45D4;
    line-height: 1.9;
}

.agreement-section ul ul,
.agreement-section ol ol,
.agreement-section ul ol,
.agreement-section ol ul {
    margin: 6px 0;
    padding-left: 24px;
}

.agreement-section ul ul li::before {
    width: 6px;
    height: 6px;
    background-color: #E2E5FE;
    border: 2px solid #5F45D4;
    top: 13px;
}

.agreement-section strong,
.agreement-section b {
    font-weight: 700;
    color: #1e1b4b;
}

.agreement-section em,
.agreement-section i {
    font-style: italic;
    color: #3b2fa0;
}

.agreement-section table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 48px 0;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 2px 7px 25px -2px rgba(95, 69, 212, 0.09);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.agreement-section thead {
    background-color: #5F45D4;
}

.agreement-section thead tr th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 12px 24px;
    text-align: left;
}

.agreement-section tbody {
    background-color: #ffffff;
}

.agreement-section tbody tr {
    transition: background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agreement-section tbody tr:nth-child(even) {
    background-color: #f4f4ff;
}

.agreement-section tbody tr:hover {
    background-color: #E2E5FE;
}

.agreement-section th {
    padding: 12px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.agreement-section td {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #2a2a3d;
    border-bottom: 1px solid #E2E5FE;
}

.agreement-section tbody tr:last-child td {
    border-bottom: none;
}

.agreement-section div {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2a2a3d;
    margin-bottom: 24px;
}

.agreement-section div:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .agreement-section {
        padding: 24px 12px;
    }

    .agreement-section h1 {
        font-size: 33px;
    }

    .agreement-section h2 {
        font-size: 19px;
        margin-top: 24px;
    }

    .agreement-section h3 {
        margin-top: 24px;
    }

    .agreement-section table {
        display: block;
        overflow-x: auto;
        border-radius: 1px;
        margin: 24px 0;
    }

    .agreement-section thead tr th,
    .agreement-section td {
        padding: 12px;
        white-space: nowrap;
    }

    .agreement-section ul,
    .agreement-section ol {
        padding-left: 12px;
    }
}

@media (max-width: 480px) {
    .agreement-section h1 {
        font-size: 19px;
        line-height: 1.5;
    }

    .agreement-section h2 {
        font-size: 14px;
    }
}
.technology {
  background: #ffffff;
  overflow-x: clip;
}

.technology .strip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  gap: 48px;
}

.technology .strip__images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 180px;
  flex-shrink: 0;
  position: relative;
}

.technology .strip__image-frame {
  overflow: hidden;
  border-radius: 1px;
  flex: 1;
  min-height: 160px;
  box-shadow: 2px 7px 25px -2px rgba(95, 69, 212, 0.09);
}

.technology .strip__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.technology .strip__image-frame:hover img {
  transform: scale(1.06);
}

.technology .strip__image-frame--gradient {
  position: relative;
}

.technology .strip__image-frame--gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(146, 210, 17, 0.55), rgba(226, 229, 254, 0.18), transparent);
  pointer-events: none;
}

.technology .strip__dots {
  position: absolute;
  bottom: -24px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.technology .strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 38px;
  background: #92D211;
  opacity: 0.55;
}

.technology .strip__dot:nth-child(2) {
  opacity: 0.35;
  margin-left: 6px;
}

.technology .strip__dot:nth-child(3) {
  opacity: 0.2;
  margin-left: 12px;
}

.technology .strip__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.technology .strip__label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #5F45D4;
  text-transform: uppercase;
}

.technology .strip__heading {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  margin: 0;
}

.technology .strip__heading--accent {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: linear-gradient(135deg, #92D211 0%, #5F45D4 60%, #E2E5FE 100%);
}

.technology .strip__tagline {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #3a3a52;
  max-width: 560px;
  margin: 0;
}

.technology .strip__links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.technology .strip__link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 38px;
  border: 2px solid #5F45D4;
  color: #5F45D4;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.6s ease, color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.technology .strip__link:hover,
.technology .strip__link:focus {
  border-color: #92D211;
  color: #3a3a52;
  outline: none;
}

.technology .strip__link--primary {
  background: #5F45D4;
  color: #ffffff;
  border-color: #5F45D4;
}

.technology .strip__link--primary:hover,
.technology .strip__link--primary:focus {
  border-color: #92D211;
  color: #ffffff;
}

.technology .punctuation-anchor {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(226, 229, 254, 0.7);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  z-index: 0;
}

.technology .strip__text-inner {
  position: relative;
  z-index: 1;
}

.technology .strip__text-wrap {
  position: relative;
}

@keyframes diag-reveal {
  from {
    opacity: 0;
    transform: translate(-18px, 18px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.technology .strip__label {
  animation: diag-reveal 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.technology .strip__heading {
  animation: diag-reveal 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.22s both;
}

.technology .strip__tagline {
  animation: diag-reveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.38s both;
}

.technology .strip__links {
  animation: diag-reveal 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.52s both;
}

.technology .strip__images {
  animation: diag-reveal 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s both;
}

.technology .divider-triangle {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.technology .divider-triangle svg {
  display: block;
  width: 100%;
}

.technology .stack-area {
  background: #f4f3fd;
  position: relative;
}

.technology .stack-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  border-radius: 1px;
}

.technology .stack-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}

.technology .stack-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.technology .stack-col__shape {
  width: 28px;
  height: 4px;
  background: #92D211;
  border-radius: 1px;
  margin-bottom: 12px;
}

.technology .stack-col__heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  margin: 0 0 24px 0;
}

.technology .stack-col__heading--accent {
  color: #5F45D4;
}

.technology .stack-col__body {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #3a3a52;
  margin: 0 0 24px 0;
}

.technology .stack-col__body--small {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #5a5a72;
  margin: 0;
}

.technology .tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.technology .tech-list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-radius: 1px;
  box-shadow: 2px 3px 5px -2px rgba(95, 69, 212, 0.08);
  transition: box-shadow 0.6s ease;
}

.technology .tech-list__item:hover {
  box-shadow: 2px 10px 40px -2px rgba(95, 69, 212, 0.13);
}

.technology .tech-list__icon {
  width: 36px;
  height: 36px;
  border-radius: 38px;
  background: #E2E5FE;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.technology .tech-list__icon svg {
  width: 18px;
  height: 18px;
}

.technology .tech-list__name {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1b1b2e;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.technology .tech-list__desc {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5a5a72;
  margin: 0;
}

.technology .divider-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #92D211 0%, #5F45D4 50%, #E2E5FE 100%);
  border: none;
  margin: 0;
}

.technology .feed-area {
  background: #ffffff;
}

.technology .feed-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
}

.technology .feed-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: start;
}

.technology .feed-left__shape {
  width: 10px;
  height: 10px;
  background: #5F45D4;
  border-radius: 38px;
  display: inline-block;
  margin-bottom: 12px;
}

.technology .feed-left__heading {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  margin: 0 0 24px 0;
}

.technology .feed-left__para {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #3a3a52;
  margin: 0 0 24px 0;
}

.technology .feed-left__para--small {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #5a5a72;
  margin: 0;
}

.technology .feed-right__label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #92D211;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.technology .activity-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.technology .feed-entry {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 1px;
  background: #f4f3fd;
  box-shadow: 2px 3px 5px -2px rgba(146, 210, 17, 0.08);
  transition: background 0.55s ease, box-shadow 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.technology .feed-entry:hover {
  background: #E2E5FE;
  box-shadow: 2px 7px 25px -2px rgba(95, 69, 212, 0.09);
}

.technology .feed-entry__icon {
  width: 32px;
  height: 32px;
  border-radius: 38px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 4px rgba(95, 69, 212, 0.12);
}

.technology .feed-entry__icon svg {
  width: 15px;
  height: 15px;
}

.technology .feed-entry__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.technology .feed-entry__time {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #5F45D4;
}

.technology .feed-entry__text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3a3a52;
  margin: 0;
}

@media (max-width: 900px) {
  .technology .strip {
    flex-direction: column;
    padding: 48px 24px;
  }

  .technology .strip__images {
    flex-direction: row;
    width: 100%;
    height: 180px;
  }

  .technology .strip__image-frame {
    flex: 1;
    min-height: 0;
  }

  .technology .strip__heading {
    font-size: 46px;
  }

  .technology .stack-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .technology .feed-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .technology .punctuation-anchor {
    display: none;
  }
}

@media (max-width: 600px) {
  .technology .strip__heading {
    font-size: 33px;
  }

  .technology .stack-col__heading {
    font-size: 33px;
  }

  .technology .feed-left__heading {
    font-size: 19px;
  }
}

.contact-us-page {
    background-color: #ffffff;
    overflow-x: clip;
}

.contact-us-page .reach__backdrop {
    background: linear-gradient(170deg, #5F45D4 0%, #7B5CE0 30%, #92D211 70%, #E2E5FE 100%);
    padding: 96px 24px 72px;
    position: relative;
}

.contact-us-page .reach__backdrop::before {
    background: linear-gradient(170deg, rgba(146,210,17,0.18) 0%, rgba(95,69,212,0.32) 50%, rgba(226,229,254,0.22) 100%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.contact-us-page .reach__drift {
    animation: driftShadow 7s cubic-bezier(0.25,0.46,0.45,0.94) infinite alternate;
    background: radial-gradient(ellipse 520px 260px at 30% 60%, rgba(95,69,212,0.22) 0%, rgba(146,210,17,0.08) 60%, transparent 100%);
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

@keyframes driftShadow {
    0% { transform: translateX(-48px) translateY(0px); }
    100% { transform: translateX(48px) translateY(-24px); }
}

.contact-us-page .reach__depth-letter {
    color: rgba(255,255,255,0.07);
    font-size: 280px;
    font-weight: 900;
    left: -24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    pointer-events: none;
    position: absolute;
    top: -48px;
    user-select: none;
}

.contact-us-page .reach__column {
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.contact-us-page .reach__label {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.contact-us-page .reach__heading {
    color: #ffffff;
    font-size: 62px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
}

.contact-us-page .reach__heading--accent {
    color: #92D211;
}

.contact-us-page .reach__subtext {
    color: rgba(255,255,255,0.88);
    font-size: 19px;
    letter-spacing: 0.01em;
    line-height: 1.9;
    max-width: 520px;
}

.contact-us-page .reach__divider {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.contact-us-page .reach__divider svg {
    display: block;
    width: 100%;
}

.contact-us-page .form-panel {
    background-color: #ffffff;
    padding: 72px 24px 96px;
}

.contact-us-page .form-panel__column {
    margin: 0 auto;
    max-width: 1140px;
}

.contact-us-page .form-panel__grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr;
}

.contact-us-page .form-panel__left {
    padding-right: 24px;
}

.contact-us-page .form-panel__anchor {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-us-page .form-panel__anchor-shape {
    background-color: #92D211;
    border-radius: 1px;
    height: 28px;
    width: 6px;
}

.contact-us-page .form-panel__eyebrow {
    color: #5F45D4;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.contact-us-page .form-panel__heading {
    color: #1e1b3a;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.contact-us-page .form-panel__body {
    color: #3a3650;
    font-size: 19px;
    letter-spacing: 0.01em;
    line-height: 1.9;
    margin-bottom: 48px;
}

.contact-us-page .form-panel__meta {
    border-radius: 38px;
    box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.contact-us-page .form-panel__meta-item {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.contact-us-page .form-panel__meta-icon {
    align-items: center;
    background: linear-gradient(135deg, #E2E5FE 0%, rgba(146,210,17,0.18) 100%);
    border-radius: 38px;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.contact-us-page .form-panel__meta-icon svg {
    fill: none;
    height: 22px;
    stroke: #5F45D4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 22px;
}

.contact-us-page .form-panel__meta-label {
    color: #7b7490;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 6px;
}

.contact-us-page .form-panel__meta-value {
    color: #1e1b3a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.contact-us-page .form-panel__meta-value a {
    color: #5F45D4;
    text-decoration: none;
    transition: color 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.contact-us-page .form-panel__meta-value a:hover {
    color: #92D211;
}

.contact-us-page .contact-form {
    background: linear-gradient(155deg, #ffffff 0%, #f4f3ff 50%, #f7ffe8 100%);
    border-radius: 38px;
    box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
    padding: 48px;
}

.contact-us-page .contact-form__heading {
    color: #1e1b3a;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-bottom: 24px;
}

.contact-us-page .contact-form__field {
    margin-bottom: 24px;
}

.contact-us-page .contact-form__label {
    color: #3a3650;
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 6px;
}

.contact-us-page .contact-form__input {
    background-color: #ffffff;
    border: 2px solid #E2E5FE;
    border-radius: 38px;
    box-shadow: inset 2px 3px 5px -2px rgba(95,69,212,0.08);
    color: #1e1b3a;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.5;
    outline: none;
    padding: 12px 24px;
    transition: border-color 0.6s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
    width: 100%;
}

.contact-us-page .contact-form__input:focus {
    border-color: #5F45D4;
    box-shadow: inset 2px 3px 5px -2px rgba(95,69,212,0.08), 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.contact-us-page .contact-form__input::placeholder {
    color: #a09cb8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-us-page .contact-form__select {
    appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F45D4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: 16px;
    border: 2px solid #E2E5FE;
    border-radius: 38px;
    box-shadow: inset 2px 3px 5px -2px rgba(95,69,212,0.08);
    color: #1e1b3a;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.5;
    outline: none;
    padding: 12px 48px 12px 24px;
    transition: border-color 0.7s ease, box-shadow 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    width: 100%;
}

.contact-us-page .contact-form__select:focus {
    border-color: #5F45D4;
    box-shadow: inset 2px 3px 5px -2px rgba(95,69,212,0.08), 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.contact-us-page .contact-form__privacy {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-us-page .contact-form__checkbox {
    accent-color: #5F45D4;
    cursor: pointer;
    flex-shrink: 0;
    height: 18px;
    margin-top: 2px;
    width: 18px;
}

.contact-us-page .contact-form__privacy-text {
    color: #3a3650;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.9;
}

.contact-us-page .contact-form__privacy-text a {
    color: #5F45D4;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.5s ease;
}

.contact-us-page .contact-form__privacy-text a:hover {
    color: #92D211;
}

.contact-us-page .contact-form__submit {
    background-color: #5F45D4;
    border: 2px solid #5F45D4;
    border-radius: 38px;
    box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.5;
    padding: 12px 48px;
    text-transform: lowercase;
    transition: border-color 0.6s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}

.contact-us-page .contact-form__submit:hover {
    border-color: #92D211;
    box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
}

.contact-us-page .contact-form__submit:focus {
    border-color: #92D211;
    outline: 3px solid rgba(146,210,17,0.4);
    outline-offset: 2px;
}

.contact-us-page .contact-form__submit:active {
    box-shadow: 2px 3px 5px -2px rgba(95,69,212,0.08);
}

.contact-us-page .details-strip {
    background-color: #1e1b3a !important;
    padding: 72px 24px;
    position: relative;
}

.contact-us-page .details-strip__mesh {
    background: linear-gradient(220deg, rgba(146,210,17,0.12) 0%, rgba(95,69,212,0.22) 35%, rgba(226,229,254,0.06) 65%, rgba(146,210,17,0.09) 100%);
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.contact-us-page .details-strip__column {
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    z-index: 1;
}

.contact-us-page .details-strip__top {
    margin-bottom: 48px;
}

.contact-us-page .details-strip__heading {
    color: #ffffff;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.contact-us-page .details-strip__intro {
    color: rgba(255,255,255,0.72);
    font-size: 19px;
    letter-spacing: 0.01em;
    line-height: 1.9;
    max-width: 600px;
}

.contact-us-page .details-strip__subgrid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.contact-us-page .details-strip__card {
    border-radius: 38px;
    box-shadow: 2px 3px 5px -2px rgba(146,210,17,0.08);
    padding: 24px;
    position: relative;
    transition: box-shadow 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.contact-us-page .details-strip__card::before {
    border: 2px solid rgba(226,229,254,0.12);
    border-radius: 38px;
    bottom: -4px;
    content: "";
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: -4px;
    top: -4px;
}

.contact-us-page .details-strip__card::after {
    border: 1px solid rgba(146,210,17,0.08);
    border-radius: 38px;
    bottom: -8px;
    content: "";
    left: -8px;
    pointer-events: none;
    position: absolute;
    right: -8px;
    top: -8px;
}

.contact-us-page .details-strip__card:hover {
    box-shadow: 2px 10px 40px -2px rgba(146,210,17,0.13);
}

.contact-us-page .details-strip__card--primary {
    background: linear-gradient(145deg, rgba(95,69,212,0.3) 0%, rgba(146,210,17,0.08) 100%);
}

.contact-us-page .details-strip__card--secondary {
    background: linear-gradient(145deg, rgba(146,210,17,0.12) 0%, rgba(95,69,212,0.18) 100%);
}

.contact-us-page .details-strip__card--tertiary {
    background: linear-gradient(145deg, rgba(226,229,254,0.08) 0%, rgba(95,69,212,0.22) 100%);
}

.contact-us-page .details-strip__card-icon {
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 38px;
    display: flex;
    flex-direction: row;
    height: 56px;
    justify-content: center;
    margin-bottom: 24px;
    width: 56px;
}

.contact-us-page .details-strip__card-icon--large {
    height: 80px;
    width: 80px;
}

.contact-us-page .details-strip__card-icon svg {
    fill: none;
    height: 26px;
    stroke: #92D211;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 26px;
}

.contact-us-page .details-strip__card-icon--large svg {
    height: 38px;
    width: 38px;
}

.contact-us-page .details-strip__card-type {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-us-page .details-strip__card-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.9;
}

.contact-us-page .details-strip__card-value a {
    color: #E2E5FE;
    text-decoration: none;
    transition: color 0.6s ease;
}

.contact-us-page .details-strip__card-value a:hover {
    color: #92D211;
}

.contact-us-page .details-strip__inner-subgrid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.contact-us-page .details-strip__inner-item {
    background: rgba(255,255,255,0.05);
    border-radius: 1px;
    padding: 12px;
}

.contact-us-page .details-strip__inner-item--wide {
    grid-column: 1 / -1;
}

.contact-us-page .details-strip__inner-label {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-us-page .details-strip__inner-text {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.9;
}

.contact-us-page .details-strip__divider-top {
    display: block;
    line-height: 0;
    margin-bottom: -1px;
    overflow: hidden;
}

.contact-us-page .details-strip__divider-top svg {
    display: block;
    width: 100%;
}

@media (max-width: 900px) {
    .contact-us-page .reach__heading {
        font-size: 46px;
    }

    .contact-us-page .form-panel__grid {
        grid-template-columns: 1fr;
    }

    .contact-us-page .form-panel__left {
        padding-right: 0;
    }

    .contact-us-page .details-strip__subgrid {
        grid-template-columns: 1fr;
    }

    .contact-us-page .reach__depth-letter {
        font-size: 160px;
    }
}

@media (max-width: 600px) {
    .contact-us-page .reach__heading {
        font-size: 33px;
    }

    .contact-us-page .contact-form {
        padding: 24px;
    }

    .contact-us-page .details-strip__inner-subgrid {
        grid-template-columns: 1fr;
    }

    .contact-us-page .details-strip__inner-item--wide {
        grid-column: 1;
    }
}

.contact-us-page .form-panel__group:hover .form-panel__meta-item:not(:hover) {
    filter: blur(1.5px);
    transition: filter 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.contact-us-page .form-panel__group .form-panel__meta-item {
    transition: filter 0.5s ease;
}

.about-us {
    background: #ffffff;
    overflow-x: clip;
}

.about-us .grain-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.about-us .title-block {
    position: relative;
    background: #f4f5ff;
    padding: 48px 0;
}

.about-us .title-block__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.about-us .title-block__text-zone {
    flex: 1 1 520px;
    padding: 48px 24px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.about-us .title-block__image-zone {
    flex: 0 0 420px;
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    min-height: 480px;
}

.about-us .title-block__image-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: contrast(1.04) brightness(0.97);
}

.about-us .title-block__image-zone:hover img {
    transform: translateX(-6%) scale(1.06);
}

.about-us .film-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.12'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 3;
    border-radius: 38px;
}

.about-us .shape-anchor {
    width: 12px;
    height: 12px;
    background: #92D211;
    border-radius: 1px;
    display: inline-block;
    margin-bottom: 12px;
    transform: rotate(45deg);
}

.about-us .title-block__label {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #5F45D4;
    line-height: 1.5;
    font-weight: 600;
}

.about-us .title-block__heading {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a1240;
    font-weight: 800;
    margin: 0;
}

.about-us .title-block__heading span {
    background: linear-gradient(135deg, #92D211 10%, #5F45D4 60%, #E2E5FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us .title-block__description {
    font-size: 19px;
    line-height: 1.9;
    color: #2d2550;
    letter-spacing: 0.01em;
    margin: 0;
    max-width: 480px;
}

.about-us .title-block__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: #ffffff;
    background: #5F45D4;
    padding: 12px 24px;
    border-radius: 38px;
    text-decoration: none;
    border: 2px solid #5F45D4;
    transition: border-color 0.6s cubic-bezier(0.25,0.46,0.45,0.94), color 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    align-self: flex-start;
    box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.about-us .title-block__link:hover {
    border-color: #92D211;
    color: #ffffff;
}

.about-us .geo-shape {
    position: absolute;
    border-radius: 38px;
    pointer-events: none;
    z-index: 0;
}

.about-us .geo-shape--a {
    width: 180px;
    height: 180px;
    background: #E2E5FE;
    opacity: 0.5;
    top: -48px;
    right: 360px;
}

.about-us .geo-shape--b {
    width: 80px;
    height: 80px;
    background: #92D211;
    opacity: 0.15;
    bottom: 24px;
    left: 24px;
    border-radius: 1px;
    transform: rotate(22deg);
}

.about-us .divider-dotline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px 0;
}

.about-us .divider-dotline__dot {
    width: 6px;
    height: 6px;
    border-radius: 38px;
    background: #5F45D4;
    opacity: 0.4;
}

.about-us .divider-dotline__line {
    width: 80px;
    height: 1px;
    background: #5F45D4;
    opacity: 0.2;
}

.about-us .story-block {
    padding: 48px 0;
    background: #ffffff;
}

.about-us .story-block__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-us .story-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.about-us .story-block__header {
    margin-bottom: 24px;
}

.about-us .story-block__eyebrow {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #92D211;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.about-us .story-block__eyebrow::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 3px;
    background: #92D211;
    border-radius: 1px;
}

.about-us .story-block__heading {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a1240;
    font-weight: 700;
    margin: 0 0 12px;
    max-width: 560px;
}

.about-us .story-block__intro {
    font-size: 19px;
    line-height: 1.9;
    color: #2d2550;
    letter-spacing: 0.01em;
    max-width: 680px;
}

.about-us .story-card {
    background: #f4f5ff;
    border-radius: 38px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 2px 3px 5px -2px rgba(95,69,212,0.08);
    transition: box-shadow 0.6s ease, transform 0.6s ease;
}

.about-us .story-card:hover {
    box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
    transform: translateY(-4px);
}

.about-us .story-card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.about-us .story-card__image-wrap {
    flex: 0 0 260px;
    border-radius: 38px;
    overflow: hidden;
    height: 220px;
}

.about-us .story-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.about-us .story-card__image-wrap:hover img {
    transform: translateY(-5%) scale(1.05);
}

.about-us .story-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.about-us .story-card__tag {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #5F45D4;
    font-weight: 600;
}

.about-us .story-card__heading {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #1a1240;
    font-weight: 700;
    margin: 0;
}

.about-us .story-card__text {
    font-size: 14px;
    line-height: 1.9;
    color: #2d2550;
    letter-spacing: 0.01em;
    margin: 0;
}

.about-us .story-card__stat {
    font-size: 33px;
    line-height: 1.1;
    font-weight: 800;
    color: #5F45D4;
    letter-spacing: 0.01em;
}

.about-us .story-card__stat-label {
    font-size: 14px;
    color: #2d2550;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.about-us .divider-zigzag {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.about-us .divider-zigzag svg {
    display: block;
    width: 100%;
}

.about-us .team-block {
    padding: 48px 0;
    background: #1a1240;
    position: relative;
    overflow: hidden;
}

.about-us .team-block__flicker {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-us .team-block__flicker::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 38px;
    background: #92D211;
    opacity: 0;
    top: 10%;
    right: 8%;
    animation: flicker-a 5s ease infinite;
}

.about-us .team-block__flicker::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 38px;
    background: #5F45D4;
    opacity: 0;
    bottom: 12%;
    left: 5%;
    animation: flicker-b 7s ease 2s infinite;
}

@keyframes flicker-a {
    0% { opacity: 0; }
    30% { opacity: 0.07; }
    55% { opacity: 0.03; }
    75% { opacity: 0.09; }
    100% { opacity: 0; }
}

@keyframes flicker-b {
    0% { opacity: 0; }
    25% { opacity: 0.05; }
    60% { opacity: 0.02; }
    80% { opacity: 0.08; }
    100% { opacity: 0; }
}

.about-us .team-block__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.about-us .team-block__header {
    margin-bottom: 48px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.about-us .team-block__heading {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.about-us .team-block__heading span {
    background: linear-gradient(120deg, #92D211 0%, #E2E5FE 70%, #5F45D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us .team-block__sub {
    font-size: 14px;
    line-height: 1.9;
    color: #c8c4f0;
    letter-spacing: 0.01em;
    max-width: 360px;
    text-align: right;
}

.about-us .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-us .team-member {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-us .team-member__photo {
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: 2px 7px 25px -2px rgba(146,210,17,0.09);
}

.about-us .team-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.about-us .team-member__photo:hover img {
    transform: translateX(5%) scale(1.05);
}

.about-us .team-member__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,18,64,0.7) 100%);
    pointer-events: none;
    border-radius: 38px;
}

.about-us .team-member__name {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.about-us .team-member__role {
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #92D211;
    font-weight: 600;
}

.about-us .team-member__bio {
    font-size: 14px;
    line-height: 1.9;
    color: #c8c4f0;
    letter-spacing: 0.01em;
    margin: 0;
}

.about-us .team-member--featured {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.about-us .team-member--featured .team-member__photo {
    flex: 0 0 220px;
    height: 300px;
}

.about-us .team-member--featured .team-member__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.about-us .team-member--featured .team-member__name {
    font-size: 33px;
    line-height: 1.1;
}

.about-us .team-member--featured .team-member__bio {
    font-size: 19px;
    line-height: 1.9;
}

.about-us .divider-accent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 24px;
    justify-content: center;
}

.about-us .divider-accent__circle {
    width: 8px;
    height: 8px;
    border-radius: 38px;
    background: #92D211;
}

.about-us .divider-accent__bar {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #92D211, #5F45D4);
    border-radius: 1px;
}

.about-us .approach-block {
    padding: 48px 0;
    background: #E2E5FE;
    position: relative;
}

.about-us .approach-block__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-us .approach-block__layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

.about-us .approach-block__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-us .approach-block__heading {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a1240;
    font-weight: 700;
    margin: 0;
}

.about-us .approach-block__desc {
    font-size: 19px;
    line-height: 1.9;
    color: #2d2550;
    letter-spacing: 0.01em;
    margin: 0;
}

.about-us .approach-block__image-wrap {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
    height: 320px;
}

.about-us .approach-block__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.about-us .approach-block__image-wrap:hover img {
    transform: translateY(-4%) scale(1.04);
}

.about-us .approach-block__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-us .approach-item {
    background: #ffffff;
    border-radius: 38px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 2px 3px 5px -2px rgba(95,69,212,0.08);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.about-us .approach-item:hover {
    box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
    transform: translateX(6px);
}

.about-us .approach-item__number {
    font-size: 33px;
    line-height: 1.1;
    font-weight: 800;
    color: #E2E5FE;
    letter-spacing: 0.01em;
    min-width: 48px;
}

.about-us .approach-item__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-us .approach-item__heading {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #1a1240;
    font-weight: 700;
    margin: 0;
}

.about-us .approach-item__text {
    font-size: 14px;
    line-height: 1.9;
    color: #2d2550;
    letter-spacing: 0.01em;
    margin: 0;
}

.about-us .approach-item--accent .approach-item__number {
    color: #92D211;
}

.about-us .approach-item--purple .approach-item__number {
    color: #5F45D4;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .about-us .title-block__image-zone {
        flex: 0 0 340px;
    }

    .about-us .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us .team-member--featured {
        grid-column: span 2;
    }

    .about-us .story-block__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-us .story-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-us .title-block__inner {
        flex-direction: column;
    }

    .about-us .title-block__image-zone {
        flex: 0 0 auto;
        min-height: 300px;
    }

    .about-us .title-block__heading {
        font-size: 46px;
    }

    .about-us .title-block__text-zone {
        padding: 24px 0;
    }

    .about-us .story-block__grid {
        grid-template-columns: 1fr;
    }

    .about-us .story-card--wide {
        grid-column: span 1;
        flex-direction: column;
    }

    .about-us .story-card__image-wrap {
        flex: 0 0 auto;
        height: 200px;
    }

    .about-us .team-grid {
        grid-template-columns: 1fr;
    }

    .about-us .team-member--featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .about-us .team-member--featured .team-member__photo {
        flex: 0 0 auto;
        height: 260px;
        width: 100%;
    }

    .about-us .team-block__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-us .team-block__sub {
        text-align: left;
        max-width: 100%;
    }

    .about-us .approach-block__layout {
        grid-template-columns: 1fr;
    }

    .about-us .story-block__heading {
        font-size: 33px;
    }

    .about-us .team-block__heading {
        font-size: 33px;
    }

    .about-us .approach-block__heading {
        font-size: 33px;
    }
}

@media (max-width: 480px) {
    .about-us .title-block__heading {
        font-size: 33px;
    }
}

.services {
    background: #ffffff;
    overflow-x: clip;
}

.services .strip {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TITLE BLOCK ── */
.services .opener {
    padding: 48px 0 24px;
    background: #ffffff;
    position: relative;
}

.services .opener__frame {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.services .opener__image-left,
.services .opener__image-right {
    flex: 0 0 220px;
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.services .opener__image-left img,
.services .opener__image-right img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: saturate(0.6);
    transition: filter 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    border-radius: 1px;
}

.services .opener__image-left img:hover,
.services .opener__image-right img:hover {
    filter: saturate(1);
}

.services .opener__image-left::before,
.services .opener__image-left::after,
.services .opener__image-right::before,
.services .opener__image-right::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.services .opener__image-left::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(95,69,212,0.45) 0%, transparent 70%);
}

.services .opener__image-left::after {
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(146,210,17,0.35) 0%, transparent 70%);
}

.services .opener__image-right::before {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, rgba(95,69,212,0.45) 0%, transparent 70%);
}

.services .opener__image-right::after {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(315deg, rgba(146,210,17,0.35) 0%, transparent 70%);
}

.services .opener__corner-line-tl {
    position: absolute;
    top: 12px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-top: 1px solid rgba(95,69,212,0.4);
    border-left: 1px solid rgba(95,69,212,0.4);
    border-radius: 1px;
    pointer-events: none;
}

.services .opener__corner-line-br {
    position: absolute;
    bottom: 12px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-bottom: 1px solid rgba(146,210,17,0.5);
    border-right: 1px solid rgba(146,210,17,0.5);
    border-radius: 1px;
    pointer-events: none;
}

.services .opener__text {
    flex: 1 1 0;
    text-align: center;
    padding: 0 12px;
}

.services .opener__label {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.16em;
    color: #5F45D4;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services .opener__h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a1200;
    color: #1b1400;
    margin: 0 0 6px;
}

.services .opener__h1 {
    color: #18120e;
}

.services .opener__sub {
    font-size: 33px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #5F45D4;
    margin: 0 0 12px;
}

.services .opener__byline {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #3a3340;
    max-width: 420px;
    margin: 0 auto;
}

.services .opener__rule {
    display: block;
    width: 48px;
    height: 1px;
    background: #92D211;
    margin: 12px auto 0;
}

/* ── DIVIDER STYLE ── */
.services .divider-tick {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.services .divider-tick__line {
    flex: 1 1 0;
    height: 1px;
    background: #d4cff0;
    position: relative;
}

.services .divider-tick__line::before,
.services .divider-tick__line::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 1px;
    height: 8px;
    background: #5F45D4;
}

.services .divider-tick__line::before {
    left: 20%;
}

.services .divider-tick__line::after {
    left: 60%;
}

.services .divider-tick__dot {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #92D211;
    margin: 0 12px;
    flex-shrink: 0;
    transform: rotate(45deg);
}

/* ── SECTION 2: WHAT WE OFFER ── */
.services .offer {
    padding: 48px 0;
    background: linear-gradient(108deg, #E2E5FE 0%, #f0f4ff 38%, #ffffff 100%);
    position: relative;
}

.services .offer__frame {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.services .offer__top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
}

.services .offer__heading-col {
    flex: 0 0 360px;
}

.services .offer__shape {
    width: 14px;
    height: 14px;
    background: #92D211;
    border-radius: 1px;
    margin-bottom: 12px;
    transform: rotate(12deg);
}

.services .offer__h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #18120e;
    margin: 0 0 12px;
}

.services .offer__caption {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5F45D4;
    margin-bottom: 6px;
}

.services .offer__intro-col {
    flex: 1 1 0;
    padding-top: 24px;
}

.services .offer__intro {
    font-size: 19px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2e2840;
}

.services .offer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.services .offer__item {
    background: #ffffff;
    border-radius: 38px;
    padding: 24px;
    box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
    transition: box-shadow 0.6s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    animation: settle-in 0.7s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

@keyframes settle-in {
    from {
        transform: rotate(-1.5deg) translateY(12px);
        opacity: 0;
    }
    to {
        transform: rotate(0deg) translateY(0);
        opacity: 1;
    }
}

.services .offer__item:nth-child(2) { animation-delay: 0.1s; }
.services .offer__item:nth-child(3) { animation-delay: 0.18s; }
.services .offer__item:nth-child(4) { animation-delay: 0.26s; }

.services .offer__item:hover {
    box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
    transform: translateY(-4px);
}

.services .offer__item-mark {
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background: linear-gradient(135deg, #92D211 0%, #5F45D4 100%);
    margin-bottom: 12px;
}

.services .offer__item-h3 {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #18120e;
    margin: 0 0 6px;
}

.services .offer__item-text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #3a3340;
    margin: 0;
}

/* ── DIVIDER 2 ── */
.services .divider-slash {
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.services .divider-slash__item {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #5F45D4;
    text-transform: uppercase;
}

.services .divider-slash__sep {
    color: #92D211;
    font-size: 14px;
}

/* ── SECTION 3: HOW IT WORKS ── */
.services .method {
    padding: 48px 0;
    background: #ffffff;
    position: relative;
}

.services .method__frame {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.services .method__left {
    flex: 1 1 0;
}

.services .method__shape {
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background: #5F45D4;
    margin-bottom: 12px;
    transform: rotate(30deg);
}

.services .method__h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #18120e;
    margin: 0 0 12px;
}

.services .method__caption {
    display: block;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #92D211;
    margin-bottom: 24px;
}

.services .method__quote-block {
    position: relative;
    padding: 24px 24px 24px 48px;
    background: #E2E5FE;
    border-radius: 38px;
    margin-bottom: 24px;
}

.services .method__quote-mark {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 62px;
    line-height: 1.1;
    color: #5F45D4;
    opacity: 0.22;
    pointer-events: none;
    font-style: normal;
}

.services .method__quote-text {
    font-size: 19px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #18120e;
    margin: 0;
    font-style: italic;
}

.services .method__body {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #3a3340;
    margin: 0 0 12px;
}

.services .method__divider-col {
    flex: 0 0 1px;
    align-self: stretch;
    background: #d4cff0;
    position: relative;
    margin-top: 24px;
}

.services .method__divider-col::before,
.services .method__divider-col::after {
    content: "";
    position: absolute;
    left: -4px;
    width: 8px;
    height: 1px;
    background: #5F45D4;
}

.services .method__divider-col::before { top: 25%; }
.services .method__divider-col::after { top: 65%; }

.services .method__right {
    flex: 1 1 0;
}

.services .method__glossary {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services .method__glossary-item {
    padding: 24px 0;
    border-bottom: 1px solid #e8e4f8;
}

.services .method__glossary-item:last-child {
    border-bottom: none;
}

.services .method__term {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #5F45D4;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.services .method__definition {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #3a3340;
    margin: 0;
}

.services .method__cta-row {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.services .method__btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 38px;
    font-size: 14px;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: 2px solid #5F45D4;
    background: #5F45D4;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.55s cubic-bezier(0.25,0.46,0.45,0.94), background 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: 2px 3px 5px -2px rgba(95,69,212,0.08);
}

.services .method__btn:hover,
.services .method__btn:focus {
    border-color: #92D211;
    background: #5F45D4;
    color: #ffffff;
    outline: none;
    box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.services .method__btn:active {
    box-shadow: inset 2px 3px 5px -2px rgba(95,69,212,0.13);
}

.services .method__btn--ghost {
    background: transparent;
    color: #5F45D4;
    border-color: #5F45D4;
}

.services .method__btn--ghost:hover,
.services .method__btn--ghost:focus {
    border-color: #92D211;
    color: #5F45D4;
    background: transparent;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .services .opener__frame {
        flex-direction: column;
        align-items: center;
    }

    .services .opener__image-left,
    .services .opener__image-right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }

    .services .opener__image-left img,
    .services .opener__image-right img {
        width: 100%;
        height: 180px;
    }

    .services .opener__image-right {
        display: none;
    }

    .services .opener__h1 {
        font-size: 46px;
    }

    .services .opener__sub {
        font-size: 19px;
    }

    .services .offer__top {
        flex-direction: column;
        gap: 24px;
    }

    .services .offer__heading-col {
        flex: 0 0 auto;
    }

    .services .offer__h2 {
        font-size: 33px;
    }

    .services .offer__grid {
        grid-template-columns: 1fr;
    }

    .services .method__frame {
        flex-direction: column;
    }

    .services .method__divider-col {
        display: none;
    }

    .services .method__h2 {
        font-size: 33px;
    }
}

@media (max-width: 600px) {
    .services .opener__h1 {
        font-size: 33px;
    }

    .services .opener__sub {
        font-size: 19px;
    }

    .services .offer__h2,
    .services .method__h2 {
        font-size: 33px;
    }

    .services .method__cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.first {
  max-width: 100%;
  overflow-x: hidden;
}

.first .page-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== SECTION 1: TITLE BLOCK ===================== */
.first .opener {
  position: relative;
  padding: 96px 24px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(146,210,17,0.13) 0%, rgba(95,69,212,0.09) 55%, #ffffff 100%);
  overflow: hidden;
}

.first .opener::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #92D211 35%, #5F45D4 65%, transparent 100%);
}

.first .opener__quote-mark {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 280px;
  line-height: 1.1;
  color: rgba(226,229,254,0.55);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
  user-select: none;
}

.first .opener__body {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.first .opener__text {
  flex: 1 1 0;
  min-width: 0;
}

.first .opener__label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #5F45D4;
  background: rgba(226,229,254,0.7);
  padding: 6px 24px;
  border-radius: 38px;
  margin-bottom: 24px;
  font-weight: 600;
}

.first .opener__problem {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  margin: 0 0 24px 0;
  font-weight: 800;
}

.first .opener__problem span {
  background: linear-gradient(120deg, #92D211 0%, #5F45D4 60%, #E2E5FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.first .opener__solution {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2e2e4a;
  margin: 0 0 24px 0;
  max-width: 520px;
}

.first .opener__action {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #5F45D4;
  padding: 12px 48px;
  border-radius: 38px;
  border: 2px solid #5F45D4;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.6s cubic-bezier(0.25,0.46,0.45,0.94), color 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.first .opener__action:hover {
  border-color: #92D211;
  color: #ffffff;
}

.first .opener__image-frame {
  flex: 0 0 420px;
  position: relative;
}

.first .opener__image-wrap {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
  position: relative;
}

.first .opener__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(146,210,17,0.18) 0%, rgba(95,69,212,0.22) 100%);
  border-radius: 38px;
  pointer-events: none;
}

.first .opener__image-wrap img {
  width: 420px;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  border-radius: 38px;
}

.first .opener__badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #ffffff;
  border-radius: 38px;
  padding: 12px 24px;
  box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.first .opener__badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 38px;
  background: #92D211;
  flex-shrink: 0;
  box-shadow: inset 0 1px 3px rgba(146,210,17,0.4);
}

.first .opener__badge-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #2e2e4a;
  font-weight: 600;
}

/* ===================== DIVIDER ===================== */
.first .divider {
  max-width: 1140px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #E2E5FE 30%, #5F45D4 50%, #E2E5FE 70%, transparent 100%);
}

/* ===================== SECTION 2: INSTRUCTORS ===================== */
.first .instructors {
  padding: 96px 24px;
  background: #ffffff;
}

.first .instructors__body {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.first .instructors__lead {
  flex: 0 0 340px;
}

.first .instructors__anchor {
  width: 10px;
  height: 10px;
  background: #92D211;
  border-radius: 1px;
  margin-bottom: 12px;
  display: block;
  transform: rotate(45deg);
  box-shadow: 2px 3px 5px -2px rgba(146,210,17,0.08);
}

.first .instructors__heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.first .instructors__intro {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2e2e4a;
  margin: 0;
}

.first .instructors__grid {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.first .instructor-card {
  background: #ffffff;
  border-radius: 38px;
  padding: 24px;
  box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  animation: flip-in 0.8s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.first .instructor-card:hover {
  box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
}

@keyframes flip-in {
  from {
    opacity: 0;
    transform: rotateX(25deg) translateY(24px);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
  }
}

.first .instructor-card__photo {
  width: 100%;
  height: 200px;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.first .instructor-card__photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.first .instructor-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(95,69,212,0.18) 100%);
  pointer-events: none;
}

.first .instructor-card__name {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  font-weight: 700;
  margin: 0;
}

.first .instructor-card__role {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #5F45D4;
  font-weight: 600;
  margin: 0;
}

.first .instructor-card__bio {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #3a3a5c;
  margin: 0;
}

.first .instructor-card__tags {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5F45D4;
  background: rgba(226,229,254,0.6);
  padding: 6px 12px;
  border-radius: 38px;
  display: inline-block;
  font-weight: 500;
}

/* ===================== DIVIDER 2 ===================== */
.first .divider--wave {
  max-width: 1140px;
  margin: 0 auto;
  height: 24px;
  position: relative;
  overflow: hidden;
}

.first .divider--wave::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #92D211 40%, transparent 100%);
}

/* ===================== SECTION 3: THE GAP ===================== */
.first .gap-section {
  padding: 96px 24px 48px;
  background: linear-gradient(180deg, #1b1b2e 0%, #2e2e4a 60%, #f0f2ff 100%);
  position: relative;
}

.first .gap-section__body {
  max-width: 1140px;
  margin: 0 auto;
}

.first .gap-section__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.first .gap-section__text {
  flex: 1 1 0;
}

.first .gap-section__anchor {
  width: 10px;
  height: 10px;
  background: #92D211;
  border-radius: 1px;
  margin-bottom: 12px;
  display: block;
  transform: rotate(45deg);
}

.first .gap-section__heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.first .gap-section__description {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 500px;
}

.first .gap-section__image-side {
  flex: 0 0 380px;
}

.first .gap-section__image-wrap {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
  position: relative;
}

.first .gap-section__image-wrap img {
  width: 380px;
  height: 320px;
  object-fit: cover;
  display: block;
}

.first .gap-section__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(146,210,17,0.2) 0%, rgba(95,69,212,0.3) 100%);
  pointer-events: none;
}

.first .gap-section__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
}

.first .pillar {
  background: rgba(255,255,255,0.07);
  border-radius: 38px;
  padding: 24px;
  border: 1px solid rgba(226,229,254,0.15);
  transition: background 0.65s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.first .pillar:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(146,210,17,0.35);
}

.first .pillar__icon-ring {
  width: 48px;
  height: 48px;
  border-radius: 38px;
  background: rgba(146,210,17,0.18);
  border: 2px solid rgba(146,210,17,0.45);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 6px rgba(146,210,17,0.2);
}

.first .pillar__icon-shape {
  width: 18px;
  height: 18px;
  border-radius: 1px;
  background: #92D211;
  transform: rotate(15deg);
}

.first .pillar__label {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.first .pillar__text {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ===================== DIVIDER 3 ===================== */
.first .divider--bottom {
  max-width: 1140px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #E2E5FE 50%, transparent 100%);
}

/* ===================== SECTION 4: SUPPORT ===================== */
.first .support-section {
  padding: 96px 24px;
  background: #f5f6ff;
}

.first .support-section__body {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.first .support-section__image-col {
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.first .support-section__primary-image {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 2px 10px 40px -2px rgba(95,69,212,0.13);
  position: relative;
}

.first .support-section__primary-image img {
  width: 440px;
  height: 300px;
  object-fit: cover;
  display: block;
}

.first .support-section__primary-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(146,210,17,0.15) 0%, rgba(95,69,212,0.2) 100%);
  pointer-events: none;
}

.first .support-section__stat-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.first .stat-chip {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 38px;
  padding: 24px;
  box-shadow: 2px 3px 5px -2px rgba(95,69,212,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.first .stat-chip:hover {
  box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.first .stat-chip__number {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #5F45D4;
  font-weight: 800;
}

.first .stat-chip__label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3a3a5c;
}

.first .support-section__content {
  flex: 1 1 0;
  min-width: 0;
}

.first .support-section__anchor {
  width: 10px;
  height: 10px;
  background: #5F45D4;
  border-radius: 1px;
  margin-bottom: 12px;
  display: block;
  transform: rotate(45deg);
}

.first .support-section__heading {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.first .support-section__description {
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2e2e4a;
  margin: 0 0 24px 0;
}

.first .support-section__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.first .support-item {
  background: #ffffff;
  border-radius: 38px;
  padding: 24px;
  box-shadow: 2px 3px 5px -2px rgba(95,69,212,0.08);
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.first .support-item:hover {
  box-shadow: 2px 7px 25px -2px rgba(95,69,212,0.09);
}

.first .support-item__icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 38px;
  background: rgba(226,229,254,0.7);
  border: 2px solid rgba(95,69,212,0.25);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 5px rgba(95,69,212,0.12);
}

.first .support-item__icon-dot {
  width: 14px;
  height: 14px;
  border-radius: 38px;
  background: #5F45D4;
}

.first .support-item__text {
  flex: 1 1 0;
}

.first .support-item__label {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #1b1b2e;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.first .support-item__detail {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #3a3a5c;
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .first .opener__body {
    flex-direction: column;
  }
  .first .opener__image-frame {
    flex: none;
    width: 100%;
  }
  .first .opener__image-wrap img {
    width: 100%;
    height: 320px;
  }
  .first .opener__problem {
    font-size: 46px;
  }
  .first .instructors__body {
    flex-direction: column;
  }
  .first .instructors__lead {
    flex: none;
    width: 100%;
  }
  .first .instructors__grid {
    grid-template-columns: 1fr;
  }
  .first .gap-section__top {
    flex-direction: column;
  }
  .first .gap-section__image-side {
    flex: none;
    width: 100%;
  }
  .first .gap-section__image-wrap img {
    width: 100%;
    height: 240px;
  }
  .first .gap-section__pillars {
    grid-template-columns: 1fr;
  }
  .first .support-section__body {
    flex-direction: column;
  }
  .first .support-section__image-col {
    flex: none;
    width: 100%;
  }
  .first .support-section__primary-image img {
    width: 100%;
    height: 220px;
  }
  .first .support-section__heading {
    font-size: 33px;
  }
}

@media (max-width: 600px) {
  .first .opener {
    padding: 48px 12px;
  }
  .first .opener__problem {
    font-size: 33px;
  }
  .first .opener__quote-mark {
    font-size: 140px;
  }
  .first .instructors {
    padding: 48px 12px;
  }
  .first .instructors__heading {
    font-size: 33px;
  }
  .first .gap-section {
    padding: 48px 12px 24px;
  }
  .first .gap-section__heading {
    font-size: 33px;
  }
  .first .support-section {
    padding: 48px 12px;
  }
  .first .support-section__stat-row {
    flex-direction: column;
  }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: #ffffff;
}

.success-page .success-card {
    background: #ffffff;
    border-radius: 38px;
    box-shadow: 2px 10px 40px -2px rgba(92, 69, 212, 0.13);
    max-width: 560px;
    padding: 48px;
    text-align: center;
    width: 100%;
}

.success-page .success-card .icon-wrapper {
    align-items: center;
    background: #E2E5FE;
    border-radius: 38px;
    box-shadow: inset 2px 3px 5px -2px rgba(146, 210, 17, 0.08);
    display: flex;
    flex-direction: row;
    height: 88px;
    justify-content: center;
    margin: 0 auto 48px;
    width: 88px;
}

.success-page .success-card .icon-wrapper svg {
    display: block;
}

.success-page .success-card .success-heading {
    color: #1e1b3a;
    font-size: 33px;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.success-page .success-card .success-message {
    color: #3a3560;
    font-size: 19px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 48px;
}

.success-page .success-card .success-message span {
    color: #5F45D4;
    font-size: 14px;
    display: block;
    letter-spacing: 0.02em;
    line-height: 1.9;
    margin-top: 12px;
}

.success-page .success-card .divider-line {
    background: linear-gradient(135deg, #92D211 0%, #E2E5FE 55%, #5F45D4 100%);
    border: none;
    border-radius: 1px;
    height: 2px;
    margin-bottom: 48px;
    width: 100%;
}

.success-page .success-card .action-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-page .success-card .action-group .button-primary {
    background: #5F45D4;
    border: 2px solid #5F45D4;
    border-radius: 38px;
    box-shadow: 2px 7px 25px -2px rgba(95, 69, 212, 0.09);
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    padding: 12px 24px;
    text-decoration: none;
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-page .success-card .action-group .button-primary:hover {
    border-color: #92D211;
}

.success-page .success-card .action-group .button-primary:focus {
    border-color: #92D211;
    outline: 3px solid #92D211;
    outline-offset: 3px;
}

.success-page .success-card .action-group .button-secondary {
    background: transparent;
    border: 2px solid #E2E5FE;
    border-radius: 38px;
    color: #5F45D4;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    padding: 12px 24px;
    text-decoration: none;
    transition: border-color 0.5s ease;
}

.success-page .success-card .action-group .button-secondary:hover {
    border-color: #5F45D4;
}

.success-page .success-card .action-group .button-secondary:focus {
    border-color: #5F45D4;
    outline: 3px solid #5F45D4;
    outline-offset: 3px;
}

.success-page .success-card .contact-note {
    color: #3a3560;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.9;
    margin-top: 48px;
}

.success-page .success-card .contact-note a {
    color: #5F45D4;
    text-decoration: underline;
    transition: color 0.55s ease;
}

.success-page .success-card .contact-note a:hover {
    color: #92D211;
}

@media (max-width: 600px) {
    .success-page .success-card {
        padding: 24px;
    }

    .success-page .success-card .action-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}
