.mlsp-header {
  position: relative;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(21, 21, 29, 0.05);
  backdrop-filter: blur(18px);
}

.mlsp-header.is-sticky {
  position: sticky;
  top: 0;
}

.admin-bar .mlsp-header.is-sticky {
  top: 32px;
}

.mlsp-header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.mlsp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.mlsp-brand__mark {
  width: 30px;
  height: 24px;
  object-fit: contain;
}

.mlsp-brand__word {
  color: #17171f;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mlsp-brand--footer .mlsp-brand__word {
  color: #fff;
}

.mlsp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.mlsp-nav a {
  color: #454550;
  font-size: 13px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.mlsp-nav a:hover {
  color: var(--mlsp-accent);
}

.mlsp-header__cta {
  margin-left: 12px;
}

.mlsp-menu-toggle {
  display: none !important;
  position: relative;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  background-image: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 2.5px;
  color: transparent;
  box-shadow: none !important;
  appearance: none;
  cursor: pointer;
  transition: transform 0.24s ease, opacity 0.24s ease, background-size 0.2s ease;
}

.mlsp-menu-toggle::before,
.mlsp-menu-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  transform-origin: center;
  transition: transform 0.24s ease, top 0.24s ease, bottom 0.24s ease, opacity 0.2s ease;
}

.mlsp-menu-toggle::before {
  top: 14px;
  transform: translateX(-50%);
}

.mlsp-menu-toggle::after {
  bottom: 14px;
  transform: translateX(-50%);
}

.mlsp-menu-toggle:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.mlsp-menu-toggle[aria-expanded='true'] {
  background-size: 0 0;
  border: 0 !important;
  box-shadow: none !important;
}

.mlsp-menu-toggle[aria-expanded='true']::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mlsp-menu-toggle[aria-expanded='true']::after {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mlsp-menu-toggle svg {
  display: none;
}

.mlsp-mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--mlsp-border);
  box-shadow: 0 20px 40px rgba(20, 20, 30, 0.08);
  backdrop-filter: blur(18px);
}

.mlsp-mobile-menu .mlsp-container {
  display: grid;
  padding-block: 18px 24px;
}

.mlsp-mobile-menu a:not(.mlsp-button) {
  padding: 12px 0;
  border-bottom: 1px solid var(--mlsp-border);
  font-weight: 650;
}

.mlsp-mobile-menu .mlsp-button {
  margin-top: 18px;
}

.mlsp-hero {
  position: relative;
  padding: 72px 0 24px;
  background:
    radial-gradient(circle at 84% 34%, rgba(217, 70, 239, 0.13), transparent 28%),
    radial-gradient(circle at 8% 0%, rgba(124, 58, 237, 0.07), transparent 26%),
    linear-gradient(180deg, #fcfbfe 0%, #f8f7fa 100%);
}

.mlsp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--mlsp-bg));
}

.mlsp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.mlsp-hero__copy {
  padding: 8px 0 42px;
}

.mlsp-hero h1 {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: clamp(50px, 4.6vw, 68px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  font-weight: 820;
}

.mlsp-hero h1 span {
  color: transparent;
  background: linear-gradient(120deg, var(--mlsp-accent), var(--mlsp-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.mlsp-hero__copy > p {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--mlsp-muted);
  font-size: 17px;
  line-height: 1.72;
}

.mlsp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mlsp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  overflow: visible;
}

.mlsp-hero__visual::before {
  content: "";
  position: absolute;
  inset: 16% 4% 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 52%, rgba(217, 70, 239, 0.2), transparent 52%);
  filter: blur(28px);
}

.mlsp-hero__visual img {
  position: relative;
  z-index: 1;
  width: min(112%, 760px);
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 44px rgba(28, 18, 45, 0.16));
}

.mlsp-trust {
  position: relative;
  z-index: 2;
  padding: 8px 0 44px;
}

.mlsp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 132px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(21, 21, 29, 0.07);
  border-radius: 20px;
  box-shadow: 0 18px 52px rgba(30, 20, 45, 0.07);
}

.mlsp-trust article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 28px 28px;
  border-right: 1px solid rgba(21, 21, 29, 0.07);
}

.mlsp-trust article:last-child {
  border-right: 0;
}

