:root {
  --bg: #1d2126;
  --bg-deep: #16181b;
  --surface: #1e2227;
  --surface-2: #2a3038;
  --text: #fbfbfb;
  --muted: #727272;
  --red: #cd4743;
  --blue: #474ed2;
  --line: rgb(114 114 114 / 20%);
  --display: "Russo One", "Science Gothic", sans-serif;
  --body: "Jura", sans-serif;
  --content-width: 1360px;
  --section-pad: clamp(24px, 4.17vw, 80px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body);
  font-size: 24px;
  line-height: 1.2;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
.result-card h3,
.benefit-card h3,
.service-card h3,
.service-card strong,
.payment h4,
.payment strong {
  font-family: var(--display);
  font-weight: 400;
}

h2 {
  font-size: clamp(36px, 3.125vw, 60px);
  line-height: 1.23;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  color: #111;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 84px;
  background: rgb(29 33 38 / 90%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  backdrop-filter: blur(18px) saturate(130%);
  transition: height 280ms var(--ease-out), background-color 280ms ease, box-shadow 280ms ease,
    border-color 280ms ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgb(22 24 27 / 97%);
  border-bottom-color: rgb(255 255 255 / 12%);
  box-shadow: 0 12px 36px rgb(0 0 0 / 28%);
}

.header-inner {
  width: min(var(--content-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 70px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: transform 260ms var(--ease-out), opacity 220ms ease;
}

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

.brand:active {
  transform: scale(0.96);
}

.brand img {
  width: 70px;
  height: 56px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  transition: color 260ms ease, background 260ms ease, transform 260ms var(--ease-out);
}

.main-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 3px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgb(255 255 255 / 6%);
}

.main-nav a:hover {
  transform: translateY(-2px);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav .landing-home-link {
  border: 1px solid rgb(255 255 255 / 10%);
  color: var(--text);
  background: rgb(255 255 255 / 5%);
}

.main-nav .landing-home-link::after {
  display: none;
}

.main-nav .landing-home-link span {
  display: inline-block;
  transition: transform 240ms var(--ease-out);
}

.main-nav .landing-home-link:hover span {
  transform: translateX(-3px);
}

.menu-toggle {
  display: none;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: rgb(255 255 255 / 5%);
  font-weight: 700;
  cursor: pointer;
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease, transform 260ms var(--ease-out);
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  border-color: rgb(251 251 251 / 55%);
  background: rgb(255 255 255 / 7%);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-toggle-label {
  font-size: 16px;
  line-height: 20px;
}

.menu-toggle-icon {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-icon i {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  display: block;
  background: currentColor;
  transition: transform 260ms var(--ease-out), opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-telegram,
.footer-telegram {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgb(42 171 238 / 52%);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: #168bd0;
  box-shadow: 0 10px 26px rgb(42 171 238 / 14%);
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  transition: transform 260ms var(--ease-out), background-color 240ms ease, box-shadow 240ms ease;
}

.header-telegram:hover,
.footer-telegram:hover {
  background: #2aabee;
  box-shadow: 0 14px 32px rgb(42 171 238 / 24%);
  transform: translateY(-2px);
}

.header-telegram:active,
.footer-telegram:active {
  transform: scale(0.97);
}

.header-telegram img,
.footer-telegram img {
  flex: 0 0 auto;
}

.nav-telegram {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 18px 40px 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  transition: transform 300ms var(--ease-out), filter 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgb(0 0 0 / 20%);
}

.button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 100ms;
}

.button-light {
  color: var(--bg);
  background: var(--text);
}

.button-primary {
  color: var(--text);
  background: var(--blue);
}

.button-outline {
  min-height: 64px;
  color: var(--text);
  background: transparent;
  border: 2px solid var(--line);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 0 var(--section-pad);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: -260px;
  left: -5%;
  width: 110%;
  height: 800px;
  background:
    linear-gradient(100deg, transparent 0 13%, rgb(22 24 27 / 65%) 13.5% 19%, transparent 19.5% 38%, rgb(22 24 27 / 60%) 38.5% 44%, transparent 44.5% 62%, rgb(22 24 27 / 55%) 62.5% 68%, transparent 68.5% 86%, rgb(22 24 27 / 65%) 86.5% 92%, transparent 92.5%),
    linear-gradient(180deg, var(--red) 8%, rgb(205 71 67 / 58%) 46%, rgb(205 71 67 / 0%) 83%);
  filter: blur(30px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding-top: 94px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(42px, 3.75vw, 72px);
  line-height: 1.11;
  text-transform: uppercase;
}

.hero-copy > p {
  margin-top: 32px;
  font-size: clamp(23px, 1.88vw, 36px);
  line-height: 1.12;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-top: 48px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(380px, 0.88fr);
  gap: 32px;
  align-items: center;
}

.hero-vsl {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #080a0d;
  box-shadow: 0 26px 70px rgb(0 0 0 / 30%);
  cursor: pointer;
  transition: transform 500ms var(--ease-out), border-color 320ms ease, box-shadow 500ms ease;
}

.vsl-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out), filter 500ms ease;
}

.vsl-poster-mock {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    radial-gradient(circle at 20% 24%, rgb(205 71 67 / 44%), transparent 38%),
    radial-gradient(circle at 82% 72%, rgb(71 78 210 / 42%), transparent 40%),
    linear-gradient(145deg, #252a31, #111419 62%, #1d2126);
  background-size: 40px 40px, 40px 40px, auto, auto, auto;
}

.vsl-poster-mock::before {
  position: absolute;
  inset: 16% 18%;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 14px;
  content: "";
  background: linear-gradient(145deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 2%));
  box-shadow: 0 22px 50px rgb(0 0 0 / 22%);
}

.vsl-poster-mock::after {
  position: absolute;
  top: 28%;
  left: 28%;
  width: 44%;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: rgb(255 255 255 / 12%);
  box-shadow: 0 24px 0 rgb(255 255 255 / 8%), 0 48px 0 rgb(255 255 255 / 5%);
}

.vsl-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 62%));
}

.vsl-play {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 12px 24px rgb(0 0 0 / 36%));
  transition: transform 420ms var(--ease-out), filter 320ms ease;
}

.vsl-label {
  display: grid;
  gap: 6px;
  text-align: center;
}

.vsl-label strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.vsl-label span {
  color: #e1e2e4;
  font-size: 17px;
  line-height: 22px;
}

.hero-vsl:hover {
  border-color: rgb(255 255 255 / 38%);
  box-shadow: 0 32px 84px rgb(0 0 0 / 38%);
  transform: translateY(-6px);
}

.hero-vsl:hover .vsl-poster {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.hero-vsl:hover .vsl-play {
  filter: drop-shadow(0 16px 30px rgb(0 0 0 / 44%)) brightness(1.08);
  transform: scale(1.08);
}

.hero-vsl:active {
  transform: translateY(-2px) scale(0.995);
}

.hero-aside {
  min-width: 0;
}

.hero-vsl-disabled .hero-content {
  width: min(820px, 100%);
  padding-bottom: 0;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
}

.hero-vsl-disabled .hero-aside {
  width: 100%;
}

.hero-socials {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding-bottom: 64px;
  justify-content: center;
}

.hero-guarantee {
  width: min(760px, 100%);
  min-height: 70px;
  margin: 28px auto 0;
  padding: 16px 24px 19px;
  border: 1px solid rgb(205 71 67 / 72%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background:
    linear-gradient(90deg, rgb(205 71 67 / 8%), rgb(205 71 67 / 24%), rgb(205 71 67 / 8%)),
    rgb(22 24 27 / 68%);
  box-shadow: 0 18px 48px rgb(205 71 67 / 10%);
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.hero-proof {
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  background: rgb(22 24 27 / 46%);
  box-shadow: 0 18px 48px rgb(0 0 0 / 14%);
  backdrop-filter: blur(12px);
  text-align: left;
}

.proof-rating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.proof-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.proof-score strong {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.proof-score span,
.proof-rating-meta > span,
.proof-companies > p {
  color: #c6c8cc;
  font-size: 16px;
  line-height: 20px;
}

.proof-rating-meta {
  display: grid;
  gap: 5px;
}

.proof-students {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-avatars {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.student-avatar {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid var(--bg-deep);
  border-radius: 50%;
  flex: 0 0 auto;
  background-color: var(--surface-2);
  background-image: none;
  background-repeat: no-repeat;
  background-size: 200% auto;
  box-shadow: 0 4px 14px rgb(0 0 0 / 24%);
}

.student-avatar-one {
  background-image: url("https://edge-ams-1.kinescopecdn.net/b4a8d389-c9aa-4821-868d-67a923c432f6/posters/6add7177-0e3d-43bb-8926-efaff1683841/poster_xs/d519fe2e-e432-4956-bb91-65d632ea5062.jpg");
  background-position: 100% 50%;
}

.student-avatar-two {
  background-image: url("https://edge-ams-1.kinescopecdn.net/b4a8d389-c9aa-4821-868d-67a923c432f6/posters/b7965e6c-86c2-4e5c-9a80-ee0bbbbd7e0e/poster_xs/08b729c8-e76c-4402-ad54-80d3c0fb721c.jpg");
  background-position: 0 50%;
}

.student-avatar-three {
  background-image: url("https://edge-ams-1.kinescopecdn.net/b4a8d389-c9aa-4821-868d-67a923c432f6/posters/edad6fca-de41-49d5-ae08-0488be2f9b3d/poster_xs/e996def9-a0f5-41da-83b8-6a2490779cc4.jpg");
  background-position: 100% 50%;
}

.student-avatar-four {
  background-image: url("https://edge-ams-1.kinescopecdn.net/b4a8d389-c9aa-4821-868d-67a923c432f6/posters/74c2c54c-5f1c-441f-8731-a04f2de16520/poster_xs/fb7a4113-fbad-473e-9033-b83b86508f7b.jpg");
  background-position: 0 50%;
}

.student-avatar-five {
  background-image: url("https://edge-ams-1.kinescopecdn.net/b4a8d389-c9aa-4821-868d-67a923c432f6/posters/618e06cc-02b8-45fb-b5e1-46e05f96ad1f/poster_xs/883d4990-0b1c-4785-ae96-3522d65d2334.jpg");
  background-position: 100% 50%;
}

.student-avatar-more {
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--red);
  font-size: 20px;
  font-weight: 700;
}

.proof-students-copy {
  max-width: 112px;
  color: #c6c8cc;
  font-size: 15px;
  line-height: 18px;
}

.proof-students-copy strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  line-height: 22px;
}

.rating-stars {
  position: relative;
  width: max-content;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 3px;
}

.stars-base {
  color: rgb(255 255 255 / 18%);
}

.stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 94%;
  overflow: hidden;
  color: #ffca5c;
  white-space: nowrap;
}

.proof-divider {
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 16%);
}

.proof-companies {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.proof-companies > p {
  max-width: none;
}

.proof-companies-title {
  text-align: center;
}

.company-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
}

.company-logo {
  min-width: 0;
  min-height: 34px;
  padding: 4px;
  display: grid;
  place-items: center;
}

.company-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}

.company-logo-crop {
  width: min(82px, 100%);
  height: 26px;
  overflow: hidden;
  display: block;
}

.company-logo-ozon img {
  width: auto;
  max-width: none;
  height: 26px;
  max-height: none;
}
.socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social {
  width: 64px;
  height: 64px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 6%);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease, filter 300ms ease,
    background-color 300ms ease, border-color 300ms ease;
}

.social:hover {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 12px 24px rgb(0 0 0 / 24%);
  filter: brightness(1.08);
}

.social:active {
  transform: translateY(0) scale(0.94);
}

.social img {
  width: 28px;
  height: 24px;
  object-fit: contain;
}

.social-youtube {
  background: rgb(255 255 255 / 6%);
}

.social-telegram {
  background: rgb(255 255 255 / 6%);
}

.social-light {
  background: var(--text);
}

.social-youtube:hover,
.social-youtube:focus-visible {
  border-color: #ff0033;
  background: #ff0033;
}

.social-telegram:hover,
.social-telegram:focus-visible {
  border-color: #2aabee;
  background: #2aabee;
}

.social-telegram img {
  filter: invert(1);
}

.cta {
  position: relative;
  min-height: 496px;
  padding: 80px var(--section-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-glow::before {
  position: absolute;
  content: "";
  width: min(1440px, 96vw);
  height: 280px;
  background: linear-gradient(90deg, transparent, var(--red) 25% 75%, transparent);
  filter: blur(40px);
  opacity: 0.95;
}

.cta-card {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  padding: 40px;
  border: 2px solid var(--red);
  background: linear-gradient(180deg, var(--surface-2), var(--bg-deep));
}

.cta-card h2 {
  font-size: 36px;
  line-height: 42px;
}

.cta-card h2 span {
  color: var(--red);
}

.cta-card p {
  margin: 20px 0 32px;
  font-size: 24px;
  line-height: 28px;
}

.cta-simple {
  min-height: 0;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--bg);
}

.cta-simple .cta-card {
  width: min(880px, 100%);
  padding: 48px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgb(205 71 67 / 11%), rgb(71 78 210 / 10%)),
    var(--bg-deep);
  text-align: center;
}

.cta-simple .cta-card h2 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
}

