:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #9a9a9a;
  --soft: #6b6b6b;
  --panel: #e6e6e6;
  --panel-2: #f1f1f1;
  --line: #e2e2e2;
  --dark: #0b0b0b;
  --accent: #9cf53c;
  --accent-deep: #3f8f0b;
  --radius-lg: 28px;
  --radius: 20px;
  --gutter: clamp(16px, 3.4vw, 56px);
  --font: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.muted {
  color: var(--muted);
}

/* ---------- Мелкие элементы ---------- */
.eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-deep);
}

.eyebrow--light {
  color: var(--accent);
}

.dot {
  display: inline-block;
  flex: none;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  vertical-align: 0.2em;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

a.tag:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.tag--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

a.tag--light:hover {
  background: #fff;
  color: var(--text);
}

/* «Таблетка» со свечением — аналог картинки-пилюли у Kinetic */
.glow-pill {
  display: inline-block;
  flex: none;
  width: 54px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(60% 90% at 30% 50%, rgba(214, 255, 150, 0.95), transparent 60%),
    radial-gradient(90% 120% at 55% 60%, var(--accent), transparent 70%),
    linear-gradient(100deg, #050505 10%, #1d3a06 55%, #050505 95%);
  box-shadow:
    0 0 18px rgba(156, 245, 60, 0.45),
    inset 0 0 6px rgba(0, 0, 0, 0.6);
}

.glow-pill--inline {
  width: 1.9em;
  height: 0.9em;
  margin: 0 0.1em;
  vertical-align: 0;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn--dark:hover {
  background: #2a2a2a;
}

.btn--outline {
  border-color: var(--text);
}

.btn--outline:hover {
  background: var(--text);
  color: #fff;
}

.btn--ghost {
  padding: 0 8px;
}

.btn--ghost:hover {
  opacity: 0.6;
}

.btn--pill {
  min-height: 56px;
  padding: 0 26px 0 8px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.btn--pill .glow-pill {
  width: 70px;
  height: 40px;
}

.btn--pill:hover {
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.08),
    0 0 0 4px rgba(156, 245, 60, 0.35);
}

.btn--light {
  color: var(--text);
}

.btn--full {
  width: 100%;
}

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d6ff96, var(--accent) 45%, #245a02 100%);
  box-shadow: 0 0 12px rgba(156, 245, 60, 0.6);
}

.nav {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s;
}

.nav a:hover::after {
  opacity: 1;
}

.header__cta {
  min-height: 42px;
  font-size: 14px;
}

.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
}

.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s;
}

.burger span:first-child {
  top: 15px;
}