.mlsp-trust .mlsp-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
}

.mlsp-trust .mlsp-icon svg {
  width: 44px;
  height: 44px;
}

.mlsp-trust h3 {
  margin: 0 0 5px;
  color: var(--mlsp-text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.mlsp-trust p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 14px;
  line-height: 1.52;
}

.mlsp-projects-section {
  padding-top: 72px;
}

.mlsp-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mlsp-project-card {
  overflow: hidden;
  background: var(--mlsp-surface);
  border: 1px solid var(--mlsp-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(30, 20, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mlsp-project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(30, 20, 45, 0.13);
}

.mlsp-project-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eceaf0;
}

.mlsp-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mlsp-object-position, 50% 50%);
  image-rendering: auto;
}

.mlsp-project-card__body {
  position: relative;
  min-height: 122px;
  padding: 20px 24px 22px;
}

.mlsp-project-card__body > span {
  color: var(--mlsp-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mlsp-project-card h3 {
  margin: 8px 44px 3px 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.mlsp-project-card p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 13px;
}

.mlsp-project-card i {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--mlsp-accent);
  background: #f5f1fb;
  border-radius: 50%;
  transform: translateY(-50%);
}

.mlsp-project-carousel {
  position: relative;
}

.mlsp-project-carousel__viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.mlsp-project-carousel .mlsp-project-grid {
  display: flex;
  gap: 22px;
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.mlsp-project-carousel .mlsp-project-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

.mlsp-project-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 26px;
  margin: 24px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mlsp-site button.mlsp-project-carousel__button,
.mlsp-site button.mlsp-project-carousel__dot {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
}

.mlsp-site button.mlsp-project-carousel__button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mlsp-site button.mlsp-project-carousel__button::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mlsp-site button.mlsp-project-carousel__button:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.08);
}

.mlsp-site button.mlsp-project-carousel__button:disabled {
  opacity: 0.32;
  cursor: default;
}

.mlsp-site button.mlsp-project-carousel__button:disabled::before {
  background: linear-gradient(135deg, #b9b2c7, #d2ccd9);
}

.mlsp-site button.mlsp-project-carousel__button.is-prev::before {
  transform: rotate(180deg);
}

.mlsp-project-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 18px;
}

.mlsp-site button.mlsp-project-carousel__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(217, 70, 239, 0.22));
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mlsp-site button.mlsp-project-carousel__dot:hover {
  transform: scale(1.1);
}

.mlsp-site button.mlsp-project-carousel__dot.is-active {
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  box-shadow: 0 5px 14px rgba(168, 85, 247, 0.28);
}

.mlsp-services-section {
  position: relative;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.025), rgba(255, 255, 255, 0.78));
  border-block: 1px solid rgba(124, 58, 237, 0.06);
}

.mlsp-services-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  filter: blur(70px);
}

.mlsp-services-section .mlsp-section-split {
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1.62fr);
  gap: 48px;
  align-items: center;
}

.mlsp-services-section .mlsp-section-heading {
  min-width: 0;
  max-width: 460px;
}

.mlsp-services-section .mlsp-section-heading h2 {
  margin-top: 16px;
  font-size: clamp(48px, 4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.mlsp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mlsp-service-card {
  position: relative;
  min-height: 320px;
  padding: 30px 26px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(30, 20, 45, 0.055);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mlsp-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 22px 52px rgba(30, 20, 45, 0.1);
}

.mlsp-service-card .mlsp-icon {
  display: inline-grid;
  place-items: center;
}

.mlsp-service-card .mlsp-icon svg {
  width: 34px;
  height: 34px;
}

.mlsp-service-card h3 {
  margin: 26px 0 14px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.mlsp-service-card p {
  margin: 0;
  max-width: 280px;
  color: var(--mlsp-muted);
  font-size: 14px;
  line-height: 1.62;
}

.mlsp-service-card a {
  position: absolute;
  bottom: 28px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mlsp-accent);
  font-size: 13px;
  font-weight: 760;
}

.mlsp-process-section {
  background: #fff;
}

.mlsp-process-section .mlsp-section-split {
  grid-template-columns: minmax(250px, 0.54fr) minmax(0, 1.46fr);
  gap: 36px;
  align-items: start;
}

.mlsp-process-section .mlsp-section-heading {
  max-width: 300px;
}

.mlsp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 30px 30px 28px;
  background: #fff;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(30, 20, 45, 0.05);
}

.mlsp-process-grid article {
  min-width: 0;
  padding: 0;
  border-right: 0;
}

.mlsp-process-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.mlsp-process-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.mlsp-process-number {
  color: #a855f7;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.mlsp-process-grid .mlsp-icon svg {
  width: 34px;
  height: 34px;
}

.mlsp-process-arrow {
  flex: 1 1 auto;
  min-width: 36px;
  height: 0;
  border-top: 1.5px dashed #d6b0ff;
  position: relative;
  font-size: 0;
  opacity: 0.95;
}

.mlsp-process-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ca94ff;
  border-right: 2px solid #ca94ff;
  transform: rotate(45deg);
}

