


.Header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--frost-line);
  position: sticky;
  top: 0;
  z-index: 900;
  --mm-bg: #ffffff;
  --mm-text: #2e1065;
  --mm-primary: #7c3aed;
  --mm-overlay-bg: rgba(28, 11, 61, 0.45);
  --mm-drawer-width: 284px;
}

.Header-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.Header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.Header-logo:hover {
  color: var(--accent);
}
.Header-logoMark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.Header-logoText {
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.Header-logoTop {
  font-size: 19px;
  color: var(--accent);
}
.Header-logoBottom {
  font-size: 19px;
  color: var(--text-primary);
}

.Header-nav {
  margin-left: auto;
}
.Header-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--frost-line);
}
.Header-item {
  margin: 0;
}
.Header-link {
  display: block;
  padding: 12px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: var(--text-secondary);
  font-size: var(--fluid-font-sm);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.Header-link:hover {
  color: var(--accent);
  border-bottom-color: var(--text-muted);
}
.Header-link.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.Header-toggle {
  margin-left: auto;
}
.Header-toggle span {
  border-radius: 2px;
}
.Header-close {
  font-family: Georgia, "Times New Roman", serif;
}
.Header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fluid-font-sm);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.Header-phone:hover {
  color: var(--accent-hover);
}


.HeroUnit {
  position: relative;
  text-align: center;
  padding: 64px 24px 76px;
  background-color: var(--bg-tertiary);
  background-image: linear-gradient(
      180deg,
      rgba(250, 245, 255, 0.9) 0%,
      rgba(243, 232, 255, 0.72) 45%,
      rgba(243, 232, 255, 0.94) 100%
    ),
    url("/static/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.HeroUnit-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.HeroUnit-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  color: var(--text-secondary);
}
.HeroUnit-price {
  margin-top: 26px;
}
.HeroUnit-search {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 620px;
  margin: 32px auto 0;
}
.HeroUnit-field {
  flex: 1;
  min-width: 0;
  padding: 16px 22px;
  border: 1px solid var(--frost-line);
  border-right: none;
  border-radius: 999px 0 0 999px;
  background: #fff;
  font-size: var(--fluid-font-sm);
  color: var(--text-primary);
}
.HeroUnit-field:focus {
  outline: none;
  border-color: var(--accent);
}
.HeroUnit-submit {
  border-radius: 0 999px 999px 0;
  padding: 0 26px;
  min-height: 56px;
  border: none;
  background: var(--accent);
  color: var(--ink-inverse);
  font-size: var(--fluid-font-sm);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.HeroUnit-submit:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}
.HeroUnit-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.HeroUnit-note {
  margin: 22px 0 0;
  font-size: var(--fluid-font-xs);
  color: var(--text-secondary);
}


.CompanyOverview-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--fluid-gutter);
  align-items: center;
}
.CompanyOverview-copy {
  flex: 1 1 calc(55% - 20px);
  min-width: 300px;
}
.CompanyOverview-shot {
  flex: 1 1 calc(45% - 20px);
  min-width: 300px;
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--bg-tertiary);
  padding: 20px;
}
.CompanyOverview-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-panel) - 8px);
}
.CompanyOverview-caption {
  margin: 16px 0 0;
  text-align: center;
  font-size: var(--fluid-font-xs);
  color: var(--text-secondary);
}
.CompanyOverview-facts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: var(--fluid-space-md);
}


.ValueProps-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}


.FeatureGrid-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--fluid-gutter);
  align-items: flex-start;
}
.FeatureGrid-list {
  flex: 1 1 calc(62% - 20px);
  min-width: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.FeatureGrid-spec {
  flex: 1 1 calc(38% - 20px);
  min-width: 280px;
  padding: 30px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-panel);
}
.FeatureGrid-spec h3 {
  margin-bottom: 14px;
}
.FeatureGrid-free {
  margin: 22px 0 0;
  font-size: var(--fluid-font-xs);
  color: var(--text-secondary);
}


.Workflow-steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
}
.Workflow-after {
  margin: var(--fluid-space-md) 0 0;
  padding: 22px 26px;
  border-left: 3px solid var(--accent);
  background: var(--bg-secondary);
  font-size: var(--fluid-font-sm);
  color: var(--text-secondary);
}


.PolicyBlock-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}


.ContactModule {
  background: var(--bg-tertiary);
}
.ContactModule-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--fluid-gutter);
  align-items: flex-start;
}
.ContactModule-aside {
  flex: 1 1 calc(45% - 20px);
  min-width: 300px;
}
.ContactModule-panel {
  flex: 1 1 calc(55% - 20px);
  min-width: 300px;
  background: #fff;
  border-radius: var(--radius-panel);
  padding: clamp(24px, 3vw, 42px);
  box-shadow: 0 20px 50px rgba(46, 16, 101, 0.12);
  opacity: 1;
  transform: none;
}
.ContactModule-panel.is-concealed {
  opacity: 0;
  transform: translateY(50px);
}
.ContactModule-panel.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ContactModule-orderShot {
  display: block;
  width: 190px;
  max-width: 55%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  margin-bottom: var(--fluid-space-sm);
  box-shadow: 0 14px 34px rgba(46, 16, 101, 0.16);
}
.ContactModule-priceRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: var(--fluid-space-sm);
}
.ScrollTrigger {
  height: 1px;
  width: 100%;
}


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


.CtaBlock {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: clamp(40px, 5vw, 72px) 24px;
}
.CtaBlock-title {
  color: #fff;
  margin-bottom: 12px;
}
.CtaBlock-text {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fluid-font-sm);
}
.CtaBlock-phone {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}
.CtaBlock-phone:hover {
  color: var(--bg-tertiary);
}
.CtaBlock-hours {
  margin: 8px 0 0;
  font-size: var(--fluid-font-xs);
  color: rgba(255, 255, 255, 0.82);
}

.Footer {
  background: var(--shell-deep);
  color: #cbd5e1;
  padding: 30px 0 24px;
}
.Footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.Footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
}
.Footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  font-size: var(--fluid-font-xs);
}
.Footer-contact a {
  color: #ddd6fe;
  text-decoration: none;
}
.Footer-contact a:hover {
  color: #fff;
}
.Footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.Footer-nav li {
  margin: 0;
}
.Footer-link {
  color: #cbd5e1;
  font-size: var(--fluid-font-xs);
  text-decoration: none;
}
.Footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.Footer-legal {
  border-top: 1px solid rgba(221, 214, 254, 0.18);
  margin-top: 22px;
  padding-top: 18px;
}
.Footer-disclaimer {
  margin: 0 0 8px;
  font-size: var(--fluid-font-xs);
  line-height: 1.6;
  color: #a5a1c4;
}
.Footer-copy {
  margin: 0;
  font-size: var(--fluid-font-xs);
  color: #8b86ae;
}


.CompanyOverview-copy p,
.Workflow-after {
  font-size: 17.6px;
  margin-top: 16px;
}
.CompanyOverview-copy h2 {
  margin-top: 16px;
}
