:root {
  color-scheme: light;
  --page-bg: #eeecfb;
  --topline: #4a3588;
  --violet: #8a70eb;
  --violet-dark: #6f58d1;
  --violet-soft: #ece8ff;
  --orange: #fd7d48;
  --orange-soft: #ffd7c6;
  --text: #2f3137;
  --muted: #575b63;
  --surface: #ffffff;
  --line: #e7e1ff;
  --line-strong: #c7b9ff;
  --shadow: 0 26px 50px rgba(111, 88, 209, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1700px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 212, 0.35), transparent 28%),
    linear-gradient(180deg, #f3f0ff 0%, var(--page-bg) 30%, #f5f2ff 100%);
  color: var(--text);
  font: 16px/1.55 "Segoe UI", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
h1,
h2,
p {
  margin: 0;
  padding: 0;
}

.site-shell {
  overflow: clip;
  background:
    radial-gradient(circle at 14% 36%, rgba(197, 182, 255, 0.15), transparent 12%),
    radial-gradient(circle at 88% 63%, rgba(197, 182, 255, 0.13), transparent 10%);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topline {
  background: var(--topline);
  color: #fff;
}

.topline__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
}

.topline__items,
.topline__contact,
.socials {
  display: flex;
  align-items: center;
}

.topline__items {
  gap: 52px;
  list-style: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.topline__contact {
  gap: 14px;
  flex-shrink: 0;
}

.topline__contact > a {
  font-size: 12px;
  font-weight: 700;
}

.socials {
  gap: 8px;
  list-style: none;
}

.socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.socials li:nth-child(1) a {
  background: #8250c8;
}

.socials li:nth-child(2) a {
  background: #2aa7e3;
}

.socials li:nth-child(3) a {
  background: #2284ec;
}

.socials li:nth-child(4) a {
  background: #59c659;
}

.navbar {
  padding: 14px 0 10px;
}

.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand img {
  width: 220px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav__accent {
  color: var(--violet);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--call,
.button--secondary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 22px rgba(253, 125, 72, 0.22);
}

.button--primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 12px 22px rgba(138, 112, 235, 0.24);
}

.button--ghost {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--violet);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.hero {
  position: relative;
  padding: 18px 0 0;
}

.hero::before,
.services::before,
.portfolio::before,
.reviews::before {
  content: "";
  position: absolute;
  background: rgba(166, 145, 246, 0.2);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  pointer-events: none;
}

.hero::before {
  top: 92px;
  right: 14%;
  width: 76px;
  height: 76px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  align-items: center;
  gap: 28px;
}

.hero__content {
  position: relative;
  padding: 38px 0 40px;
}

.hero__spark {
  position: absolute;
  top: 4px;
  left: -6px;
  width: 42px;
  height: 42px;
}

.hero__spark span {
  position: absolute;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--orange);
}

.hero__spark span:nth-child(1) {
  top: -1px;
  left: 14px;
  transform: rotate(-32deg);
}

.hero__spark span:nth-child(2) {
  top: 4px;
  left: 26px;
  height: 16px;
  transform: rotate(11deg);
}

.hero__spark span:nth-child(3) {
  top: 18px;
  left: 2px;
  height: 16px;
  transform: rotate(-69deg);
}

.hero h1,
.stat strong,
.next-step h2,
.hero__list li,
.nav,
.button,
.topline,
.stat h2 {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(42px, 4.8vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero__intro,
.hero__label {
  max-width: 740px;
}

.hero__intro {
  display: none;
}

.hero__label {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
}

.hero__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 12px;
}

.hero__list ul {
  list-style: none;
}

.hero__list li {
  position: relative;
  padding-left: 34px;
  min-height: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__list li + li {
  margin-top: 12px;
}

.hero__list li::before,
.hero__list li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}

.hero__list li::before {
  top: 1px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--violet);
}

.hero__list li::after {
  top: 6px;
  left: 6px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  border-radius: 0;
  transform: rotate(-45deg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__visual {
  position: relative;
  align-self: end;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 6% 4% 10% 8%;
  background: #ffe2d6;
  border-radius: 40% 44% 38% 36%;
}

.hero__visual img {
  position: relative;
  width: min(100%, 720px);
  margin-left: auto;
}

.stats {
  margin-top: -16px;
  padding-bottom: 78px;
}

.stats__card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 18px 28px 14px;
  border: 1px solid rgba(138, 112, 235, 0.08);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  padding-inline: 18px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -12px;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(138, 112, 235, 0.12);
}

.stat strong {
  display: block;
  color: var(--violet);
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.stat h2 {
  margin-top: 8px;
  font-size: 14px;
  text-transform: none;
}

.stat p {
  margin-top: 2px;
  max-width: 20ch;
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
}

.guarantees {
  position: relative;
  padding: 14px 0 92px;
}

.guarantees::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 10%;
  width: 120px;
  height: 120px;
  background: rgba(166, 145, 246, 0.16);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  pointer-events: none;
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.guarantee-card h3 {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.section-heading h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-heading p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-heading--compact {
  max-width: 980px;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guarantee-card {
  min-height: 220px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(138, 112, 235, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 24px rgba(111, 88, 209, 0.06);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.guarantee-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #987ff4 0%, var(--violet) 62%, var(--violet-dark) 100%);
  box-shadow: inset 0 -10px 18px rgba(70, 49, 154, 0.24);
}

.guarantee-card__icon img {
  width: 24px;
  height: 24px;
}

.guarantee-card h3 {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.guarantee-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.guarantees__more {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.link-more {
  color: var(--orange);
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.services {
  position: relative;
  padding: 10px 0 96px;
}

.services::before {
  right: 7%;
  bottom: 40px;
  width: 110px;
  height: 110px;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: end;
}

.services .section-heading {
  max-width: 540px;
  margin: 0 0 22px;
  text-align: left;
}

.services .section-heading h2 {
  font-size: clamp(30px, 3.8vw, 54px);
}

.services .section-heading p {
  max-width: 430px;
  font-size: 12px;
  line-height: 1.45;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 92px;
  padding: 12px 12px 10px;
  border: 1.5px solid rgba(138, 112, 235, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 18px rgba(111, 88, 209, 0.06);
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: linear-gradient(180deg, #947cf1 0%, #7a62dd 100%);
}

.service-card__icon img {
  width: 12px;
  height: 12px;
}

.service-card h3 {
  margin-top: 10px;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 12px;
  color: var(--violet);
  font-size: 7px;
  text-transform: uppercase;
}

.service-card strong {
  font-size: 18px;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-card--featured {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(138, 112, 235, 0.32);
}

.service-card--featured h3 {
  margin-top: 18px;
  color: var(--violet);
  font-size: 28px;
  line-height: 0.9;
}

.services__art {
  position: relative;
  min-height: 410px;
}

.services__art::before,
.services__art::after {
  content: "";
  position: absolute;
  background: rgba(166, 145, 246, 0.24);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.services__art::before {
  top: 76px;
  left: 14px;
  width: 62px;
  height: 62px;
}

.services__art::after {
  right: 0;
  bottom: 26px;
  width: 60px;
  height: 60px;
}

.services__art img {
  position: absolute;
  right: -18px;
  bottom: -10px;
  width: 410px;
  max-width: none;
}

.services__actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.steps {
  padding: 10px 0 88px;
}

.steps .section-heading {
  max-width: 820px;
  margin-bottom: 18px;
}

.steps .section-heading h2 {
  font-size: clamp(28px, 3.6vw, 48px);
}

.steps .section-heading p {
  font-size: 11px;
  line-height: 1.4;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.step-card {
  padding: 8px 10px 10px;
  border-radius: 0;
  border-right: 1px solid rgba(138, 112, 235, 0.16);
  background: transparent;
  text-align: center;
}

.step-card__art {
  width: 100%;
  height: 70px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #cdbfff 0%, #9f88f5 100%);
}

.step-card__art--orange {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #ffc3a4 0%, #fd7d48 100%);
}

.step-card__art--peach {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #ffd8cb 0%, #ffad8c 100%);
}

.step-card__art--soft {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #ece8ff 0%, #c9beff 100%);
}

.step-card__art--dark {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(135deg, #58606f 0%, #28313f 100%);
}

.step-card__art--violet-light {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #b69dff 0%, #8a70eb 100%);
}

.step-card__number,
.step-card h3 {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.step-card__number {
  margin-top: 8px;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.step-card h3 {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.15;
  text-transform: uppercase;
}

.steps__note {
  max-width: 520px;
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.steps__actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.portfolio {
  position: relative;
  padding: 6px 0 82px;
}

.portfolio::before {
  left: 6%;
  bottom: 90px;
  width: 112px;
  height: 112px;
}

.portfolio__icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.portfolio__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: #967bf1;
  box-shadow: 0 10px 16px rgba(111, 88, 209, 0.1);
}

.portfolio__icon img {
  width: 14px;
  height: 14px;
}

.portfolio__icon--active {
  background: var(--orange);
}

.portfolio__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.portfolio__tab {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-card {
  max-width: none;
  margin: 0;
  min-height: 206px;
  padding: 14px 14px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(111, 88, 209, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.portfolio-card__meta span,
.portfolio-card h3,
.portfolio-card__list dt {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.portfolio-card__meta span {
  display: inline-flex;
  color: var(--violet);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 0.95;
  text-transform: uppercase;
}

.portfolio-card p {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.35;
  color: var(--muted);
}

.portfolio-card__list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.portfolio-card__list div {
  display: grid;
  gap: 4px;
}

.portfolio-card__list dt {
  font-size: 10px;
  text-transform: uppercase;
}

.portfolio-card__list dd {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
}

.slider-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(138, 112, 235, 0.25);
  border-radius: 50%;
  background: #fff;
  color: var(--violet);
  font-size: 24px;
}

.slider-arrow--next {
  border-color: rgba(253, 125, 72, 0.35);
  color: var(--orange);
}

.portfolio__more {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.portfolio__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.reviews {
  position: relative;
  padding: 10px 0 70px;
}

.reviews::before {
  right: 8%;
  top: 126px;
  width: 90px;
  height: 90px;
}

.reviews .section-heading {
  margin-bottom: 20px;
}

.reviews .section-heading h2 {
  font-size: clamp(30px, 3.8vw, 50px);
}

.reviews .section-heading p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 11px;
  line-height: 1.45;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  max-width: none;
  margin: 0;
  padding: 10px 12px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 20px rgba(111, 88, 209, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f5d8cf 0 22%, transparent 23%),
    radial-gradient(circle at 50% 78%, #9e7055 0 30%, transparent 31%),
    linear-gradient(180deg, #8e685b 0%, #5f463c 100%);
}

.review-card__avatar--accent {
  background:
    radial-gradient(circle at 50% 35%, #ffd9c8 0 22%, transparent 23%),
    radial-gradient(circle at 50% 78%, #f39b74 0 30%, transparent 31%),
    linear-gradient(180deg, #ffcfba 0%, #ff8f61 100%);
}

.review-card h3 {
  margin: 0;
  font-size: 9px;
  line-height: 1.2;
}

.review-card__head p {
  margin-top: 2px;
  font-size: 8px;
  color: var(--muted);
}

.review-card__stars {
  margin-top: 8px;
  color: #ffbf34;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.review-card blockquote {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.review-card__source {
  display: inline-flex;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}

.reviews__actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.contact-section {
  padding: 8px 0 64px;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-aside__illustration,
.faq-cta__art {
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.8), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(135deg, #c7bbff 0%, #9a82f3 100%);
}

.contact-aside__illustration {
  height: 220px;
}

.contact-aside p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-aside__list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.contact-aside__list li,
.contact-aside__list a {
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  padding: 24px 24px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 26px rgba(111, 88, 209, 0.06);
}

.guarantee-card:hover,
.service-card:hover,
.portfolio-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(111, 88, 209, 0.1);
}

.service-card--featured:hover {
  border-color: rgba(138, 112, 235, 0.5);
}

.contact-form h2,
.faq-cta__content h2,
.footer-nav h3,
.footer-contacts h3 {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  text-transform: uppercase;
}

.contact-form h2,
.faq-cta__content h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 0.95;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.field span {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.field input,
.field textarea,
.faq-cta__form input {
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 2px solid #ddd7f4;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

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

.contact-form__actions p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.contact-form__actions a {
  text-decoration: underline;
}

.faq-cta {
  padding: 4px 0 60px;
}

.faq-cta__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.faq-cta__art {
  height: 220px;
}

.faq-cta__content p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.faq-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.faq-cta__form input {
  padding-bottom: 12px;
}

.site-footer {
  padding: 12px 0 26px;
  border-top: 1px solid rgba(138, 112, 235, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(170px, 0.62fr) minmax(170px, 0.72fr) minmax(220px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-brand .button {
  margin-top: 16px;
}

.footer-nav,
.footer-contacts {
  display: grid;
  gap: 8px;
}

.footer-nav h3,
.footer-contacts h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.footer-nav a,
.footer-contacts a,
.footer-contacts span,
.footer-contacts p {
  font-size: 11px;
  line-height: 1.4;
}

.footer-contacts p {
  margin: 5px 0 -2px;
}

.footer-contacts strong {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  text-transform: uppercase;
}

.footer-contacts__socials {
  margin-top: 4px;
}

.footer-contacts .button {
  margin-top: 10px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid #d8d0f1;
}

.stats,
.guarantees,
.services,
.steps,
.portfolio,
.reviews,
.contact-section,
.faq-cta {
  scroll-margin-top: 90px;
}

.footer__bottom span,
.footer__bottom a {
  color: var(--muted);
  font-size: 10px;
}

.footer__links {
  display: flex;
  gap: 18px;
}

/* Services page */
.service-hero {
  padding: 24px 0 40px;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.service-hero__content h1 {
  margin: 0;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.service-hero__lead {
  margin-top: 14px;
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-hero__bullets li {
  position: relative;
  padding-left: 26px;
}

.service-hero__bullets li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--violet);
}

.service-hero__bullets li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(-45deg);
}

.service-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.service-hero__form {
  padding: 18px 18px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 26px rgba(111, 88, 209, 0.08);
}

.service-hero__form h2 {
  margin: 0 0 8px;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.service-hero__form select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #ddd7f4;
  background: transparent;
  padding: 0 0 12px;
  font: inherit;
  font-size: 13px;
  color: var(--text);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.service-intro {
  padding: 10px 0 26px;
}

.service-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs span {
  color: var(--violet);
  font-weight: 700;
}

.service-prices {
  padding: 0 0 40px;
}

.service-prices__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.35fr);
  gap: 18px;
  align-items: start;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(111, 88, 209, 0.06);
  display: grid;
  gap: 10px;
}

.price-card h3 {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.price-card strong {
  font-size: 14px;
  color: var(--violet);
}

.price-card--highlight {
  background: #fff5ef;
  border: 1px solid rgba(253, 125, 72, 0.3);
  text-align: center;
}

.price-card--highlight span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

.service-steps .steps__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-factors {
  padding: 6px 0 52px;
}

.service-factors__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.service-factors__text h2 {
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.service-factors__text p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.service-factors__art img {
  width: 100%;
}

.service-factors__cards {
  display: grid;
  gap: 12px;
}

.service-factors__cards article {
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(111, 88, 209, 0.06);
}

.service-factors__cards h3 {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
}

.service-factors__cards p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.service-guarantees .guarantees__grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-other {
  padding: 0 0 44px;
}

.other-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.other-card {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(111, 88, 209, 0.06);
  display: grid;
  gap: 10px;
}

.other-card--accent {
  background: #fff5ef;
  border: 1px solid rgba(253, 125, 72, 0.35);
}

.other-card h3 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.other-card strong {
  color: var(--violet);
  font-size: 12px;
}

.service-self {
  padding: 12px 0 52px;
}

.service-self__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.service-self__content h2 {
  font-size: 22px;
  text-transform: uppercase;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.service-self__content p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.service-self__list {
  margin-top: 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 12px;
}

.service-self__list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--violet);
}

.service-writing {
  padding: 8px 0 48px;
}

.service-writing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
  gap: 24px;
  align-items: center;
}

.service-writing__grid--split {
  margin-top: 18px;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: start;
}

.service-writing__table {
  display: grid;
  gap: 8px;
}

.service-writing__table div {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(111, 88, 209, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.service-writing__list h3 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.service-writing__list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  display: grid;
  gap: 6px;
}

.service-faq {
  padding: 10px 0 44px;
}

.service-faq h2 {
  margin: 0 0 12px;
  font-size: 22px;
  text-transform: uppercase;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.service-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-faq__grid button {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(138, 112, 235, 0.12);
  background: #fff;
  font-size: 11px;
}

.service-discounts {
  padding: 10px 0 44px;
}

.discounts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.discounts article {
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  font-size: 11px;
  box-shadow: 0 10px 18px rgba(111, 88, 209, 0.06);
}

.discounts__accent {
  background: #fff5ef;
  border: 1px solid rgba(253, 125, 72, 0.35);
}

.discounts strong {
  display: block;
  font-size: 16px;
  color: var(--orange);
}

.discounts__actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.service-disciplines {
  padding: 10px 0 52px;
}

.disciplines {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.disciplines div {
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(111, 88, 209, 0.06);
}

.disciplines strong {
  display: block;
  font-size: 12px;
  color: var(--orange);
}

.disciplines span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

.disciplines__actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.service-cta {
  padding: 8px 0 60px;
}

.service-cta__inner {
  display: grid;
  grid-template-columns: minmax(200px, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.service-cta__art {
  height: 180px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.8), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(135deg, #c7bbff 0%, #9a82f3 100%);
}

.service-cta__content h2 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Arial Narrow", "Segoe UI Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

.service-cta__content p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.service-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.service-cta__form input {
  padding: 0 0 12px;
  border: 0;
  border-bottom: 2px solid #ddd7f4;
  background: transparent;
  font: inherit;
  font-size: 13px;
}


@media (max-width: 1720px) {
  .topline__items {
    gap: 28px;
    font-size: 10px;
  }

  .topline__contact > a {
    font-size: 11px;
  }

  .brand img {
    width: 210px;
  }

  .nav {
    gap: 18px;
    font-size: 10px;
  }

  .button {
    min-height: 52px;
    padding: 0 24px;
    font-size: 12px;
  }

  .hero__list li {
    font-size: 12px;
  }
}

@media (max-width: 1280px) {
  .topline__inner,
  .navbar__inner,
  .hero__inner,
  .stats__card {
    gap: 24px;
  }

  .topline {
    display: none;
  }

  .navbar {
    padding-top: 18px;
  }

  .navbar__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav,
  .button--call {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 20;
  }

  .navbar {
    position: relative;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .stats__card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(2)::after {
    display: none;
  }

  .guarantees__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__layout,
  .portfolio__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .services__art {
    min-height: 360px;
    max-width: 420px;
    margin: 0 auto;
  }

  .services__art img {
    right: 0;
    width: 100%;
    max-width: 420px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio__actions,
  .footer__links {
    flex-wrap: wrap;
  }

  .contact-section__grid,
  .faq-cta__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .faq-cta__form {
    grid-template-columns: 1fr;
  }

  .service-hero__grid,
  .service-intro__grid,
  .service-prices__grid,
  .service-factors__grid,
  .service-self__grid,
  .service-writing__grid,
  .service-writing__grid--split,
  .service-cta__inner {
    grid-template-columns: 1fr;
  }

  .price-cards,
  .other-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .disciplines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-cta__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .navbar__inner {
    grid-template-columns: auto auto;
    gap: 18px;
  }

  .brand img {
    width: 170px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero__content {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 54px;
  }

  .hero__label {
    margin-top: 16px;
    font-size: 18px;
  }

  .hero__list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-top: 20px;
  }

  .hero__list li {
    padding-left: 34px;
    min-height: auto;
    font-size: 10px;
    line-height: 1.3;
  }

  .hero__list li + li {
    margin-top: 12px;
  }

  .hero__list li::before {
    top: 0;
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .hero__list li::after {
    top: 6px;
    left: 7px;
    width: 9px;
    height: 5px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 12px;
    border-width: 2px;
  }

  .hero__visual {
    max-width: 320px;
  }

  .stats {
    margin-top: 0;
    padding-bottom: 44px;
  }

  .stats__card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 12px;
    border-radius: 18px;
  }

  .stat {
    padding-inline: 0;
  }

  .stat::after {
    display: none;
  }

  .stat strong {
    font-size: 38px;
  }

  .stat h2 {
    margin-top: 8px;
    font-size: 14px;
  }

  .stat p {
    font-size: 11px;
    line-height: 1.35;
  }

  .guarantees {
    padding: 8px 0 56px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    margin-top: 12px;
    font-size: 15px;
  }

  .guarantees__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .guarantee-card {
    min-height: auto;
    padding: 18px 14px 20px;
    border-radius: 12px;
  }

  .guarantee-card__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .guarantee-card__icon img {
    width: 34px;
    height: 34px;
  }

  .guarantee-card h3 {
    font-size: 18px;
  }

  .guarantee-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .guarantees__more {
    margin-top: 20px;
  }

  .link-more {
    font-size: 18px;
  }

  .services {
    padding: 10px 0 56px;
  }

  .services__layout {
    gap: 18px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 14px 12px;
    border-radius: 12px;
    min-height: 120px;
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .service-card__icon img {
    width: 18px;
    height: 18px;
  }

  .service-card h3 {
    margin-top: 10px;
    font-size: 16px;
  }

  .service-card p {
    margin-top: 8px;
    font-size: 12px;
  }

  .service-card strong {
    font-size: 18px;
  }

  .service-card--featured h3 {
    margin-top: 12px;
    font-size: 24px;
  }

  .services__art {
    min-height: 240px;
    max-width: 300px;
  }

  .services__art img {
    width: 300px;
  }

  .services__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .steps {
    padding: 10px 0 56px;
  }

  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .step-card {
    padding: 12px 10px 14px;
    border-radius: 12px;
    border-right: 0;
    background: rgba(255, 255, 255, 0.55);
  }

  .step-card__art {
    height: 72px;
    border-radius: 14px;
  }

  .step-card__number {
    margin-top: 10px;
    font-size: 34px;
  }

  .step-card h3 {
    margin-top: 6px;
    font-size: 15px;
  }

  .steps__note {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .steps__actions {
    margin-top: 18px;
  }

  .portfolio {
    padding: 10px 0 56px;
  }

  .portfolio__icons {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }

  .portfolio__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .portfolio__icon img {
    width: 16px;
    height: 16px;
  }

  .portfolio__tabs {
    margin-bottom: 16px;
  }

  .portfolio__tab {
    font-size: 11px;
  }

  .portfolio-card {
    padding: 18px 14px 16px;
    border-radius: 12px;
  }

  .portfolio-card__meta span {
    font-size: 12px;
  }

  .portfolio-card h3 {
    margin-top: 10px;
    font-size: 24px;
  }

  .portfolio-card p,
  .portfolio-card__list dt,
  .portfolio-card__list dd {
    font-size: 14px;
  }

  .portfolio-card__list {
    gap: 10px;
    margin-top: 16px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .portfolio__more {
    margin-top: 16px;
  }

  .portfolio__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .reviews {
    padding: 8px 0 56px;
  }

  .reviews__grid {
    gap: 12px;
  }

  .review-card {
    max-width: 100%;
    padding: 18px 14px 16px;
    border-radius: 12px;
  }

  .review-card__avatar {
    width: 48px;
    height: 48px;
  }

  .review-card h3 {
    font-size: 16px;
  }

  .review-card__head p,
  .review-card__source {
    font-size: 12px;
  }

  .review-card__stars {
    margin-top: 12px;
    font-size: 18px;
  }

  .review-card blockquote {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .reviews__actions {
    margin-top: 18px;
  }

  .contact-section,
  .faq-cta,
  .site-footer {
    padding: 8px 0 56px;
  }

  .contact-section__grid,
  .faq-cta__inner {
    gap: 18px;
  }

  .contact-aside__illustration,
  .faq-cta__art {
    height: 180px;
    border-radius: 16px;
  }

  .contact-aside p,
  .faq-cta__content p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-aside__list {
    gap: 10px;
    margin-top: 16px;
  }

  .contact-aside__list li,
  .contact-aside__list a {
    font-size: 14px;
  }

  .contact-form {
    padding: 18px 14px 16px;
    border-radius: 12px;
  }

  .field {
    gap: 6px;
    margin-top: 14px;
  }

  .field span {
    font-size: 12px;
  }

  .field input,
  .field textarea,
  .faq-cta__form input {
    padding-bottom: 10px;
    font-size: 14px;
  }

  .field textarea {
    min-height: 90px;
  }

  .contact-form__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 18px;
  }

  .contact-form__actions p {
    max-width: none;
    font-size: 12px;
  }

  .faq-cta__form {
    gap: 12px;
    margin-top: 18px;
  }

  .footer-brand img {
    width: 170px;
  }

  .footer-brand p,
  .footer-nav a,
  .footer-contacts a,
  .footer-contacts span,
  .footer-contacts p {
    font-size: 14px;
  }

  .footer-nav,
  .footer-contacts {
    gap: 10px;
  }

  .footer-nav h3,
  .footer-contacts h3 {
    font-size: 18px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    padding-top: 14px;
  }

  .footer__bottom span,
  .footer__bottom a {
    font-size: 12px;
  }

  .footer__links {
    display: grid;
    gap: 8px;
  }

  .service-hero__bullets {
    grid-template-columns: 1fr;
  }

  .service-hero__actions {
    flex-direction: column;
  }

  .price-cards,
  .other-services {
    grid-template-columns: 1fr;
  }

  .discounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .disciplines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-faq__grid {
    grid-template-columns: 1fr;
  }
}