.mlsp-process-grid h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mlsp-process-title-number {
  display: none;
}

.mlsp-process-grid p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 14px;
  line-height: 1.68;
}

.mlsp-benefits-section {
  background: linear-gradient(135deg, #17131f, #21172d);
  color: #fff;
}

.mlsp-benefits-section .mlsp-section-split {
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 48px;
  align-items: center;
}

.mlsp-benefits-section .mlsp-section-heading p {
  color: rgba(255, 255, 255, 0.6);
}

.mlsp-benefits-section .mlsp-section-heading h2 {
  max-width: 470px;
  font-size: clamp(40px, 3.6vw, 52px);
}

.mlsp-benefits-section .mlsp-kicker {
  color: #d8b4fe;
}

.mlsp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 34px;
}

.mlsp-benefits-grid > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.mlsp-benefits-grid svg {
  width: 22px;
  height: 22px;
}

.mlsp-benefits-grid span {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.mlsp-testimonials-section .mlsp-section-split {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  gap: 34px;
  align-items: start;
}

.mlsp-testimonials-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 18px;
}

.mlsp-testimonials-track {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mlsp-testimonials-track blockquote {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 30px 28px 24px;
  border: 1px solid var(--mlsp-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(30, 20, 45, 0.055);
}

.mlsp-quote {
  color: #b43cff;
  font-size: 52px;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 10px;
}

.mlsp-testimonials-track blockquote > p {
  margin: 0;
  color: #3d3d48;
  font-size: 15px;
  line-height: 1.8;
}

.mlsp-testimonials-track footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.mlsp-testimonials-track footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.mlsp-testimonials-track footer strong,
.mlsp-testimonials-track footer span {
  display: block;
}

.mlsp-testimonials-track footer strong {
  font-size: 14px;
}

.mlsp-testimonials-track footer span {
  color: var(--mlsp-muted);
  font-size: 12px;
}

.mlsp-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mlsp-testimonials-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d1dc;
}

.mlsp-testimonials-dots span.is-active {
  width: 22px;
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
}
.mlsp-contact-section {
  position: relative;
  padding-block: 96px;
  background:
    radial-gradient(circle at 88% 34%, rgba(217, 70, 239, 0.13), transparent 26%),
    radial-gradient(circle at 42% 90%, rgba(124, 58, 237, 0.07), transparent 30%),
    linear-gradient(180deg, #fbfaff, #f5f2f8);
}

.mlsp-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
  align-items: center;
}

.mlsp-contact-copy {
  max-width: 430px;
}

.mlsp-contact-copy h2 {
  max-width: 420px;
  margin-top: 16px;
  font-size: clamp(44px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.mlsp-contact-copy > p {
  max-width: 400px;
  margin-top: 20px;
  color: #666471;
  font-size: 16px;
  line-height: 1.75;
}

.mlsp-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 21, 29, 0.08);
}

.mlsp-contact-list > a,
.mlsp-contact-list > span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  color: #555361;
  font-size: 14px;
}

.mlsp-contact-list svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke-width: 1.8;
}

.mlsp-contact-panel {
  display: block;
  width: 100%;
  max-width: 900px;
  justify-self: start;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(42, 28, 64, 0.11);
}

.mlsp-contact-form {
  min-width: 0;
  padding: 38px 40px 34px;
}

.mlsp-contact-form__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.mlsp-contact-form__mark {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.22);
}

