:root {
  --color-bg: #F5F1F5;
  --color-surface: #ffffff;
  --color-text: #140c15;
  --color-muted: rgba(20, 12, 21, 0.65);
  --color-dark: #0e0c0f;
  --color-primary: #fb7dff;
  --color-primary-strong: #FB7DFF;
  --color-border: rgba(20, 12, 21, 0.12);
  --color-border-strong: rgba(20, 12, 21, 0.32);
  --radius-large: 40px;
  --radius-medium: 28px;
  --radius-small: 18px;
  --max-width: 1280px;
  font-family: 'Montserrat', Arial, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: inline;
    padding-bottom: 140px;
}

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

.section-title {
  font-size: clamp(2.75rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.section-title--light {
  color: #f3e7f4;
}

.chip div {
  color: #fa7dff;
  display: contents;
}

.chip {
      display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.chip--accent {
    text-align: end;
}

.chip--solid {
  background: var(--color-primary);
  color: #fff;
}

.chip--outline {
  border-color: rgba(251, 125, 255, 0.55);
  color: #fff;
  background: rgba(251, 125, 255, 0.1);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 15px;
  border: 3px solid transparent;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button--primary {
      padding: 8px 16px;
    background-color: #fa7dff;
    color: white;
    font-size: 1.5rem;
}

.button--outline {
  padding: 8px 16px;
    background-color: #fa7dff;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
}

.button--ghost {
  border-color: #fa7dff;
  color: var(--color-dark);
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 8, 15, 0.1);
  color: black;
  background-color: #fa7dff;
}

.button:focus-visible {
  outline: 3px solid rgba(251, 125, 255, 0.45);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(25px);
  color: var(--color-text);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.light {
  background-color: rgba(255, 255, 255, 0%);
  color: var(--color-text);
  box-shadow: 0 10px 30px rgba(17, 10, 17, 0.01);
}

.site-header.dark {
  background-color: rgb(0 0 0 / 0%);
  color: #f6eff8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.01);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 94px;
}

.site-logo__image {
  width: clamp(200px, 12vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav__link.light {
  background-color: rgba(255, 255, 255, 30%);
}

.site-nav__link {
    padding: 6px 12px;  
    text-decoration: none;
    display: inline-flex;
    flex: 0 0 auto;
    border-radius: 5px;
    border: 1px solid;
    border-color: #fa7dff;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 8, 15, 0.1);
    color: black;
    background-color: #fa7dff;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(20, 12, 21, 0.35);
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.site-header__burger span,
.site-header__burger::before,
.site-header__burger::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.dark .site-header__burger {
  border-color: rgba(246, 239, 248, 0.4);
  color: #fff;
}

.site-header.dark .site-header__burger.is-open {
  border-color: #fb7dff;
}

.site-header.dark .site-header__burger span,
.site-header.dark .site-header__burger::before,
.site-header.dark .site-header__burger::after {
  background: currentColor;
}

.site-header__burger span {
  top: 50%;
  transform: translateY(-50%);
}

.site-header__burger::before {
  top: 16px;
}

.site-header__burger::after {
  bottom: 16px;
}

.site-header__burger.is-open {
  border-color: #fb7dff;
}

.site-header__burger.is-open span {
  opacity: 0;
}

.site-header__burger.is-open::before,
.site-header__burger.is-open::after {
  background: #fff;
}

.site-header__burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header__burger.is-open::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  padding-block: 50px 20px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 80px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 2;
  background: url(assets/images/scribbles/vector-1.png) left / contain no-repeat;
    background-size: 60%;
    background-position-y: top;
}

.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 550px;
  align-items: center;
  position: relative;
}

.hero__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.hero__kicker {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0;
}

.hero__text {
  font-size: 0.8rem;
  padding-bottom: 8%;
  text-transform: uppercase;
    text-align: justify;
}

.b {
  font-size: 1.3rem;
  font-weight: 900;
}

.hero__cta {
  display: inline-flex;
    width: 100%;
    gap: 10%;
}

.hero__cta .button {
  width: 50%;
  justify-content: center;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.hero__scribble {
  position: absolute;
  inset: -20px;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
}

.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.hero__image-wrapper::after {
  content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 90px;
    background: radial-gradient(ellipse at center, rgb(251 125 255 / 52%) 0%, rgb(251 125 255 / 48%) 70%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero__content .hero__image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: block;
}

.hero__heart {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 33px;
  z-index: 2;
}

.hero__heart svg:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 36px;
}

.hero__heart svg:last-child {
  position: absolute;
  left: 5px;
  top: 9px;
  width: 26px;
  height: 24px;
}

.about {
  padding: 20px 0 50px;
  background: url(assets/images/scribbles/vector-18.png) center top / contain no-repeat;
  position: relative;
  background-color: #0f0c11;
  color: #f8f3fb;
  overflow: hidden;
}

.about__wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px 72px;
  align-items: center;
}

.about__header {
  position: relative;
  z-index: 2;
  margin-top: 15%;
}

.about__title {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
}

.about__figure {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.about__figure img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
}

.about__scribble {
  position: absolute;
  top: -18%;
  left: 46%;
  width: 155%;
  height: 340px;
  transform: translateX(-40%) rotate(-6deg);
  background: url('assets/images/scribbles/vector-39.png') center/contain no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.about-card {
  border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-transform: uppercase;
}

.about-card__chip {
  display: inline-flex;
      align-self: flex-start;
      padding: 8px 8px;
      border-radius: 9px;
      background: #fb7dff;
      text-align: center;
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 900;

      box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3);
}

.about-card p {
  margin: 0;
  color: rgba(246, 239, 248, 0.92);
  font-size: 0.75rem;
  text-align: justify;
}

.about-card--team {
  transform: translateY(-25%);
}

.stats {
  position: relative;
  padding: 80px 0 80px;
}

.stats__wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stats__row {
  display: grid;
  align-items: start;
  text-transform: uppercase;
}

.stats__row--first {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0px 100px;
  align-items: start;
}

.stats__title {
  margin: 12px 0;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary-strong);
}

.stats__note {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.stats__digits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
}

.stats__digits span {
  width: 100%;
    aspect-ratio: 1 / 1.1;
    display: grid;
    place-items: center;
    font-size: 3rem;
    font-weight: 800;
    border: 2px solid rgba(251, 125, 255, 0.55);
    border-radius: 18px;
    background-color: rgb(251 125 255 / 5%);
}

.stats__info--right .stats__note {
  text-align: end;
}

.why {
  position: relative;
  background: #f6eff8;
  padding: 60px 0 140px;
  overflow: hidden;
}

.why__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.why__title {
    margin: 0;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: #0f0c11;
    text-shadow: -5px 5px 0 rgba(251, 125, 255, 0.45);
}

.why__title span {
  display: inline-block;
  color: #0f0c11;
}

.why__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 48px;
  position: relative;
  z-index: 1;
}

.why__scribble {
  position: absolute;
  top: 45%;
  left: 50%;
  width: min(980px, 90%);
  height: 320px;
  transform: translate(-50%, -50%);
  background: url('assets/images/scribbles/vector-39.png') center/contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.why-item {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  grid-template-rows: auto auto;
  gap: 18px 26px;
  align-items: center;
  text-align: left;
}

.why-item__art {
  margin: 0;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
}

.why-item__art img {
  height: 140px;
}

.why-item__content {
  display: contents;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why-item__content h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.why-item__content p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(20, 12, 21, 0.78);
  line-height: 1.65;
}

.workflow {
  position: relative;
  background: #110d14;
  color: #f6eff8;
  padding: 0 0 60px;
  overflow: hidden;
}

.workflow__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.workflow__title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow__title span {
  color: #fb7dff;
}

.workflow__scribble {
    content: '';
    position: absolute;
    inset: auto 300px 100px -100px;
    height: 520px;
    background: url(assets/images/scribbles/vector-39.png) center / contain no-repeat;
    opacity: 0.7;
    pointer-events: none;
}

.workflow__scribble2 {
        content: '';
    position: absolute;
    inset: auto 0px -50px 0px;
    height: 400px;
    background: url(assets/images/scribbles/vector-5.png) center / contain no-repeat;
    pointer-events: none;
    z-index: -1;
}

.workflow__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 120px 10px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workflow-step__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: 0.08em;
}

.workflow-step__number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fb7dff;
}

.workflow-step__title {
  margin: 0;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.workflow-step__body {
  display: flex;
  gap: 6px;
  align-items: center;
}

.workflow-step__art {
  flex: 0 0 96px;
  margin: 0;
}

.workflow-step__art img {
  width: 100%;
  height: auto;
}

.workflow-step__text {
  display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(246, 239, 248, 0.88);
        text-align: justify;
}

.contact {
  position: relative;
  padding: 180px 0 160px;
  background: #f4eef7;
  overflow: hidden;
  background: url(assets/images/scribbles/vector-4.png) center / contain no-repeat;
}

.contact::before {
  top: 8%;
}


.contact__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 72px;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 720px;
}

.contact__title {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}


.contact__title-accent {
  color: #fb7dff;
  -webkit-text-stroke: 1px #000;
  position: relative;
  padding-right: 0.35em;
}



.contact__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a141e;
  max-width: 460px;
}

.contact__note span {
  font-weight: 700;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
  width: 100%;
}

.contact-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 8px;
  border: 3px solid #fb7dff;
  background: #dedee0;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-field__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.contact-field__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-field input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  font: inherit;
  color: #231725;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-field input::placeholder {
  color: rgba(35, 23, 37, 0.6);
}

