/* Gilroy Light and ExtraBold: official free package; license in assets/fonts. */
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-body: "Gilroy", "Segoe UI", Arial, sans-serif;
  --font-heading: var(--font-body);
  --ink: #16213a;
  --muted: #667085;
  --paper: #fffdf8;
  --line: #e8edf3;
  --red: #f04d3f;
  --blue: #1677ff;
  --cyan: #10c4df;
  --yellow: #ffc928;
  --green: #39b56a;
  --violet: #7c55ff;
  --shadow: 0 22px 70px rgba(22, 33, 58, .16);
}

/* Shared controls: same height and padding; width follows the label. */
body :is(.feature-button, .footer-agreement, .primary-mail, .secondary-link, .back-link-modern, .modern-card-bottom, .home-email) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 54px !important;
  padding: 14px 24px !important;
  border: 0;
  border-radius: 10px !important;
  font-family: var(--font-body);
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1.4 !important;
  text-align: center;
  text-decoration: none;
}
button, input, textarea, select { font-family: var(--font-body); }
.home-nav { gap: clamp(12px, 1.2vw, 24px); padding-inline: 12px; }
.home-page .hero-slider-stage {
  --slider-space: clamp(24px, 3vw, 48px);
  min-height: 0; gap: 0;
  padding: var(--slider-space) var(--home-page-gutter);
  background: linear-gradient(125deg, #ffe39a 0%, #fff2c4 45%, #ffe39a 100%);
}
.home-page .hero-photo-slider-wrap { margin: 0 auto; }
.home-page .hero-photo-slider { padding-block: 0; }
.home-page .photo-dots { margin: 22px 0 0; }
.home-page .slider-motto {
  margin: var(--slider-space) 0 0;
  font-size: clamp(24px, 2.8vw, 46px); line-height: 1.2;
  color: #8a6500; text-align: center; text-transform: uppercase;
}
.home-page .feature-copy p, .home-page .trust-strip span { font-size: 16px; }
.footer-registration { display: inline-block; margin-top: 8px; }
.site-footer .footer-contact p { font-size: 16px; }
@media (min-width: 981px) and (max-width: 1180px) {
  .home-header { padding-inline: 24px; }
  .home-nav { gap: 12px; padding-inline: 0; }
}

/* Use only the two actual licensed weights; avoid synthetic bold. */
body { font-weight: 300; font-synthesis: style; }
body p { font-weight: 300; }
body strong, body b, .home-nav, .trust-strip span { font-weight: 800; }
.home-page .feature-copy p { font-weight: 300; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

/* Keep heading typography consistent across page-specific stylesheets. */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  padding: 18px clamp(24px, 4.8vw, 76px);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
}

.home-brand img {
  width: 100px;
  display: block;
}

.brand-slogan {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0a1c3a;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.2;
}

.rocket-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #d99a00;
  background: #fff4d6;
  font-size: 42px;
  transform: rotate(-22deg);
}

.home-nav {
  justify-self: end;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6vw, 28px);
  padding: 0 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  /*box-shadow: 0 14px 42px rgba(25, 39, 72, .11);*/
  color: #016195;
  font-size: 16px;
  font-weight: 800;
}

.home-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.video-link {
  font-weight: 900;
}

.circle-play {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #0a1c3a;
  border-radius: 50%;
}

.circle-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #0a1c3a;
}

.home-email {
  background: #fff;
  color: #016195 !important;
  transition: background-color .2s ease;
}
.home-email:hover { background: #dceefa; }
.home-email:focus-visible { outline: 3px solid #016195; outline-offset: 3px; }

.home-menu-button {
  display: none;
}

.home-page {
  --home-page-gutter: clamp(18px, 3vw, 40px);
  padding: 0 var(--home-page-gutter);
  background: #fff;
}

.main-hero {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border-radius: 44px;
  padding: clamp(34px, 4.6vw, 72px);
  background:
    radial-gradient(circle at 9% 30%, rgba(255, 201, 40, .16) 0 190px, transparent 192px),
    radial-gradient(circle at 91% 22%, rgba(22, 119, 255, .12) 0 190px, transparent 192px),
    linear-gradient(118deg, #fff8eb 0%, #fff 48%, #f8fbff 100%);
  box-shadow: 0 22px 56px rgba(25, 39, 72, .08);
}

.main-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -40px;
  width: 300px;
  height: 240px;
  background: linear-gradient(180deg, #ffe49a, #d79a02);
  clip-path: ellipse(72% 50% at 22% 58%);
}

.main-hero::after {
  content: "✦";
  position: absolute;
  right: 12%;
  top: 56px;
  color: #f0bd31;
  font-size: 42px;
  transform: rotate(16deg);
}

.main-hero.home-main-hero {
  width: calc(100% + var(--home-page-gutter) + var(--home-page-gutter));
  margin-left: calc(0px - var(--home-page-gutter));
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.home-main-hero::before,
.home-main-hero::after {
  display: none;
}

.hero-static-copy {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.hero-slider-stage {
  width: 100%;
  min-height: clamp(400px, 56.25vw, 685px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: clamp(32px, 4vw, 80px) var(--home-page-gutter) clamp(95px, 10vw, 160px);
  background: #ffe39a url("/assets/bg_yellow3.png") center bottom / 100% auto no-repeat;
}

.hero-kicker {
  margin-bottom: 18px;
  color: #d39400;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
}

.hero-static-copy h1 {
  max-width: 1060px;
  margin: 0 auto 20px;
  color: #092145;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: .98;
}

.hero-static-copy h1 span {
  color: #d39a08;
}

.hero-static-copy > p:not(.hero-kicker) {
  max-width: 820px;
  margin: 0 auto 34px;
  color: #0f274d;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.45;
}

.hero-awards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 28px;
}

.hero-awards img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .hero-awards { gap: 14px; margin-bottom: 20px; }
  .hero-awards img { width: 64px; height: 64px; }
}

.hero-photo-slider-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 1380px);
  margin: 4px auto 0;
}

.hero-photo-slider {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 18px;
  border-radius: 34px;
  clip-path: none;
  scroll-behavior: smooth;
  scroll-padding: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /*box-shadow: 0 22px 52px rgba(9, 33, 69, .13);*/
}

.hero-photo-slider::-webkit-scrollbar {
  display: none;
}

.photo-slide {
  position: relative;
  flex: 0 0 calc((100% - 35px) / 3);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #eef5ff;
  opacity: 1;
  scroll-snap-align: start;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.photo-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(9, 33, 69, .16);
}

.photo-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-page .hero-photo-slider,
.home-page .photo-slide {
  border-radius: 0;
}

.hero-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #c88700;
  font-size: 44px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(25,39,72,.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, color .2s ease, box-shadow .2s ease;
}

.hero-arrow:hover {
  color: #045dff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 18px 36px rgba(25,39,72,.18);
}

.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.photo-dots {
  position: relative;
  z-index: 9;
  left: auto;
  bottom: auto;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: -2px 0 0;
  transform: none;
}

.photo-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 28, 58, .24);
  cursor: pointer;
}

.photo-dots button.is-active {
  background: #d99a00;
}

.home-cta-grid {
  width: calc(100% + var(--home-page-gutter) + var(--home-page-gutter));
  margin-left: calc(0px - var(--home-page-gutter));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.home-cta-grid .feature-card {
  min-width: 0;
  min-height: 395px;
  border-radius: 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: clamp(28px, 2.5vw, 44px);
}

.home-cta-grid .feature-card:hover {
  transform: none;
}

.home-cta-grid .feature-copy {
  align-self: stretch;
  margin-bottom: calc(0px - clamp(28px, 2.5vw, 44px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-cta-grid .feature-copy h2 {
  min-height: 3.24em;
  margin: 0 0 18px;
  font-size: clamp(32px, 2.8vw, 48px);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.home-cta-grid .feature-copy p {
  width: 54%;
  max-width: 460px;
  min-height: 6.2em;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: #fff;
}

.home-cta-grid .feature-copy .feature-button {
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  min-width: 190px;
}

.home-cta-grid .catalog-feature .catalog-illustration {
  position: absolute;
  right: 20px;
  bottom: -15px;
  width: 52%;
  max-width: 560px;
  height: auto;
  margin: 0;
  transform: none;
}

.feature-button,
.footer-agreement {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 10px;
  background: #fff;
  color: #016195;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease;
}

.home-cta-grid .feature-card:hover .feature-button {
  background: #e8f3fa;
}

.home-cta-grid .feature-card:focus-visible {
  outline: 3px solid #092145;
  outline-offset: -5px;
}

.home-cta-grid .movement-feature .girl-illustration {
  width: 48%;
  max-width: 480px;
  max-height: 82%;
  object-fit: contain;
  object-position: right bottom;
  right: 0;
  bottom: -24px;
}

@media (min-width: 1440px) {
  .home-cta-grid .feature-copy h2 { min-height: 2.16em; }
  .home-cta-grid .feature-copy p { min-height: 3.1em; }
}

@media (max-width: 640px) {
  .home-cta-grid .feature-card { grid-template-columns: minmax(0, 1fr); min-height: 0; padding: 30px 24px 0; }
  .home-cta-grid .feature-copy { margin-bottom: 0; }
  .home-cta-grid .feature-copy .feature-button { margin: 24px 0 0; }
  .home-cta-grid .feature-copy h2 { font-size: 36px; min-height: 0; }
  .home-cta-grid .feature-copy p { font-size: 16px; width: 100%; min-height: 0; }
  .home-cta-grid .catalog-feature .catalog-illustration,
  .home-cta-grid .movement-feature .girl-illustration {
    position: relative;
    right: auto;
    bottom: 0;
    width: min(90%, 360px);
    height: 280px;
    max-height: none;
    object-fit: contain;
    object-position: right bottom;
    justify-self: end;
    margin: 24px -24px 0 0;
  }
  .home-cta-grid .catalog-feature .catalog-illustration { margin-right: 0; }
  .home-cta-grid .movement-feature .girl-illustration { bottom: -24px; }
}

.feature-card {
  position: relative;
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(280px, 1fr);
  align-items: center;
  overflow: hidden;
  padding: 38px 36px 38px 42px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(25,39,72,.12);
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(25,39,72,.2);
}

.catalog-feature {
  background: linear-gradient(125deg, #014c75 0%, #016195 52%, #1187b2 100%);
}

.movement-feature {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.45) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 72%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    linear-gradient(135deg, #d89700, #f0b51d 56%, #df9c03);
}

.feature-copy {
  position: relative;
  z-index: 4;
}

.feature-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 2.8vw, 42px);
  line-height: 1.08;
}

.feature-copy p {
  max-width: 330px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.92);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-arrow {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #005cff;
  font-size: 34px;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.feature-card:hover .feature-arrow {
  transform: translateX(8px);
}

.catalog-feature .catalog-illustration {
  position: relative;
  z-index: 3;
  width: min(132%, 430px);
  justify-self: center;
  margin-right: -10px;
  filter: drop-shadow(0 26px 30px rgba(0, 13, 66, .34));
  transition: transform .35s ease, filter .35s ease;
}

.catalog-feature:hover .catalog-illustration {
  transform: translateY(-12px) rotate(-2deg) scale(1.035);
  filter: drop-shadow(0 30px 38px rgba(0, 13, 66, .46));
}

.rocket-trail {
  position: absolute;
  left: 110px;
  bottom: 42px;
  width: 230px;
  height: 82px;
  border-bottom: 2px dashed rgba(255,255,255,.72);
  border-radius: 0 0 0 90%;
  transform: rotate(-12deg);
  transition: transform .35s ease, opacity .35s ease;
}

.rocket-trail::after {
  content: "➤";
  position: absolute;
  right: -18px;
  bottom: -26px;
  color: #ffd11a;
  font-size: 54px;
  transform: rotate(-22deg);
}

.catalog-feature:hover .rocket-trail {
  opacity: 1;
  transform: translate(18px, -12px) rotate(-8deg);
}

.movement-feature .girl-illustration {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -76px;
  width: min(50%, 370px);
  height: auto;
  object-fit: contain;
  opacity: .98;
  filter: drop-shadow(0 18px 24px rgba(108, 66, 0, .2));
  transition: transform .4s ease;
}

.movement-feature:hover .girl-illustration {
  transform: scale(1.045) translate(-10px, -8px);
}


.movement-feature:hover .line-one {
  transform: rotate(-8deg) translateX(-16px);
}

.movement-feature:hover .line-two {
  transform: rotate(46deg) translate(-12px, 8px);
}

.movement-feature:hover .feature-arrow {
  color: #d99a00;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 1px;
  margin: 0 24px;
  padding: 20px 0;
}

.home-page + .site-footer { margin-top: 0; }

.trust-strip span {
  min-height: 56px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid #eef2f7;
  color: #0b1d3d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip b {
  color: #d39700;
  font-size: 31px;
}

.catalog-page-modern {
  min-height: 100vh;
  padding: 0 clamp(18px, 3vw, 40px) 40px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 214, 74, .2), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(0, 92, 255, .12), transparent 26%),
    #fff;
}

.catalog-main-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(380px, 42%) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px) clamp(22px, 5vw, 84px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 8% 44%, #fff 0 160px, transparent 162px),
    linear-gradient(125deg, #fff9ec 0%, #fff 46%, #edf6ff 100%);
  box-shadow: 0 22px 56px rgba(25, 39, 72, .08);
}

.catalog-main-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 80px;
  background: linear-gradient(180deg, #ffe49a, #d79a02);
  clip-path: ellipse(90% 70% at 0% 50%);
}

.catalog-main-copy {
  position: relative;
  z-index: 2;
}

.catalog-main-copy h1 {
  margin-bottom: 18px;
  color: #092145;
  font-size: clamp(56px, 5.6vw, 86px);
  line-height: .94;
}

.catalog-main-copy h1 span {
  color: #d39a08;
}

.catalog-main-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: #0f274d;
  font-size: 20px;
  line-height: 1.45;
}

.catalog-main-art {
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: grid;
  place-items: center;
}

.catalog-main-art::before {
  content: "";
  position: absolute;
  width: min(92%, 560px);
  height: 220px;
  border: 4px solid rgba(0, 205, 255, .78);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-9deg);
  filter: drop-shadow(0 0 18px rgba(0, 205, 255, .5));
}

.catalog-main-art::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 10%;
  width: 92px;
  height: 110px;
  border: 4px dashed rgba(0, 141, 255, .3);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(24deg);
}