.mlsp-contact-form h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

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

.mlsp-contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #4f4d59;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

.mlsp-contact-form input,
.mlsp-contact-form textarea,
.mlsp-contact-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(21, 21, 29, 0.09);
  border-radius: 12px;
  background: #faf9fc;
  padding: 11px 13px;
  color: var(--mlsp-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mlsp-contact-form textarea {
  min-height: 116px;
  resize: vertical;
}

.mlsp-contact-form input:hover,
.mlsp-contact-form textarea:hover,
.mlsp-contact-form select:hover {
  border-color: rgba(124, 58, 237, 0.24);
  background: #fff;
}

.mlsp-contact-form input:focus,
.mlsp-contact-form textarea:focus,
.mlsp-contact-form select:focus {
  border-color: rgba(124, 58, 237, 0.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.07);
}

.mlsp-form-full {
  grid-column: 1 / -1;
}

.mlsp-consent {
  display: grid !important;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
}

.mlsp-consent input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin-top: 1px;
}

.mlsp-consent span {
  margin: 0 !important;
  color: #666471 !important;
  font-size: 11px !important;
  line-height: 1.48 !important;
  font-weight: 500 !important;
}

.mlsp-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.mlsp-contact-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.mlsp-contact-form .mlsp-button {
  min-height: 46px;
  margin: 0;
  padding-inline: 20px;
  border: 0;
  font-size: 13px;
}

.mlsp-form-status {
  min-height: 20px;
  margin: 0;
  font-size: 12px;
}

.mlsp-form-status.is-success {
  color: #147a45;
}

.mlsp-form-status.is-error {
  color: #b42318;
}


.mlsp-contact-section.is-compact .mlsp-contact-grid {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
}
.mlsp-footer {
  padding: 54px 0 20px;
  background: #111018;
  color: rgba(255, 255, 255, 0.72);
}
.mlsp-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 40px;
}
.mlsp-footer__brand .mlsp-brand {
  min-width: 0;
}
.mlsp-footer__brand .mlsp-brand__mark {
  width: 28px;
  height: 28px;
}
.mlsp-footer__brand .mlsp-brand__word {
  color: #fff;
  font-size: 24px;
}
.mlsp-footer__brand p {
  max-width: 280px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.mlsp-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
}
.mlsp-footer__grid > div:not(.mlsp-footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.mlsp-footer a,
.mlsp-footer span {
  font-size: 12px;
}
.mlsp-footer a:hover {
  color: #fff;
}
.mlsp-socials {
  display: flex;
  gap: 8px;
}
.mlsp-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  font-weight: 800;
}
.mlsp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mlsp-subhero {
  padding: 100px 0 84px;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(217, 70, 239, 0.13),
      transparent 28%
    ),
    linear-gradient(180deg, #fbfaff, #f6f3f9);
}
.mlsp-subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}
.mlsp-subhero h1 {
  max-width: 850px;
}
.mlsp-subhero__art img {
  max-height: 520px;
  width: 100%;
  object-fit: contain;
  object-position: var(--mlsp-object-position, 50% 50%);
  filter: drop-shadow(0 30px 45px rgba(30, 20, 45, 0.14));
}

.mlsp-contact-hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: 72px;
}

.mlsp-contact-hero__copy p {
  max-width: 560px;
}

.mlsp-contact-hub {
  display: grid;
  gap: 18px;
}

.mlsp-contact-hub__card,
.mlsp-contact-hub__mini,
.mlsp-contact-hub__strip {
  border: 1px solid rgba(21, 21, 29, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 55px rgba(42, 28, 64, 0.08);
  backdrop-filter: blur(8px);
}

.mlsp-contact-hub__card {
  position: relative;
  overflow: hidden;
  padding: 28px 30px;
  border-radius: 28px;
}

.mlsp-contact-hub__card::before {
  content: '';
  position: absolute;
  inset: auto -60px -70px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.15), rgba(124, 58, 237, 0.02) 68%, transparent 72%);
}

.mlsp-contact-hub__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--mlsp-accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.mlsp-contact-hub__card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mlsp-contact-hub__card p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
}

.mlsp-contact-hub__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mlsp-contact-hub__mini {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 22px;
}

