:root {
  --bg: #02030b;
  --bg-soft: #070918;
  --panel: rgba(12, 15, 34, 0.72);
  --panel-strong: #080a18;
  --line: rgba(119, 134, 255, 0.22);
  --line-strong: rgba(126, 143, 255, 0.42);
  --text: #f5f7ff;
  --muted: #a7afd0;
  --quiet: #737b9c;
  --blue: #626dff;
  --blue-soft: #8ea2ff;
  --cyan: #8ff1ff;
  --magenta: #8c32ff;
  --danger: #e31922;
  --max-width: 1600px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
          linear-gradient(rgba(98, 109, 255, 0.055) 1px, transparent 1px),
          linear-gradient(90deg, rgba(98, 109, 255, 0.045) 1px, transparent 1px),
          radial-gradient(circle at 72% 8%, rgba(98, 109, 255, 0.28), transparent 28%),
          var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
          linear-gradient(180deg, rgba(2, 3, 11, 0) 0%, #02030b 44%),
          radial-gradient(circle at 8% 28%, rgba(227, 25, 34, 0.1), transparent 22%);
  content: "";
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.section-shell,
.site-header {
  width: min(calc(100vw - clamp(48px, 16.6667vw, 320px)), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-mark {
  display: block;
  width: auto;
  height: 78px;
  flex: 0 0 auto;
}

.logo-text {
  max-width: none;
  color: #f6f7ff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 52px;
}

.mobile-menu-logo,
.mobile-menu-characters {
  display: none;
}

.main-nav a {
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.footer-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(143, 241, 255, 0.55);
  padding-inline: 18px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.nav-close-icon {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 780px) minmax(420px, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: clamp(24px, 3vw, 64px);
  padding-block: 34px 38px;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  padding-left: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 3.7vw, 68px);
  letter-spacing: 0;
  line-height: 1.3;
}

.hero h1 {
  font-weight: 700;
  text-transform: none;
}

.hero-line {
  display: block;
  text-transform: none;
  white-space: nowrap;
}

.hero-gradient {
  display: block;
  background: linear-gradient(90deg, #723dd3 0%, #6e3ed0 36%, #5683d4 67%, #3face8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 630px;
  margin: 26px 0 0;
  color: #c5cbdf;
  font-size: 16px;
  line-height: 1.36;
}

.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  padding: 0 24px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  border-color: transparent;
  background: linear-gradient(90deg, #5e6dff, #8df1ff);
  color: #02030b;
}

.button-primary:hover {
  background: linear-gradient(90deg, #7b86ff, #c5f8ff);
}

.button-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}

.hero-actions .button {
  min-height: 43px;
  border-radius: 8px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions .button-primary {
  width: 250px;
  background: linear-gradient(90deg, #4353ff 0%, #6b75ff 100%);
  color: #ffffff;
}

.hero-actions .button-ghost {
  width: 298px;
  border-color: rgba(245, 247, 255, 0.82);
  color: #ffffff;
}

.button-mark {
  width: 18px;
  height: 18px;
  background: url("assets/cta-logo-mark.png") center / contain no-repeat;
}

.button-play {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.button-play::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  content: "";
  transform: translate(-35%, -50%);
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 610px;
  pointer-events: none;
}

.hero-glow,
.hero-characters {
  position: absolute;
  user-select: none;
}

.hero-glow {
  top: -106px;
  left: -250px;
  width: 920px;
  max-width: none;
  opacity: 0.92;
  filter: saturate(1.1);
}

.hero-characters {
  top: -77px;
  right: 20px;
  z-index: 2;
  width: min(39vw, 740px);
  max-width: none;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
}

.services,
.contact {
  padding-block: clamp(72px, 9vw, 128px);
}

.process,
.formats,
.why {
  padding-block: clamp(52px, 4vw, 76px);
}

.services {
  position: relative;
  z-index: 4;
  margin-top: -36px;
  padding-block: 0 clamp(58px, 5vw, 86px);
}

.services-title {
  margin: 0 0 34px;
  font-size: clamp(34px, 2.5vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 2.5vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.2vw, 76px);
  letter-spacing: 0;
  line-height: 0.98;
}

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

.service-card,
.why-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px;
  background:
          linear-gradient(180deg, rgba(36, 41, 88, 0.66), rgba(12, 14, 31, 0.86)),
          var(--panel-strong);
}

.service-card {
  min-height: 244px;
  border-color: rgba(65, 83, 141, 0.55);
  border-radius: 8px;
  padding: 24px;
  background:
          linear-gradient(180deg, rgba(9, 20, 45, 0.96) 0%, rgba(7, 12, 30, 0.94) 42%, rgba(30, 4, 31, 0.9) 100%),
          #070a18;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.service-card::after,
.why-grid article::after,
.contact::after {
  position: absolute;
  inset: auto -20% -46% 12%;
  height: 130px;
  background: radial-gradient(ellipse, rgba(227, 25, 34, 0.28), transparent 62%);
  content: "";
}

.service-card::after {
  inset: auto -12% -58% 8%;
  height: 150px;
  background: radial-gradient(ellipse, rgba(160, 32, 177, 0.32), transparent 64%);
}

.card-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 60px;
  height: 60px;
  color: #7357ff;
  filter: drop-shadow(0 0 14px rgba(115, 87, 255, 0.45));
}

.card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.service-card h3,
.why-grid h3,
.process-list h3 {
  margin: 54px 0 12px;
  font-size: 22px;
  line-height: 1.08;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  font-size: 21px;
  line-height: 1.16;
  text-transform: none;
}

.service-card p,
.why-grid p,
.process-list p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  color: #d6daea;
  font-size: 15px;
  line-height: 1.28;
}

.process-list {
  position: relative;
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 78px;
  right: 6%;
  left: 6%;
  border-top: 1px dashed rgba(245, 247, 255, 0.58);
  content: "";
}

.process-list li {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: center;
  padding: 0 14px;
  text-align: center;
  flex-direction: column;
}

.process-number {
  position: absolute;
  top: 0;
  left: calc(50% - 58px);
  z-index: 3;
  color: #b4bbd9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.process-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(99, 117, 190, 0.34);
  border-radius: 999px;
  background:
          radial-gradient(circle at 50% 105%, rgba(137, 34, 155, 0.34), transparent 52%),
          #080d22;
  color: #7658ff;
  filter: drop-shadow(0 0 16px rgba(100, 83, 255, 0.3));
}

.process-icon svg {
  display: block;
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.process-list h3 {
  max-width: 178px;
  margin: 18px 0 6px;
  font-size: 21px;
  line-height: 1.05;
  text-transform: none;
}

.process-list p {
  max-width: 154px;
  color: #c9cede;
  font-size: 13px;
  line-height: 1.25;
}

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

.format-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 151px;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(65, 83, 141, 0.55);
  border-radius: 8px;
  padding: 24px;
  background:
          linear-gradient(180deg, rgba(9, 20, 45, 0.96) 0%, rgba(7, 12, 30, 0.94) 42%, rgba(30, 4, 31, 0.9) 100%),
          #070a18;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.format-card::after {
  position: absolute;
  inset: auto -18% -64% 16%;
  height: 118px;
  background: radial-gradient(ellipse, rgba(160, 32, 177, 0.26), transparent 64%);
  content: "";
}

.format-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  color: #7357ff;
  filter: drop-shadow(0 0 14px rgba(115, 87, 255, 0.45));
}

.format-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.format-card > span:last-child {
  position: relative;
  z-index: 1;
  color: #f2f4ff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.why-card {
  min-height: 210px;
  border-color: rgba(65, 83, 141, 0.55);
  border-radius: 8px;
  padding: 24px;
  background:
          linear-gradient(180deg, rgba(9, 20, 45, 0.96) 0%, rgba(7, 12, 30, 0.94) 42%, rgba(30, 4, 31, 0.9) 100%),
          #070a18;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.why-card .card-icon {
  width: 58px;
  height: 58px;
}

.why-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.18;
  text-transform: none;
}

.why-card p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: #d6daea;
  font-size: 14px;
  line-height: 1.34;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1fr);
  gap: clamp(48px, 7vw, 150px);
  overflow: hidden;
  border: 1px solid rgba(65, 83, 141, 0.48);
  border-radius: 50px;
  padding: clamp(54px, 6.1vw, 98px) clamp(56px, 7vw, 116px);
  background:
          radial-gradient(circle at 68% 12%, rgba(51, 65, 170, 0.2), transparent 34%),
          linear-gradient(135deg, rgba(4, 8, 22, 0.98), rgba(10, 14, 42, 0.96)),
          #040714;
}

.contact-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.contact-copy h2 {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: clamp(56px, 4vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.contact-copy p {
  color: #c5cbdf;
  font-size: 16px;
  line-height: 1.35;
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 19px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #f5f7ff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  outline: 0;
  padding: 14px 22px;
  background: #ffffff;
  color: #111527;
  font-size: 14px;
  line-height: 1.25;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  height: 42px;
}

.contact-form textarea {
  min-height: 167px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(143, 241, 255, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--blue);
}

.consent span {
  margin-bottom: 0 !important;
  color: #d7dbea !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.24;
  text-transform: none !important;
}

.consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact .form-footer {
  display: grid;
  gap: 12px;
}

.contact .button-primary {
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  background: linear-gradient(90deg, #4353ff 0%, #6b75ff 100%);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.form-status {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status[data-state="success"] {
  color: #9dffd4;
}

.form-status[data-state="error"] {
  color: #ffb1c1;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3.2vw, 56px);
  padding-block: 78px 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo .logo-mark {
  width: auto;
  height: 43px;
}

.footer-partner {
  display: block;
  width: 116px;
  height: auto;
}

.footer-copy {
  margin: 0;
  color: #f5f7ff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: clamp(28px, 4vw, 60px);
  justify-content: center;
}

.footer-links a {
  color: #f5f7ff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
}

.social-links svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-line {
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-block: 48px 42px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 410px;
    margin-top: -24px;
  }

  .hero-glow {
    top: -88px;
    left: 50%;
    width: min(104vw, 800px);
    transform: translateX(-50%);
  }

  .hero-characters {
    top: -26px;
    left: 50%;
    width: min(62vw, 500px);
    transform: translateX(-50%);
  }

  .hero-actions {
    grid-column: 1;
    grid-row: 3;
    margin-top: 16px;
    background: #000;
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .process-list::before {
    display: none;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 56px;
  }

  .section-shell,
  .site-header {
    width: min(calc(100% - 32px), var(--max-width));
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: min(330px, calc(100vw - 60px));
    z-index: 55;
    background: rgba(19, 22, 29, 0.94);
    content: "";
  }

  body.menu-open .site-header {
    z-index: 100;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: grid;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 90;
    width: 30px;
    height: 30px;
    place-content: center;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .nav-toggle:not([aria-expanded="true"]) span:not(.sr-only) {
    display: none;
  }

  .nav-toggle:not([aria-expanded="true"])::after {
    display: block;
    width: 18px;
    height: 14px;
    background:
            linear-gradient(#f5f7ff, #f5f7ff) 0 0 / 18px 2px no-repeat,
            linear-gradient(#f5f7ff, #f5f7ff) 0 6px / 18px 2px no-repeat,
            linear-gradient(#f5f7ff, #f5f7ff) 0 12px / 18px 2px no-repeat;
    content: "";
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #f5f7ff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 14px;
    right: auto;
    left: calc(min(330px, 100vw - 60px) + 17px);
    z-index: 120;
    width: 27px;
    height: 27px;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only) {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-close-icon {
    display: block;
    width: 27px;
    height: 27px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: flex;
    width: min(330px, calc(100vw - 60px));
    align-items: flex-start;
    gap: 17px;
    overflow: hidden;
    padding: 116px 12px 220px;
    background: #02050e;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity 180ms ease, transform 180ms ease;
    flex-direction: column;
  }

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

  .main-nav a {
    border-bottom: 0;
    padding: 0;
    color: #f5f7ff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .mobile-menu-logo {
    position: absolute;
    top: 14px;
    left: 12px;
    display: block;
  }

  .mobile-menu-logo img {
    display: block;
    width: auto;
    height: 43px;
  }

  .mobile-menu-characters {
    position: absolute;
    bottom: -188px;
    left: 10px;
    display: block;
    width: min(306px, calc(100% - 14px));
    max-width: none;
    pointer-events: none;
  }

  .header-cta {
    display: none;
  }

  .logo {
    gap: 0;
  }

  .logo-mark {
    width: auto;
    height: 28px;
  }

  .hero {
    display: grid;
    padding-block: 16px 0;
    margin-bottom: 43px;
  }

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

  h1 {
    max-width: 328px;
    font-size: clamp(30px, 9vw, 34px);
    line-height: 1.18;
  }

  .hero-text {
    max-width: 328px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: normal;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 42px;
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 14px;
    gap: 18px;
  }

  .hero-visual {
    position: relative;
    z-index: 2;
    min-height: 190px;
    margin-top: 14px;
    opacity: 1;
  }

  .hero-glow {
    top: -54px;
    right: auto;
    left: 50%;
    bottom: auto;
    width: 328px;
    opacity: 0.98;
    transform: translateX(-50%);
  }

  .hero-characters {
    top: -50px;
    right: auto;
    left: 50%;
    bottom: auto;
    width: 300px;
    transform: translateX(-50%);
  }

  .button-mark {
    display: none;
  }

  .services {
    margin-top: 0;
    padding-block: 28px 56px;
  }

  .services-title {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.16;
  }

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

  .section-heading h2,
  .contact h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .service-grid,
  .format-grid,
  .why-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 18px;
  }

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

  .card-icon {
    width: 44px;
    height: 44px;
  }

  .card-icon svg {
    stroke-width: 3.4;
  }

  .service-card h3 {
    margin: 8px 0 7px;
    font-size: 16px;
    line-height: 1.18;
  }

  .service-card p {
    max-width: 270px;
    font-size: 13px;
    line-height: 1.35;
  }

  .process {
    padding-block: 54px 50px;
  }

  .process-list {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-list::before {
    top: 40px;
    bottom: 40px;
    left: 48px;
    display: block;
    width: 0;
    border-top: 0;
    border-left: 1px dashed rgba(245, 247, 255, 0.58);
  }

  .process-list li {
    display: grid;
    min-height: auto;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 0 16px;
    padding: 0;
    text-align: left;
  }

  .process-number {
    top: 4px;
    left: 0;
    font-size: 10px;
  }

  .process-icon {
    grid-row: 1 / span 2;
    width: 96px;
    height: 96px;
  }

  .process-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 2.8;
  }

  .process-list h3 {
    max-width: 180px;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.15;
  }

  .process-list p {
    grid-column: 2;
    max-width: 188px;
    font-size: 12px;
    line-height: 1.25;
  }

  .formats,
  .why {
    padding-block: 50px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.16;
  }

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

  .format-card {
    min-height: 126px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 8px;
    text-align: center;
    flex-direction: column;
  }

  .format-icon {
    width: 48px;
    height: 48px;
  }

  .format-icon svg {
    stroke-width: 3.2;
  }

  .format-card > span:last-child {
    font-size: 14px;
    line-height: 1.2;
  }

  .why-grid {
    gap: 18px;
    margin-top: 18px;
  }

  .why-card {
    min-height: 151px;
    padding: 16px;
  }

  .why-card .card-icon {
    width: 44px;
    height: 44px;
  }

  .why-card h3 {
    margin: 10px 0 8px;
    font-size: 16px;
    line-height: 1.24;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.35;
  }

  .contact {
    width: min(calc(100% - 24px), var(--max-width));
    grid-template-columns: 1fr;
    gap: 26px;
    border-radius: 48px;
    padding: 28px 16px 25px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2 {
    max-width: 260px;
    margin: 0 auto 8px;
    font-size: 34px;
    line-height: 1.13;
  }

  .contact-copy p {
    max-width: 230px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.34;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form label > span {
    margin-bottom: 7px;
    font-size: 12px;
    text-align: left;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 8px;
    padding-inline: 26px;
    font-size: 14px;
  }

  .contact-form input {
    height: 42px;
  }

  .contact-form textarea {
    min-height: 171px;
  }

  .consent {
    margin-top: 3px;
    gap: 10px;
  }

  .consent input {
    width: 20px;
    height: 20px;
  }

  .consent span {
    font-size: 11px !important;
    line-height: 1.32;
  }

  .contact .button-primary {
    min-height: 42px;
    font-size: 12px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo social"
      "partner partner"
      "copy links";
    align-items: center;
    gap: 18px 14px;
    padding-block: 40px 28px;
  }

  .footer-logo {
    grid-area: logo;
  }

  .footer-logo .logo-mark {
    height: 21px;
  }

  .footer-partner {
    grid-area: partner;
    justify-self: center;
    width: 72px;
  }

  .footer-copy {
    grid-area: copy;
    width: 72px;
    white-space: normal;
    font-size: 10px;
    line-height: 1.2;
  }

  .footer-links {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(2, minmax(80px, 1fr));
    gap: 12px 18px;
    justify-self: end;
  }

  .footer-links a {
    max-width: 95px;
    font-size: 10px;
    line-height: 1.2;
  }

  .social-links {
    grid-area: social;
    gap: 18px;
  }

  .social-links a {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