.cta-simple .cta-card p {
  max-width: 680px;
  margin: 20px auto 32px;
  color: #c6c8cc;
  line-height: 1.4;
}

.cta-telegram-button {
  margin: 0 auto;
}

.section {
  padding: 60px var(--section-pad) 80px;
}

.section-dark {
  background: var(--bg-deep);
}

.section > h2,
.section-heading,
.section > .results-grid,
.section > .results-actions,
.section > .courses-grid,
.section > .services-grid,
.benefits > h2,
.benefits > .benefits-grid,
.benefits > .benefits-roadmap {
  width: min(var(--content-width), 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.results-title {
  max-width: 780px;
  font-family: var(--display);
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.results-title span,
.results-title strong {
  display: block;
}

.results-title span {
  color: #c6c8cc;
  font-weight: 400;
}

.results-title strong {
  margin-top: 5px;
  color: var(--text);
  font-weight: 700;
}

@media (min-width: 1281px) {
  .results-title {
    max-width: none;
    flex: 1 1 auto;
  }

  .results-title span,
  .results-title strong {
    display: inline;
  }

  .results-title strong {
    margin: 0 0 0 0.18em;
  }

}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 60px;
  margin-top: 60px;
}

.results-grid-videos {
  align-items: start;
}

.results-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.reviews-page-main .section {
  min-height: calc(100vh - 112px);
  padding-top: 80px;
}

.results-page-title {
  margin: 0;
}

.student-stories {
  color: var(--text);
  background: var(--bg-deep);
}

.student-stories-inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

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

.student-stories-heading h2 {
  font-family: var(--body);
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.student-stories-heading h2 strong {
  color: var(--red);
  font-weight: 700;
}

.student-stories-heading > p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgb(255 255 255 / 78%);
  font-size: 21px;
  line-height: 1.35;
}

.student-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.student-stories-scroll-hint {
  display: none;
}

.student-stories-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.student-stories-telegram-button {
  min-width: min(390px, 100%);
  min-height: 68px;
  padding: 16px 28px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2aabee, var(--blue));
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 18px 38px rgb(42 171 238 / 18%);
  transition: transform 360ms var(--ease-out), box-shadow 360ms ease, filter 260ms ease,
    background-color 300ms ease, border-color 300ms ease;
}

.student-stories-telegram-button:hover {
  border-color: rgb(42 171 238 / 72%);
  background: linear-gradient(135deg, #2aabee, var(--blue));
  filter: brightness(1.08);
  box-shadow: 0 24px 48px rgb(42 171 238 / 27%);
  transform: translateY(-4px);
}

.student-stories-telegram-button:active {
  transform: translateY(0) scale(0.98);
}

.student-stories-telegram-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(1);
}

.student-stories-cta-note {
  max-width: 560px;
  color: #b9bdc3;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 10% 18%, rgb(205 71 67 / 30%), transparent 44%),
    radial-gradient(circle at 90% 88%, rgb(71 78 210 / 26%), transparent 46%),
    linear-gradient(145deg, var(--surface-2), var(--bg-deep) 72%);
  box-shadow: 0 16px 34px rgb(22 24 27 / 22%);
  transition: box-shadow 420ms ease, transform 420ms var(--ease-out);
}

.story-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 16%, rgb(71 78 210 / 30%), transparent 44%),
    radial-gradient(circle at 12% 88%, rgb(205 71 67 / 26%), transparent 46%),
    linear-gradient(215deg, var(--surface-2), var(--bg-deep) 72%);
}

.story-card:nth-child(3) {
  background:
    radial-gradient(circle at 16% 82%, rgb(71 78 210 / 27%), transparent 44%),
    radial-gradient(circle at 86% 20%, rgb(205 71 67 / 29%), transparent 46%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 72%);
}

.story-card:hover {
  box-shadow: 0 24px 50px rgb(22 24 27 / 32%);
  transform: translateY(-7px);
}

.story-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  background: #000;
}

.story-media-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.story-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 360ms ease;
}