.mlsp-contact-hub__mini i,
.mlsp-contact-hub__strip span > svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mlsp-contact-hub__mini i svg,
.mlsp-contact-hub__strip span > svg {
  width: 22px;
  height: 22px;
}

.mlsp-contact-hub__mini strong,
.mlsp-contact-hub__mini span {
  display: block;
}

.mlsp-contact-hub__mini strong {
  font-size: 14px;
  line-height: 1.35;
}

.mlsp-contact-hub__mini span {
  margin-top: 2px;
  color: var(--mlsp-muted);
  font-size: 12px;
}

.mlsp-contact-hub__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 12px 10px;
  border-radius: 22px;
}

.mlsp-contact-hub__strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 8px 10px;
  color: #3d3a48;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.mlsp-contact-hub__strip b {
  font-weight: 700;
}
.mlsp-service-details {
  background: #fff;
}
.mlsp-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 62px 0;
  border-bottom: 1px solid var(--mlsp-border);
}
.mlsp-service-detail:first-child {
  padding-top: 0;
}
.mlsp-service-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.mlsp-service-detail.is-reversed .mlsp-service-detail__image {
  order: 2;
}
.mlsp-service-detail__image {
  aspect-ratio: 1.25;
  border-radius: 26px;
  overflow: hidden;
  background: #f0edf5;
  box-shadow: 0 24px 65px rgba(30, 20, 45, 0.11);
}
.mlsp-service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mlsp-object-position, 50% 50%);
}
.mlsp-service-detail h2 {
  margin: 14px 0 8px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.mlsp-service-detail p {
  color: var(--mlsp-muted);
}
.mlsp-service-detail .mlsp-button {
  margin-top: 18px;
}
.mlsp-projects-archive {
  padding-top: 70px;
}
.mlsp-about-story {
  background: #fff;
}
.mlsp-about-story__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: start;
}
.mlsp-about-story__intro {
  padding-top: 4px;
}
.mlsp-about-story h2 {
  margin: 14px 0 20px;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.mlsp-about-story__intro::after {
  content: '';
  display: block;
  width: 38px;
  height: 4px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
}
.mlsp-about-story p {
  max-width: 600px;
  color: var(--mlsp-muted);
  font-size: 17px;
  line-height: 1.82;
}
.mlsp-about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mlsp-about-values article {
  padding: 28px 26px 24px;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fcfbff);
  box-shadow: 0 18px 44px rgba(30, 20, 45, 0.06);
}
.mlsp-about-values article i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mlsp-about-values article i svg {
  width: 28px;
  height: 28px;
}
.mlsp-about-values h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.35;
}
.mlsp-about-values article p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}


.mlsp-page--about .mlsp-subhero__art {
  justify-self: end;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 28px;
  background: #17131f;
  box-shadow: 0 26px 60px rgba(30, 20, 45, 0.12);
}

.mlsp-page--about .mlsp-subhero__art img {
  display: block;
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  box-shadow: none;
}

.mlsp-subhero h1 span,
.mlsp-contact-copy h2 span {
  color: transparent;
  background: linear-gradient(120deg, var(--mlsp-accent), var(--mlsp-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.mlsp-about-hero .mlsp-button {
  margin-top: 10px;
}

.mlsp-about-partnership {
  padding-top: 44px;
  background: #fff;
}

.mlsp-about-partnership__bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(560px, 100%);
  margin: 0 auto 24px;
  color: #6f6878;
}

.mlsp-about-partnership__bridge span {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.28));
}

.mlsp-about-partnership__bridge span:last-child {
  background: linear-gradient(90deg, rgba(217, 70, 239, 0.28), transparent);
}

.mlsp-about-partnership__bridge b {
  position: relative;
  padding: 8px 14px 8px 32px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.055);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.mlsp-about-partnership__bridge b::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.08);
}

.mlsp-about-partnership__grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: 42px;
  align-items: start;
  padding: 44px 40px 36px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(217, 70, 239, 0.12), transparent 26%),
    radial-gradient(circle at 12% 0%, rgba(124, 58, 237, 0.05), transparent 26%),
    linear-gradient(135deg, #faf7ff, #f3ecfb);
  box-shadow: 0 22px 60px rgba(30, 20, 45, 0.07);
}