.contact-field input:focus-visible {
  outline: none;
}

.contact__submit {
  align-self: center;
  padding: 10px 40px;
  border-radius: 8px;
  border: 2px solid #000;
  background: linear-gradient(135deg, #fb7dff 0%, #ff8bff 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact__submit:hover,
.contact__submit:focus-visible {
  transform: translateY(-2px);
  color: black;
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.18);
}

.blog__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog__controls {
  display: flex;
  gap: 14px;
}

.blog__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: #fff;
  position: relative;
}

.blog__arrow[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.blog__arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--color-dark);
  border-right: 2px solid var(--color-dark);
  transform: rotate(-135deg);
}

.blog__arrow--next::after {
  transform: rotate(45deg);
}

.blog__grid {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.blog__grid-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  transition: transform 0.4s ease;
  will-change: transform;
  width: 100%;
  align-items: stretch;
}

.blog__grid-track > .blog-card {
  flex: 0 0 calc(50% - 16px) !important;
  min-width: calc(50% - 16px) !important;
  max-width: calc(50% - 16px) !important;
  width: calc(50% - 16px) !important;
  box-sizing: border-box;
  height: auto;
  display: flex !important;
  flex-direction: column !important;
}

@media (max-width: 768px) {
  .blog__grid-track {
    gap: 20px;
  }
  
  .blog__grid-track > .blog-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 45px rgba(17, 10, 17, 0.01);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  width: 100%;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  flex-grow: 1;
}

