:root {
  --mlsp-accent: #7c3aed;
  --mlsp-accent-2: #d946ef;
  --mlsp-text: #15151d;
  --mlsp-muted: #686875;
  --mlsp-bg: #f8f7fa;
  --mlsp-surface: #ffffff;
  --mlsp-border: rgba(21, 21, 29, 0.09);
  --mlsp-shadow: 0 20px 60px rgba(32, 20, 55, 0.1);
  --mlsp-shadow-soft: 0 12px 36px rgba(32, 20, 55, 0.06);
  --mlsp-radius-xl: 34px;
  --mlsp-radius-lg: 24px;
  --mlsp-radius-md: 16px;
  --mlsp-container: 1360px;
  --mlsp-font: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.mlsp-site,
.mlsp-site * {
  box-sizing: border-box;
}

.mlsp-site {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  background: var(--mlsp-bg);
  color: var(--mlsp-text);
  font-family: var(--mlsp-font);
  font-size: 16px;
  line-height: 1.65;
}

.mlsp-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mlsp-site a {
  color: inherit;
  text-decoration: none;
}

.mlsp-site button,
.mlsp-site input,
.mlsp-site textarea,
.mlsp-site select {
  font: inherit;
}

.mlsp-container {
  width: min(calc(100% - 64px), var(--mlsp-container));
  margin-inline: auto;
}

.mlsp-main {
  display: block;
}

.mlsp-section {
  padding: 88px 0;
}

.mlsp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mlsp-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mlsp-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
}

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

.mlsp-section-heading h2,
.mlsp-contact-copy h2,
.mlsp-subhero h1,
.mlsp-case-hero h1,
.mlsp-article-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.mlsp-section-heading p,
.mlsp-subhero p,
.mlsp-contact-copy > p {
  margin: 18px 0 0;
  color: var(--mlsp-muted);
  font-size: 17px;
  line-height: 1.72;
}

.mlsp-section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.mlsp-section-top > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mlsp-accent);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.mlsp-section-top > a svg,
.mlsp-service-card a svg,
.mlsp-project-card i svg,
.mlsp-post-card i svg {
  width: 18px;
  height: 18px;
}

.mlsp-section-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.64fr);
  gap: 64px;
  align-items: start;
}

.mlsp-button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mlsp-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.mlsp-button:hover svg {
  transform: translateX(3px);
}

.mlsp-button--primary,
.mlsp-button--primary span,
.mlsp-button--primary svg {
  color: #fff;
}

.mlsp-button--primary {
  background: linear-gradient(135deg, var(--mlsp-accent), var(--mlsp-accent-2));
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.25);
}

.mlsp-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(124, 58, 237, 0.32);
}

.mlsp-button--secondary {
  color: var(--mlsp-text);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--mlsp-border);
  box-shadow: 0 8px 22px rgba(20, 20, 30, 0.05);
}

.mlsp-button--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.35);
}

.mlsp-icon {
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  color: var(--mlsp-accent);
  background: transparent;
}

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

.mlsp-lead {
  color: var(--mlsp-text) !important;
  font-size: 20px;
}

.mlsp-index {
  display: inline-block;
  color: var(--mlsp-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mlsp-hide-theme-header #site-header,
.mlsp-hide-theme-header .site-header,
.mlsp-hide-theme-header header.elementor-location-header {
  display: none !important;
}

.mlsp-hide-theme-footer #site-footer,
.mlsp-hide-theme-footer .site-footer,
.mlsp-hide-theme-footer footer.elementor-location-footer {
  display: none !important;
}

.mlsp-template {
  margin: 0;
  padding: 0;
  max-width: none;
  overflow-x: hidden;
  background: var(--mlsp-bg);
}

.mlsp-template #wpadminbar {
  position: fixed;
}

.mlsp-template .mlsp-site {
  min-height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
}

html:has(body.mlsp-template) {
  margin: 0;
  padding: 0;
  background: var(--mlsp-bg);
}

body.mlsp-template {
  margin: 0;
  padding: 0;
  max-width: none;
  overflow-x: hidden;
  background: var(--mlsp-bg);
}

body.mlsp-plugin-page .site-content,
body.mlsp-plugin-page .content-area,
body.mlsp-plugin-page .site-main,
body.mlsp-plugin-page main.site-main,
body.mlsp-plugin-page .entry-content,
body.mlsp-plugin-page .wp-site-blocks {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