.story-media:hover > img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.story-media-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px 8px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: rgb(22 24 27 / 84%);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.story-media-action img {
  width: 34px;
  height: 34px;
}

.story-body {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.story-kicker {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-body h3 {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(27px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.14;
}

.story-body h3 span {
  display: block;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
}

.story-rating {
  width: fit-content;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgb(205 71 67 / 25%);
  border-radius: 999px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--red);
  background: rgb(205 71 67 / 7%);
}

.story-rating strong {
  font-size: 20px;
}

.story-rating span {
  font-size: 14px;
  font-weight: 700;
}

.story-quote {
  margin-top: 18px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.story-quote p {
  color: #e4e5e7;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

.story-term {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.story-verified {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  color: #9fa3aa;
  font-size: 14px;
}

.story-verified strong {
  color: #249b56;
  font-weight: 700;
}

.student-stories-stats {
  margin-top: 24px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(180deg, var(--surface-2), var(--bg-deep));
  box-shadow: 0 12px 26px rgb(22 24 27 / 20%);
}

.story-stat {
  min-height: 112px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.story-stat + .story-stat {
  border-left: 1px solid rgb(255 255 255 / 10%);
}

.story-stat strong {
  flex: 0 0 auto;
  color: var(--red);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.story-stat span {
  max-width: 170px;
  color: #c6c8cc;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.how-it-works {
  background:
    radial-gradient(circle at 85% 10%, rgb(71 78 210 / 16%), transparent 34%),
    var(--bg);
}

.how-inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.how-heading > p {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-heading .how-lead {
  max-width: 860px;
  margin: 24px 0 0;
  color: #c6c8cc;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.how-step {
  min-height: 300px;
  padding: 30px;
  border: 2px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  background: var(--bg-deep);
  transition: border-color 320ms ease, box-shadow 420ms ease, transform 420ms var(--ease-out);
}

.how-step:hover {
  border-color: rgb(255 255 255 / 24%);
  box-shadow: 0 24px 54px rgb(0 0 0 / 22%);
  transform: translateY(-7px);
}

.how-step-accent {
  border-color: rgb(205 71 67 / 52%);
  background: linear-gradient(145deg, rgb(205 71 67 / 20%), var(--bg-deep) 66%);
}

.how-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 22px;
}

.how-step h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}

.how-step p {
  max-width: 390px;
  margin-top: 16px;
  color: #c6c8cc;
  font-size: 20px;
  line-height: 1.35;
}

.how-summary {
  margin-top: 20px;
  padding: 22px 26px;
  border: 2px solid rgb(205 71 67 / 46%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgb(205 71 67 / 10%);
  font-size: 20px;
  font-weight: 700;
}

.how-summary strong {
  margin-left: auto;
  color: #fff;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.result-card {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: transform 420ms var(--ease-out), border-color 320ms ease, box-shadow 420ms ease;
}

.result-card:hover {
  border-color: rgb(114 114 114 / 42%);
  box-shadow: 0 24px 54px rgb(0 0 0 / 22%);
  transform: translateY(-7px);
}

.result-video {
  width: 100%;
  aspect-ratio: 850 / 429;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: #191b1f;
  cursor: pointer;
  transition: background-color 320ms ease;
}

.result-video-embed {
  cursor: default;
}

.result-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.result-video-card {
  background: var(--surface);
}

.result-video img {
  width: clamp(76px, 6.9vw, 132px);
  height: clamp(76px, 6.9vw, 132px);
  transition: transform 420ms var(--ease-out), filter 320ms ease;
}

.result-video:hover,
.result-video:focus-visible {
  background: #202328;
  outline: none;
}

.result-video:hover img,
.result-video:focus-visible img {
  transform: scale(1.09);
  filter: hue-rotate(125deg) saturate(0.78) brightness(0.98);
}

.result-body {
  padding: 34px 40px 40px;
}

.result-body h3 {
  font-size: 28px;
  line-height: 36px;
}

.result-body p {
  margin-top: 12px;
  font-size: 24px;
  line-height: 28px;
}

.result-body strong {
  color: var(--red);
}

.result-body .muted {
  margin-top: 10px;
  color: var(--muted);
}

.result-body .button {
  margin-top: 30px;
}

.benefits {
  color: var(--text);
  background: var(--red);
}

.benefits-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 40px;
  margin-top: 52px;
  padding: 0;
  list-style: none;
}

.benefits-roadmap-seven {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.benefits-roadmap-seven .roadmap-card {
  grid-column: span 2;
}

.benefits-roadmap-seven .roadmap-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.roadmap-card {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgb(71 78 210 / 22%), transparent 46%),
    linear-gradient(145deg, var(--surface-2), var(--bg-deep) 72%);
  box-shadow: 0 14px 30px rgb(22 24 27 / 16%);
  transition: border-color 320ms ease, box-shadow 420ms ease, transform 420ms var(--ease-out);
}

.roadmap-card:hover {
  border-color: rgb(255 255 255 / 30%);
  box-shadow: 0 20px 40px rgb(22 24 27 / 28%);
  transform: translateY(-5px);
}

.roadmap-number {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgb(205 71 67 / 52%);
  border-radius: 999px;
  color: #fff;
  background: rgb(205 71 67 / 18%);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
}

.roadmap-card h3 {
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.14;
}

.roadmap-card p {
  color: #d0d2d5;
  font-size: 16px;
  line-height: 1.35;
}

.roadmap-card:nth-child(-n + 3)::after,
.roadmap-card:nth-child(n + 5):nth-child(-n + 6)::after {
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 6px 14px rgb(22 24 27 / 18%);
}

.roadmap-card:nth-child(-n + 3)::after,
.roadmap-card:nth-child(n + 5):nth-child(-n + 6)::after {
  top: 50%;
  right: -36px;
  content: "→";
  transform: translateY(-50%);
}

.free-material {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgb(71 78 210 / 16%), transparent 34%),
    var(--bg);
}

.free-material-inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.free-material h2 {
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.free-material-card {
  min-height: 386px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgb(71 78 210 / 22%), transparent 48%),
    linear-gradient(145deg, var(--surface-2), var(--bg-deep) 72%);
  box-shadow: 0 22px 48px rgb(0 0 0 / 24%);
  transition: border-color 320ms ease, box-shadow 420ms ease, transform 420ms var(--ease-out);
}

.free-material-card:hover {
  border-color: rgb(255 255 255 / 26%);
  box-shadow: 0 30px 64px rgb(0 0 0 / 32%);
  transform: translateY(-5px);
}

.free-material-preview {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  display: block;
  background: #000023;
  box-shadow: 0 16px 34px rgb(0 0 0 / 26%);
}

.free-material-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.free-material-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--text);
}

.free-material-copy h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.free-material-copy h3 span {
  display: inline-block;
  padding: 7px 10px 8px;
  border-radius: 6px;
  background: var(--red);
}

.free-material-copy p {
  max-width: 430px;
  margin-top: 20px;
  color: #d0d2d5;
  font-size: 20px;
  line-height: 1.35;
}

.free-material-button {
  width: 320px;
  min-height: 64px;
  margin-top: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 20%);
  color: var(--text);
  background: rgb(255 255 255 / 6%);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  transition: filter 300ms ease, box-shadow 320ms ease, transform 360ms var(--ease-out),
    background-color 300ms ease, border-color 300ms ease;
}

.free-material-button:hover {
  border-color: var(--blue);
  background: var(--blue);
  filter: brightness(1.08);
  box-shadow: 0 14px 30px rgb(0 0 0 / 28%);
  transform: translateY(-3px);
}

.free-material-button:focus-visible {
  outline: 3px solid rgb(255 255 255 / 68%);
  outline-offset: 4px;
}

.support {
  width: min(var(--content-width), calc(100% - (var(--section-pad) * 2)));
  min-height: 528px;
  margin-inline: auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.support-art {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgb(0 0 0 / 30%));
  transition: transform 600ms var(--ease-out), filter 400ms ease;
}

.support:hover .support-art {
  transform: translateY(-8px) rotate(-2deg);
  filter: drop-shadow(0 28px 40px rgb(0 0 0 / 38%));
}

.support-card {
  width: min(800px, 100%);
  flex: 1 1 0;
  padding: 40px;
  border: 2px solid #c54441;
  border-radius: 12px;
  background: var(--bg-deep);
}

.support-card h2 {
  font-size: 36px;
  line-height: 54px;
}

.support-card p {
  margin: 20px 0 32px;
  font-size: 28px;
  line-height: 32px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 60px;
}

.courses-grid-single {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.courses-grid-single > .course-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "header includes"
    "price includes"
    "bonus bonus"
    "note note"
    "action action";
  gap: 0 32px;
}

.courses-grid-single > .course-card > header {
  grid-area: header;
  min-height: 0;
}

.courses-grid-single > .course-card > .course-price {
  grid-area: price;
  min-height: 0;
}

.courses-grid-single > .course-card > .course-includes {
  grid-area: includes;
  min-height: 0;
  margin-top: 0;
}

.courses-grid-single > .course-card > .course-bonus {
  grid-area: bonus;
  margin-top: 28px;
}

.courses-grid-single > .course-card > .course-availability-note {
  grid-area: note;
}

.courses-grid-single > .course-card > .button {
  grid-area: action;
  margin-top: 0;
}

.course-card {
  --course-accent: var(--red);
  position: relative;
  min-width: 0;
  min-height: 850px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgb(205 71 67 / 15%), transparent 38%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 66%);
  box-shadow: 0 18px 42px rgb(0 0 0 / 18%);
  transition: transform 420ms var(--ease-out), box-shadow 420ms ease, border-color 320ms ease;
}

.frontend-tariff-card {
  display: none;
}

.course-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--course-accent);
}