.catalog-doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1;
}

.catalog-doodle.star-one {
  left: 2%;
  top: 14%;
  color: #f4b000;
  font-size: 48px;
  transform: rotate(-14deg);
}

.catalog-doodle.star-two {
  right: 3%;
  bottom: 20%;
  color: rgba(244, 176, 0, .52);
  font-size: 38px;
  transform: rotate(18deg);
}

.catalog-doodle.heart-one {
  left: 12%;
  bottom: 12%;
  color: rgba(0, 141, 255, .32);
  font-size: 38px;
  transform: rotate(-24deg);
}

.catalog-doodle.heart-two {
  right: 14%;
  top: 26%;
  color: rgba(0, 141, 255, .42);
  font-size: 28px;
  transform: rotate(18deg);
}

.catalog-doodle.plane-one {
  left: 8%;
  top: 36%;
  color: #2698ff;
  font-size: 58px;
  transform: rotate(-22deg);
  text-shadow: 0 12px 20px rgba(38, 152, 255, .22);
}

.catalog-doodle.path-one,
.catalog-doodle.path-two {
  border: 3px dashed rgba(38, 152, 255, .62);
  border-right: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.catalog-doodle.path-one {
  left: 0;
  top: 47%;
  width: 130px;
  height: 150px;
  transform: rotate(-46deg);
}

.catalog-doodle.path-two {
  right: 0;
  bottom: 7%;
  width: 110px;
  height: 72px;
  border-color: rgba(244, 176, 0, .48);
  transform: rotate(22deg);
}

.catalog-main-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80%;
  filter: drop-shadow(0 28px 34px rgba(15, 45, 96, .18));
}

.modern-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 42px 12px 28px;
}

.modern-game-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  background: #fff;
  color: #091a38;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(20, 32, 55, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.modern-game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 92, 255, .18);
  box-shadow: 0 26px 58px rgba(20, 32, 55, .15);
}

.modern-game-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 218px;
  border-radius: 24px 24px 40px 40px;
  transition: transform .28s ease;
}

.modern-game-card:hover::before {
  transform: scale(1.03);
}