.burger span:last-child {
  top: 23px;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 8px;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  height: clamp(640px, calc(100vh - 100px), 900px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(50% 45% at 50% 55%, #f4f4f4 0%, transparent 70%),
    linear-gradient(180deg, #ececec 0%, #dedede 100%);
}

.hero__intro {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  left: clamp(24px, 3.4vw, 56px);
  z-index: 4;
  max-width: 540px;
}

.hero__meta {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
}

.hero__title {
  font-size: clamp(34px, 3.3vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero__title span {
  display: block;
  color: var(--muted);
}

.hero__lead {
  max-width: 400px;
  margin-top: 18px;
  font-size: 15px;
  color: var(--soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero__mascot {
  position: absolute;
  left: 57%;
  bottom: 0;
  z-index: 2;
  width: clamp(460px, 44vw, 760px);
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}

.hero__word {
  position: absolute;
  left: 50%;
  bottom: -0.1em;
  z-index: 3;
  font-size: clamp(120px, 23vw, 390px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #fff;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.hero__card {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(24px, 3.4vw, 56px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 240px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.hero__card:hover {
  transform: translateY(-4px);
}

.hero__card-img {
  overflow: hidden;
  border-radius: 14px;
}

.hero__card-img img {
  width: 100%;
  transition: transform 0.4s;
}

.hero__card:hover .hero__card-img img {
  transform: scale(1.05);
}

.hero__card-text {
  padding: 12px 8px 6px;
  font-size: 15px;
  font-weight: 500;
}

.hero__card-text small {
  display: block;
  margin-top: 2px;
  padding-left: 18px;
  font-size: 12px;
  color: var(--soft);
}

.socials {
  position: absolute;
  top: 50%;
  right: clamp(24px, 3.4vw, 56px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.socials__link {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.socials__link:hover {
  background: var(--dark);
  color: #fff;
}

.socials__link--text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.socials__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ---------- Секции ---------- */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.section__head {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.h2 {
  max-width: 900px;
  font-size: clamp(32px, 3.6vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--soft);
}

/* ---------- О подходе ---------- */
.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__text {
  position: relative;
  max-width: 980px;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: left;
}

.star {
  display: inline-block;
  margin-right: 0.3em;
  font-size: 0.8em;
  color: var(--accent-deep);
}

.perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
  width: 100%;
  margin-top: clamp(48px, 6vw, 96px);
}

.perk {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 300px;
  padding: 20px;
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.perk:hover {
  transform: translateY(-6px);
}

.perk .tag {
  align-self: flex-start;
}

.perk__title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.perk--dark {
  min-height: 340px;
  background: var(--dark);
  color: #fff;
}

.perk--glow {
  min-height: 300px;
  color: #fff;
  background:
    radial-gradient(70% 50% at 70% 35%, rgba(156, 245, 60, 0.85), transparent 70%),
    radial-gradient(60% 40% at 20% 70%, rgba(63, 143, 11, 0.9), transparent 70%),
    #070707;
}

.perk--gray {
  min-height: 370px;
  background: linear-gradient(160deg, #d9d9d9, #b9b9b9);
}

.perk--light {
  min-height: 280px;
  background: var(--panel-2);
}

/* ---------- Что создаю ---------- */
.services {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}

.service__title {
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.service__text {
  font-size: 15px;
  color: var(--soft);
}

.service__meta {
  display: flex;
  gap: 8px;
}

.service__cta {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--panel-2);
  font-size: 20px;
  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.service:hover .service__cta,
.service__cta:focus-visible {
  background: var(--dark);
  color: var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Этапы ---------- */
.stages {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.stage {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel-2);
}

.stage__num {
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
}

.stage__title {
  margin-top: auto;
  padding-top: 48px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stage__text {
  margin-top: 12px;
  font-size: 14px;
  color: var(--soft);
}

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

.stage--dark .stage__num,
.stage--dark .stage__text {
  color: #9a9a9a;
}

.stage--glow {
  color: #fff;
  background:
    radial-gradient(80% 50% at 80% 10%, rgba(156, 245, 60, 0.75), transparent 70%),
    #070707;
}

.stage--glow .stage__num,
.stage--glow .stage__text {
  color: #b5b5b5;
}

/* ---------- Кейсы ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: #fff;
  transition: transform 0.3s;
}

.case:hover {
  transform: translateY(-6px);
}

.case--dark {
  background:
    radial-gradient(60% 60% at 85% 100%, rgba(156, 245, 60, 0.55), transparent 70%),
    #0b0b0b;
}

.case--glow {
  background:
    radial-gradient(70% 55% at 20% 10%, rgba(156, 245, 60, 0.7), transparent 70%),
    radial-gradient(50% 50% at 100% 100%, rgba(63, 143, 11, 0.8), transparent 70%),
    #0b0b0b;
}

.case__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case__title {
  margin-top: auto;
  max-width: 560px;
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.case__result {
  margin-top: 14px;
  color: #b5b5b5;
}

.case__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: #b5b5b5;
}

.case__arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 20px;
  transition:
    background-color 0.2s,
    transform 0.2s;
}

.case__arrow:hover {
  background: var(--accent);
  transform: rotate(-45deg);
}

/* ---------- CTA ---------- */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(56px, 7vw, 110px) 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(45% 60% at 50% 110%, rgba(156, 245, 60, 0.7), transparent 70%),
    #0b0b0b;
}

.cta__title {
  max-width: 860px;
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.cta__text {
  max-width: 520px;
  margin: 20px 0 32px;
  color: #b5b5b5;
}

/* ---------- Контакты и бриф ---------- */
.contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contacts__card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contacts__card--gray {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background: var(--panel-2);
}

.brief__img {
  position: absolute;
  top: 0;
  right: -12px;
  width: min(300px, 42%);
  pointer-events: none;
}

.contacts__card--gray .eyebrow,
.contacts__card--gray .brief__text {
  position: relative;
  max-width: 56%;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: auto;
}

.contacts__list dt {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--soft);
}

.contacts__list dd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contacts__list dd .tag {
  font-size: 15px;
  padding: 10px 18px;
  letter-spacing: 0;
}

.contacts__list dd > a:not(.tag):hover {
  opacity: 0.6;
}

.brief__text {
  max-width: 560px;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brief__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 40px;
}

/* ---------- Футер ---------- */
.footer {
  padding: 32px 0 40px;
  font-size: 13px;
  color: var(--soft);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------- Модалка ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fade 0.2s ease;
}

.modal[hidden] {
  display: none;
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 36px 32px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel-2);
  font-size: 24px;
  line-height: 1;
}

.modal__close:hover {
  background: var(--dark);
  color: #fff;
}

.modal__title {
  padding-right: 44px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.modal__text {
  margin-top: 12px;
  color: var(--soft);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
}

.field input {
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-2);
  font: inherit;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.field input:focus {
  border-color: var(--text);
  background: #fff;
}

.field input.is-invalid {
  border-color: #d33;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--soft);
  cursor: pointer;
}

.consent input {
  margin: 2px 0 0;
  accent-color: var(--dark);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form__status {
  min-height: 1.4em;
  font-size: 14px;
}

.form__status.is-error {
  color: #d33;
}

.form__status.is-ok {
  color: var(--accent-deep);
}

.form__note {
  font-size: 13px;
  color: var(--muted);
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

/* ---------- Адаптив ---------- */
@media (max-width: 1200px) {
  .stages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .service__text {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 640px;
    margin-top: -16px;
  }
}

@media (max-width: 1024px) {
  .hero__card {
    display: none;
  }

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

  .perk,
  .perk--dark,
  .perk--glow,
  .perk--gray,
  .perk--light {
    min-height: 240px;
  }

  .cases,
  .contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header__inner {
    min-height: 68px;
    justify-content: space-between;
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px var(--gutter) 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.2s,
      transform 0.2s,
      visibility 0.2s;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--panel-2);
  }

  .nav a::after {
    display: none;
  }

  html {
    scroll-padding-top: 68px;
  }

  .hero__panel {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: var(--radius);
  }

  .hero__intro {
    position: static;
    padding: 28px 20px 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__mascot {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 16px auto 0;
    transform: none;
  }

  .brief__img {
    position: static;
    width: min(320px, 80%);
    margin: -8px auto 0;
  }

  .contacts__card--gray .eyebrow,
  .contacts__card--gray .brief__text {
    max-width: none;
  }

  .hero__word {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -0.42em 0 -0.2em;
    font-size: 30vw;
    text-align: center;
    transform: none;
  }

  .socials {
    top: auto;
    bottom: 30vw;
    right: 16px;
    transform: none;
  }

  .socials__link {
    width: 40px;
    height: 40px;
  }

  .about .container {
    align-items: stretch;
  }

  .perks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .perk,
  .perk--dark,
  .perk--glow,
  .perk--gray,
  .perk--light {
    min-height: 180px;
  }

  .service {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 16px;
    padding: 22px 0;
  }

  .service__text {
    grid-row: auto;
    margin-top: 0;
    font-size: 14px;
  }

  .service__meta {
    grid-column: 1;
  }

  .service__cta {
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    height: 44px;
  }

  .stages {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stage {
    min-height: 0;
  }

  .stage__title {
    padding-top: 24px;
  }

  .case {
    min-height: 380px;
    padding: 20px;
    border-radius: var(--radius);
  }

  .cta {
    border-radius: var(--radius);
  }

  .contacts__card {
    min-height: 0;
    gap: 32px;
    border-radius: var(--radius);
  }

  .brief__actions {
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
  }

  .modal__box {
    padding: 28px 20px 20px;
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