.course-card:hover {
  border-color: rgb(255 255 255 / 28%);
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgb(0 0 0 / 24%);
}

.course-basic {
  --course-accent: #90949a;
  background:
    radial-gradient(circle at 100% 0%, rgb(144 148 154 / 12%), transparent 38%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 66%);
}

.course-comfort {
  --course-accent: var(--blue);
  background:
    radial-gradient(circle at 100% 0%, rgb(71 78 210 / 24%), transparent 42%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 66%);
}

.course-premium {
  --course-accent: var(--red);
}

.course-featured {
  border-color: rgb(71 78 210 / 58%);
  box-shadow: 0 22px 52px rgb(20 24 78 / 30%);
}

.course-tier-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.course-tier-label,
.course-popular {
  width: fit-content;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.course-tier-label {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--course-accent) 68%, white 12%);
  color: #fff;
  background: color-mix(in srgb, var(--course-accent) 18%, transparent);
}

.course-popular {
  padding: 8px 10px;
  color: var(--text);
  background: var(--blue);
}

.course-card header h3 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(27px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
}

.course-card header {
  min-height: 190px;
}

.course-card header p {
  margin-top: 14px;
  color: #c6c8cc;
  font-size: 18px;
  line-height: 1.35;
}

.course-price {
  min-height: 78px;
  margin-top: 28px;
}

.course-price-promo {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.course-price-promo del {
  color: #979ba1;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-decoration-color: var(--course-accent);
  text-decoration-thickness: 2px;
}

.course-price .course-price-promo span {
  margin-top: 0;
  padding: 6px 9px;
  border-radius: 999px;
  display: inline-flex;
  color: var(--bg-deep);
  background: var(--course-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.course-price strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(28px, 2.2vw, 35px);
  font-weight: 400;
  line-height: 1.1;
}

.course-price span {
  display: block;
  margin-top: 9px;
  color: #aeb1b6;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.course-includes {
  min-height: 330px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: rgb(22 24 27 / 88%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.course-includes h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.course-includes ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.course-includes li {
  padding-left: 4px;
  color: #e2e3e5;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.course-includes li::marker {
  color: var(--course-accent);
}

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

.course-bonus {
  margin-top: 18px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px dashed rgb(36 155 86 / 58%);
  border-radius: 12px;
  background: rgb(36 155 86 / 9%);
}

.course-bonus-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}

.course-bonus-heading > span {
  color: #6cd696;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.course-bonus-heading > strong {
  padding: 6px 8px;
  border-radius: 6px;
  color: #fff;
  background: #249b56;
  font-size: 13px;
  line-height: 1;
}

.course-bonus ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.course-bonus li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e6e7e9;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.course-bonus li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgb(108 214 150 / 14%);
}

.course-bonus-price {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.course-bonus-price del {
  color: #85898f;
  font-size: 12px;
  font-weight: 700;
}

.course-bonus-price strong {
  color: #6cd696;
  font-size: 17px;
  font-weight: 700;
}

.course-card > .button {
  margin-top: auto;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 20px;
}

.course-availability-note {
  margin: 0 0 14px;
  color: #b9bdc3;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.course-card > .course-telegram-button {
  margin-top: 0;
  border: 1px solid var(--course-accent);
  color: var(--bg-deep);
  background: var(--course-accent);
}

.course-card > .course-telegram-button:hover,
.course-card > .course-telegram-button:focus-visible {
  border-color: var(--course-accent);
  color: var(--bg-deep);
  background: var(--course-accent);
}

.course-section-lead {
  width: min(var(--content-width), 100%);
  max-width: none;
  margin: 18px auto 0;
  padding-right: max(0px, calc(100% - 760px));
  color: #bfc2c7;
  font-size: 20px;
  line-height: 1.35;
}

.direction-card {
  --direction-accent: var(--red);
  position: relative;
  min-width: 0;
  min-height: 610px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgb(205 71 67 / 16%), transparent 42%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 68%);
  box-shadow: 0 18px 42px rgb(0 0 0 / 18%);
  transition: transform 420ms var(--ease-out), box-shadow 420ms ease, border-color 320ms ease;
}

.direction-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--direction-accent);
}

.direction-card:hover {
  border-color: rgb(255 255 255 / 28%);
  box-shadow: 0 26px 56px rgb(0 0 0 / 25%);
  transform: translateY(-7px);
}

.direction-golang {
  --direction-accent: var(--blue);
  background:
    radial-gradient(circle at 100% 0%, rgb(71 78 210 / 24%), transparent 42%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 68%);
}

.direction-analytics {
  --direction-accent: #d7d9dc;
  background:
    radial-gradient(circle at 100% 0%, rgb(215 217 220 / 12%), transparent 42%),
    linear-gradient(155deg, var(--surface-2), var(--bg-deep) 68%);
}

.direction-label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--direction-accent) 62%, white 12%);
  border-radius: 999px;
  display: inline-flex;
  color: #fff;
  background: color-mix(in srgb, var(--direction-accent) 16%, transparent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.direction-card header {
  min-height: 168px;
}

.direction-card header h3 {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(30px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.12;
}

.direction-card header p {
  margin-top: 14px;
  color: #c6c8cc;
  font-size: 18px;
  line-height: 1.35;
}

.direction-duration {
  min-height: 58px;
  margin-top: 20px;
  padding: 13px 15px;
  border-left: 3px solid var(--direction-accent);
  color: #e1e2e4;
  background: rgb(255 255 255 / 4%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.direction-pricing {
  margin-top: 22px;
  margin-bottom: 24px;
  display: grid;
  gap: 12px;
}

.direction-price-option {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: rgb(22 24 27 / 88%);
}

.direction-price-option > span,
.direction-price-option strong,
.direction-price-option small {
  display: block;
}

.direction-price-option > span {
  color: var(--direction-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.direction-price-option strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.1;
}

.direction-price-option small {
  margin-top: 7px;
  color: #92969c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.direction-card > .button {
  margin-top: auto;
  padding-right: 18px;
  padding-left: 18px;
  border: 1px solid rgb(255 255 255 / 22%);
  color: var(--text);
  background: rgb(255 255 255 / 6%);
  font-size: 19px;
}

.direction-card > .button:hover,
.direction-card > .button:focus-visible {
  border-color: var(--direction-accent);
  color: var(--text);
  background: var(--direction-accent);
}

.direction-analytics > .button:hover,
.direction-analytics > .button:focus-visible {
  color: var(--bg);
}

.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  min-width: 0;
  min-height: 510px;
  padding: 32px;
  border: 2px solid;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 420ms var(--ease-out), box-shadow 420ms ease, border-color 320ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgb(0 0 0 / 24%);
}

.service-red {
  border-color: var(--red);
  background: linear-gradient(rgb(255 121 117 / 8%), rgb(255 121 117 / 8%)), #040814;
}

.service-blue {
  border-color: var(--blue);
  background: linear-gradient(rgb(113 120 255 / 8%), rgb(113 120 255 / 8%)), #040814;
}

.service-white {
  border-color: var(--text);
  background: linear-gradient(rgb(251 251 251 / 8%), rgb(251 251 251 / 8%)), #040814;
}

.service-card h3 {
  font-size: clamp(28px, 2vw, 36px);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.service-card p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 25px;
}

.service-bottom {
  margin-top: 32px;
}

.service-bottom strong,
.service-bottom span {
  display: block;
}

.service-bottom strong {
  font-size: clamp(36px, 2.25vw, 44px);
  line-height: 1;
}

.service-bottom span {
  margin-top: 20px;
}

.service-bottom .button {
  margin-top: 40px;
}

.offers {
  overflow: hidden;
}

.offers-heading {
  align-items: flex-end;
}

.offers-subtitle {
  margin-top: 16px;
  color: #c6c8cc;
  font-size: 20px;
  line-height: 1.35;
}

.offers-hint {
  max-width: 360px;
  color: #9fa3aa;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.offers-marquee {
  width: calc(100% + (var(--section-pad) * 2));
  margin: 52px calc(var(--section-pad) * -1) 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.offers-marquee-track {
  display: flex;
  width: max-content;
  animation: offers-marquee var(--offers-marquee-duration, 60s) linear infinite;
  will-change: transform;
}

.offers-marquee:hover .offers-marquee-track,
.offers-marquee.is-paused .offers-marquee-track {
  animation-play-state: paused;
}

.offers-marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  padding-right: 24px;
}

.offers-telegram-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.offer-card {
  position: relative;
  width: clamp(260px, 22vw, 330px);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 18px 44px rgb(0 0 0 / 28%);
  cursor: zoom-in;
  transition: transform 420ms var(--ease-out), border-color 320ms ease, box-shadow 420ms ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  border-color: rgb(255 255 255 / 34%);
  box-shadow: 0 28px 64px rgb(0 0 0 / 42%);
  outline: none;
  transform: translateY(-6px) scale(1.01);
}

.offer-card img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 400ms ease;
}

.offer-card:hover img,
.offer-card:focus-visible img {
  filter: contrast(1.04);
  transform: scale(1.035);
}

.offer-card-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 46px 18px 16px;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 84%));
  text-align: left;
}