.mlsp-about-partnership__grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 140px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  opacity: 0.9;
}

.mlsp-about-partnership__grid::after {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 260px;
  height: 140px;
  background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.08), transparent 70%);
  pointer-events: none;
}

.mlsp-about-partnership__intro {
  max-width: 430px;
}

.mlsp-about-partnership__intro h2 {
  margin: 18px 0 16px;
  color: var(--mlsp-text);
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.mlsp-about-partnership__intro p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 16px;
  line-height: 1.8;
}

.mlsp-about-partnership__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mlsp-about-partnership__cards article {
  padding: 26px 24px 24px;
  border: 1px solid rgba(21, 21, 29, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
  box-shadow: 0 18px 48px rgba(30, 20, 45, 0.06);
}

.mlsp-about-partnership__cards i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.06);
}

.mlsp-about-partnership__cards i svg {
  width: 24px;
  height: 24px;
}

.mlsp-about-partnership__cards h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.mlsp-about-partnership__cards p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 15px;
  line-height: 1.75;
}

.mlsp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mlsp-post-card {
  border: 1px solid var(--mlsp-border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}
.mlsp-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30, 20, 45, 0.1);
}
.mlsp-post-card__image {
  aspect-ratio: 1.55;
  overflow: hidden;
  background: #eeeaf3;
}
.mlsp-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}
.mlsp-post-card:hover img {
  transform: scale(1.035);
}
.mlsp-post-card__body {
  padding: 23px;
}
.mlsp-post-card__body > span {
  color: var(--mlsp-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mlsp-post-card h2 {
  margin: 10px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}
.mlsp-post-card p {
  margin: 0;
  color: var(--mlsp-muted);
  font-size: 13px;
}
.mlsp-post-card__body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  color: var(--mlsp-muted);
  font-size: 11px;
}
.mlsp-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
}
.mlsp-pagination a,
.mlsp-pagination span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mlsp-border);
  background: #fff;
  font-size: 13px;
}
.mlsp-pagination .current {
  background: var(--mlsp-accent);
  color: #fff;
}
.mlsp-case-hero,
.mlsp-article-hero {
  padding: 90px 0 78px;
  background: linear-gradient(135deg, #17131f, #281a37);
  color: #fff;
}
.mlsp-back-link {
  display: inline-block;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.mlsp-case-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr;
  gap: 64px;
  align-items: end;
}
.mlsp-case-hero p,
.mlsp-article-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}
.mlsp-case-meta {
  display: grid;
  gap: 16px;
}
.mlsp-case-meta > div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mlsp-case-meta span,
.mlsp-case-meta strong {
  display: block;
}
.mlsp-case-meta span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mlsp-case-meta strong {
  margin-top: 4px;
  font-size: 14px;
}
.mlsp-case-cover {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.mlsp-case-cover img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(20, 15, 30, 0.22);
}
.mlsp-case-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 72px;
}
.mlsp-case-content__body {
  font-size: 18px;
  line-height: 1.85;
}
.mlsp-case-content__body h2 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.mlsp-case-content aside {
  align-self: start;
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: 18px;
  background: #f3eff8;
}
.mlsp-case-content aside p {
  margin: 16px 0 0;
  font-size: 15px;
}
.mlsp-article-hero__inner {
  max-width: 920px;
}
.mlsp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.mlsp-article-hero h1 {
  max-width: 950px;
}
.mlsp-article-cover {
  margin-top: -34px;
}
.mlsp-article-cover img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(20, 15, 30, 0.2);
}
.mlsp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  padding-top: 80px;
  padding-bottom: 110px;
}
.mlsp-article-content {
  font-size: 18px;
  line-height: 1.9;
}
.mlsp-article-content h2,
.mlsp-article-content h3 {
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.mlsp-article-content h2 {
  margin-top: 2em;
  font-size: 34px;
}
.mlsp-article-content img {
  border-radius: 16px;
}
.mlsp-article-aside {
  align-self: start;
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: 18px;
  background: #f4f0f8;
}
.mlsp-article-aside p {
  color: var(--mlsp-muted);
  font-size: 14px;
}
.mlsp-article-aside .mlsp-button {
  margin-top: 12px;
}