.blog-card__body h3 {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  min-height: 3.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.blog-card__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  min-height: 4.5rem;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: auto;
}

.blog-card__meta span:last-child {
  transition: color 0.3s ease;
}

/* Hover эффекты для карточек блога */
.blog-card a:hover .blog-card__body h3,
.blog-card:hover .blog-card__body h3 {
  color: #fa7dff;
}

.blog-card a:hover .blog-card__meta span:last-child,
.blog-card:hover .blog-card__meta span:last-child {
  color: #fa7dff;
}

.site-footer {
  background: #fb7dff;
  color: #000;
  padding: 72px 0 40px;
}

.site-footer__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__column--brand {
  max-width: 260px;
  gap: 24px;
}

.site-footer__column--summary {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer__column--contacts {
  gap: 24px;
}

.site-footer__logo {
  width: min(220px, 45vw);
  height: auto;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__title {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
}

.site-footer__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  opacity: 0.75;
}

.site-footer__bottom {
  margin-top: 48px;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1200px) {
  main {
    gap: 120px;
    padding-bottom: 120px;
  }

  .stats__row {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }
  
  .stats__row--first {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(14, 12, 15, 0.93);
    backdrop-filter: blur(10px);
    color: #f6eff8;
    transform: translateY(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    z-index: 998;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__link {
    padding: 12px 28px;
    border-radius: 40px;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible {
    background: rgba(251, 125, 255, 0.25);
    color: #fff;
  }

  .site-actions {
    display: none;
  }

  .site-header__burger {
    display: inline-flex;
    z-index: 999;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__visual {
    order: -1;
  }

  .about__wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 68px;
  }

  .about__header {
    justify-self: center;
  }

  .about__title {
    font-size: clamp(3.2rem, 12vw, 6rem);
  }

  .about__figure {
    min-height: 360px;
  }

  .about__figure::after {
    right: -20%;
    bottom: -24%;
    width: 150%;
    transform: rotate(8deg);
  }

  .about-card {
    align-items: center;
    text-align: center;
  }

  .about-card__chip {
    align-self: center;
  }

  .stats__row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .stats__row--first {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  
  .stats__row--first .stats__info--left {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
  }
  
  .stats__row--first .stats__info--left .stats__note {
    margin: 0 auto;
  }
  
  .stats__row--first .stats__info--right {
    grid-column: 1;
    grid-row: 2;
    text-align: end;
    justify-content: center;
  }
  
  .stats__row--first .stats__info--right .stats__note {
    margin: 0 auto;
  }
  
  .stats__row--first .stats__title {
    grid-column: 1;
    grid-row: 3;
    text-align: center;
  }
  
  .stats__row--first .stats__digits {
    grid-column: 1;
    grid-row: 4;
  }

  .stats__note {
    margin: 0 auto;
  }

  .stats__digits {
    justify-content: center;
  }

  .contact__wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact__content {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .contact__note {
    max-width: 520px;
  }

  .contact__form {
    margin: 0 auto;
  }

  .contact-field {
    justify-content: center;
  }

  .contact__submit {
    align-self: center;
  }

  .site-footer__wrap {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  main {
    gap: 100px;
    padding-bottom: 100px;
  }

  .container {
    padding-inline: 24px;
  }

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

  .why__title {
    font-size: clamp(2.6rem, 10vw, 5.4rem);
    text-shadow: -8px 10px 0 rgba(251, 125, 255, 0.4);
  }

  .why__scribble {
    top: 50%;
    width: 140%;
    height: 260px;
  }

  .why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }

  .why-item__art {
    width: 90px;
    height: 90px;
    aspect-ratio: auto;
  }

  .why-item__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .why-item__content h3,
  .why-item__content p {
    grid-column: auto;
    grid-row: auto;
  }

  .workflow__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog__head {
    flex-direction: column;
  }

  .about {
    padding: 150px 0 120px;
  }

  .about__wrap {
    gap: 0px;
  }

  .about__figure {
    min-height: 320px;
  }

  .about__figure::after {
    right: -12%;
    width: 160%;
    bottom: -20%;
  }

  .about-card {
    padding: 30px 28px;
    align-items: flex-start;
    text-align: left;
  }

  .about-card__chip {
    align-self: flex-start;
    padding-inline: 26px;
    font-size: 0.82rem;
  }

  .contact {
    padding: 140px 0 120px;
  }

  .contact__content {
    gap: 28px;
  }

  .contact__title {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }

  .contact-field {
    padding: 12px 18px;
  }

  .contact-field__icon {
    width: 48px;
    height: 48px;
  }

  .workflow__title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .workflow__scribble {
    top: 58%;
    width: 150%;
    height: 240px;
  }

  .workflow-step {
    align-items: center;
    text-align: center;
  }

  .workflow-step__head {
    justify-content: center;
  }

  .workflow-step__body {
    flex-direction: column;
    align-items: center;
  }

  .workflow-step__text {
    text-align: center;
  }

  .site-footer__wrap {
    justify-content: center;
  }

  .site-footer__column {
    align-items: center;
    text-align: center;
  }

  .site-footer__column--summary {
    max-width: 520px;
  }
}

@media (max-width: 540px) {
  .container {
    padding-inline: 18px;
  }

  .hero {
    padding-block: 10px 80px;
  }

  .hero__cta {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__text {
    padding-bottom: 4%;
  }

  .hero__grid {
    gap: 40px;
  }

  .hero__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero__kicker {
    text-align: center;
  }

  .chip {
    text-align: center;
  }

  .workflow__scribble2 {
    inset: auto 0px -250px 0px;
  }

  .why {
    padding: 0px 0 200px;
  }

  .stats__digits {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 0px;
    justify-items: center;
  }

  .stats__digits span {
    width: 100%;
    max-width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border: none;
    background-color: #ffffff00;
  }

  .why__cards {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .why__title {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
    text-shadow: -6px 8px 0 rgba(251, 125, 255, 0.38);
  }

  .why__scribble {
    top: 55%;
    width: 180%;
    height: 220px;
  }

  .why-item {
    align-items: center;
    text-align: center;
  }

  .why-item__art {
    width: 250px;
    height: auto;
  }

  .why-item__content p {
    font-size: 0.88rem;
  }

  .contact {
    padding: 50px 0 50px;
  }

  .about {
    padding: 120px 0 100px;
  }

  .about__title {
    font-size: clamp(2.6rem, 14vw, 4.8rem);
  }

  .about__figure {
    min-height: 260px;
  }

  .about__scribble {
    width: 190%;
    height: 260px;
    top: -28%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .about__figure::after {
    right: -6%;
    bottom: -18%;
    width: 190%;
    height: 200px;
    transform: rotate(6deg);
  }

  .about-card {
    padding: 0px;
    gap: 18px;
    align-items: center;
    text-align: center;
  }

  .about-card__chip {
    align-self: center;
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    padding-inline: 18px;
  }

  .workflow__title {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .workflow__scribble {
    top: 62%;
    width: 210%;
    height: 200px;
  }

  .workflow-step__art {
    flex-basis: 72px;
    width: 150px;
  }

  .workflow-step__text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

  .contact__title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .contact::before,
  .contact::after {
    width: 190%;
    opacity: 0.55;
  }

  .contact__form {
    gap: 16px;
  }

  .contact-field {
    text-align: center;
    gap: 12px;
  }

  .contact-field__icon {
    align-self: center;
    width: 44px;
    height: 44px;
  }

  .contact-field input {
    text-align: center;
  }

  .contact__submit {
    width: 100%;
    padding-inline: 0;
  }

  .blog-card__body {
    padding: 26px;
  }

  .site-footer {
    padding-block: 60px 40px;
  }

  .site-footer__wrap {
    gap: 32px;
  }

  .site-footer__column {
    width: 100%;
  }

  .site-footer__tagline {
    letter-spacing: 0.12em;
  }

  .site-footer__icon {
    width: 48px;
    height: 48px;
  }

  .site-footer__contact {
    justify-content: center;
  }

  .site-footer__bottom {
    margin-top: 32px;
  }
}

/* Дополнительная оптимизация для мобильных устройств */
@media (max-width: 768px) {
  /* Улучшение меню */
  .site-header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
  }
  
  .site-header__burger {
    z-index: 300;
    position: relative;
  }
  
  .site-nav {
    z-index: 250;
    padding: 2rem 1rem;
  }
  
  /* Оптимизация заголовков */
  .hero__title {
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: 0.9;
  }
  
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  h3 {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  
  /* Оптимизация изображений */
  .hero__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Улучшение отступов */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  section {
    padding: 1rem 0;
  }
  
  /* Карточки */
  .blog-card,
  .why-item,
  .workflow-step {
    margin-bottom: 1.5rem;
  }
  
  /* Кнопки */
  .button {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
  
  /* Форма */
  .contact__form {
    gap: 1rem;
  }
  
  .contact-field input {
    font-size: 16px; /* Предотвращает зум на iOS */
  }
  
  /* Хедер темная/светлая тема */
  .site-header.dark {
    background: rgba(14, 12, 15, 0.95);
    backdrop-filter: blur(10px);
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero__heading {
    gap: 0.5rem;
  }
  
  .chip {
    padding: 8px 12px;
    font-size: 1rem;
  }
  
  .hero__text {
    font-size: 0.875rem;
  }
  
  .contact__title {
    font-size: 3rem;
  }

  .blog-card__body h3 {
    min-height: auto;
  }
}

/* Breadcrumbs styles */
.breadcrumbs {
  font-size: 0.875rem;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs__item::after {
  content: '/';
  color: #999;
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs__link:hover {
  color: #000;
}

.breadcrumbs__current {
  color: #000;
  font-weight: 600;
}

/* Blog page styles */
.blog-page {
  min-height: 70vh;
}

.blog-page__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pagination styles */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pagination__button:hover:not(:disabled) {
  background: var(--color-dark);
}

.pagination__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination__button::after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-dark);
  border-right: 2px solid var(--color-dark);
}

.pagination__button--prev::after {
  transform: rotate(-135deg);
}

.pagination__button--next::after {
  transform: rotate(45deg);
}

.pagination__button:hover:not(:disabled)::after {
  border-color: #fff;
}

.pagination__pages {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination__page {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0 1rem;
}

.pagination__page:hover {
  background: #e0e0e0;
}

.pagination__page--active {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

#blogLoader {
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
}

#noArticles {
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
  color: #666;
}

/* Article page styles */
.article__header {
  margin-bottom: 3rem;
}

.article__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article__meta {
  display: flex;
  gap: 2rem;
  color: #666;
  font-size: 0.875rem;
}

.article__image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-medium);
  margin-bottom: 3rem;
}

.article__content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.3;
}

.article__content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
}

.article__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.article__content p {
  margin-bottom: 0.5rem;
}

.article__content ul,
.article__content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article__content li {
  margin-bottom: 0.5rem;
}

.article__content blockquote {
  border-left: 4px solid var(--color-dark);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
}

.article__content strong {
  font-weight: 700;
}

/* Article page specific styles */
.article {
  padding: 2rem 0 4rem;
}

.article__cta {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: var(--radius-medium);
  text-align: center;
}

.article__cta p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* 404 Error page styles */
.error-page__image {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