.blue-card::before { background: linear-gradient(135deg, #edf5ff, #f7fbff); }
.red-card::before { background: linear-gradient(135deg, #fff0f0, #fff8f5); }
.yellow-card::before { background: linear-gradient(135deg, #fff8dc, #fffdf0); }
.cyan-card::before { background: linear-gradient(135deg, #eafaff, #f7feff); }
.violet-card::before { background: linear-gradient(135deg, #f1edff, #fbf9ff); }
.orange-card::before { background: linear-gradient(135deg, #fff1df, #fffaf4); }
.green-card::before { background: linear-gradient(135deg, #e9f9ef, #fbfffd); }

.modern-game-image {
  position: relative;
  z-index: 2;
  min-height: 188px;
  display: grid;
  place-items: center;
  margin: 2px -8px 18px;
}

.modern-game-image img {
  max-width: 88%;
  max-height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(25,39,72,.14));
  transition: transform .28s ease, filter .28s ease;
}

.modern-game-card:hover .modern-game-image img {
  transform: translateY(-8px) rotate(-1deg);
  filter: drop-shadow(0 22px 24px rgba(25,39,72,.2));
}

.modern-game-card .game-symbol {
  width: 132px;
  font-size: 64px;
  box-shadow: none;
}

.modern-game-card h2 {
  position: relative;
  z-index: 2;
  min-height: 58px;
  margin-bottom: 10px;
  color: #091a38;
  font-size: 24px;
  line-height: 1.16;
}

.modern-game-card p {
  position: relative;
  z-index: 2;
  flex: 1;
  margin-bottom: 22px;
  white-space: pre-line;
  color: #344054;
  font-size: 15px;
  line-height: 1.55;
}

.game-price {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 18px;
  color: #091a38;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.modern-card-bottom {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 6px 5px 18px;
  border-radius: 999px;
  background: #005cff;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 92, 255, .2);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.modern-card-bottom b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #005cff;
  font-size: 24px;
  transition: transform .25s ease, background .25s ease;
}

.modern-game-card:hover .modern-card-bottom {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 92, 255, .26);
}

.modern-game-card:hover .modern-card-bottom b {
  transform: translateX(6px);
}

.red-card .modern-card-bottom { background: #ff3045; box-shadow: 0 14px 28px rgba(255, 48, 69, .18); }
.red-card .modern-card-bottom b { color: #ff3045; }
.yellow-card .modern-card-bottom { background: #d39a08; box-shadow: 0 14px 28px rgba(211, 154, 8, .18); }
.yellow-card .modern-card-bottom b { color: #d39a08; }
.orange-card .modern-card-bottom { background: #ef9c00; box-shadow: 0 14px 28px rgba(239, 156, 0, .18); }
.orange-card .modern-card-bottom b { color: #ef9c00; }
.green-card .modern-card-bottom { background: #17a764; box-shadow: 0 14px 28px rgba(23, 167, 100, .18); }
.green-card .modern-card-bottom b { color: #17a764; }
.violet-card .modern-card-bottom { background: #7c55ff; box-shadow: 0 14px 28px rgba(124, 85, 255, .18); }
.violet-card .modern-card-bottom b { color: #7c55ff; }
.cyan-card .modern-card-bottom { background: #04a5c7; box-shadow: 0 14px 28px rgba(4, 165, 199, .18); }
.cyan-card .modern-card-bottom b { color: #04a5c7; }

.wide-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1fr);
  grid-template-areas:
    "title image"
    "text image"
    "price image"
    "bottom image";
  column-gap: 18px;
}

.wide-card .modern-game-image { grid-area: image; min-height: 100%; margin: 0; }
.wide-card h2 { grid-area: title; align-self: end; }
.wide-card p { grid-area: text; }
.wide-card .game-price { grid-area: price; }
.wide-card .modern-card-bottom { grid-area: bottom; align-self: end; }
.wide-card::before { height: 100%; width: 48%; left: auto; border-radius: 44px 24px 24px 44px; }
.wide-card .modern-game-image img { max-width: 100%; max-height: 250px; }

.catalog-order-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 10px 12px 0;
  padding: 30px 36px;
  border-radius: 24px;
  background: #092145;
  color: #fff;
  box-shadow: 0 18px 48px rgba(25,39,72,.14);
}

.catalog-order-modern h2 {
  margin: 0;
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.12;
}

.catalog-order-modern p {
  max-width: 620px;
  margin: 0;
  color: #d8e5ff;
  font-size: 17px;
  line-height: 1.55;
}

.catalog-order-modern a {
  color: #ffd11a;
  font-weight: 900;
}

.product-page {
  min-height: 100vh;
  padding: 0 clamp(18px, 3vw, 40px) 40px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 211, 58, .18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(0, 92, 255, .11), transparent 26%),
    #fff;
}

.product-hero-modern {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  overflow: hidden;
  padding: clamp(44px, 6vw, 72px) clamp(32px, 6vw, 84px);
  border-radius: 0;
  background:
    radial-gradient(circle at 7% 52%, #fff7e3 0 160px, transparent 162px),
    radial-gradient(circle at 74% 12%, rgba(0, 92, 255, .08), transparent 30%),
    linear-gradient(124deg, #fff 0%, #fff 50%, #f8fbff 100%);
  box-shadow: inset 0 -1px 0 #edf1f7;
}

.product-hero-modern:has(> .product-order-box) {
  grid-template-areas: "copy showcase" "order showcase";
  row-gap: 24px;
}

.product-hero-modern:has(> .product-order-box) > .product-copy {
  grid-area: copy;
  align-self: end;
}

.product-hero-modern:has(> .product-order-box) .product-description {
  margin-bottom: 0;
}

.product-hero-modern:has(> .product-order-box) > .product-showcase {
  grid-area: showcase;
}

.product-hero-modern > .product-order-box {
  grid-area: order;
  align-self: start;
  position: relative;
  z-index: 2;
}

.product-hero-modern::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(217, 151, 0, .54), transparent);
  transform: translateX(clamp(500px, 50vw, 760px)) rotate(28deg);
  transform-origin: center;
  clip-path: none;
}

.product-hero-modern::after {
  content: "";
  position: absolute;
  right: 84px;
  top: 64px;
  width: 74px;
  height: 74px;
  opacity: .3;
  background-image: radial-gradient(circle, #0b68ff 2px, transparent 3px);
  background-size: 14px 14px;
}

.product-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.back-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 30px;
  padding: 0 20px;
  border: 1px solid #dce5f1;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #d39700;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(25,39,72,.07);
}

.product-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff6df;
  color: #d39700;
  font-size: 12px;
  font-weight: 900;
}

.product-copy h1 {
  max-width: 520px;
  margin-bottom: 12px;
  color: #092145;
  font-size: clamp(62px, 6vw, 72px);
  line-height: .9;
  overflow-wrap: anywhere;
}

.product-description,
.section-title-block p,
.order-product-section p {
  color: #0f274d;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.55;
}

.product-description {
  max-width: 440px;
  margin-bottom: 30px;
  color: #5c6b82;
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-line;
}

.product-copy h1 span {
  color: #d39a08;
}

.product-order-box {
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 42px rgba(25,39,72,.1);
}

.product-order-box p {
  margin: 0;
  color: #344054;
  font-size: 15px;
  line-height: 1.55;
}

.product-order-box .primary-mail {
  width: auto;
  justify-self: end;
}

.order-mail-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #092145;
  background: #f2f6fc;
  font-size: 25px;
}

.primary-mail,
.secondary-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.primary-mail {
  background: linear-gradient(135deg, #f2b10c, #d89500);
  color: #fff;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 18px 32px rgba(217, 151, 0, .24);
}

.secondary-link {
  background: #fff;
  color: #092145;
  box-shadow: inset 0 0 0 1px #e7edf6;
}

.product-showcase {
  position: relative;
  z-index: 2;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: -132px 44px 34px -14px;
  z-index: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #f6faff 0%, #e9f2ff 100%);
}

.product-box-stage {
  position: relative;
  z-index: 3;
  width: min(82%, 470px);
  display: grid;
  place-items: center;
  transform: translateY(-12px);
}

.product-box-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -44px;
  z-index: -1;
  width: 132%;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.98), #eef3fb);
  box-shadow: 0 18px 34px rgba(25,39,72,.1);
  transform: translateX(-50%);
}

.product-box-stage img {
  width: 100%;
  filter: drop-shadow(0 28px 34px rgba(15, 45, 96, .2));
}

.showcase-orbit {
  position: absolute;
  z-index: 1;
  inset: 26px 70px 76px -28px;
  border-left: 2px solid rgba(217, 151, 0, .46);
  border-bottom: 2px solid rgba(217, 151, 0, .46);
  border-radius: 50%;
  transform: rotate(9deg);
}

.product-dots,
.product-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.product-dots {
  width: 110px;
  height: 88px;
  opacity: .52;
  background-image: radial-gradient(circle, currentColor 2px, transparent 3px);
  background-size: 14px 14px;
}

.product-dots-blue {
  left: 4%;
  top: 5%;
  color: #0b68ff;
}

.product-dots-gold {
  right: 5%;
  bottom: 0;
  color: #eca800;
}

.product-shape-yellow {
  right: -78px;
  top: -74px;
  width: 160px;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffc928, #eca800);
}

.product-shape-blue {
  left: 42%;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%!important;
  background: linear-gradient(145deg, #7dbdff, #1f7bef);
}

.showcase-orbit::before,
.showcase-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d39700;
}

.showcase-orbit::before {
  left: -4px;
  bottom: 34%;
}

.showcase-orbit::after {
  left: 8%;
  bottom: -4px;
}

.product-price-bubble {
  position: absolute;
  z-index: 5;
  right: clamp(4px, 3vw, 42px);
  top: 40%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #092145;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(9, 33, 69, .22);
}

.product-price-bubble::before {
  content: "Цена";
  position: absolute;
  top: 18px;
  left: 50%;
  padding: 3px 10px;
  border-radius: 999px;
  color: #092145;
  background: #ffc928;
  font-size: 13px;
  line-height: 1;
  transform: translateX(-50%) rotate(-8deg);
}

.product-nav-strip {
  position: sticky;
  top: 112px;
  z-index: 18;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 12px;
  width: max-content;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(25,39,72,.1);
}

.product-nav-strip a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #0a1c3a;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.product-nav-strip a:hover {
  background: #f4f7fc;
  color: #005cff;
}

.inside-section,
.related-section,
.order-product-section {
  margin-top: 34px;
}

.inside-section,
.related-section {
  padding: clamp(36px, 5vw, 62px) clamp(22px, 5vw, 68px);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(25,39,72,.08);
}

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

.section-title-block {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-title-block.centered {
  margin-inline: auto;
  text-align: center;
}

.section-title-block h2,
.play-content h2,
.order-product-section h2 {
  margin-bottom: 14px;
  color: #092145;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}

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

.inside-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f7fbff, #fff);
  border: 1px solid #eef2f7;
}

.inside-card.large-inside {
  grid-column: span 2;
}

.inside-card.award-inside {
  background: linear-gradient(135deg, #fff8df, #fff);
}

.inside-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(25,39,72,.12));
}

.inside-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0b68ff, #12c8e6);
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(11, 104, 255, .18);
}

.inside-card h3 {
  margin-bottom: 8px;
  color: #092145;
  font-size: 22px;
  line-height: 1.15;
}

.inside-card p {
  margin: 0;
  color: #344054;
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-line;
}

.order-product-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 209, 26, .24), transparent 22%),
    #092145;
  color: #fff;
}

.order-product-section .hero-kicker {
  color: #ffd11a;
}

.order-product-section h2 {
  max-width: 780px;
  color: #fff;
}

.order-product-section p {
  max-width: 720px;
  color: #d8e5ff;
}

.product-not-found {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(40px, 7vw, 90px);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(25,39,72,.08);
}

.product-not-found h1 {
  margin: 0;
  color: #092145;
  font-size: clamp(40px, 5vw, 70px);
}

.product-not-found p {
  margin: 0;
  color: #344054;
  font-size: 20px;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(22px, 5vw, 84px);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(16, 24, 40, .04);
}

.shop-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #111827;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.shop-brand img {
  width: 82px;
  height: auto;
}

.shop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  color: #111827;
  font-size: 15px;
  font-weight: 800;
}

.shop-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.shop-nav .active {
  color: #005cff;
}

.video-pill {
  padding: 0 18px;
  border-radius: 999px;
  background: #f2f5fb;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, .04);
}

.play-dot {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ff2f3f;
}

.play-dot::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials {
  display: inline-flex;
  gap: 5px;
}

.socials a {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  background: #367cff;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.socials a:nth-child(2) { background: #4668a9; }
.socials a:nth-child(3) { background: linear-gradient(135deg, #ffca42, #fb2d73, #7956ff); }

.header-phone {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.shop-menu-button { display: none; }

.shop-home {
  background: #fff;
}

.shop-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(390px, 45%) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px) clamp(22px, 5vw, 84px) 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.86) 42%, rgba(238,246,255,.78)),
    #fff;
}

.shop-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-bottom: 80px;
}

.shop-hero-copy h1 {
  margin-bottom: 22px;
  color: #071b3a;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.07;
  letter-spacing: 0;
}

.shop-hero-copy h1 span {
  color: #045dff;
}

.shop-hero-copy p {
  max-width: 600px;
  margin-bottom: 30px;
  color: #26364f;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(126px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.benefit-row span {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .09);
  color: #13213b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.mini-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 18px;
}

.blue-icon { color: #005cff; background: #eaf2ff; }
.yellow-icon { color: #e0a900; background: #fff5c8; }
.red-icon { color: #ff3448; background: #ffe8eb; }
.green-icon { color: #17a764; background: #dff8ec; }

.watch-button {
  width: max-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 14px;
  background: #045dff;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(0, 92, 255, .22);
}

.watch-button .play-dot {
  background: rgba(255,255,255,.96);
}

.watch-button .play-dot::before {
  border-left-color: #045dff;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: end;
  min-height: 500px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(920px, 68vw);
  max-width: none;
  margin-right: clamp(-170px, -8vw, -70px);
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(15, 45, 96, .14));
}

.hero-blue-panel {
  position: absolute;
  z-index: 1;
  right: 10%;
  top: 20px;
  width: 560px;
  height: 430px;
  border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%;
  background: #36a8ff;
}

.age-card {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 6vw, 74px);
  top: 46px;
  min-width: 226px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 44px rgba(23, 44, 78, .16);
}

.age-card strong {
  color: #14213d;
  font-size: 17px;
  line-height: 1.35;
}

.age-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px 50% 14px 50%;
  background: #ffd11a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 900;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.shape-pink {
  left: 39%;
  top: 112px;
  width: 72px;
  height: 72px;
  opacity: .35;
  background-image: radial-gradient(circle, #ffb7c3 3px, transparent 4px);
  background-size: 18px 18px;
}

.shape-blue-left {
  left: -40px;
  bottom: 4px;
  width: 390px;
  height: 112px;
  background: #e5f0ff;
  border-radius: 0 80% 0 0;
}

.shape-violet {
  right: -30px;
  top: -2px;
  width: 220px;
  height: 250px;
  background: #e8e8ff;
  border-radius: 0 0 0 100%;
}

.wave {
  position: absolute;
  z-index: 5;
  bottom: -2px;
  height: 80px;
  pointer-events: none;
}

.wave-yellow {
  left: 37%;
  width: 30%;
  background: #ffd51f;
  clip-path: polygon(0 70%, 64% 25%, 100% 100%, 0 100%);
}

.wave-blue {
  right: 0;
  width: 28%;
  background: #045dff;
  clip-path: polygon(0 100%, 100% 28%, 100% 100%);
}

.shop-catalog-preview {
  padding: 42px clamp(22px, 5vw, 84px) 72px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 {
  position: relative;
  margin: 0;
  color: #071b3a;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
}

.section-head h2 span::before,
.section-head h2 span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 14px;
  border-radius: 4px;
  background: #ffd11a;
}

.section-head h2 span::before {
  right: -20px;
  top: -8px;
  transform: rotate(20deg);
}

.section-head h2 span::after {
  right: -29px;
  top: 2px;
  transform: rotate(56deg);
}

.section-head a {
  color: #045dff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

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

.shop-product-card {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(20, 32, 55, .08);
}

.product-image {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #edf5ff, #f7fbff);
}

.product-image.warm { background: linear-gradient(135deg, #fff0f0, #fff8f5); }
.product-image.sunny { background: linear-gradient(135deg, #fff8dc, #fffdf0); }
.product-image.cool { background: linear-gradient(135deg, #edf5ff, #f8fbff); }

.product-image img {
  max-width: 86%;
  max-height: 180px;
  object-fit: contain;
}

.product-image button {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #13213b;
  font-size: 24px;
  line-height: 1;
}

.gift-label {
  position: absolute;
  left: 22px;
  top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffd11a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  padding: 22px 26px 24px;
}

.product-body h3 {
  margin-bottom: 10px;
  color: #091a38;
  font-size: 21px;
  line-height: 1.2;
}

.product-body p {
  min-height: 58px;
  margin-bottom: 22px;
  color: #344054;
  font-size: 15px;
  line-height: 1.55;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-bottom strong {
  color: #071327;
  font-size: 22px;
  font-weight: 900;
}

.arrow-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
}

.blue-arrow { background: #045dff; }
.red-arrow { background: #ff3045; }
.yellow-arrow { background: #ffd11a; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 237, 243, .9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 15px;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1;
}

.brand img { width: 74px; height: auto; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
}

.top-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
}

.top-nav a:hover,
.top-nav .active {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--line);
}

.top-nav .mail-link {
  background: var(--ink);
  color: #fff;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  padding: 12px;
}

.menu-button span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 3px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  border-bottom: 1px solid var(--line);
}

.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #cdeefd;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(28px, 7vw, 92px);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 1s ease;
  background-image: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.72), rgba(255,255,255,.08)), var(--bg);
  background-size: cover;
  background-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  max-width: 720px;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

h1,
h2,
h3,
.big-action strong,
.product-tile span {
  font-family: var(--font-body);
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6.2vw, 74px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy p:last-child,
.page-hero p,
.home-intro p {
  max-width: 720px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.6;
  color: #344054;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: clamp(22px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255,201,40,.22), transparent 42%),
    linear-gradient(315deg, rgba(16,196,223,.18), transparent 46%),
    #fff;
}

.award-logo { width: 150px; }

.award-list {
  display: grid;
  gap: 10px;
}

.award-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
  max-width: 100%;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--line);
}

.hero-actions {
  display: grid;
  gap: 18px;
}

.big-action {
  position: relative;
  min-height: 134px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px 12px 30px 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.big-action::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.big-action strong {
  position: relative;
  z-index: 1;
  font-size: clamp(27px, 3.2vw, 38px);
  line-height: 1.04;
}

.big-action span {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

.action-catalog { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.action-method { background: linear-gradient(135deg, var(--red), var(--yellow)); color: #281407; }

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-tile {
  min-height: 240px;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  background: #fff;
}

.product-tile img {
  max-width: min(72%, 220px);
  max-height: 145px;
  object-fit: contain;
  transition: transform .25s ease;
}

.product-tile:hover img { transform: translateY(-8px) rotate(-2deg); }
.product-tile.blue { color: var(--blue); }
.product-tile.red { color: var(--red); }
.product-tile.yellow { color: #a66d00; }
.product-tile.green { color: var(--green); }

.home-intro,
.page-hero,
.fgos,
.order-band,
.docs-list {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(260px, 560px) minmax(260px, 720px);
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
}

.home-intro h2,
.page-hero h1 {
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.06;
}

.page {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f6fbff 42%, #fffdf8 100%);
}

.catalog-hero {
  background: linear-gradient(135deg, rgba(22,119,255,.12), rgba(255,201,40,.2));
}

.movement-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, rgba(57,181,106,.16), rgba(16,196,223,.18));
}

.docs-hero {
  background: linear-gradient(135deg, rgba(240,77,63,.12), rgba(124,85,255,.14));
}

.catalog-grid {
  display: grid;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 96px);
}

.game-card {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(22,33,58,.08);
}

.game-link {
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.game-link:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 119, 255, .35);
  box-shadow: 0 20px 46px rgba(22,33,58,.12);
}

.game-card img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.game-symbol {
  width: min(100%, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), transparent 36%),
    linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 18px 38px rgba(22,33,58,.16);
}

.game-symbol.fire {
  background:
    linear-gradient(135deg, rgba(255,255,255,.26), transparent 36%),
    linear-gradient(135deg, var(--red), var(--yellow));
  color: #281407;
}

.game-symbol.large {
  width: min(100%, 340px);
  justify-self: center;
  font-size: clamp(110px, 18vw, 180px);
}

.age {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: var(--green);
}

.game-card h2 { font-size: clamp(27px, 3.2vw, 38px); line-height: 1.08; margin-bottom: 12px; }
.game-card h3 { margin: 20px 0 8px; font-size: 18px; }
.game-card p, .game-card li, .docs-list p { color: #344054; line-height: 1.62; font-size: 17px; }

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--blue);
  font-weight: 800;
}

.order-band {
  background: var(--ink);
  color: #fff;
}

.order-band p { color: #d8e0ef; font-size: 22px; }
.order-band a { color: var(--yellow); font-weight: 900; }

.video-slot {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 3px dashed rgba(22,33,58,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  font-family: var(--font-body);
  font-size: 27px;
  font-weight: 900;
  color: var(--violet);
}

.method-wheel {
  position: relative;
  min-height: 760px;
  padding: clamp(44px, 8vw, 84px);
  display: grid;
  place-items: center;
}

.wheel-center {
  width: min(46vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 900;
}

.wheel-center img { width: 145px; }

.wheel-item {
  position: absolute;
  width: min(42vw, 360px);
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(22,33,58,.12);
}

.wheel-item h2 { margin-bottom: 10px; font-size: 25px; line-height: 1.12; }
.wheel-item p { color: #344054; line-height: 1.5; }
.neuro { left: 6vw; top: 70px; border-top: 8px solid var(--blue); }
.health { right: 6vw; top: 70px; border-top: 8px solid var(--green); }
.emotion { left: 6vw; bottom: 70px; border-top: 8px solid var(--yellow); }
.social { right: 6vw; bottom: 70px; border-top: 8px solid var(--red); }

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

.fgos-grid span {
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 18px;
  font-weight: 800;
}

.game-page {
  min-height: 100vh;
}

.game-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,201,40,.28), transparent 28%),
    linear-gradient(135deg, rgba(22,119,255,.10), rgba(57,181,106,.12));
}

.game-hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 66px);
}

.game-hero p {
  max-width: 720px;
  color: #344054;
  font-size: clamp(18px, 1.7vw, 22px);
}

.game-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(22,33,58,.16));
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.game-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.game-detail-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22,33,58,.07);
}

.game-detail-grid h2 {
  font-size: 25px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.game-detail-grid p,
.game-detail-grid li {
  color: #344054;
}

.game-detail-grid ul {
  margin: 0;
  padding-left: 20px;
}

.order-card {
  background: var(--ink) !important;
  color: #fff;
}

.order-card p { color: #d8e0ef; }
.order-card a { color: var(--yellow); font-weight: 800; }

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

.docs-list article {
  min-height: 240px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.docs-list a { color: var(--blue); font-weight: 900; }

.about-empty-page {
  min-height: calc(100vh - 112px);
  background: #fff;
}

.about-page {
  padding: 28px clamp(18px, 4vw, 72px) 0;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 201, 40, .16), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(22, 119, 255, .12), transparent 25%),
    #fff;
}

.about-hero {
  position: relative;
  max-width: 1660px;
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96) 0 44%, rgba(255,255,255,.72) 45% 100%),
    radial-gradient(circle at 84% 30%, rgba(255, 201, 40, .22), transparent 28%),
    linear-gradient(135deg, #eef6ff 0%, #fff 100%);
  box-shadow: 0 24px 70px rgba(9, 33, 69, .12);
}

.about-hero::before {
  content: "";
  position: absolute;
  right: -9%;
  top: -18%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffc400;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 43%;
  top: 12%;
  width: 120px;
  height: 120px;
  opacity: .4;
  background-image: radial-gradient(circle, #1677ff 0 4px, transparent 5px);
  background-size: 20px 20px;
}

.about-hero-copy,
.about-hero-image {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  max-width: 680px;
  margin: 8px 0 18px;
  color: #092145;
  font-family: var(--font-body);
  font-size: clamp(48px, 5.4vw, 86px);
  line-height: .95;
}

.about-hero-copy > p:not(.hero-kicker) {
  max-width: 620px;
  margin: 0;
  color: #344054;
  font-size: 20px;
  line-height: 1.65;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.secondary-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 18px;
  border: 1px solid #d9e4f5;
  color: #092145;
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 14px 32px rgba(9, 33, 69, .08);
}

.about-hero-image {
  margin: 0;
  display: flex;
  justify-content: center;
}

.about-hero-image img {
  width: min(100%, 680px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(9, 33, 69, .18));
}

.about-story,
.about-achievements,
.about-founders {
  max-width: 1500px;
  margin: clamp(56px, 7vw, 96px) auto 0;
}

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

.about-story-grid article {
  min-height: 300px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid #e7edf7;
  background: #fff;
  box-shadow: 0 18px 52px rgba(9, 33, 69, .08);
}

.about-story-grid span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #092145;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  background: #ffc400;
}

.about-story-grid h3 {
  margin: 0 0 12px;
  color: #092145;
  font-size: 24px;
  line-height: 1.18;
}

.about-story-grid p {
  margin: 0;
  color: #5a6678;
  font-size: 16px;
}

.about-achievements {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-achievements article {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #0048b8, #1677ff);
  box-shadow: 0 18px 44px rgba(0, 86, 216, .2);
}

.about-achievements article:nth-child(2) {
  background: linear-gradient(135deg, #ffb300, #ffc928);
  color: #092145;
}

.about-achievements article:nth-child(3) {
  background: linear-gradient(135deg, #f04d3f, #ff7b3f);
}

.about-achievements strong {
  font-family: var(--font-body);
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1;
}

.about-achievements span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.about-founders {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(28px, 4vw, 56px);
  border-radius: 30px;
  background: #f4f8ff;
}

.about-founders h2 {
  margin: 6px 0 12px;
  color: #092145;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.about-founders p {
  max-width: 980px;
  margin: 0;
  color: #344054;
  font-size: 19px;
  line-height: 1.6;
}

.agreement-page {
  padding: 36px clamp(18px, 4vw, 72px) 0;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 201, 40, .16), transparent 22%),
    radial-gradient(circle at 92% 12%, rgba(22, 119, 255, .12), transparent 24%),
    #fff;
}

.agreement-hero {
  max-width: 1300px;
  margin: 0 auto 28px;
  padding: clamp(32px, 5vw, 62px);
  border-radius: 32px;
  background: linear-gradient(135deg, #f4f8ff, #fff);
  box-shadow: 0 18px 52px rgba(9, 33, 69, .08);
}

.agreement-hero h1 {
  margin: 8px 0 12px;
  color: #092145;
  font-family: var(--font-body);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.agreement-hero p:not(.hero-kicker) {
  max-width: 760px;
  margin: 0;
  color: #5a6678;
  font-size: 19px;
}

.agreement-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 28px;
  border: 1px solid #e7edf7;
  background: #fff;
  box-shadow: 0 18px 52px rgba(9, 33, 69, .07);
}

.agreement-content h2 {
  margin: 34px 0 14px;
  color: #092145;
  font-size: 27px;
  line-height: 1.2;
}

.agreement-content h2:first-of-type {
  margin-top: 18px;
}

.agreement-content p {
  margin: 0 0 13px;
  color: #344054;
  font-size: 16px;
  line-height: 1.75;
}

.not-found-page {
  min-height: calc(100vh - 112px);
  padding: 28px clamp(18px, 4vw, 72px) 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 201, 40, .18), transparent 22%),
    radial-gradient(circle at 92% 15%, rgba(22, 119, 255, .12), transparent 24%),
    #fff;
}

.not-found-hero {
  position: relative;
  max-width: 1500px;
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(360px, .75fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 5vw, 76px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 201, 40, .25), transparent 28%),
    linear-gradient(135deg, #f4f8ff 0%, #fff 58%, #fff7db 100%);
  box-shadow: 0 24px 70px rgba(9, 33, 69, .12);
}

.not-found-hero::before {
  content: "";
  position: absolute;
  right: -9%;
  top: -18%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffc400;
}

.not-found-copy,
.not-found-visual {
  position: relative;
  z-index: 1;
}

.not-found-copy h1 {
  max-width: 720px;
  margin: 8px 0 18px;
  color: #092145;
  font-family: var(--font-body);
  font-size: clamp(48px, 5.2vw, 84px);
  line-height: .96;
}

.not-found-copy p:not(.hero-kicker) {
  max-width: 680px;
  margin: 0;
  color: #344054;
  font-size: 20px;
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.not-found-catalog {
  max-width: 1500px;
  margin: clamp(54px, 7vw, 92px) auto 0;
}

.not-found-catalog .modern-catalog-grid {
  margin-top: 30px;
}

.not-found-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.not-found-number {
  color: #0b4fc0;
  font-family: var(--font-body);
  font-size: clamp(120px, 13vw, 220px);
  font-weight: 900;
  line-height: .8;
  text-shadow: 0 20px 40px rgba(9, 33, 69, .16);
}

.not-found-piece {
  position: absolute;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(9, 33, 69, .18));
}

.piece-blue {
  left: 8%;
  top: 18%;
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background: linear-gradient(145deg, #1677ff, #0048b8);
  transform: rotate(-14deg);
}

.piece-yellow {
  right: 10%;
  top: 20%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd949, #f2aa00);
}

.piece-red {
  right: 22%;
  bottom: 14%;
  width: 0;
  height: 0;
  border-left: 62px solid transparent;
  border-right: 62px solid transparent;
  border-bottom: 108px solid #f04d3f;
}

.movement-method-page {
  padding: 28px clamp(18px, 4vw, 72px) 0;
  background:
    radial-gradient(circle at 10% 7%, rgba(255, 201, 40, .18), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(22, 119, 255, .12), transparent 24%),
    #fff;
}

.movement-method-page.concept-page {
  --concept-page-gutter: clamp(18px, 4vw, 72px);
  padding: 0 var(--concept-page-gutter);
}

.concept-banner {
  width: calc(100% + var(--concept-page-gutter) + var(--concept-page-gutter));
  margin: 0 0 0 calc(0px - var(--concept-page-gutter));
  padding: 0;
}

.movement-method-hero {
  position: relative;
  max-width: 1660px;
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(360px, .8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 5vw, 76px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 201, 40, .22), transparent 27%),
    linear-gradient(135deg, #f4f8ff 0%, #fff 58%, #fff7db 100%);
  box-shadow: 0 24px 70px rgba(9, 33, 69, .12);
}

.movement-method-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffc400;
}

.movement-method-hero::after {
  content: "";
  position: absolute;
  left: 47%;
  top: 13%;
  width: 120px;
  height: 120px;
  opacity: .38;
  background-image: radial-gradient(circle, #1677ff 0 4px, transparent 5px);
  background-size: 20px 20px;
}

.movement-method-hero > div {
  position: relative;
  z-index: 1;
}

.movement-method-hero h1 {
  max-width: 740px;
  margin: 8px 0 18px;
  color: #092145;
  font-family: var(--font-body);
  font-size: clamp(56px, 6vw, 96px);
  line-height: .92;
}

.concept-page .movement-method-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: 1.04;
}

.movement-method-hero p:not(.hero-kicker) {
  max-width: 710px;
  margin: 0;
  color: #344054;
  font-size: 20px;
  line-height: 1.65;
}

.movement-method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.movement-method-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
}

.method-shape {
  position: absolute;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(9, 33, 69, .2));
}

.shape-square {
  right: 30%;
  top: 30%;
  width: 150px;
  height: 150px;
  border-radius: 26px;
  background: linear-gradient(145deg, #1677ff, #0048b8);
  transform: rotate(-10deg);
}

.shape-circle {
  right: 14%;
  top: 34%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd949, #f2aa00);
}

.shape-triangle {
  right: 23%;
  bottom: 18%;
  width: 0;
  height: 0;
  border-left: 88px solid transparent;
  border-right: 88px solid transparent;
  border-bottom: 150px solid #f04d3f;
  filter: drop-shadow(0 22px 34px rgba(9, 33, 69, .18));
}

.shape-path {
  right: 7%;
  bottom: 12%;
  width: 58%;
  height: 46%;
  border: 3px dashed rgba(22, 119, 255, .3);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
  filter: none;
}

.method-principles,
.concept-foundation,
.method-fgos,
.method-cta {
  max-width: 1500px;
  margin: clamp(54px, 7vw, 92px) auto 0;
}

.concept-section-heading {
  grid-column: 1 / -1;
  max-width: 860px;
}

.concept-section-heading h2 {
  margin: 8px 0 12px;
  color: #092145;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.02;
}

.concept-section-heading p:not(.hero-kicker) {
  margin: 0 0 8px;
  color: #5a6678;
  font-size: 18px;
  line-height: 1.65;
}

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

.concept-foundation article {
  min-height: 310px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid #e7edf7;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.98)),
    radial-gradient(circle at 100% 0, rgba(255, 196, 0, .16), transparent 42%);
  box-shadow: 0 18px 46px rgba(9, 33, 69, .07);
}

.concept-foundation span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  background: #1677ff;
}

.concept-foundation h3 {
  margin: 0 0 12px;
  color: #092145;
  font-size: 23px;
  line-height: 1.15;
}

.concept-foundation p {
  margin: 0;
  color: #5a6678;
  font-size: 15px;
  line-height: 1.65;
}

.method-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.method-principles article {
  min-height: 360px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid #e7edf7;
  background: #fff;
  box-shadow: 0 18px 52px rgba(9, 33, 69, .08);
}

.concept-principles article {
  min-height: 330px;
}

.concept-page .concept-foundation article,
.concept-page .concept-principles article {
  border-radius: 0;
  min-height: 0;
  padding: clamp(22px, 2.4vw, 32px);
}

.concept-page .concept-section-heading h2,
.concept-page .method-cta h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.15;
}

.concept-page article h2,
.concept-page article h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.concept-page article p,
.concept-page .concept-section-heading p,
.concept-page .method-cta p:not(.hero-kicker) {
  font-size: 16px;
  line-height: 1.7;
}

/* Three short principles first, followed by two pairs of wider cards. */
.concept-page .concept-principles {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.concept-page .concept-principles article {
  grid-column: span 3;
}

.concept-page .concept-principles article:nth-of-type(-n + 3) {
  grid-column: span 2;
}

@media (max-width: 760px) {
  .concept-page .concept-principles {
    grid-template-columns: minmax(0, 1fr);
  }

  .concept-page .concept-principles article,
  .concept-page .concept-principles article:nth-of-type(-n + 3) {
    grid-column: auto;
  }
}

.method-principles span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #092145;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  background: #ffc400;
}

.concept-page .concept-icon {
  --icon-bg: #eaf3ff;
  width: 54px;
  height: 54px;
  color: #0961c9;
  background: var(--icon-bg);
}

.concept-principles .concept-icon {
  --icon-bg: #fff0b8;
  color: #805d00;
}

.concept-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-principles h2 {
  margin: 0 0 14px;
  color: #092145;
  font-size: clamp(26px, 2.3vw, 38px);
  line-height: 1.08;
}

.method-principles p {
  margin: 0;
  color: #5a6678;
  font-size: 16px;
  line-height: 1.7;
}

.method-fgos {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(135deg, #003dab, #1677ff);
  box-shadow: 0 22px 60px rgba(0, 80, 190, .22);
}

.method-fgos .hero-kicker {
  color: #ffc400;
}

.method-fgos h2 {
  margin: 8px 0 16px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.16;
}

.method-fgos p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.65;
}

.method-fgos-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-fgos-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.method-fgos-list span {
  color: #ffc400;
  font-size: 24px;
  line-height: 1;
}

.method-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(28px, 4vw, 56px);
  border-radius: 30px;
  background: #fff8db;
  box-shadow: 0 18px 52px rgba(9, 33, 69, .08);
}

.method-cta h2 {
  margin: 6px 0 12px;
  color: #092145;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.concept-page .method-cta {
  grid-template-columns: minmax(0, 1fr);
  width: calc(100% + var(--concept-page-gutter) + var(--concept-page-gutter));
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(0px - var(--concept-page-gutter));
  margin-right: calc(0px - var(--concept-page-gutter));
  border-radius: 0;
}

.concept-page + .site-footer { margin-top: 0; }

.method-cta p {
  max-width: 980px;
  margin: 0;
  color: #344054;
  font-size: 18px;
  line-height: 1.6;
}

.contacts-about {
  padding: 64px max(24px, calc((100% - 1240px) / 2)) 72px;
  background: #fff;
  color: #344054;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
}

.contacts-about-heading {
  max-width: 820px;
  margin-bottom: 40px;
  padding-top: 22px;
  border-top: 4px solid #ffc400;
}

.contacts-about-heading h2 {
  margin: 0;
  color: #092145;
  font-family: var(--font-body);
  font-size: 40px;
  line-height: 1.2;
}

.contacts-about h3 {
  margin: 0 0 20px;
  color: #092145;
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 1.3;
}

.contacts-about p { margin: 0 0 20px; }
.contacts-about p:last-child { margin-bottom: 0; }
.contacts-about strong { color: #092145; font-weight: 800; }
.contacts-about-section { padding: 44px 0; border-top: 1px solid #e4eaf2; }
.contacts-about-story { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 56px; }
.contacts-about-motto { padding-left: 24px; border-left: 3px solid #ffc400; }
.contacts-about-section-heading { max-width: 840px; }

.contacts-about-reach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contacts-about-reach-list li { padding-top: 20px; border-top: 3px solid #1268df; }
.contacts-about-reach-list li:nth-child(2) { border-color: #efbd18; }
.contacts-about-reach-list li:nth-child(3) { border-color: #eb5260; }
.contacts-about-reach-list p { font-size: 16px; }

.contacts-about-awards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  align-items: center;
  gap: 56px;
}

.contacts-about-medal { display: block; width: 130px; height: 130px; object-fit: contain; justify-self: center; }
.contacts-about-award-list { margin: 24px 0 0; padding-left: 22px; }
.contacts-about-award-list li { padding-left: 8px; margin-bottom: 16px; }
.contacts-about-award-list li::marker { color: #d99b00; }
.contacts-about-award-list li:last-child { margin-bottom: 0; }
.contacts-about-feature-list { list-style: none; margin: 28px 0 0; padding: 0; counter-reset: about-feature; }
.contacts-about-feature-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e4eaf2;
  counter-increment: about-feature;
}
.contacts-about-feature-list li::before {
  content: "0" counter(about-feature);
  color: #1268df;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}
.contacts-about .contacts-about-closing {
  max-width: 920px;
  margin: 40px auto 0;
  color: #092145;
  font-size: 21px;
  line-height: 1.6;
  text-align: center;
}
.contacts-about-features { padding-bottom: 0; }

@media (max-width: 980px) {
  .contacts-about-story { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .contacts-about-reach-list { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .contacts-about-awards { gap: 24px; }
}

@media (max-width: 640px) {
  .contacts-about { padding: 40px 24px; font-size: 16px; }
  .contacts-about-heading { margin-bottom: 28px; }
  .contacts-about-heading h2 { font-size: 29px; }
  .contacts-about h3 { font-size: 23px; }
  .contacts-about-section { padding-block: 28px; }
  .contacts-about-awards { grid-template-columns: minmax(0, 1fr); }
  .contacts-about-medal { width: 104px; height: 104px; }
  .contacts-about-feature-list li { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; }
  .contacts-about .contacts-about-closing { font-size: 18px; text-align: left; }
}

.about-company-page .contacts-about {
  padding: 28px clamp(18px, 4vw, 72px) 72px;
  background: #fff;
  font-family: var(--font-body);
  color: #5a6678;
  font-size: 18px;
  line-height: 1.65;
}

.about-company-page .contacts-about-heading {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 500px;
  max-width: 1660px;
  margin: 0 auto;
  padding: 56px;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: #f4f8ff;
  box-shadow: 0 24px 70px rgba(9, 33, 69, .12);
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-company-page .contacts-about-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.9) 34%, transparent 70%);
}

.about-company-page .contacts-about-heading h1 {
  max-width: 620px;
  margin: 8px 0 28px;
  color: #092145;
  font-family: var(--font-body);
  font-size: 66px;
  line-height: 1.04;
  text-wrap: balance;
}


.about-company-page .contacts-about-section {
  max-width: 1500px;
  margin: 72px auto 0;
  padding: 0;
  border: 0;
}

.about-company-page .contacts-about h3 {
  margin: 8px 0 24px;
  color: #092145;
  font-family: var(--font-body);
  font-size: 42px;
  line-height: 1.12;
}
.about-company-page .contacts-about-story { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 48px; }
.about-company-page .contacts-about-motto { padding: 8px 0 8px 24px; border-left: 4px solid #ffc400; background: none; }
.about-company-page .contacts-about-section-heading { max-width: 860px; }
.about-company-page .contacts-about strong { color: #092145; }

.about-company-page .contacts-about-reach-list { gap: 20px; counter-reset: about-reach; }
.about-company-page .contacts-about-reach-list li {
  counter-increment: about-reach;
  padding: 28px;
  border: 1px solid #e7edf7;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(9, 33, 69, .07);
}
.about-company-page .contacts-about-reach-list li::before {
  content: "0" counter(about-reach);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #1677ff;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
}
.about-company-page .contacts-about-reach-list p { font-size: 15px; line-height: 1.65; }

.about-company-page .contacts-about-awards {
  padding: 36px 0;
  border-block: 1px solid #e7edf7;
  background: #fff;
}
.about-company-page .contacts-about-award-list { list-style: none; padding: 0; }
.about-company-page .contacts-about-award-list li {
  padding: 18px 0 18px 24px;
  margin: 0 0 16px;
  border: 0;
  border-left: 4px solid #ffc400;
  color: #5a6678;
  font-size: 16px;
  line-height: 1.7;
}
.about-company-page .contacts-about-award-list li:last-child { margin-bottom: 0; }

.about-company-page .contacts-about-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-company-page .contacts-about-feature-list li {
  display: block;
  padding: 32px;
  border: 1px solid #e7edf7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(9, 33, 69, .08);
}
.about-company-page .contacts-about-feature-list li::before {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #ffc400;
  color: #092145;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
}
.about-company-page .contacts-about-feature-list p { font-size: 16px; line-height: 1.7; }
.about-company-page .contacts-about-feature-list strong { display: block; margin-bottom: 14px; font-size: 23px; line-height: 1.25; }
.about-company-page .contacts-about-closing { max-width: 980px; margin-top: 54px; font-size: 20px; line-height: 1.65; color: #344054; }

.about-company-page #contacts { scroll-margin-top: 112px; min-height: 0; border-radius: 0; box-shadow: none; }
.about-company-page #contacts-title { margin: 0 0 32px; color: #092145; font-family: var(--font-body); font-size: 42px; line-height: 1.12; }

@media (max-width: 980px) {
  .about-company-page .contacts-about-heading { min-height: 460px; padding: 34px 26px; }
  .about-company-page .contacts-about-heading h1 { max-width: 480px; font-size: 46px; }
  .about-company-page .contacts-about-story { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .about-company-page .contacts-about h3 { font-size: 36px; }
  .about-company-page .contacts-about-feature-list { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .about-company-page .contacts-about { padding: 18px 18px 44px; font-size: 16px; }
  .about-company-page .contacts-about-heading { min-height: 480px; justify-content: flex-start; padding: 24px 20px; border-radius: 22px; }
  .about-company-page .contacts-about-heading h1 { max-width: 100%; margin-bottom: 20px; font-size: 32px; line-height: 1.08; }
  .about-company-page .about-hero-photo { object-position: 64% bottom; }
  .about-company-page .contacts-about-heading::before { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.95) 25%, transparent 65%); }
  .about-company-page .contacts-about-section { margin-top: 44px; }
  .about-company-page .contacts-about h3 { font-size: 30px; line-height: 1.15; }
  .about-company-page .contacts-about-reach-list li,
  .about-company-page .contacts-about-feature-list li { padding: 24px 20px; border-radius: 22px; }
  .about-company-page .contacts-about-feature-list strong { font-size: 21px; }
  .about-company-page .contacts-about-closing { font-size: 18px; text-align: left; }
  .about-company-page #contacts-title { font-size: 32px; }
}

.contacts-page {
  min-height: calc(100vh - 112px);
  padding: 0;
  background: #f6f8fb;
}

.contacts-shell {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(420px, 1fr);
  overflow: hidden;
  border-radius: 0 0 44px 44px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 40, .08);
}

.contacts-content {
  padding: clamp(42px, 6vw, 74px) clamp(30px, 5vw, 72px);
}

.contacts-content h1 {
  position: relative;
  margin-bottom: 54px;
  color: #071d42;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.contacts-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 62px;
  height: 5px;
  border-radius: 999px;
  background: #f4c414;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #e7edf5;
}

.contact-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: center;
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid #0966ff;
  border-radius: 50%;
  color: #0966ff;
  background: #fff;
  font-size: 24px;
  font-weight: 900;
}

.contact-row p {
  margin: 0;
  color: #667085;
  font-size: 20px;
  line-height: 1.42;
}

.contact-row strong {
  color: #071d42;
  font-size: 20px;
  font-weight: 900;
}

.contact-row a {
  color: #0056d9;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contacts-content .contact-requisites .contact-row {
  align-items: start;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
}

.contacts-content .contact-requisites .contact-icon {
  width: 44px;
  height: 44px;
  font-size: 20px;
}

.contacts-content .contact-requisites p,
.contacts-content .contact-requisites strong {
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contacts-content .contact-list {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.cookie-notice {
  position: fixed;
  z-index: 10000;
  left: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(760px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px;
  border: 1px solid #343638;
  border-radius: 8px;
  background: #0c0f12;
  color: #c9cacc;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.cookie-notice p {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}

.cookie-notice a {
  color: #e6c7a3;
  font-weight: 800;
  text-decoration: none;
}

.cookie-notice a:hover { text-decoration: underline; }

.cookie-notice button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 8px 20px;
  border: 0;
  border-radius: 6px;
  background: #e6c7a3;
  color: #0c0f12;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-notice button:hover { background: #f1d6b6; }
.cookie-notice :focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

@media (max-width: 540px) {
  .cookie-notice { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .cookie-notice button { align-self: flex-end; }
}

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

.contact-form h2 {
  margin-bottom: 4px;
  color: #071d42;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.06;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e0ea;
  border-radius: 10px;
  padding: 18px 22px;
  color: #071d42;
  background: #fff;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(16, 24, 40, .02);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #f04d3f;
  box-shadow: 0 0 0 4px rgba(240, 77, 63, .1);
}

.field-error {
  min-height: 18px;
  color: #d92d20;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.contact-form input {
  height: 68px;
  padding-left: 22px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0966ff;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(9, 102, 255, .1);
}

.contact-form ::placeholder {
  color: #8a94a6;
  opacity: 1;
}

.contact-form-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 20px;
}

.contact-form button {
  min-width: 206px;
  min-height: 58px;
  border: 0;
  border-radius: 9px;
  color: #071d42;
  background: linear-gradient(135deg, #ffd72a, #f3b400);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(217, 151, 0, .2);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .7;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: #667085;
  font-size: 15px;
  font-weight: 800;
}

.form-status.is-success {
  color: #12805c;
}

.form-status.is-error {
  color: #d92d20;
}

.contacts-art {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 40px;
  padding: clamp(52px, 6vw, 88px) clamp(44px, 5vw, 76px);
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.3) 0 0, transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(255, 201, 40, .24) 0 0, transparent 20%),
    linear-gradient(145deg, #4aa8ff 0%, #0875e8 58%, #004dc0 100%);
  color: #fff;
}

.contacts-art::before {
  content: "△  ○  □  ☆  ◇  ○  △  □  ☆  ◇";
  position: absolute;
  inset: 22px -40px auto 22px;
  color: rgba(255,255,255,.18);
  font-size: 46px;
  line-height: 2.1;
  letter-spacing: 20px;
  transform: rotate(7deg);
}

.contacts-art::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.contacts-art-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contacts-art-top img {
  width: 148px;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 52, 130, .18));
}

.contacts-art-top span {
  max-width: 210px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.contact-flight {
  position: relative;
  z-index: 2;
  min-height: 220px;
}

.paper-plane {
  position: absolute;
  z-index: 3;
  left: 46%;
  top: 42%;
  color: #fff;
  font-size: 82px;
  transform: rotate(-28deg);
  text-shadow: 0 18px 24px rgba(0, 72, 150, .28);
}

.contact-flight::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 42%;
  width: 62%;
  height: 150px;
  border: 4px dashed rgba(255,255,255,.72);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 150px;
  transform: rotate(-15deg);
}

.flight-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffc400;
  box-shadow: 0 8px 18px rgba(0, 64, 160, .18);
}

.dot-one {
  left: 14%;
  top: 30%;
}

.dot-two {
  left: 36%;
  top: 58%;
  background: #fff;
}

.dot-three {
  right: 18%;
  top: 34%;
  background: #ff5a52;
}

.contacts-art-card {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  color: #071d42;
  background: #fff;
  box-shadow: 0 26px 54px rgba(0, 62, 150, .24);
}

.contacts-art-card .hero-kicker {
  margin-bottom: 8px;
  color: #c58b00;
}

.contacts-art-card h2 {
  margin: 0 0 12px;
  color: #071d42;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.contacts-art-card p:not(.hero-kicker) {
  margin: 0 0 22px;
  color: #536177;
  font-size: 18px;
  line-height: 1.6;
}

.contacts-art-card a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  color: #071d42;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #ffd72a, #f3b400);
  box-shadow: 0 14px 28px rgba(217, 151, 0, .2);
}

.contacts-art-shapes {
  position: absolute;
  inset: auto 0 0 auto;
  z-index: 1;
  pointer-events: none;
}

.contacts-art-shapes span {
  position: absolute;
  display: block;
  opacity: .85;
  filter: drop-shadow(0 16px 24px rgba(0, 52, 130, .18));
}

.contacts-art-shapes span:nth-child(1) {
  right: 12%;
  bottom: 20%;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: #ffc400;
  transform: rotate(12deg);
}

.contacts-art-shapes span:nth-child(2) {
  right: 34%;
  bottom: 9%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ff5a52;
}

.contacts-art-shapes span:nth-child(3) {
  right: 5%;
  bottom: 4%;
  width: 0;
  height: 0;
  border-left: 48px solid transparent;
  border-right: 48px solid transparent;
  border-bottom: 82px solid #fff;
}

.site-footer {
  margin-top: clamp(0, 7vw, 0);
  overflow: hidden;
  background: #fff;
}

.footer-playground {
  display: none;
  position: relative;
  min-height: 210px;
  background:
    radial-gradient(circle at 13% 90%, rgba(22, 119, 255, .08) 0 118px, transparent 120px),
    radial-gradient(circle at 99% 78%, rgba(22, 119, 255, .09) 0 142px, transparent 144px),
    linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.footer-dot-grid {
  position: absolute;
  left: 5vw;
  top: 44px;
  width: 96px;
  height: 96px;
  opacity: .55;
  background-image: radial-gradient(circle, rgba(22, 119, 255, .28) 0 6px, transparent 7px);
  background-size: 28px 28px;
}

.footer-soft-shape {
  position: absolute;
  left: 27vw;
  top: 96px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(22, 119, 255, .12);
  transform: rotate(36deg);
}

.footer-symbol {
  position: absolute;
  color: rgba(22, 119, 255, .22);
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1;
}

.footer-symbol-plus {
  left: 28vw;
  top: 100px;
  font-size: 54px;
}

.footer-symbol-triangle {
  right: 5vw;
  top: 92px;
  font-size: 78px;
  color: rgba(22, 119, 255, .18);
}

.footer-blue {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding: 40px clamp(24px, 5vw, 92px);
  color: #fff;
  background: #016195;
}

.footer-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .2;
  background: url("/assets/bg_footer.png") 30px -35px / 150px 150px repeat;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(300px, 1fr) minmax(200px, .6fr) minmax(230px, .65fr);
  gap: clamp(22px, 3vw, 50px);
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  min-height: 130px;
  padding-right: clamp(22px, 2.4vw, 40px);
  border-right: 1px solid rgba(255,255,255,.4);
}

.footer-logo img {
  width: 118px;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .18));
}

.footer-contact,
.footer-nav,
.footer-side {
  min-height: 140px;
}

.footer-contact {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-right: clamp(22px, 3vw, 48px);
  border-right: 1px solid rgba(255,255,255,.4);
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
}

.footer-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #016195;
  font-size: 23px;
  font-weight: 900;
}

.footer-icon svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact strong {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  display: grid;
  align-content: center;
  gap: 0;
  padding-right: clamp(22px, 3vw, 48px);
  border-right: 1px solid rgba(255,255,255,.4);
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 46px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  transition: transform .2s ease, color .2s ease;
}

.footer-nav a:last-child {
  border-bottom: 0;
}

.footer-nav a:hover {
  color: #dceefa;
  transform: translateX(8px);
}

.footer-nav span {
  width: 26px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.footer-side {
  display: grid;
  align-content: center;
  justify-items: start;
}

.footer-agreement {
  width: min(100%, 300px);
  box-shadow: none;
} 

.footer-agreement:hover {
  background: #e8f3fa;
}

.footer-agreement:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.footer-agreement::before {
  color: currentColor;
  font-size: 19px;
}

@media (max-width: 980px) {
  .home-header {
    min-height: 86px;
    grid-template-columns: auto 1fr;
    padding: 14px 20px;
  }

  .home-brand img { width: 82px; }
  .brand-slogan { font-size: 16px; }
  .rocket-mark { width: 42px; height: 42px; font-size: 34px; }
  .home-menu-button { display: block; justify-self: end; }

  .home-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .home-nav.is-open { display: flex; }
  .home-nav a { min-height: 44px; }
  .main-hero {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding: 42px 34px;
  }

  .main-hero::before {
    width: 220px;
    height: 180px;
  }

  .hero-static-copy {
    padding: 0;
  }

  .hero-static-copy h1 {
    font-size: clamp(48px, 8vw, 70px);
  }

  .hero-photo-slider {
    gap: 14px;
    min-height: 0;
    padding: 14px;
    border-radius: 28px;
    clip-path: none;
    scroll-padding: 14px;
  }

  .photo-slide {
    flex-basis: calc((100% - 14px) / 2);
  }

  .home-cta-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 285px;
  }

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

  .trust-strip span,
  .trust-strip span:last-child {
    border-right: 0;
    border-bottom: 1px solid #eef2f7;
  }

  .catalog-main-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 46px 34px 34px;
    border-radius: 30px;
  }

  .catalog-main-art {
    min-height: 250px;
  }

  .catalog-main-art img {
    width: min(100%, 390px);
    max-width: 95%;
  }

  .catalog-doodle.star-one {
    left: 8%;
    top: 5%;
  }

  .catalog-doodle.plane-one,
  .catalog-doodle.path-one {
    left: 3%;
  }

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

  .catalog-order-modern {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-hero-modern {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 46px 34px 34px;
    border-radius: 30px;
  }

  .product-hero-modern::before,
  .product-hero-modern::after {
    content: none;
  }

  .product-hero-modern:has(> .product-order-box) {
    grid-template-areas: "copy" "showcase" "order";
  }

  .product-hero-modern > .product-order-box {
    width: 100%;
    justify-self: center;
  }

  .product-showcase {
    max-width: 520px;
    width: 100%;
    min-height: 430px;
    justify-self: center;
    isolation: isolate;
    overflow: hidden;
  }

  .product-showcase::before {
    inset: 0 4px 34px;
  }

  .product-showcase .product-shape-yellow {
    top: 0;
  }

  .product-nav-strip {
    top: 86px;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .order-product-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .shop-brand img { width: 64px; }

  .shop-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(16, 24, 40, .16);
  }

  .shop-nav.is-open { display: flex; }

  .shop-nav a {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
  }

  .header-contact { display: none; }
  .shop-menu-button { display: block; justify-self: end; }

  .shop-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .shop-hero-copy {
    max-width: 760px;
    padding-bottom: 24px;
  }

  .benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .hero-visual {
    min-height: 380px;
    justify-content: end;
  }

  .hero-visual img {
    width: min(820px, 100vw);
    margin-right: -130px;
  }

  .hero-blue-panel {
    right: 8%;
    width: 520px;
    height: 360px;
  }

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

  .site-header { min-height: 72px; }
  .top-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .top-nav.is-open { display: flex; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-slider { min-height: 530px; }
  .product-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-intro, .movement-hero, .docs-list, .game-hero { grid-template-columns: 1fr; }
  .game-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-wheel { display: grid; gap: 18px; min-height: 0; }
  .wheel-center, .wheel-item { position: static; width: 100%; border-radius: 8px; }
  .wheel-center { aspect-ratio: auto; }
  .fgos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contacts-shell {
    grid-template-columns: 1fr;
    border-radius: 0 0 30px 30px;
  }

  .contacts-art {
    min-height: 620px;
  }

  .about-page {
    padding: 20px 16px 0;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 26px;
  }

  .about-hero-copy > p:not(.hero-kicker) {
    font-size: 18px;
  }

  .about-hero-image img {
    max-height: 420px;
  }

  .about-story-grid,
  .about-achievements {
    grid-template-columns: 1fr;
  }

  .about-story-grid article {
    min-height: 0;
  }

  .about-founders {
    grid-template-columns: 1fr;
  }

  .agreement-page {
    padding: 24px 16px 0;
  }

  .agreement-content {
    padding: 34px 26px;
  }

  .not-found-page {
    padding: 20px 16px 0;
  }

  .not-found-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 26px;
  }

  .not-found-visual {
    min-height: 260px;
  }

  .movement-method-page {
    padding: 20px 16px 0;
  }

  .movement-method-page.concept-page {
    --concept-page-gutter: 16px;
  }

  .movement-method-hero,
  .method-fgos,
  .method-cta {
    grid-template-columns: 1fr;
  }

  .movement-method-hero {
    min-height: 0;
    padding: 34px 26px;
  }

  .movement-method-visual {
    min-height: 300px;
  }

  .shape-square {
    right: 48%;
    top: 58%;
    width: 110px;
    height: 110px;
  }

  .shape-circle {
    right: 18%;
    top: 54%;
    width: 126px;
    height: 126px;
  }

  .shape-triangle {
    right: 36%;
    bottom: 7%;
    border-left-width: 62px;
    border-right-width: 62px;
    border-bottom-width: 108px;
  }

  .method-principles {
    grid-template-columns: 1fr;
  }

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

  .method-principles article {
    min-height: 0;
  }

  .concept-foundation article,
  .concept-principles article {
    min-height: 0;
  }

  .footer-playground {
    min-height: 170px;
  }

  .footer-blue {
    padding: 36px 24px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
  }

  .footer-logo,
  .footer-contact,
  .footer-nav {
    min-height: 0;
    padding-right: 0;
    border-right: 0;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .footer-contact,
  .footer-nav,
  .footer-side {
    min-height: 0;
  }

  .footer-contact p {
    font-size: 16px;
  }

  .footer-contact strong {
    font-size: 19px;
  }
}

@media (max-width: 640px) {
  .home-header {
    grid-template-columns: auto auto;
  }

  .brand-slogan {
    display: none;
  }

  .home-page {
    --home-page-gutter: 12px;
    padding: 0 12px;
  }

  .main-hero {
    min-height: 0;
    border-radius: 24px;
    padding: 30px 18px;
  }

  .main-hero::after {
    left: auto;
    right: 28px;
    top: 26px;
    font-size: 28px;
  }

  .hero-static-copy {
    padding: 0;
  }

  .hero-kicker {
    font-size: 15px;
  }

  .hero-static-copy h1 {
    font-size: 42px;
  }

  .hero-static-copy > p:not(.hero-kicker) {
    font-size: 17px;
    margin-bottom: 26px;
  }

  .about-page {
    padding: 14px 12px 0;
  }

  .about-hero {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero-actions {
    display: grid;
  }

  .about-hero-image img {
    max-height: 320px;
  }

  .about-story,
  .about-achievements,
  .about-founders {
    margin-top: 44px;
  }

  .about-story-grid article,
  .about-achievements article,
  .about-founders {
    border-radius: 22px;
    padding: 24px 20px;
  }

  .about-founders p {
    font-size: 16px;
  }

  .not-found-page {
    padding: 14px 12px 0;
  }

  .not-found-hero {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .not-found-copy h1 {
    font-size: 42px;
  }

  .not-found-copy p:not(.hero-kicker) {
    font-size: 16px;
  }

  .not-found-actions {
    display: grid;
  }

  .not-found-visual {
    min-height: 210px;
  }

  .piece-blue {
    width: 62px;
    height: 62px;
  }

  .piece-yellow {
    width: 72px;
    height: 72px;
  }

  .piece-red {
    border-left-width: 42px;
    border-right-width: 42px;
    border-bottom-width: 74px;
  }

  .movement-method-page {
    padding: 14px 12px 0;
  }

  .movement-method-page.concept-page {
    --concept-page-gutter: 12px;
  }

  .movement-method-hero {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .movement-method-hero h1 {
    font-size: 42px;
  }

  .concept-page .movement-method-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .movement-method-hero p:not(.hero-kicker),
  .method-cta p {
    font-size: 16px;
  }

  .movement-method-actions {
    display: grid;
  }

  .movement-method-visual {
    min-height: 220px;
  }

  .shape-square {
    right: 50%;
    width: 86px;
    height: 86px;
    border-radius: 18px;
  }

  .shape-circle {
    right: 12%;
    width: 96px;
    height: 96px;
  }

  .shape-triangle {
    right: 34%;
    border-left-width: 48px;
    border-right-width: 48px;
    border-bottom-width: 82px;
  }

  .method-principles,
  .concept-foundation,
  .method-fgos,
  .method-cta {
    margin-top: 44px;
  }

  .method-principles article,
  .concept-foundation article,
  .method-fgos,
  .method-cta {
    border-radius: 22px;
    padding: 24px 20px;
  }

  .concept-foundation,
  .concept-principles {
    grid-template-columns: 1fr;
  }

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

  .concept-section-heading p:not(.hero-kicker) {
    font-size: 16px;
  }

  .concept-foundation h3 {
    font-size: 21px;
  }

  .method-principles h2 {
    font-size: 25px;
  }

  .method-principles p,
  .concept-foundation p,
  .method-fgos p,
  .method-fgos-list li {
    font-size: 15px;
  }

  .method-fgos-list li {
    grid-template-columns: 30px 1fr;
    padding: 14px;
  }

  .hero-photo-slider {
    gap: 12px;
    min-height: 0;
    padding: 12px;
    border-radius: 22px;
    clip-path: none;
    scroll-padding: 12px;
  }

  .photo-slide {
    flex-basis: 84%;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
    font-size: 36px;
  }

  .photo-dots {
    bottom: auto;
    margin-top: 2px;
  }

  .home-cta-grid {
    padding: 0;
  }

  .feature-card {
    min-height: 360px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 30px 26px;
    border-radius: 24px;
  }

  .feature-copy h2 {
    font-size: 34px;
  }

  .feature-copy p {
    font-size: 17px;
  }

  .catalog-feature .catalog-illustration {
    width: min(92%, 380px);
  }

  .movement-feature .girl-illustration {
    width: min(44%, 340px);
    right: 0;
    bottom:-20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 18px;
  }

  .catalog-page-modern {
    padding: 0 12px 24px;
  }

  .catalog-main-hero {
    padding: 34px 22px 24px;
    border-radius: 24px;
  }

  .catalog-main-copy h1 {
    font-size: 42px;
  }

  .catalog-main-copy p {
    font-size: 16px;
  }

  .catalog-main-art::after,
  .catalog-doodle.heart-two,
  .catalog-doodle.path-two {
    display: none;
  }

  .catalog-doodle.star-one {
    font-size: 34px;
  }

  .catalog-doodle.star-two {
    right: 8%;
    bottom: 6%;
    font-size: 30px;
  }

  .catalog-doodle.plane-one {
    top: 28%;
    font-size: 40px;
  }

  .catalog-doodle.path-one {
    top: 42%;
    width: 92px;
    height: 108px;
  }

  .modern-catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 18px;
  }

  .wide-card {
    grid-column: auto;
    display: flex;
  }

  .wide-card::before {
    width: auto;
    height: 218px;
    left: 0;
    border-radius: 24px 24px 40px 40px;
  }

  .modern-game-card {
    min-height: 410px;
    border-radius: 20px;
  }

  .modern-game-card h2 {
    min-height: 0;
    font-size: 22px;
  }

  .catalog-order-modern {
    margin: 4px 0 0;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .product-page {
    padding: 0 12px 24px;
  }

  .product-hero-modern {
    padding: 34px 22px 24px;
    border-radius: 24px;
    gap: 28px;
  }

  .product-hero-modern::before {
    width: 110px;
  }

  .product-copy h1 {
    font-size: 48px;
  }

  .product-description {
    font-size: 16px;
  }

  .product-order-box {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 18px;
  }

  .product-order-box .order-mail-icon {
    width: 44px;
    height: 44px;
  }

  .primary-mail,
  .secondary-link {
    width: 100%;
  }

  .product-order-box .primary-mail {
    display: flex;
    justify-self: start;
    min-height: 54px;
    padding: 12px 18px;
    font-size: 16px;
    line-height: 1.2;
  }

  .product-showcase {
    min-height: 0;
    aspect-ratio: 0;
  }

  .product-showcase::before {
    inset: 0 4px 36px;
  }

  .product-box-stage {
    width: 80%;
    transform: none;
  }

  .product-box-stage img {
    max-height: 270px;
    object-fit: contain;
  }

  .product-box-stage::after {
    width: 122%;
    height: 58px;
    bottom: -28px;
  }

  .product-price-bubble {
    right: 0;
    top: 34%;
    width: 88px;
    height: 88px;
    font-size: 16px;
    padding-top: 18px;
    white-space: nowrap;
  }

  .product-price-bubble::before {
    top: 14px;
  }

  .showcase-orbit {
    inset: 24px 18px 98px 0;
  }

  .product-dots-blue {
    left: 2%;
    top: 4%;
  }

  .product-dots-gold {
    display: none;
  }

  .product-shape-yellow {
    right: -54px;
    top: 0;
    width: 110px;
    height: 140px;
  }

  .product-shape-blue {
    left: 38%;
    bottom: 8px;
    width: 84px;
    height: 84px;
  }

  .product-nav-strip {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }

  .inside-section,
  .related-section,
  .order-product-section {
    border-radius: 24px;
  }

  .inside-section,
  .related-section {
    padding: 30px 20px;
  }

  .inside-grid,
  .related-games-grid {
    grid-template-columns: 1fr;
  }

  .inside-card.large-inside {
    grid-column: auto;
  }

  .shop-header {
    padding: 12px 18px;
  }

  .shop-brand {
    gap: 12px;
    font-size: 13px;
  }

  .shop-brand img { width: 58px; }

  .shop-hero {
    padding: 32px 18px 0;
  }

  .shop-hero-copy h1 {
    font-size: 42px;
  }

  .shop-hero-copy p {
    font-size: 17px;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .watch-button {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 330px;
    margin-top: 12px;
  }

  .hero-visual img {
    width: 760px;
    margin-right: -230px;
  }

  .hero-blue-panel {
    right: -80px;
    top: 28px;
    width: 350px;
    height: 265px;
  }

  .age-card {
    right: 0;
    top: 0;
    min-width: 180px;
    min-height: 78px;
    padding: 16px;
  }

  .age-card strong {
    font-size: 14px;
  }

  .age-mark {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .wave-yellow { left: 18%; width: 50%; }
  .wave-blue { width: 42%; }

  .shop-catalog-preview {
    padding: 34px 18px 52px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-product-grid { grid-template-columns: 1fr; }

  .brand img { width: 58px; }
  .brand span { font-size: 13px; }
  h1 { font-size: 40px; }
  .hero-slide { padding: 26px 18px; align-items: end; }
  .hero-slider { min-height: 520px; }
  .hero-panel { padding: 22px 18px 34px; }
  .product-strip, .catalog-grid, .game-card, .fgos-grid, .game-detail-grid { grid-template-columns: 1fr; }
  .product-tile { min-height: 210px; }
  .page-hero, .home-intro, .fgos, .order-band, .docs-list { padding-left: 18px; padding-right: 18px; }

  .contacts-content {
    padding: 34px 20px;
  }

  .contacts-content h1 {
    margin-bottom: 46px;
    font-size: 44px;
  }

  .contact-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .contact-row p,
  .contact-row strong {
    font-size: 17px;
  }

  .contact-form-grid,
  .contact-form-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-form button {
    width: 100%;
  }

  .contacts-art {
    min-height: 560px;
    gap: 28px;
    padding: 34px 24px;
  }

  .contacts-art-top {
    align-items: flex-start;
  }

  .contacts-art-top img {
    width: 126px;
  }

  .contacts-art-top span {
    font-size: 18px;
  }

  .contact-flight {
    min-height: 150px;
  }

  .paper-plane {
    top: 30%;
    left: 54%;
    font-size: 58px;
  }

  .contact-flight::before {
    left: 7%;
    top: 34%;
    width: 68%;
    height: 110px;
  }

  .contacts-art-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .contacts-art-card h2 {
    font-size: 32px;
  }

  .contacts-art-card p:not(.hero-kicker) {
    font-size: 16px;
  }

  .contacts-art-shapes span:nth-child(1) {
    width: 54px;
    height: 54px;
  }

  .contacts-art-shapes span:nth-child(2) {
    width: 48px;
    height: 48px;
  }

  .contacts-art-shapes span:nth-child(3) {
    border-left-width: 34px;
    border-right-width: 34px;
    border-bottom-width: 58px;
  }

  .site-footer {
    margin-top: 48px;
  }

  .footer-playground {
    min-height: 130px;
  }

  .footer-dot-grid,
  .footer-soft-shape,
  .footer-symbol-plus {
    display: none;
  }

  .footer-symbol-triangle {
    right: 18px;
    top: 36px;
    font-size: 48px;
  }

  .footer-blue {
    padding: 32px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo img {
    width: 112px;
  }

  .footer-contact-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .footer-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .footer-contact p,
  .footer-nav a {
    font-size: 15px;
  }

  .footer-contact strong {
    font-size: 18px;
  }

  .footer-nav a {
    min-height: 50px;
    gap: 16px;
  }

}