.offer-card-caption strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.offer-card-caption span {
  flex: 0 0 auto;
  color: #d0d2d5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

@keyframes offers-marquee {
  to {
    transform: translateX(-50%);
  }
}

.results-offers {
  border-top: 1px solid rgb(255 255 255 / 6%);
  background:
    radial-gradient(circle at 88% 6%, color-mix(in srgb, var(--red) 14%, transparent), transparent 30%),
    var(--bg-deep);
}

.results-offers-heading {
  align-items: flex-end;
}

.results-offers-heading > div > p {
  margin-top: 16px;
  color: #c6c8cc;
  font-size: 20px;
  line-height: 1.35;
}

.results-offers-hint {
  max-width: 330px;
  color: #9fa3aa;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.results-offers-grid {
  width: min(var(--content-width), calc(100% - (var(--section-pad) * 2)));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.results-offer-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgb(0 0 0 / 24%);
  transition: transform 420ms var(--ease-out), border-color 320ms ease, box-shadow 420ms ease;
}

.results-offer-card:hover,
.results-offer-card:focus-within {
  border-color: var(--red);
  box-shadow: 0 28px 64px rgb(0 0 0 / 38%);
  transform: translateY(-6px);
}

.results-offer-card h3 {
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 400;
  line-height: 1.2;
}

.results-offer-image {
  width: 100%;
  aspect-ratio: 876 / 786;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  background: #fff;
  cursor: zoom-in;
}

.results-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 360ms ease, transform 560ms var(--ease-out);
}

.results-offer-image:hover img,
.results-offer-image:focus-visible img {
  filter: contrast(1.05) brightness(1.03);
  transform: scale(1.025);
}

@media (max-width: 1100px) {
  .results-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .results-offers-heading {
    align-items: flex-start;
  }

  .results-offers-hint {
    text-align: left;
  }

  .results-offers-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .results-offer-card {
    padding: 18px;
  }

  .results-offer-card:hover,
  .results-offer-card:focus-within {
    transform: none;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.offer-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 28px;
  border: 0;
  overflow: hidden;
  color: var(--text);
  background: rgb(4 8 20 / 96%);
}

.offer-lightbox[open] {
  display: grid;
  place-items: center;
}

.offer-lightbox::backdrop {
  background: rgb(0 0 0 / 82%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.offer-lightbox figure {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  gap: 14px;
}

.offer-lightbox img {
  width: auto;
  height: auto;
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgb(0 0 0 / 58%);
}

.offer-lightbox figcaption {
  color: #d0d2d5;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.offer-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 24px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  color: var(--text);
  background: rgb(13 16 24 / 86%);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 240ms ease, background-color 240ms ease, transform 240ms var(--ease-out);
}

.offer-lightbox-close:hover,
.offer-lightbox-close:focus-visible {
  border-color: rgb(255 255 255 / 52%);
  background: rgb(29 34 47 / 96%);
  outline: none;
  transform: translateY(-2px);
}

.faq {
  padding: 60px max(var(--section-pad), calc((100% - var(--content-width)) / 2)) 80px;
}

.faq-list {
  margin-top: 70px;
}

.faq details {
  border-bottom: 2px dashed transparent;
  padding: 20px 0;
  transition: border-color 320ms ease, background-color 320ms ease;
}

.faq details[open] {
  border-color: var(--line);
  background: rgb(255 255 255 / 1.5%);
}

.faq summary {
  position: relative;
  padding-right: 72px;
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 32px;
  line-height: 36px;
  transition: color 260ms ease, transform 260ms var(--ease-out);
}

.faq summary:hover {
  color: #fff;
  transform: translateX(6px);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 48px;
  height: 52px;
  border: 2px solid var(--line);
  border-radius: 4px;
  content: "+";
  display: grid;
  place-items: center;
  font-family: var(--body);
  font-size: 30px;
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 1068px;
  margin-top: 20px;
  font-size: 24px;
  line-height: 32px;
}

.faq details[open] p {
  animation: faq-answer-in 360ms var(--ease-out) both;
}

.site-footer {
  padding: 72px max(var(--section-pad), calc((100% - var(--content-width)) / 2)) 32px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  background: var(--bg-deep);
}

.footer-inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.65fr);
  gap: clamp(56px, 7vw, 112px);
}

.footer-intro {
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  width: 78px;
  height: 62px;
  border-radius: 8px;
  display: block;
  transition: transform 260ms var(--ease-out);
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-logo img {
  width: 78px;
  height: 62px;
  object-fit: contain;
}

.footer-intro p {
  color: #a7aaae;
  font-size: 19px;
  line-height: 28px;
}

.footer-telegram {
  min-height: 50px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links h2 {
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  position: relative;
  min-height: 32px;
  color: #a7aaae;
  font-size: 18px;
  line-height: 26px;
  transition: color 220ms ease, transform 220ms var(--ease-out);
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-links a[aria-current="page"] {
  color: var(--text);
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #8b8e93;
  font-size: 16px;
  line-height: 22px;
}

.footer-bottom > p:first-child {
  color: var(--text);
  font-weight: 700;
}

.footer-caption {
  margin-right: auto;
}

.footer-to-top {
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  background: rgb(255 255 255 / 5%);
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms var(--ease-out);
}

.footer-to-top:hover {
  color: #fff;
  background: rgb(255 255 255 / 10%);
  transform: translateY(-2px);
}

.contact-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  color: var(--text);
  border: 2px solid var(--red);
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 24px 80px rgb(0 0 0 / 60%);
}

.contact-dialog[open] {
  animation: dialog-in 420ms var(--ease-out) both;
}

.contact-dialog.is-closing {
  animation: dialog-out 190ms ease both;
}

.contact-dialog::backdrop {
  background: rgb(0 0 0 / 74%);
  backdrop-filter: blur(8px);
}

.contact-dialog[open]::backdrop {
  animation: backdrop-in 320ms ease both;
}

.contact-dialog.is-closing::backdrop {
  animation: backdrop-out 190ms ease both;
}

.contact-form {
  padding: 40px;
}

.contact-form h2 {
  font-size: 36px;
}

.contact-form > p {
  margin: 20px 0 28px;
  color: #c6c8cc;
  font-size: 20px;
}

.contact-form label {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
}

.contact-form input {
  width: 100%;
  height: 56px;
  margin-top: 8px;
  padding: 0 16px;
  color: var(--text);
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--bg-deep);
}

.contact-form .button {
  margin-top: 28px;
}

.dialog-close {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 260ms ease, background-color 260ms ease;
}

.dialog-close:hover {
  color: var(--text);
  background: rgb(255 255 255 / 4%);
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100% - 48px));
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface-2);
  box-shadow: 0 12px 32px rgb(0 0 0 / 35%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal,
.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item {
  transform: translateY(24px) scale(0.985);
}

.motion-ready .reveal.is-visible,
.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal-item.is-visible:hover {
  transform: translateY(-7px);
}

.result-entering {
  animation: result-card-in 420ms var(--ease-out) both;
}

.result-leaving {
  animation: result-card-out 220ms ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dialog-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes result-card-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes result-card-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
  }
}

@keyframes stories-scroll-cue {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

@media (max-width: 1280px) {
  body {
    font-size: 20px;
  }

  .header-inner {
    gap: 12px;
  }

  .main-nav a {
    min-width: auto;
    padding-right: 9px;
    padding-left: 9px;
    font-size: 15px;
  }

  .header-telegram {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

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

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

  .benefits-roadmap .roadmap-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .benefits-roadmap .roadmap-card:nth-child(n)::after {
    display: none;
  }

  .benefits-roadmap-seven .roadmap-card:last-child {
    width: calc((100% - 20px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .story-body {
    padding: 24px;
  }

  .story-verified {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-stat {
    padding: 22px 18px;
  }

  .how-step {
    padding: 26px;
  }

  .how-summary {
    flex-wrap: wrap;
  }

  .how-summary strong {
    flex-basis: 100%;
    margin: 4px 0 0;
  }

  .course-card {
    min-height: 820px;
    padding: 24px;
  }

  .direction-card {
    min-height: 590px;
    padding: 24px;
  }

  .course-card header {
    min-height: 210px;
  }

  .course-includes {
    min-height: 350px;
    padding: 20px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card p {
    font-size: 20px;
  }
}

@media (max-width: 1120px) and (min-width: 961px) {
  .header-telegram {
    width: 48px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .header-telegram span {
    display: none;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 80px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .header-inner {
    width: min(100% - 32px, 720px);
    gap: 12px;
  }

  .brand,
  .brand img {
    width: 60px;
    height: 48px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: max(16px, calc((100% - 720px) / 2));
    left: max(16px, calc((100% - 720px) / 2));
    max-height: calc(100vh - 96px);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-deep);
    box-shadow: 0 18px 40px rgb(0 0 0 / 40%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 260ms ease, transform 340ms var(--ease-out), visibility 260ms step-end;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 260ms ease, transform 340ms var(--ease-out), visibility 0ms step-start;
  }

  .main-nav a {
    min-height: 48px;
    padding: 13px 14px;
    text-align: left;
    font-size: 17px;
    opacity: 0;
    transform: translateY(-7px);
  }

  .main-nav.open a {
    opacity: 1;
    transform: none;
  }

  .main-nav.open a:nth-child(1) { transition-delay: 35ms; }
  .main-nav.open a:nth-child(2) { transition-delay: 65ms; }
  .main-nav.open a:nth-child(3) { transition-delay: 95ms; }
  .main-nav.open a:nth-child(4) { transition-delay: 125ms; }
  .main-nav.open a:nth-child(5) { transition-delay: 155ms; }
  .main-nav.open a:nth-child(6) { transition-delay: 185ms; }
  .main-nav.open a:nth-child(7) { transition-delay: 215ms; }

  .header-contact,
  .header-telegram {
    display: none;
  }

  .main-nav .nav-telegram {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #168bd0;
    text-align: center;
  }

  .main-nav .nav-telegram::after {
    display: none;
  }

  .main-nav .nav-telegram:hover,
  .main-nav .nav-telegram:focus-visible {
    color: #fff;
    background: #2aabee;
    transform: none;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-content {
    width: min(720px, 100%);
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-vsl {
    border-radius: 16px;
  }

  .hero-proof {
    text-align: left;
  }

  .proof-students-copy {
    text-align: left;
  }

  .proof-companies > p {
    max-width: none;
  }

  .results-grid,
  .courses-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    max-width: 720px;
  }

  .course-card {
    min-height: 0;
  }

  .direction-card {
    min-height: 0;
  }

  .course-card header,
  .course-includes {
    min-height: 0;
  }

  .courses-grid-single > .course-card {
    display: flex;
  }

  .courses-grid-single > .course-card > .course-includes {
    margin-top: 24px;
  }

  .free-material-card {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .free-material-preview img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .free-material-copy {
    align-items: center;
    text-align: center;
  }

  .free-material-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .student-stories-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 420px);
    align-items: stretch;
    gap: 18px;
    padding-bottom: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .student-stories-scroll-hint {
    width: fit-content;
    margin: 28px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c6c8cc;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .student-stories-scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgb(205 71 67 / 55%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgb(205 71 67 / 16%);
    font-size: 20px;
    line-height: 1;
    animation: stories-scroll-cue 1600ms ease-in-out infinite;
  }

  .story-card {
    height: 100%;
  }

  .motion-ready .student-stories-grid .story-card.reveal-item {
    opacity: 1;
    transform: none;
    transition: box-shadow 420ms ease, transform 420ms var(--ease-out);
    transition-delay: 0ms;
  }

  .student-stories-stats {
    grid-template-columns: 1fr;
  }

  .story-stat {
    min-height: 88px;
    justify-content: flex-start;
  }

  .story-stat + .story-stat {
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-left: 0;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-step {
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
  }

  .how-number {
    flex: 0 0 auto;
  }

  .results-grid {
    gap: 32px;
  }

  .benefit-card {
    height: 380px;
  }

  .support {
    flex-direction: column;
    gap: 24px;
  }

  .support-art {
    width: 260px;
    height: 260px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-intro {
    max-width: 580px;
  }

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

  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 20px;
  }

  body {
    font-size: 18px;
  }

  h2 {
    font-size: 34px;
  }

  .button {
    min-height: 54px;
    padding: 15px 20px 17px;
    font-size: 18px;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-copy > p {
    margin-top: 22px;
    font-size: 20px;
  }

  .hero-content {
    margin-top: 32px;
    padding-bottom: 48px;
    gap: 20px;
  }

  .hero-vsl {
    border-radius: 12px;
  }

  .vsl-overlay {
    padding: 16px;
    gap: 10px;
  }

  .vsl-play {
    width: 64px;
    height: 64px;
  }

  .vsl-label strong {
    font-size: 20px;
    line-height: 24px;
  }

  .vsl-label span {
    font-size: 14px;
    line-height: 18px;
  }

  .hero-guarantee {
    min-height: 62px;
    padding: 14px 16px 16px;
    font-size: 21px;
  }

  .hero-proof {
    margin-top: 0;
    padding: 16px;
    text-align: center;
  }

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

  .proof-score {
    justify-content: center;
  }

  .rating-stars {
    margin-inline: auto;
  }

  .proof-students {
    width: 100%;
    padding: 14px 0 0;
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-left: 0;
    justify-content: center;
  }

  .student-avatars {
    padding-left: 9px;
  }

  .student-avatar {
    width: 36px;
    height: 36px;
    margin-left: -9px;
  }

  .proof-score strong {
    font-size: 34px;
  }

  .proof-score span,
  .proof-rating-meta > span,
  .proof-companies > p {
    font-size: 14px;
    line-height: 18px;
  }

  .company-logos {
    width: 100%;
  }

  .company-logo {
    min-height: 32px;
    padding: 3px;
  }

  .social {
    width: 54px;
    height: 54px;
  }

  .cta {
    min-height: 400px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cta-card,
  .support-card,
  .contact-form {
    padding: 24px;
  }

  .cta-card h2,
  .support-card h2,
  .contact-form h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .cta-card p,
  .support-card p {
    font-size: 18px;
    line-height: 24px;
  }

  .cta-simple {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cta-simple .cta-card h2 {
    font-size: 28px;
    line-height: 34px;
  }

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

  .section-heading .button {
    width: 100%;
  }

  .results-actions .button {
    width: 100%;
  }

  .free-material {
    padding: 48px var(--section-pad) 70px;
  }

  .free-material h2 {
    padding: 0;
    font-size: clamp(22px, 6.5vw, 25px);
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
  }

  .free-material-card {
    min-height: 0;
    margin-top: 28px;
    padding: 16px;
    border-radius: 12px;
    gap: 20px;
  }

  .free-material-preview {
    width: 100%;
    margin: 0 auto;
  }

  .free-material-copy {
    align-items: center;
    text-align: center;
  }

  .free-material-copy h3 {
    margin-top: 0;
    font-size: clamp(18px, 5.2vw, 20px);
    line-height: 1.15;
    white-space: nowrap;
  }

  .free-material-copy h3 span {
    padding: 6px 8px 7px;
  }

  .free-material-copy p {
    max-width: 320px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.35;
  }

  .free-material-button {
    width: 100%;
    min-height: 64px;
    margin-top: 18px;
  }

  .student-stories-heading h2 {
    font-size: 36px;
  }

  .student-stories-heading > p {
    margin-top: 16px;
    font-size: 18px;
  }

  .student-stories-grid {
    grid-auto-columns: min(78vw, 320px);
    margin-top: 16px;
  }

  .story-media-action {
    right: 12px;
    bottom: 12px;
  }

  .story-body {
    padding: 22px;
  }

  .story-body h3 {
    font-size: 28px;
  }

  .story-term {
    font-size: 16px;
  }

  .story-quote p {
    font-size: 17px;
  }

  .student-stories-stats {
    margin-top: 10px;
  }

  .how-steps {
    margin-top: 36px;
  }

  .how-step {
    padding: 22px;
  }

  .how-step p {
    font-size: 18px;
  }

  .how-heading .how-lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .how-summary {
    padding: 20px;
    font-size: 17px;
    gap: 10px;
  }

  .how-summary strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .result-body {
    padding: 24px;
  }

  .result-body h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .result-body p {
    font-size: 18px;
    line-height: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .benefits-roadmap {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  .roadmap-card {
    min-height: 0;
    padding: 20px;
  }

  .benefits-roadmap .roadmap-card:nth-child(n)::after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -28px;
    left: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    content: "↓";
    font-size: 16px;
    transform: translateX(-50%);
  }

  .benefits-roadmap .roadmap-card:last-child::after {
    display: none;
  }

  .benefits-roadmap-seven .roadmap-card:last-child {
    width: auto;
    grid-column: auto;
  }

  .benefit-card {
    height: 360px;
    padding: 28px;
  }

  .benefit-card h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .support-art {
    width: 210px;
    height: 210px;
  }

  .course-card {
    padding: 20px;
  }

  .course-section-lead {
    margin-top: 14px;
    font-size: 17px;
  }

  .direction-card {
    padding: 20px;
  }

  .direction-card header,
  .direction-duration,
  .direction-price-option {
    min-height: 0;
  }

  .direction-card header h3 {
    font-size: 30px;
  }

  .direction-card header p {
    font-size: 17px;
  }

  .direction-duration {
    margin-top: 18px;
  }

  .direction-price-option {
    padding: 16px;
  }

  .course-card header h3 {
    font-size: 28px;
  }

  .course-card header p {
    font-size: 18px;
  }

  .course-tier-row {
    align-items: flex-start;
  }

  .course-price {
    min-height: 0;
    margin-top: 24px;
  }

  .course-includes {
    margin-top: 22px;
    padding: 18px;
  }

  .course-includes li {
    font-size: 16px;
  }

  .course-bonus {
    padding: 16px;
  }

  .course-bonus li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .course-bonus-price {
    align-self: stretch;
    justify-content: space-between;
  }

  .service-card {
    min-height: 460px;
    padding: 24px;
  }

  .offers-heading {
    align-items: flex-start;
  }

  .offers-hint {
    text-align: left;
  }

  .offers-marquee {
    margin-top: 32px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .offers-marquee-group {
    gap: 14px;
    padding-right: 14px;
  }

  .offers-telegram-cta {
    margin-top: 32px;
  }

  .offer-card {
    width: 250px;
  }

  .offer-card-caption {
    padding: 42px 14px 14px;
  }

  .offer-card-caption strong {
    font-size: 16px;
  }

  .offer-card-caption span {
    font-size: 11px;
  }

  .offer-lightbox {
    padding: 16px;
  }

  .offer-lightbox-close {
    top: 14px;
    right: 14px;
  }

  .offer-lightbox img {
    max-width: 94vw;
    max-height: 78vh;
  }

  .faq summary {
    padding-right: 56px;
    font-size: 24px;
    line-height: 30px;
  }

  .faq summary::after {
    width: 42px;
    height: 44px;
  }

  .faq details p {
    font-size: 18px;
    line-height: 26px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links h2 {
    font-size: 15px;
  }

  .site-footer {
    padding-top: 52px;
    padding-bottom: 24px;
  }

  .footer-top {
    gap: 42px;
  }

  .footer-intro {
    gap: 20px;
  }

  .footer-intro p {
    font-size: 17px;
    line-height: 25px;
  }

  .footer-telegram {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 46px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-to-top {
    width: 100%;
    margin-top: 6px;
    justify-content: space-between;
  }

  .menu-toggle-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offers-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .offers-marquee-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Local main-landing concept: Cloud Blue */
.cloud-blue-theme {
  --bg: #d9faff;
  --bg-deep: #a6efff;
  --surface: #f2fdff;
  --surface-2: #6ee5ff;
  --text: #0a2342;
  --muted: #5b7083;
  --red: #00cfff;
  --blue: #008fb8;
  --line: rgb(11 111 211 / 22%);
  color: var(--text);
  background: var(--bg);
}

.cloud-blue-theme .site-header,
.cloud-blue-theme .site-header.scrolled {
  --text: #f8fcff;
  --muted: #bfd3e5;
  --red: #00cfff;
  color: var(--text);
  background: rgb(5 36 65 / 95%);
  border-bottom-color: rgb(216 238 255 / 14%);
  box-shadow: 0 12px 34px rgb(7 26 43 / 16%);
}

.cloud-blue-theme .main-nav a:hover,
.cloud-blue-theme .main-nav a.active {
  background: rgb(216 238 255 / 10%);
}

.cloud-blue-theme .header-telegram,
.cloud-blue-theme .footer-telegram {
  border-color: rgb(0 207 255 / 82%);
  color: #041523;
  background: #00cfff;
  box-shadow: 0 12px 28px rgb(0 207 255 / 34%);
}

.cloud-blue-theme .header-telegram:hover,
.cloud-blue-theme .footer-telegram:hover {
  color: #041523;
  background: #33dcff;
  box-shadow: 0 16px 34px rgb(0 207 255 / 42%);
}

.cloud-blue-theme .hero {
  background:
    radial-gradient(circle at 12% 14%, rgb(255 255 255 / 34%), transparent 34%),
    radial-gradient(circle at 88% 8%, rgb(22 126 175 / 30%), transparent 36%),
    linear-gradient(180deg, #00cfff 0%, #70e7ff 48%, #d9faff 100%);
}

.cloud-blue-theme .hero-glow {
  top: -350px;
  height: 760px;
  background:
    linear-gradient(110deg, transparent 0 18%, rgb(0 207 255 / 24%) 18.5% 26%, transparent 26.5% 48%, rgb(0 143 184 / 20%) 48.5% 56%, transparent 56.5% 78%, rgb(0 207 255 / 24%) 78.5% 87%, transparent 87.5%),
    linear-gradient(180deg, #00cfff 8%, rgb(0 207 255 / 52%) 48%, rgb(0 207 255 / 0%) 84%);
  filter: blur(34px);
  opacity: 0.94;
}

.cloud-blue-theme .hero-copy > p {
  color: #35516b;
}

.cloud-blue-theme .hero-guarantee {
  border-color: rgb(22 126 175 / 42%);
  color: #075b83;
  background: linear-gradient(90deg, rgb(0 207 255 / 24%), rgb(244 253 255 / 94%), rgb(0 207 255 / 24%));
  box-shadow: 0 18px 44px rgb(0 207 255 / 22%);
}

.cloud-blue-theme .hero-proof {
  --text: #f8fcff;
  --muted: #bfd3e5;
  --bg-deep: #071a2b;
  --surface-2: #123b60;
  --red: #00cfff;
  color: var(--text);
  border-color: rgb(216 238 255 / 16%);
  background:
    radial-gradient(circle at 100% 0%, rgb(0 207 255 / 34%), transparent 44%),
    linear-gradient(145deg, #0b4778, #052441 74%);
  box-shadow: 0 24px 60px rgb(7 26 43 / 20%);
}

.cloud-blue-theme .hero-proof .proof-score span,
.cloud-blue-theme .hero-proof .proof-rating-meta > span,
.cloud-blue-theme .hero-proof .proof-companies > p,
.cloud-blue-theme .hero-proof .proof-students-copy {
  color: #bfd3e5;
}

.cloud-blue-theme .social {
  border-color: rgb(10 35 66 / 14%);
  background: #0a2342;
  box-shadow: 0 12px 28px rgb(10 35 66 / 14%);
}

.cloud-blue-theme .section-dark,
.cloud-blue-theme .student-stories,
.cloud-blue-theme .site-footer {
  --bg: #07345d;
  --bg-deep: #052441;
  --surface: #0b4778;
  --surface-2: #11679f;
  --text: #f8fcff;
  --muted: #bfd3e5;
  --red: #00cfff;
  --blue: #008fb8;
  --line: rgb(216 238 255 / 18%);
  color: var(--text);
  background: #052b4d;
}

.cloud-blue-theme .section-dark .results-title span,
.cloud-blue-theme .section-dark .offers-subtitle,
.cloud-blue-theme .section-dark .course-section-lead,
.cloud-blue-theme .section-dark .course-card header p,
.cloud-blue-theme .section-dark .direction-card header p,
.cloud-blue-theme .section-dark .direction-duration,
.cloud-blue-theme .section-dark .course-price span,
.cloud-blue-theme .section-dark .course-availability-note {
  color: #bfd3e5;
}

.cloud-blue-theme .result-card,
.cloud-blue-theme .result-video-card {
  border-color: rgb(216 238 255 / 16%);
  background: #0b4778;
}

.cloud-blue-theme .result-video,
.cloud-blue-theme .result-video:hover,
.cloud-blue-theme .result-video:focus-visible {
  background: #041f38;
}

.cloud-blue-theme .student-stories {
  background:
    radial-gradient(circle at 15% 8%, rgb(91 192 235 / 28%), transparent 32%),
    radial-gradient(circle at 88% 86%, rgb(11 111 211 / 34%), transparent 38%),
    #052441;
}

.cloud-blue-theme .story-card,
.cloud-blue-theme .story-card:nth-child(2),
.cloud-blue-theme .story-card:nth-child(3) {
  border-color: rgb(216 238 255 / 14%);
  background:
    radial-gradient(circle at 12% 16%, rgb(91 192 235 / 24%), transparent 42%),
    radial-gradient(circle at 90% 88%, rgb(11 111 211 / 22%), transparent 46%),
    linear-gradient(145deg, #0b568f, #052441 72%);
}

.cloud-blue-theme .student-stories-telegram-button,
.cloud-blue-theme .student-stories-telegram-button:hover,
.cloud-blue-theme .student-stories-telegram-button:focus-visible {
  border-color: rgb(0 207 255 / 78%);
  color: #041523;
  background: linear-gradient(135deg, #00cfff, #33dcff);
  box-shadow: 0 20px 42px rgb(0 207 255 / 36%);
}

.cloud-blue-theme .how-it-works {
  background:
    radial-gradient(circle at 86% 8%, rgb(0 207 255 / 48%), transparent 38%),
    linear-gradient(180deg, #8ceaff, #e4fbff);
}

.cloud-blue-theme .how-heading .how-lead,
.cloud-blue-theme .how-step p {
  color: #35516b;
}

.cloud-blue-theme .how-step {
  border-color: rgb(11 111 211 / 16%);
  background: rgb(245 251 255 / 90%);
  box-shadow: 0 16px 34px rgb(10 35 66 / 8%);
}

.cloud-blue-theme .how-step:hover {
  border-color: rgb(11 111 211 / 36%);
  box-shadow: 0 24px 52px rgb(10 35 66 / 13%);
}

.cloud-blue-theme .how-step-accent {
  border-color: rgb(11 111 211 / 42%);
  background: linear-gradient(145deg, #6ee5ff, #edfcff 72%);
}

.cloud-blue-theme .how-summary {
  border-color: rgb(11 111 211 / 28%);
  color: #0a2342;
  background: rgb(110 229 255 / 80%);
}

.cloud-blue-theme .how-summary strong {
  color: #075fb8;
}

.cloud-blue-theme .benefits {
  --bg-deep: #071a2b;
  --surface-2: #123b60;
  --text: #f8fcff;
  --red: #e8f8ff;
  --blue: #008fb8;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgb(255 255 255 / 18%), transparent 34%),
    linear-gradient(135deg, #008fb8, #00cfff 58%, #70e7ff);
}

.cloud-blue-theme .roadmap-card {
  border-color: rgb(255 255 255 / 22%);
  background:
    radial-gradient(circle at 100% 0%, rgb(91 192 235 / 28%), transparent 48%),
    linear-gradient(145deg, #123b60, #071a2b 74%);
  box-shadow: 0 18px 36px rgb(7 26 43 / 18%);
}

.cloud-blue-theme .roadmap-card p {
  color: #d8eeff;
}

.cloud-blue-theme .roadmap-number {
  border-color: rgb(0 207 255 / 78%);
  color: #eaf9ff;
  background: rgb(0 207 255 / 28%);
}

.cloud-blue-theme .roadmap-card:nth-child(-n + 3)::after,
.cloud-blue-theme .roadmap-card:nth-child(n + 5):nth-child(-n + 6)::after {
  color: #041523;
  background: #00cfff;
}

.cloud-blue-theme .free-material {
  background:
    radial-gradient(circle at 12% 10%, rgb(0 207 255 / 58%), transparent 38%),
    #a6efff;
}

.cloud-blue-theme .free-material-card {
  border-color: rgb(11 111 211 / 16%);
  background:
    radial-gradient(circle at 100% 0%, rgb(0 207 255 / 54%), transparent 48%),
    linear-gradient(145deg, #effaff, #9edaf2 82%);
  box-shadow: 0 22px 48px rgb(10 35 66 / 12%);
}

.cloud-blue-theme .free-material-copy p {
  color: #35516b;
}

.cloud-blue-theme .free-material-copy h3 span,
.cloud-blue-theme .free-material-button,
.cloud-blue-theme .free-material-button:hover,
.cloud-blue-theme .free-material-button:focus-visible {
  border-color: #00cfff;
  color: #041523;
  background: #00cfff;
  box-shadow: 0 14px 30px rgb(0 207 255 / 34%);
}

.cloud-blue-theme .course-card,
.cloud-blue-theme .direction-card {
  border-color: rgb(216 238 255 / 16%);
  background:
    radial-gradient(circle at 100% 0%, rgb(91 192 235 / 20%), transparent 42%),
    linear-gradient(155deg, #0b568f, #052441 70%);
}

.cloud-blue-theme .course-comfort,
.cloud-blue-theme .direction-golang {
  background:
    radial-gradient(circle at 100% 0%, rgb(11 111 211 / 30%), transparent 42%),
    linear-gradient(155deg, #0b568f, #052441 70%);
}

.cloud-blue-theme .course-includes,
.cloud-blue-theme .direction-price-option {
  border-color: rgb(216 238 255 / 12%);
  background: rgb(7 26 43 / 82%);
}

.cloud-blue-theme .services {
  background: linear-gradient(180deg, #8ceaff, #e4fbff);
}

.cloud-blue-theme .service-card {
  color: #0a2342;
  background: #f2faff;
  box-shadow: 0 18px 38px rgb(10 35 66 / 9%);
}

.cloud-blue-theme .service-red {
  border-color: #0b6fd3;
  background: linear-gradient(145deg, #6ee5ff, #f2fdff 68%);
}

.cloud-blue-theme .service-blue {
  border-color: #00cfff;
  background: linear-gradient(145deg, rgb(0 207 255 / 54%), #f2fdff 68%);
}

.cloud-blue-theme .service-white {
  border-color: #0a2342;
  background: linear-gradient(145deg, rgb(11 111 211 / 18%), #f2faff 68%);
}

.cloud-blue-theme .button-primary {
  color: #041523;
  background: #00cfff;
}

.cloud-blue-theme .button-primary:hover,
.cloud-blue-theme .button-primary:focus-visible {
  color: #041523;
  background: #33dcff;
}

.cloud-blue-theme .button-outline {
  border-color: currentColor;
}

.cloud-blue-theme .cta-simple {
  background: #76e8ff;
}

.cloud-blue-theme .cta-simple .cta-card {
  border-color: rgb(11 111 211 / 18%);
  background:
    radial-gradient(circle at 100% 0%, rgb(0 207 255 / 58%), transparent 52%),
    #edfaff;
  box-shadow: 0 22px 50px rgb(10 35 66 / 10%);
}

.cloud-blue-theme .cta-simple .cta-card p {
  color: #35516b;
}

.cloud-blue-theme .faq {
  background: #a6efff;
}

.cloud-blue-theme .faq details {
  border-color: rgb(11 111 211 / 18%);
  background: rgb(245 251 255 / 72%);
}

.cloud-blue-theme .faq details[open] {
  background: rgb(216 238 255 / 46%);
}

.cloud-blue-theme .faq summary:hover {
  color: #008fb8;
}

.cloud-blue-theme .site-footer {
  border-top-color: rgb(216 238 255 / 12%);
}

.cloud-blue-theme .site-footer .footer-links h2,
.cloud-blue-theme .site-footer .footer-to-top {
  color: #f8fcff;
}

.cloud-blue-theme .site-footer .footer-intro p,
.cloud-blue-theme .site-footer .footer-links a,
.cloud-blue-theme .site-footer .footer-caption {
  color: #a9c1d5;
}

@media (max-width: 720px) {
  .cloud-blue-theme .hero {
    background:
      radial-gradient(circle at 20% 10%, rgb(255 255 255 / 28%), transparent 38%),
      linear-gradient(180deg, #00cfff, #70e7ff 58%, #d9faff);
  }

  .cloud-blue-theme .hero-proof {
    box-shadow: 0 18px 42px rgb(7 26 43 / 17%);
  }
}
