@font-face {
  font-family: "Montserrat";
  src: url("./fonts/montserrat-cyrillic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-04FF, U+0500-052F;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-024F;
}

@font-face {
  font-family: "Raleway";
  src: url("./fonts/raleway-cyrillic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0400-04FF, U+0500-052F;
}

@font-face {
  font-family: "Raleway";
  src: url("./fonts/raleway-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-024F;
}

:root {
  --dark: #292f46;
  --dark-soft: #313850;
  --blue: #2b61db;
  --blue-hover: #3d78ff;
  --yellow: #f5cf14;
  --text: #333333;
  --muted: #676b75;
  --light: #ffffff;
  --surface: #f5f6f8;
  --line: rgba(41, 47, 70, 0.12);
  --shadow: 0 24px 55px rgba(0, 11, 48, 0.12);
  --radius: 20px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

body.menu-open,
body.search-open,
body.lead-modal-open,
body.document-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  max-width: 650px;
  color: var(--light);
  font-size: 52px;
  text-transform: uppercase;
}

h2 {
  color: var(--text);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  color: var(--text);
  font-size: 24px;
}

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

.section-light {
  background: var(--light);
}

.section-dark {
  color: var(--light);
  background: var(--dark);
}

.section {
  padding: 95px 0;
  background: var(--light);
}

.dark-section {
  color: var(--light);
  background: var(--dark);
}

.section-title {
  color: var(--text);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.dark-section .section-title,
.dark-section .section-subtitle {
  color: var(--light);
}

.section-subtitle {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.wide {
  max-width: 1180px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.with-controls {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading p {
  margin-top: 22px;
  color: var(--muted);
}

.dark-heading h2,
.dark-heading h3,
.dark-heading p {
  color: var(--light);
}

.dark-heading p {
  opacity: 0.82;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button::before {
  content: "↗";
  display: inline-flex;
  width: 20px;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
}

.button:hover::before {
  content: "→";
}

.button.button-info::before {
  content: "ℹ";
  font-size: 15px;
  font-style: normal;
}

.button.button-info:hover::before {
  content: "→";
  font-size: 17px;
}

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

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

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "в†—";
  display: inline-flex;
  width: 20px;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
}

.btn:hover::before {
  content: "в†’";
}

.btn-primary {
  color: var(--light);
  background: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.button-outline {
  color: var(--blue);
  border: 1px solid rgba(43, 97, 219, 0.25);
  background: transparent;
}

.card {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.slider {
  position: relative;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tabs button {
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: var(--light);
  font-weight: 800;
  text-transform: uppercase;
}

.tabs button.is-active,
.tabs button[aria-selected="true"],
.tabs button[aria-pressed="true"] {
  background: var(--blue);
}

.form-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--light);
  color: var(--text);
  box-shadow: var(--shadow);
}

.wide-button {
  min-width: 420px;
}

.icon-button,
.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.icon-button:hover,
.round-button:hover {
  background: var(--yellow);
  color: var(--dark);
}

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

.round-button {
  width: 58px;
  height: 58px;
  font-size: 28px;
}

.round-button.dark {
  color: var(--light);
  background: var(--dark);
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.site-header {
  position: relative;
  z-index: 30;
  color: var(--light);
  background: var(--dark);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.utility-inner,
.nav-inner,
.utility-info,
.utility-links,
.nav-actions,
.mobile-actions {
  display: flex;
  align-items: center;
}

.utility-inner {
  min-height: 44px;
  justify-content: space-between;
  gap: 24px;
}

.utility-info,
.utility-links {
  gap: 18px;
  opacity: 0.9;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--yellow);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--light);
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--yellow);
}

.utility-links a:hover,
.desktop-nav a:hover,
.callback-link:hover,
.language-link:hover {
  color: var(--yellow);
}

.nav-bar {
  min-height: 96px;
}

.nav-inner {
  min-height: 96px;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-actions {
  gap: 14px;
  margin-left: auto;
}

.search-toggle {
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.phone-block {
  display: grid;
  gap: 2px;
  min-width: 144px;
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
}

.callback-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.nav-cta {
  min-height: 48px;
  padding: 0 26px;
  font-size: 12px;
}

.language-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.language-link img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

.mobile-actions {
  display: none;
  gap: 14px;
}

.button.compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--light);
}

.search-backdrop,
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 20, 34, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

body.search-open .search-backdrop,
body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  position: fixed;
  top: 128px;
  left: 50%;
  z-index: 90;
  width: min(720px, calc(100% - 36px));
  padding: 34px;
  border-radius: 20px;
  background: var(--light);
  color: var(--dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.search-panel-inner {
  position: relative;
  display: grid;
  isolation: isolate;
  gap: 24px;
}

.search-panel h2 {
  font-size: 34px;
}

.search-close {
  position: absolute;
  top: -12px;
  right: -12px;
  color: var(--light);
  background: var(--dark);
}

.search-field {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 22px;
  border: 1px solid rgba(41, 47, 70, 0.14);
  border-radius: 999px;
  background: var(--surface);
  color: var(--dark);
}

.search-field input {
  flex: 1;
  min-width: 160px;
  width: auto;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: grid;
  width: min(390px, 100%);
  height: 100vh;
  align-content: start;
  gap: 4px;
  overflow-y: auto;
  padding: 28px;
  background: var(--dark-soft);
  box-shadow: none;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.mobile-menu.is-open {
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.26);
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.menu-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--light);
  background: transparent;
}

.mobile-menu > a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.button-whatsapp {
  color: var(--light);
  background: #28a41a;
}

.mobile-contact {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: center;
}

.hero {
  padding: 0;
}

.hero-grid {
  position: relative;
  display: block;
  height: 640px;
}

.hero .container {
  width: min(1200px, 100%);
}

.hero-lead {
  display: contents;
}

.hero-cta {
  position: absolute;
  top: 474px;
  left: 20px;
  z-index: 2;
  width: 250px;
  min-height: 55px;
}

.hero h1 {
  position: absolute;
  top: 111px;
  left: 20px;
  z-index: 2;
  width: 623px;
  max-width: none;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
}

.hero h1 span {
  display: inline-block;
  width: 250px;
  height: 55px;
  padding: 0;
  border-radius: 14px;
  background: var(--blue);
  box-shadow: none;
  line-height: 55px;
  text-align: center;
  transform: rotate(-1deg);
}

.hero-text {
  position: absolute;
  top: 324px;
  left: 20px;
  z-index: 2;
  width: 593px;
  max-width: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.tilted-label {
  position: absolute;
  top: 39px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  width: 252px;
  height: 35px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  color: var(--dark);
  background: var(--light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-cards {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-cards article {
  position: absolute;
  width: 224px;
  overflow: hidden;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--light);
  box-shadow: none;
}

.hero-cards article:nth-child(1) {
  top: 72px;
  left: 722px;
  transform: none;
}

.hero-cards article:nth-child(2) {
  top: 72px;
  left: 956px;
  transform: none;
}

.hero-cards article:nth-child(3) {
  top: 306px;
  left: 956px;
  transform: none;
}

.hero-cards article:nth-child(4) {
  top: 306px;
  left: 722px;
  transform: none;
}

.hero-cards img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--light);
}

.universities {
  padding: 100px 0 96px;
}

.universities .section-heading.wide {
  max-width: 1160px;
  margin-bottom: 0;
}

.universities .section-heading h2 {
  max-width: 1160px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.universities .section-heading.wide > p {
  max-width: 1102px;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #3d424c;
}

.card-dark {
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--light);
}

.university-slider {
  position: relative;
  height: 339px;
  margin: 82px 20px 44px;
  padding: 0;
  overflow: visible;
  border-radius: 20px;
}

.university-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.university-slide.is-active {
  display: block;
}

.university-slide > div {
  display: contents;
}

.university-slide img {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 130px;
  height: 130px;
  padding: 0;
  border-radius: 20px;
  background: var(--light);
  object-fit: contain;
}

.university-slide h3 {
  position: absolute;
  top: 30px;
  left: 199px;
  width: calc(100% - 240px);
  margin: 0;
  color: var(--light);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
}

.university-slide p {
  position: absolute;
  top: 96px;
  left: 200px;
  width: min(865px, calc(100% - 275px));
  max-width: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.slider-controls {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.slider-logo {
  width: 50px;
  opacity: 0.95;
}

.slider-buttons,
.scroll-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-buttons .round-button {
  font-size: 0;
}

.slider-buttons .round-button::before {
  font-size: 28px;
  line-height: 1;
}

.slider-buttons [data-slider-prev]::before {
  content: "\2190";
}

.slider-buttons [data-slider-next]::before {
  content: "\2192";
}

.slider-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(41, 47, 70, 0.35);
}

.slider-dots button.is-active {
  background: var(--blue);
}

.chances {
  padding: 82px 0 118px;
}

.chances .section-heading h2 {
  max-width: 760px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.chances .section-heading p {
  max-width: 1040px;
  font-size: 16px;
  line-height: 1.55;
}

.chance-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
}

.chance-tabs button {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  color: var(--light);
  background: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.chance-tabs button::before {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentcolor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.chance-tabs button[data-comparison-tab="with"]::before {
  content: "✓";
}

.chance-tabs button[data-comparison-tab="without"]::before {
  content: "×";
}

.chance-tabs button.is-active {
  background: var(--blue);
}

.chance-tabs button:not(.is-active):hover {
  background: #3b425f;
}

.chance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 40px;
  max-width: none;
}

.chance-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 460px);
  align-items: start;
  gap: 20px;
}

.chance-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.chance-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.chance-card:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.chance-card:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.chance-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.chance-card:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

.chance-card img {
  width: 80px;
  height: 80px;
  padding: 5px;
  border: 5px solid #eeeeee;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chance-card h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.chance-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.chance-body {
  width: min(460px, 100%);
}

.chance-bar-row {
  --value: 0%;
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.chance-card strong {
  position: absolute;
  top: 50%;
  left: min(calc(var(--value) + 24px), calc(100% - 58px));
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.bar {
  --value: 0%;
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 0;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f1f1;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.12);
}

.bar::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.chances.is-without .bar::before {
  background: #7b7978;
}

.chances.is-without .chance-card strong {
  color: #7b7978;
}

.students {
  padding: 105px 0 60px;
}

.students .section-heading {
  margin-bottom: 40px;
}

.students .section-heading.with-controls > div:first-child {
  max-width: 760px;
}

.students .section-heading p {
  max-width: 560px;
  margin-top: 20px;
}

.students .horizontal-list {
  padding-bottom: 72px;
}

.students .center-button {
  margin-top: 34px;
}

.horizontal-list {
  display: grid;
  grid-auto-columns: 360px;
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 0 48px 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.horizontal-list::-webkit-scrollbar {
  display: none;
}

.horizontal-list.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.person-card,
.expert-card,
.info-card,
.price-card,
.quote-card,
.media-card,
.seo-card {
  border-radius: var(--radius);
  background: var(--light);
  box-shadow: var(--shadow);
}

.person-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #f1f2f2;
  box-shadow: 0 15px 30px -10px rgba(0, 11, 48, 0.2);
  transition: box-shadow 0.2s ease;
}

@media (hover: hover) {
  .person-card:hover {
    box-shadow: 0 2px 3px rgba(0, 11, 48, 0.25);
  }
}

.person-card > img {
  width: 100%;
  height: 360px;
  background: #f1f2f2;
  object-fit: cover;
  object-position: center;
}

.person-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  padding: 30px;
}

.person-card span {
  color: var(--blue);
  margin-bottom: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 1px;
}

.expert-card span {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.7px;
}

.person-card h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.expert-card h3 {
  font-size: 24px;
}

.person-card p {
  color: var(--text);
  margin: 0 0 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.expert-card p {
  color: var(--muted);
}

.person-card p strong {
  font-size: inherit;
  font-weight: 700;
}

.person-card .button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 50px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.person-card .button::before {
  content: "i";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.person-card .button:hover::before {
  content: "";
  width: 0;
  height: 0;
  border: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-radius: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
}

.person-card .button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
}

.person-card .button:hover::after {
  animation: button-shine 0.7s ease;
}

@keyframes button-shine {
  to {
    left: 120%;
  }
}

.center-button {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.cta-button-wrapper {
  position: relative;
  display: table;
}

.cta-arrow {
  position: absolute;
  fill: #c9c9c9;
  pointer-events: none;
}

.cta-arrow-desktop {
  left: -30px;
  transform: translateX(-100%);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 108px;
}

.cta-arrow-mobile {
  display: none;
}

.scroll-hint {
  display: none;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0.8;
  margin: -8px 12px 14px 0;
}

.scroll-hint svg {
  width: 42px;
  height: 42px;
  mix-blend-mode: multiply;
}

.scroll-hint .hint-hand {
  fill: rgba(190, 190, 190, 1);
  animation: scroll-hint-hand 2s infinite;
}

.scroll-hint .hint-card {
  fill: rgba(190, 190, 190, 0.3);
  animation: scroll-hint-card 2s infinite;
}

@keyframes scroll-hint-hand {
  0% {
    transform: translateX(80px) scale(1);
    opacity: 0;
  }
  10% {
    transform: translateX(80px) scale(1);
    opacity: 1;
  }
  20%,
  60% {
    transform: translateX(175px) scale(0.6);
    opacity: 1;
  }
  80% {
    transform: translateX(5px) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translateX(5px) scale(0.6);
    opacity: 0;
  }
}

@keyframes scroll-hint-card {
  0%,
  60% {
    transform: translateX(0);
  }
  80%,
  100% {
    transform: translateX(-240px);
  }
}

.student-results {
  padding: 98px 0 108px;
  overflow: hidden;
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
}

.student-results-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.student-results-heading h2 {
  margin: 0;
  color: #10172a;
  font-size: 44px;
  line-height: 1.08;
}

.student-results-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px auto 0;
  color: #637083;
  font-size: 18px;
  line-height: 1.55;
}

.student-results-rail {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  overflow-x: auto;
  padding: 0 6px 24px;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  user-select: none;
}

.student-results-rail::-webkit-scrollbar {
  display: none;
}

.student-results-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.student-results-track {
  display: grid;
  width: max-content;
  grid-auto-columns: 340px;
  grid-auto-flow: column;
  align-items: stretch;
  gap: 22px;
}

.student-result-card,
.student-result-more {
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(0, 11, 48, 0.08);
}

.student-result-card {
  display: flex;
  min-height: 728px;
  flex-direction: column;
  padding: 14px 14px 20px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  background: #fff;
}

.student-result-media,
.student-result-video-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: #e8edf5;
}

.student-result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-result-media span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(0, 11, 48, 0.16);
}

.student-result-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 4px 0;
}

.student-result-meta {
  margin: 0 0 8px;
  color: #7b8493;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 1.35;
  text-transform: uppercase;
}

.student-result-body h3,
.student-result-more h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}

.student-result-direction {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(43, 97, 219, 0.14);
  border-radius: 16px;
  background: rgba(43, 97, 219, 0.07);
  color: #20365f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.42;
}

.student-result-path {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.student-result-path div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(41, 47, 70, 0.1);
}

.student-result-path dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.student-result-path dd {
  margin: 0;
  color: #4f5664;
  font-size: 13px;
  line-height: 1.42;
}

.student-result-body blockquote {
  margin: auto 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f6f8fc;
  color: #30394d;
  font-size: 13px;
  font-style: italic;
  line-height: 1.48;
}

.student-result-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(43, 97, 219, 0.32);
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.student-result-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.student-result-video-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: var(--dark);
}

.student-result-video-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0.82;
}

.student-result-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(0, 11, 48, 0.32);
  transform: translate(-50%, -50%);
}

.student-result-more {
  display: flex;
  width: 280px;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--blue);
  color: #fff;
}

.student-result-more > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 28px;
  line-height: 1;
}

.student-result-more h3 {
  margin-top: 90px;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
}

.student-result-more p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.student-result-more a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.student-result-more a:hover {
  background: #fff;
  color: var(--blue);
}

.student-results-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.university-gallery {
  position: relative;
  overflow: hidden;
  padding: 76px 0 74px;
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  border-bottom: 1px solid rgba(41, 47, 70, 0.08);
  background: #fff;
}

.university-gallery > .container,
.university-marquee {
  position: relative;
  z-index: 1;
}

.university-gallery-kicker {
  margin: 0;
  color: rgba(41, 47, 70, 0.42);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.university-marquee {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
}

.university-marquee-track {
  display: flex;
  width: max-content;
  animation: university-marquee-scroll 42s linear infinite;
  will-change: transform;
}

.university-marquee:hover .university-marquee-track {
  animation-play-state: paused;
}

.university-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(58px, 6vw, 112px);
  padding-right: clamp(58px, 6vw, 112px);
}

.university-marquee-group span {
  color: rgba(41, 47, 70, 0.13);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes university-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.experts {
  padding: 110px 0;
  overflow: hidden;
}

.experts .horizontal-list {
  grid-auto-columns: 360px;
  padding-bottom: 72px;
}

.experts .center-button {
  margin-top: 34px;
}

.experts .section-heading.with-controls > div:first-child {
  max-width: 640px;
}

.expert-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f1f2f2;
}

.expert-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  background: #dcdfe7;
}

.expert-card > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 14px;
}

.expert-card span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.expert-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.expert-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.workflow {
  padding: 120px 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 620px;
  gap: 96px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 36px;
  display: grid;
  justify-items: start;
  gap: 34px;
}

.sticky-copy p {
  max-width: 520px;
  color: var(--muted);
}

.step-list {
  display: grid;
  gap: 42px;
}

.step-card {
  padding: 46px;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--light);
}

.step-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  padding: 14px;
  border-radius: 50%;
  background: var(--blue);
}

.step-card h3 {
  margin-bottom: 18px;
  color: var(--light);
  font-size: 28px;
}

.step-card p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.step-card span {
  color: var(--yellow);
  font-size: 20px;
}

.advantages,
.countries,
.mentors,
.student-story,
.pricing,
.reviews,
.media,
.trust,
.faq,
.seo {
  padding: 95px 0;
}

.pricing .section-heading > p {
  margin-top: 26px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  color: #424650;
}

.pricing .section-heading.centered {
  max-width: 807px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.pricing .section-heading h2 span {
  color: var(--blue);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.quote-card,
.media-card,
.price-card,
.seo-card {
  padding: 34px;
  border: 1px solid var(--line);
}

.info-card span,
.price-card span,
.rating {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.info-card h3,
.price-card h3 {
  margin: 18px 0 16px;
}

.info-card p,
.quote-card p,
.media-card p,
.price-card li,
.seo-card p {
  color: var(--muted);
}

.press {
  padding: 96px 0;
  background: #fff;
}

.press-heading {
  max-width: 720px;
  margin-bottom: 72px;
}

.press-heading h2 {
  margin: 0 0 28px;
  color: #10172a;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
}

.press-heading p {
  color: #536176;
  font-size: 21px;
  line-height: 1.55;
}

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

.press-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 38px 40px 34px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 34px;
  background: #f8fafc;
  box-shadow: 0 18px 42px -28px rgba(0, 11, 48, 0.22);
  transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.press-card:hover {
  border-color: rgba(43, 97, 219, 0.18);
  box-shadow: 0 30px 60px -28px rgba(0, 11, 48, 0.25);
}

.press-logo {
  display: flex;
  min-height: 54px;
  align-items: center;
  margin-bottom: 36px;
  color: #10172a;
}

.press-logo-forbes,
.press-logo-vc,
.press-logo-kommersant {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1;
  text-transform: none;
}

.press-logo-vc {
  gap: 0;
}

.press-logo-vc span,
.press-logo-vc strong {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.press-card h3 {
  margin: 0 0 26px;
  color: #10172a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.42;
}

.press-card p {
  margin: 0 0 34px;
  color: #536176;
  font-size: 17px;
  line-height: 1.6;
}

.press-card a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.press-card a span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.press-card a:hover span {
  transform: translateX(4px);
}

.downloads {
  padding: 96px 0;
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: #f8fafc;
}

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

.download-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 38px;
  box-shadow: 0 22px 54px -34px rgba(0, 11, 48, 0.24);
}

.download-content,
.download-form-state {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.download-form-state[hidden] {
  display: none;
}

.download-content[hidden] {
  display: none;
}

.download-card-light {
  background: #fff;
  color: #10172a;
}

.download-card-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: #10172a;
  color: #fff;
}

.download-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 22px;
}

.download-card-light .download-icon {
  background: #cbf7df;
  color: #00836b;
}

.download-card-dark .download-icon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: #4a88ff;
}

.download-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-eyebrow {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.download-card-light .download-eyebrow {
  color: #008f6f;
}

.download-card-dark .download-eyebrow {
  color: #5f9bff;
}

.download-card h2 {
  max-width: 630px;
  margin: 0;
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
}

.download-copy {
  max-width: 610px;
  margin: 26px 0 44px;
  color: #536176;
  font-size: 19px;
  line-height: 1.62;
}

.download-card-dark .download-copy {
  color: rgba(226, 232, 240, 0.68);
}

.download-trigger {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding: 0 38px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.download-card-light .download-trigger {
  background: #10172a;
  color: #fff;
}

.download-card-dark .download-trigger {
  background: var(--blue);
  color: #fff;
}

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

.download-trigger span {
  font-size: 22px;
  line-height: 1;
}

.download-form-head {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.download-form-head h3 {
  max-width: 360px;
  margin: 0;
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.22;
}

.download-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(41, 47, 70, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #10172a;
  font-size: 26px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.download-card-dark .download-close {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.download-close:hover {
  transform: rotate(90deg);
  background: #10172a;
  color: #fff;
}

.download-card-dark .download-close:hover {
  background: #fff;
  color: #10172a;
}

.download-form {
  display: grid;
  max-width: 450px;
  gap: 13px;
}

.download-form-state .download-form {
  width: 100%;
  margin-top: auto;
}

.download-form label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.download-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  outline: 0;
  background: #f1f4f8;
  color: var(--dark);
  font: inherit;
}

.download-card-dark .download-form input[type="email"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.download-form input[type="email"]:focus {
  box-shadow: inset 0 0 0 2px rgba(49, 99, 222, 0.42);
}

.download-form .agreement {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #6c7482;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.download-card-dark .download-form .agreement {
  color: rgba(226, 232, 240, 0.66);
}

.download-form .agreement input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--blue);
}

.download-form .agreement a {
  color: var(--blue);
}

.download-card-dark .download-form .agreement a {
  color: #8eb7ff;
}

.download-form .button {
  width: max-content;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
}

.download-card-light .download-form .button {
  background: #10172a;
}

.download-form .form-message {
  margin: 0;
}

.download-card-dark .download-form .form-message {
  color: #8eb7ff;
}

.events {
  padding: 96px 0;
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: #fff;
}

.events-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
}

.events-heading > div {
  max-width: 960px;
}

.events-heading h2 {
  margin: 0 0 24px;
  color: #10172a;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
}

.events-heading p {
  max-width: 640px;
  color: #536176;
  font-size: 21px;
  line-height: 1.55;
}

.section-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid rgba(41, 47, 70, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #10172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.section-cta span {
  font-size: 24px;
  line-height: 0;
  transition: transform 0.2s ease;
}

.section-cta:hover {
  border-color: rgba(43, 97, 219, 0.28);
  background: #eef4ff;
  color: var(--blue);
}

.section-cta:hover span {
  transform: translateX(3px);
}

.events-heading .section-cta {
  margin-bottom: 4px;
}

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

.event-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(41, 47, 70, 0.1);
  border-radius: 28px;
  background: #f8fafc;
  box-shadow: 0 18px 42px -32px rgba(0, 11, 48, 0.22);
}

.event-card-deadline {
  border: 2px solid rgba(245, 158, 11, 0.22);
  background: #fffaeb;
}

.event-card-deadline::after {
  content: "!";
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(245, 158, 11, 0.13);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 118px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.event-date {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px -18px rgba(0, 11, 48, 0.28);
}

.event-card-deadline .event-date {
  border-color: rgba(245, 158, 11, 0.24);
  box-shadow: 0 10px 24px -18px rgba(196, 119, 0, 0.28);
}

.event-date strong {
  color: #10172a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.event-card-deadline .event-date strong {
  color: #db7600;
}

.event-date span {
  display: grid;
  gap: 2px;
  color: #4a88ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-card-deadline .event-date span {
  color: #c56a00;
}

.event-date em {
  color: #9aa4b4;
  font-style: normal;
}

.event-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.event-tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.55px;
  line-height: 1;
  text-transform: uppercase;
}

.event-tag-red {
  background: #ffe1e1;
  color: #d92d20;
}

.event-tag-blue {
  background: rgba(43, 97, 219, 0.1);
  color: var(--blue);
}

.event-tag-amber {
  background: #ffe9a8;
  color: #bd6500;
}

.event-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #667085;
  font-size: 15px;
  font-weight: 700;
}

.event-time svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #10172a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.42;
}

.event-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  color: #536176;
  font-size: 16px;
  line-height: 1.55;
}

.event-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 20px;
  border: 2px solid rgba(41, 47, 70, 0.12);
  border-radius: 16px;
  color: #10172a;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.event-button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.event-button-amber {
  border-color: #f59e0b;
  background: #f59e0b;
  color: #fff;
}

.event-button-amber:hover {
  border-color: #db7600;
  background: #db7600;
}

.articles {
  padding: 96px 0;
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: #f8fafc;
}

.articles .container {
  width: min(1600px, calc(100% - 72px));
  max-width: none;
}

.articles-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 64px;
}

.articles-heading h2 {
  margin: 0;
  color: #10172a;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
}

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

.article-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 54px -36px rgba(0, 11, 48, 0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  border-color: rgba(43, 97, 219, 0.14);
  box-shadow: 0 28px 64px -34px rgba(0, 11, 48, 0.28);
}

.article-media {
  position: relative;
  display: grid;
  height: 210px;
  place-items: center;
  overflow: hidden;
  background: #dfe7f2;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-media img {
  transform: scale(1.05);
}

.article-media span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d2636;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.article-media-gradient {
  background: linear-gradient(135deg, #536dfe 0%, #933df2 100%);
}

.article-media-gradient svg {
  width: 74px;
  height: 74px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.6s ease;
}

.article-card:hover .article-media-gradient svg {
  transform: scale(1.08);
}

.article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 32px;
}

.article-body time {
  margin-bottom: 18px;
  color: #9aa4b4;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.article-body h3 {
  margin: 0 0 18px;
  color: #10172a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.38;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.article-body p {
  margin: 0 0 30px;
  color: #536176;
  font-size: 16px;
  line-height: 1.55;
}

.article-body a {
  width: max-content;
  margin-top: auto;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.article-body a:hover {
  color: #1746bd;
}

.newsletter {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: #0b1120;
  color: #fff;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(43, 97, 219, 0.18);
  filter: blur(90px);
  pointer-events: none;
  transform: translateY(-50%);
}

.newsletter-card {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 72px;
  padding: 64px 72px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 42px;
  background: rgba(16, 23, 42, 0.72);
  box-shadow: 0 32px 80px -54px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.newsletter-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
}

.newsletter-copy p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(226, 232, 240, 0.68);
  font-size: 21px;
  line-height: 1.55;
}

.newsletter-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 64px;
}

.newsletter-social span {
  margin-right: 6px;
  color: rgba(148, 163, 184, 0.8);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.newsletter-social a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.newsletter-social a:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #8eb7ff;
}

.newsletter-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.newsletter-row input {
  min-height: 64px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  outline: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  font-size: 18px;
}

.newsletter-row input::placeholder {
  color: rgba(148, 163, 184, 0.82);
}

.newsletter-row input:focus {
  border-color: rgba(74, 136, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(74, 136, 255, 0.14);
}

.newsletter-row button {
  min-height: 64px;
  padding: 0 34px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #10172a;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.newsletter-row button:hover {
  background: #eef4ff;
  color: var(--blue);
}

.newsletter-form p {
  margin: 0;
  color: rgba(148, 163, 184, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.newsletter-form p a {
  color: rgba(226, 232, 240, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-form .form-message {
  min-height: 20px;
  color: #8eb7ff;
}

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

.advantages {
  padding: 76px 0 82px;
}

.advantages .section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

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

.advantage-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 11, 48, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.advantage-card:hover {
  border-color: rgba(49, 99, 222, 0.22);
  box-shadow: 0 24px 54px rgba(0, 11, 48, 0.1);
  transform: translateY(-4px);
}

.advantage-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(49, 99, 222, 0.22);
}

.advantage-card:nth-child(even) .advantage-icon {
  background: var(--dark);
  box-shadow: 0 12px 24px rgba(32, 38, 58, 0.18);
}

.advantage-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.advantage-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.18;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.48;
}

.countries {
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: var(--surface);
}

.countries .country-heading {
  max-width: 680px;
  margin-bottom: 46px;
  text-align: left;
}

.countries .service-breadcrumbs {
  margin-bottom: 24px;
  color: rgba(16, 23, 42, 0.58);
}

.countries .service-breadcrumbs a {
  color: rgba(16, 23, 42, 0.58);
}

.countries .service-breadcrumbs a:hover {
  color: #10172a;
}

.countries .service-breadcrumbs [aria-current="page"] {
  color: var(--blue);
}

.countries .country-heading h1 {
  color: #10172a;
  font-size: 48px;
  line-height: 1.2;
  text-transform: none;
}

.countries .country-heading h2 {
  color: #10172a;
}

.countries .country-heading p {
  margin-top: 20px;
  color: #637083;
  font-size: 19px;
  line-height: 1.55;
}

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

.country-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 244px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: 0 20px 48px rgba(0, 11, 48, 0.12);
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 15, 28, 0.78) 0%, rgba(15, 23, 42, 0.62) 46%, rgba(10, 15, 28, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 15, 28, 0.68), transparent 62%);
  pointer-events: none;
}

.country-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(10, 15, 28, 0.72));
  pointer-events: none;
}

.country-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.country-card:hover .country-image {
  opacity: 0.62;
  transform: scale(1.05);
}

.country-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 244px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px;
}

.country-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.country-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.country-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.country-card p {
  max-width: 92%;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 14px;
  line-height: 1.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.country-card:hover p {
  color: rgba(255, 255, 255, 0.94);
  transform: translateY(-2px);
}

.services {
  padding: 96px 0;
  background: var(--light);
}

.services-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.services-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
}

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

.service-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  border-color: rgba(49, 99, 222, 0.18);
  box-shadow: 0 20px 42px rgba(0, 11, 48, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  transition: transform 0.24s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-blue {
  background: #eef4ff;
  color: var(--blue);
}

.service-icon-green {
  background: #ecfdf3;
  color: #15936d;
}

.service-icon-purple {
  background: #f5efff;
  color: #7d3ce7;
}

.service-icon-orange {
  background: #fff4e8;
  color: #e76c18;
}

.service-icon-navy {
  background: #eef3ff;
  color: #244fa7;
}

.service-icon-rose {
  background: #fff0f4;
  color: #df2f69;
}

.service-icon-teal {
  background: #edfbf8;
  color: #159b8b;
}

.service-icon-indigo {
  background: #f0f1ff;
  color: #5356d8;
}

.service-card h3 {
  margin: 0 0 14px;
  color: #10172a;
  font-size: 19px;
  line-height: 1.28;
}

.service-card p {
  flex: 1;
  margin: 0;
  color: #637083;
  font-size: 15px;
  line-height: 1.48;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.service-card a::after {
  content: "→";
  transition: transform 0.2s ease;
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.offers {
  padding: 78px 0;
  background: linear-gradient(135deg, #111827 0%, #20263a 100%);
}

.offers-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.offers-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 0 18px;
  border: 1px solid rgba(61, 120, 255, 0.42);
  border-radius: 999px;
  background: rgba(43, 97, 219, 0.14);
  color: #6aa2ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.offers h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

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

.offer-card {
  --offer-accent: var(--blue);
  --offer-badge-bg: rgba(43, 97, 219, 0.18);
  --offer-badge-border: rgba(43, 97, 219, 0.38);
  position: relative;
  display: flex;
  min-height: 246px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--offer-accent), transparent);
  opacity: 0.78;
}

.offer-green {
  --offer-accent: #18a878;
  --offer-badge-bg: rgba(24, 168, 120, 0.2);
  --offer-badge-border: rgba(24, 168, 120, 0.4);
}

.offer-purple {
  --offer-accent: #8a59ee;
  --offer-badge-bg: rgba(138, 89, 238, 0.2);
  --offer-badge-border: rgba(138, 89, 238, 0.4);
}

.offer-orange {
  --offer-accent: #ec7b2d;
  --offer-badge-bg: rgba(236, 123, 45, 0.2);
  --offer-badge-border: rgba(236, 123, 45, 0.4);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.offer-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--offer-badge-border);
  border-radius: 999px;
  background: var(--offer-badge-bg);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.offer-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.48);
}

.offer-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card h3 {
  max-width: 620px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 25px;
  line-height: 1.16;
}

.offer-card h3 span {
  background: var(--blue);
  color: #fff;
}

.offer-card p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 15px;
  line-height: 1.48;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-footer span {
  color: rgba(226, 232, 240, 0.48);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-footer a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.offer-card:first-child .offer-footer a,
.offer-card:nth-child(3) .offer-footer a {
  background: #fff;
  color: #10172a;
}

.offer-card:nth-child(4) .offer-footer a {
  border-color: transparent;
  background: var(--blue);
}

.offer-footer a:hover {
  transform: translateY(-2px);
}

.stats {
  padding: 84px 0;
  color: var(--text);
  background: var(--light);
}

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

.stat-grid article {
  position: relative;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 32px 6px;
  border-left: 1px solid rgba(32, 38, 58, 0.12);
  background: transparent;
  box-shadow: none;
}

.stat-grid article:first-child {
  border-left: 0;
}

.stat-grid article::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue);
}

.stat-grid article::after {
  display: none;
}

.stat-grid strong {
  display: block;
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.stat-grid article:nth-child(1) strong,
.stat-grid article:nth-child(3) strong,
.stat-grid article:nth-child(5) strong {
  color: var(--blue);
}

.stat-grid span {
  display: block;
  max-width: 220px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.38;
}

.director-grid,
.media-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 44px;
}

.picker {
  padding: 105px 0;
}

.picker-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.picker-copy h2 {
  max-width: 650px;
  color: var(--light);
}

.picker-copy .eyebrow {
  color: var(--yellow);
}

.picker-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.55;
}

.picker-benefits {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.picker-benefits li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.picker-benefits li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 207, 20, 0.48);
  border-radius: 50%;
  color: var(--yellow);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.picker-benefits strong {
  display: block;
  color: var(--light);
  font-size: 18px;
  line-height: 1.25;
}

.picker-benefits p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.picker-form,
.lead-form {
  display: grid;
  gap: 14px;
}

.picker-form.form-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.picker-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px 20px;
}

.picker-form label,
.lead-form label {
  display: grid;
  align-content: start;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.picker-form label {
  color: var(--text);
}

.picker-form label > span,
.lead-form label > span {
  line-height: 1.3;
}

.picker-form input,
.picker-form select,
.picker-form textarea,
.lead-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  outline: 0;
  background: #f4f6fb;
  color: var(--dark);
  font: inherit;
}

.picker-form select {
  appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L7 7L12.5 1.5' stroke='%2320263A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px 9px;
}

.lead-form input {
  border-radius: 999px;
  background: var(--light);
}

.picker-form textarea {
  min-height: 98px;
  padding: 15px 18px;
  line-height: 1.4;
  resize: vertical;
}

.picker-form input:focus,
.picker-form select:focus,
.picker-form textarea:focus,
.lead-form input:focus {
  box-shadow: inset 0 0 0 2px rgba(49, 99, 222, 0.42);
}

.picker-form [aria-invalid="true"] {
  background-color: #fff5f5;
  box-shadow: inset 0 0 0 2px rgba(199, 62, 62, 0.42);
}

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

.picker-form .agreement,
.lead-form .agreement {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.picker-form .agreement input,
.lead-form .agreement input {
  width: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  margin-top: 1px;
  accent-color: var(--blue);
}

.picker-form .agreement input[aria-invalid="true"] {
  box-shadow: 0 0 0 2px rgba(199, 62, 62, 0.42);
}

.picker-form .agreement a {
  color: var(--blue);
}

.picker-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.picker-result,
.form-message {
  min-height: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.director {
  padding: 105px 0;
}

.director-grid {
  align-items: center;
}

.director-copy {
  display: grid;
  gap: 24px;
}

.director-copy > .eyebrow {
  color: var(--yellow);
}

.director-copy h2 {
  color: var(--light);
}

.director-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.director-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.director-person img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.director-person strong,
.director-person span {
  display: block;
}

.director-person span {
  color: rgba(255, 255, 255, 0.7);
}

.video-preview {
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--light);
  color: var(--light);
}

.video-collage {
  display: grid;
  height: 100%;
  min-height: inherit;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}

.video-collage img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 47, 70, 0.34);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.video-preview > span:last-child {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  font-weight: 800;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.logo-row img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  object-fit: contain;
  background: var(--light);
  box-shadow: 0 14px 36px rgba(0, 11, 48, 0.08);
}

.tariff-grid {
  display: grid;
  grid-template-columns: 360px 400px 360px;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.tariff-card {
  position: relative;
  display: flex;
  min-height: 571px;
  flex-direction: column;
  padding: 25px 30px 24px;
  overflow: hidden;
  border-radius: 25px;
  background: #eeeeee;
  box-shadow: 3px 3px 10px 5px rgba(117, 114, 114, 0.2);
}

.tariff-card.featured {
  min-height: 571px;
  color: var(--light);
  background: var(--blue);
}

.tariff-card:nth-child(3) {
  color: var(--light);
  background: var(--dark);
}

.tariff-head {
  display: flex;
  flex-wrap: wrap;
  min-height: 50px;
  align-items: center;
  gap: 10px 16px;
  margin: 0 -30px 28px;
}

.tariff-card:first-child .tariff-head {
  min-height: 50px;
  margin: 0 -30px 28px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.tariff-head span {
  display: inline-flex;
  min-width: 160px;
  min-height: 50px;
  align-items: center;
  padding: 0 28px;
  border-radius: 0 10px 10px 0;
  color: var(--light);
  background: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.tariff-card:first-child .tariff-head span {
  flex: 0 0 auto;
  justify-content: flex-start;
  border-radius: 0 10px 10px 0;
  background: var(--blue);
  color: var(--light);
  font-weight: 700;
}

.tariff-card.featured .tariff-head span {
  color: var(--blue);
  background: var(--light);
}

.tariff-card:nth-child(3) .tariff-head span {
  color: var(--light);
  background: var(--blue);
  border-radius: 0 10px 10px 0;
}

.tariff-head em {
  max-width: 210px;
  margin-left: 14px;
  color: inherit;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.tariff-duration {
  min-height: 112px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.tariff-card.featured .tariff-duration,
.tariff-card:nth-child(3) .tariff-duration {
  color: var(--light);
}

.tariff-card ul {
  display: grid;
  gap: 14px;
  margin: 8px 0 22px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(41, 47, 70, 0.32);
  list-style: none;
}

.tariff-card.featured ul,
.tariff-card:nth-child(3) ul {
  border-color: rgba(255, 255, 255, 0.34);
}

.tariff-card li {
  position: relative;
  padding-left: 31px;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.tariff-card.featured li,
.tariff-card:nth-child(3) li {
  color: var(--light);
}

.tariff-card li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--light);
  background: var(--blue);
  font-size: 0;
  font-weight: 400;
  line-height: 1;
}

.tariff-card.featured li::before {
  color: var(--blue);
  background: var(--light);
}

.tariff-card li::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--light);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tariff-card.featured li::after {
  border-color: var(--blue);
}

.tariff-result {
  margin-top: auto;
}

.tariff-result span {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tariff-result p {
  color: inherit;
  font-size: 17px;
  line-height: 1.3;
}

.tariff-price {
  display: grid;
  justify-items: end;
  gap: 7px;
  margin: 30px 0 22px;
}

.tariff-price strong {
  color: #000000;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 3.1vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.tariff-card.featured .tariff-price strong,
.tariff-card:nth-child(3) .tariff-price strong {
  color: var(--light);
}

.tariff-price span {
  color: inherit;
  font-size: 17px;
  font-weight: 500;
  opacity: 0.92;
}

.tariff-footer {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: end;
  gap: 18px;
  margin-top: 18px;
}

.tariff-footer .tariff-price {
  margin: 0 0 22px;
}

.popular-badge {
  position: relative;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  color: var(--light);
  background: #323232;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  clip-path: polygon(50% 0%, 61% 18%, 82% 9%, 77% 32%, 100% 44%, 80% 58%, 88% 82%, 63% 78%, 50% 100%, 37% 78%, 12% 82%, 20% 58%, 0 44%, 23% 32%, 18% 9%, 39% 18%);
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.16));
}

.popular-badge::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  background: #f1d087;
  clip-path: inherit;
}

.tariff-card .button {
  width: 100%;
  min-height: 52px;
  margin-top: 0;
  font-weight: 600;
}

.tariff-card.featured .button {
  color: var(--blue);
  background: var(--light);
}

.price-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.price-card.featured {
  color: var(--light);
  background: var(--dark);
}

.price-card.featured h3,
.price-card.featured li {
  color: var(--light);
}

.price-card ul,
.media-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.quote-card,
.video-card {
  min-height: 220px;
}

.quote-card {
  display: grid;
  align-content: space-between;
  gap: 32px;
}

.quote-card strong {
  color: var(--blue);
}

.video-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--light);
  background: var(--dark);
  text-align: center;
}

.video-card span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: 26px;
}

.video-card p {
  color: rgba(255, 255, 255, 0.84);
}

.media-grid {
  align-items: stretch;
}

.media-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.faq-grid {
  align-items: start;
}

.faq-grid > div:first-child p {
  margin-top: 18px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--light);
  box-shadow: 0 14px 32px rgba(0, 11, 48, 0.06);
}

.faq-list button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.faq-list button::after {
  content: "+";
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.faq-list article.is-open button::after {
  content: "−";
}

.faq-list article p {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: var(--muted);
  transition: max-height 0.24s ease, padding 0.24s ease;
}

.faq-list article.is-open p {
  max-height: 180px;
  padding-bottom: 24px;
}

.seo {
  padding-top: 40px;
}

.seo-card {
  max-width: 1040px;
  margin: 0 auto;
}

.seo-card h2 {
  margin-bottom: 26px;
  font-size: 36px;
}

.seo-card p + p {
  margin-top: 18px;
}

.lead {
  padding: 105px 0 118px;
}

.lead h2 {
  color: var(--light);
}

.lead h2 span {
  color: var(--yellow);
}

.lead-form {
  grid-template-columns: 1fr 1fr auto;
  max-width: 1240px;
  margin: 44px auto 0;
  align-items: start;
}

.lead-form > label:not(.agreement) > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead-form .agreement {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 400;
}

.lead-form .agreement span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.lead-form .agreement a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 31, 0.72);
  backdrop-filter: blur(8px);
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  padding: 42px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: #10172a;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.lead-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lead-modal-panel .eyebrow {
  margin-bottom: 14px;
  color: var(--yellow);
}

.lead-modal-panel h2 {
  max-width: 390px;
  color: #fff;
  font-size: 40px;
}

.lead-modal-panel > p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.lead-modal-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.lead-modal-form label {
  display: grid;
  gap: 7px;
  color: rgba(226, 232, 240, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.lead-modal-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.lead-modal-form input::placeholder {
  color: rgba(148, 163, 184, 0.82);
}

.lead-modal-form input:focus {
  border-color: rgba(74, 136, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(74, 136, 255, 0.14);
}

.lead-modal-form .button {
  min-height: 58px;
}

.lead-modal-form .agreement {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: rgba(226, 232, 240, 0.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.lead-modal-form .agreement input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  margin-top: 1px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  accent-color: var(--yellow);
}

.lead-modal-form .agreement a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-modal-form .form-message {
  color: #8eb7ff;
}

.agreement input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow);
}

.form-message {
  grid-column: 1 / -1;
  text-align: center;
}

.site-footer {
  padding: 82px 0 34px;
  color: var(--light);
  background: #20263b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1.2fr;
  gap: 42px;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 18px;
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--light);
  font-size: 20px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: var(--yellow);
}

.site-footer .utility-item {
  display: inline-flex;
}

.footer-social,
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a,
.payments span,
.footer-rating {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 13px;
}

.footer-social .social-icon {
  display: inline-flex;
  width: 34px;
  min-height: 34px;
  padding: 0;
  margin: 0;
  background: transparent;
}

.footer-social .social-icon svg {
  width: 24px;
  height: 24px;
}

.footer-language {
  margin-top: 18px;
}

.footer-language .language-link {
  display: inline-flex;
  color: var(--light);
  background: rgba(255, 255, 255, 0.08);
}

.footer-language .language-link img {
  width: 24px;
  height: 16px;
  margin-bottom: 0;
}

.footer-phone {
  color: var(--light) !important;
  font-size: 20px;
  font-weight: 800;
}

.footer-rating {
  margin-top: 14px;
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom div:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 1199px) {
  .container {
    width: min(960px, calc(100% - 40px));
    max-width: 100%;
  }

  h2,
  .universities .section-heading h2,
  .chances .section-heading h2 {
    font-size: 32px;
  }

  .pricing .section-heading > p {
    max-width: 706px;
    font-size: 14px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .workflow-grid,
  .director-grid,
  .picker-layout,
  .media-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .picker {
    padding: 86px 0;
  }

  .picker-layout {
    gap: 34px;
  }

  .picker-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .stat-grid article:nth-child(4) {
    border-left: 0;
  }

  .hero-cards {
    max-width: none;
  }

  .hero .container {
    width: min(960px, 100%);
  }

  .hero-grid {
    height: 570px;
  }

  .hero h1 {
    top: 171px;
    left: 10px;
    width: 541px;
    font-size: 42px;
  }

  .hero h1 span {
    width: 207px;
    height: 55px;
    line-height: 55px;
  }

  .hero-text {
    top: 362px;
    left: 10px;
    width: 487px;
    font-size: 16px;
  }

  .tilted-label {
    left: 10px;
  }

  .hero-cta {
    top: 468px;
    left: 10px;
    width: 250px;
  }

  .hero-cards article {
    width: 180px;
  }

  .hero-cards article:nth-child(1) {
    top: 72px;
    left: 575px;
  }

  .hero-cards article:nth-child(2) {
    top: 72px;
    left: 760px;
  }

  .hero-cards article:nth-child(3) {
    top: 257px;
    left: 760px;
  }

  .hero-cards article:nth-child(4) {
    top: 257px;
    left: 575px;
  }

  .universities .section-heading.wide > p {
    max-width: 840px;
    font-size: 14px;
  }

  .university-slider {
    margin-right: 10px;
    margin-left: 10px;
  }

  .university-slide img {
    top: 20px;
    left: 20px;
    width: 130px;
    height: 130px;
  }

  .university-slide h3 {
    top: 20px;
    left: 181px;
    font-size: 32px;
  }

  .university-slide p {
    top: 78px;
    left: 180px;
    width: min(618px, calc(100% - 220px));
  }

  .chance-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin: 0 auto;
  }

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

  .tariff-grid {
    grid-template-columns: 300px 320px 300px;
    gap: 10px;
    max-width: none;
    margin: 0;
  }

  .tariff-card,
  .tariff-card.featured {
    min-height: 460px;
    padding: 25px 10px 18px;
    border-radius: 25px;
  }

  .tariff-head,
  .tariff-card:first-child .tariff-head {
    min-height: 36px;
    margin: 0 -10px 22px;
  }

  .tariff-head span {
    min-width: 120px;
    min-height: 36px;
    padding: 0 18px;
    font-size: 25px;
  }

  .tariff-head em {
    max-width: 150px;
    margin-left: 4px;
    font-size: 12px;
  }

  .tariff-duration {
    min-height: 72px;
    font-size: 14px;
  }

  .tariff-card ul {
    gap: 10px;
    margin-bottom: 18px;
    padding-top: 22px;
  }

  .tariff-card li {
    padding-left: 25px;
    font-size: 12px;
  }

  .tariff-card li::before {
    width: 16px;
    height: 16px;
  }

  .tariff-card li::after {
    top: 3px;
    left: 5px;
    width: 6px;
    height: 9px;
  }

  .tariff-result span {
    font-size: 16px;
  }

  .tariff-result p {
    font-size: 14px;
  }

  .tariff-price {
    margin: 18px 0 14px;
  }

  .tariff-price strong {
    font-size: 30px;
  }

  .tariff-price span {
    font-size: 13px;
  }

  .tariff-footer {
    grid-template-columns: 82px 1fr;
    gap: 10px;
  }

  .tariff-footer .tariff-price {
    margin-bottom: 14px;
  }

  .popular-badge {
    width: 82px;
    height: 82px;
    font-size: 15px;
  }

  .tariff-card .button {
    min-height: 44px;
    font-size: 13px;
  }

  .sticky-copy {
    position: static;
  }

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

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

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

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

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

@media (max-width: 959px) {
  .container {
    width: min(640px, calc(100% - 40px));
    max-width: 100%;
  }

  .universities .section-heading h2 {
    max-width: 598px;
    font-size: 28px;
  }

  .universities .section-heading.wide > p {
    max-width: 613px;
    font-size: 14px;
  }

  .university-slider {
    height: 339px;
    margin: 74px 10px 44px;
  }

  .university-slide img {
    top: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
  }

  .university-slide h3 {
    top: 30px;
    left: 150px;
    width: calc(100% - 190px);
    font-size: 28px;
  }

  .university-slide p {
    top: 71px;
    left: 150px;
    width: min(431px, calc(100% - 180px));
    font-size: 14px;
  }

  .chances .section-heading h2 {
    font-size: 32px;
  }

  .hero-grid {
    height: 570px;
  }

  .hero .container {
    width: min(640px, 100%);
  }

  .tilted-label {
    top: 69px;
    left: 10px;
    width: 252px;
    height: 35px;
    font-size: 16px;
  }

  .hero h1 {
    top: 130px;
    left: 10px;
    width: 390px;
    font-size: 36px;
  }

  .hero h1 span {
    width: 187px;
    height: 43px;
    line-height: 43px;
  }

  .hero-text {
    top: 322px;
    left: 10px;
    width: 355px;
    font-size: 14px;
  }

  .hero-cta {
    top: 442px;
    left: 10px;
    width: 250px;
  }

  .hero-cards article {
    width: 150px;
  }

  .hero-cards article:nth-child(1) {
    top: 21px;
    left: 365px;
  }

  .hero-cards article:nth-child(2) {
    top: 157px;
    left: 470px;
  }

  .hero-cards article:nth-child(3) {
    top: 298px;
    left: 365px;
  }

  .hero-cards article:nth-child(4) {
    top: 413px;
    left: 470px;
  }

  .tariff-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(640px, calc(100% - 40px));
    max-width: 100%;
  }

  h1 {
    font-size: 36px;
  }

  .countries .country-heading h1,
  .mentors .mentors-heading h1,
  .student-story-meta h1 {
    font-size: 36px;
  }

  h2,
  .section-title,
  .universities .section-heading h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .scroll-buttons {
    display: none;
  }

  .cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-arrow-desktop {
    display: none;
  }

  .cta-arrow-mobile {
    display: block;
    position: static;
    width: 20px;
    height: 42px;
    margin-bottom: 20px;
  }

  .utility-inner {
    display: grid;
    min-height: auto;
    align-items: center;
    padding: 8px 0;
    gap: 8px 16px;
  }

  .utility-info {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    gap: 8px 16px;
  }

  .utility-links {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    align-items: center;
    gap: 8px 16px;
  }

  .utility-links .social-icon {
    justify-self: center;
  }

  .utility-links .social-icon:last-child {
    justify-self: end;
  }

  .nav-inner {
    min-height: 78px;
  }

  .brand img {
    width: 62px;
  }

  .mobile-actions .phone-link {
    display: inline-flex;
    font-size: 13px;
  }

  .section,
  .hero,
  .universities,
  .chances,
  .students,
  .experts,
  .workflow,
  .advantages,
  .countries,
  .mentors,
  .student-story,
  .pricing,
  .reviews,
  .media,
  .trust,
  .faq,
  .seo,
  .director,
  .lead {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-grid {
    height: 570px;
  }

  .hero-lead {
    display: contents;
  }

  .hero {
    padding: 0;
  }

  .tilted-label {
    top: 69px;
    left: 10px;
    width: 252px;
    height: 35px;
    font-size: 16px;
  }

  .hero h1 {
    top: 130px;
    left: 10px;
    width: 390px;
    font-size: 36px;
  }

  .hero h1 span {
    width: 187px;
    height: 43px;
    line-height: 43px;
  }

  .hero-text {
    top: 322px;
    left: 10px;
    width: 355px;
    max-width: none;
    font-size: 14px;
  }

  .hero-cta {
    top: 442px;
    left: 10px;
    width: 250px;
    margin-top: 0;
  }

  .hero-cards article {
    width: 150px;
    box-shadow: none;
  }

  .hero-cards article:nth-child(1) {
    top: 21px;
    left: 365px;
    z-index: 1;
    transform: none;
  }

  .hero-cards article:nth-child(2) {
    top: 157px;
    left: 470px;
    z-index: 2;
    transform: none;
  }

  .hero-cards article:nth-child(3) {
    top: 298px;
    left: 365px;
    z-index: 3;
    transform: none;
  }

  .hero-cards article:nth-child(4) {
    top: 413px;
    left: 470px;
    right: auto;
    z-index: 4;
    transform: none;
  }

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

  .university-slide {
    display: none;
  }

  .university-slide.is-active {
    display: block;
  }

  .university-slider {
    min-height: 0;
    padding: 0;
  }

  .slider-controls {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .chance-grid,
  .card-grid.three,
  .grid.two,
  .grid.three,
  .grid.four,
  .lead-form,
  .stat-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-grid {
    gap: 24px;
    padding: 0;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .country-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .advantage-card {
    min-height: auto;
  }

  .country-card,
  .project-card,
  .offer-card,
  .service-card {
    min-height: auto;
  }

  .project-card-content {
    min-height: auto;
  }

  .stat-grid article,
  .stat-grid article:nth-child(4) {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .horizontal-list,
  .experts .horizontal-list {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .scroll-hint {
    display: flex;
  }

  .person-card > img,
  .expert-photo {
    height: 280px;
  }

  .students .horizontal-list {
    grid-auto-columns: 295px;
    gap: 20px;
    padding-bottom: 58px;
  }

  .experts .horizontal-list {
    padding-bottom: 58px;
  }

  .students .person-card > img {
    height: 295px;
  }

  .step-card,
  .picker-form.form-card,
  .advantage-card,
  .service-card,
  .info-card,
  .price-card,
  .quote-card,
  .media-card,
  .seo-card {
    padding: 28px;
  }

  .tariff-card,
  .tariff-card.featured {
    min-height: 460px;
    padding: 25px 10px 18px;
  }

  .tariff-head,
  .tariff-card:first-child .tariff-head {
    margin: 0 -10px 22px;
  }

  .tariff-head span {
    min-width: 120px;
    min-height: 36px;
    padding: 0 18px;
    font-size: 25px;
  }

  .tariff-head em {
    max-width: 150px;
    margin-left: 4px;
    font-size: 12px;
  }

  .tariff-footer {
    grid-template-columns: 82px 1fr;
    justify-items: stretch;
    margin-top: 14px;
  }

  .tariff-footer .tariff-price {
    justify-self: stretch;
    justify-items: end;
    width: 100%;
  }

  .popular-badge {
    justify-self: center;
  }

  .lead-form .agreement,
  .form-message {
    grid-column: auto;
  }

  .wide-button {
    min-width: 0;
    width: 100%;
  }

  .footer-grid,
  .footer-bottom,
  .footer-bottom div:last-child {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 639px) {
  .container {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  h1 {
    font-size: 32px;
  }

  .countries .country-heading h1,
  .mentors .mentors-heading h1,
  .student-story-meta h1 {
    font-size: 32px;
  }

  h2,
  .section-title,
  .universities .section-heading h2,
  .chances .section-heading h2 {
    font-size: 20px;
  }

  .button,
  .btn {
    width: auto;
    min-height: 52px;
    padding: 0 22px;
  }

  .stats {
    padding: 64px 0;
  }

  .offers {
    padding: 64px 0;
  }

  .offers-heading {
    margin-bottom: 26px;
  }

  .offer-card {
    padding: 24px;
    border-radius: 22px;
  }

  .offer-card h3 {
    font-size: 21px;
  }

  .offer-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-footer a {
    width: 100%;
  }

  .stat-grid article {
    padding: 26px 0;
  }

  .stat-grid article::before {
    width: 46px;
    margin-bottom: 16px;
  }

  .stat-grid span {
    max-width: none;
    margin-top: 14px;
    font-size: 16px;
  }

  .picker {
    padding: 70px 0;
  }

  .picker-form .form-grid {
    grid-template-columns: 1fr;
  }

  .picker-form.form-card {
    padding: 24px;
  }

  .picker-benefits li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .picker-benefits li > span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .utility-item {
    gap: 6px;
  }

  .utility-links a {
    font-size: 0;
  }

  .utility-links .utility-item {
    font-size: 12px;
  }

  .utility-links {
    grid-template-columns: 1fr auto auto;
  }

  .utility-links .utility-item {
    justify-self: start;
  }

  .utility-links a .ui-icon {
    margin-right: 0;
  }

  .mobile-actions .compact {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .mobile-actions {
    gap: 8px;
  }

  .mobile-actions .phone-link {
    font-size: 12px;
  }

  .search-panel {
    top: 96px;
    padding: 26px 18px;
  }

  .search-field {
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 16px;
  }

  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0;
  }

  .hero-grid {
    height: 670px;
  }

  .hero .container {
    width: calc(100% - 40px);
  }

  .tilted-label {
    top: 69px;
    left: 10px;
    width: 220px;
    height: 30px;
    font-size: 14px;
  }

  .hero h1 {
    top: 130px;
    left: 10px;
    width: 390px;
    font-size: 32px;
  }

  .hero h1 span {
    width: 171px;
    height: 36px;
    line-height: 36px;
  }

  .hero-cards article {
    width: 130px;
  }

  .hero-text {
    top: 262px;
    left: 10px;
    width: 430px;
    font-size: 14px;
  }

  .hero-cta {
    top: 576px;
    left: 115px;
    width: 250px;
    margin-top: 0;
  }

  .hero-cards article:nth-child(1) {
    top: 405px;
    left: 10px;
  }

  .hero-cards article:nth-child(2) {
    top: 366px;
    left: 120px;
  }

  .hero-cards article:nth-child(3) {
    top: 405px;
    left: 240px;
  }

  .hero-cards article:nth-child(4) {
    top: 366px;
    left: 340px;
    right: auto;
  }

  .university-slide img {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .university-slide h3 {
    top: 10px;
    left: 80px;
    width: calc(100% - 100px);
    font-size: 24px;
  }

  .university-slide p {
    top: 80px;
    left: 10px;
    width: calc(100% - 20px);
    font-size: 12px;
  }

  .university-slider {
    height: 280px;
    margin: 58px 10px 40px;
  }

  .slider-controls {
    right: 10px;
    bottom: 17px;
    left: 10px;
  }

  .slider-logo {
    width: 40px;
  }

  .slider-buttons .round-button {
    width: 40px;
    height: 40px;
  }

  .chance-card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 20px;
  }

  .chance-tabs {
    gap: 20px;
  }

  .chance-card img {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-width: 5px;
  }

  .chance-card h3 {
    font-size: 20px;
  }

  .chance-card p {
    font-size: 14px;
  }

  .bar {
    height: 20px;
  }

  .hero-cards article {
    box-shadow: none;
  }

  .round-button {
    width: 48px;
    height: 48px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-bottom {
    gap: 10px;
    margin-top: 28px;
    padding-top: 16px;
    font-size: 11px;
    line-height: 1.35;
  }

  .footer-bottom p,
  .footer-bottom a {
    margin: 2px 0;
  }

  .footer-bottom div:last-child {
    gap: 6px;
  }
}

@media (max-width: 479px) {
  .container {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  .students .horizontal-list {
    grid-auto-columns: 280px;
    gap: 10px;
    padding-right: 30px;
    padding-bottom: 46px;
  }

  .experts .horizontal-list {
    padding-bottom: 46px;
  }

  .students .person-card > img {
    height: 280px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .universities .section-heading h2 {
    font-size: 18px;
  }

  .universities .section-heading.wide > p {
    max-width: 310px;
  }

  .university-slider {
    height: 365px;
  }

  .university-slide img {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .university-slide h3 {
    top: 27px;
    left: 96px;
    width: 190px;
    font-size: 24px;
    line-height: 1;
  }

  .university-slide p {
    top: 82px;
    left: 10px;
    width: calc(100% - 20px);
    font-size: 12px;
  }

  .slider-controls {
    right: 10px;
    bottom: 10px;
    left: 30px;
  }

  .slider-buttons {
    gap: 10px;
  }

  .chance-tabs {
    gap: 10px;
  }

  .brand img {
    width: 50px;
  }

  .nav-inner {
    gap: 8px;
  }

  .mobile-actions .phone-link {
    display: none;
  }

  .hero {
    padding: 0;
  }

  .hero .container {
    width: calc(100% - 40px);
  }

  .hero-lead {
    display: contents;
  }

  .hero-text {
    top: 226px;
    left: 10px;
    width: 301px;
    max-width: none;
    font-size: 12px;
  }

  .tilted-label {
    top: 30px;
    left: 10px;
    width: 192px;
    height: 24px;
    padding: 0;
    border-radius: 6px;
    font-size: 12px;
  }

  .hero h1 span {
    width: 148px;
    height: 36px;
    padding: 0;
    border-radius: 9px;
    line-height: 36px;
  }

  .hero-grid {
    height: 600px;
  }

  .hero h1 {
    top: 78px;
    left: 10px;
    width: 303px;
    font-size: 28px;
  }

  .hero-cards article {
    width: 100px;
  }

  .hero-cards article:nth-child(1) {
    top: 357px;
    left: 10px;
  }

  .hero-cards article:nth-child(2) {
    top: 318px;
    left: 87px;
  }

  .hero-cards article:nth-child(3) {
    top: 387px;
    left: 135px;
  }

  .hero-cards article:nth-child(4) {
    top: 328px;
    left: 210px;
    right: auto;
  }

  .hero-cta {
    top: 525px;
    left: 35px;
    width: 250px;
    margin-top: 0;
  }
}

/* Pricing: match the original Tilda tariff block geometry. */
.pricing {
  padding-top: 100px;
  padding-bottom: 89px;
}

.pricing .section-heading.centered {
  max-width: 807px;
  margin: 0 0 109px;
  text-align: left;
}

.pricing .section-heading > p {
  max-width: 807px;
  margin-top: 16px;
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.tariff-grid {
  grid-template-columns: 360px 400px 360px;
  gap: 20px;
  align-items: start;
}

.tariff-card,
.tariff-card.featured {
  min-height: 571px;
  padding: 25px 10px 13px;
  border-radius: 25px;
}

.tariff-card.featured {
  min-height: 611px;
  margin-top: -20px;
  padding: 45px 30px 13px;
}

.tariff-head,
.tariff-card:first-child .tariff-head {
  flex-wrap: nowrap;
  min-height: 50px;
  gap: 0 5px;
  margin: 0 -10px 14px;
}

.tariff-card.featured .tariff-head {
  margin-right: -30px;
  margin-left: -30px;
}

.tariff-head span,
.tariff-card:first-child .tariff-head span {
  flex: 0 0 160px;
  width: 160px;
  min-width: 0;
  min-height: 50px;
  justify-content: center;
  padding: 0;
  font-size: 32px;
  letter-spacing: 0;
}

.tariff-card.featured .tariff-head span {
  flex-basis: 170px;
  width: 170px;
}

.tariff-card:nth-child(3) .tariff-head span {
  flex-basis: 184px;
  width: 184px;
}

.tariff-head em {
  max-width: 219px;
  margin-left: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.tariff-card:nth-child(3) .tariff-head em {
  max-width: 165px;
}

.tariff-duration {
  min-height: 63px;
  color: #383838;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.tariff-card.featured .tariff-duration {
  min-height: 41px;
}

.tariff-card ul {
  gap: 11px;
  margin: 18px 0 0;
  padding: 17px 0 0;
  border-color: rgba(117, 114, 114, 0.7);
}

.tariff-card.featured ul,
.tariff-card:nth-child(3) ul {
  border-color: rgba(255, 255, 255, 0.7);
}

.tariff-card li {
  min-height: 16px;
  padding-left: 27px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.tariff-card li::before {
  width: 20px;
  height: 20px;
}

.tariff-card li::after {
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
}

.tariff-result {
  margin-top: auto;
}

.tariff-result span {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
}

.tariff-result p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.tariff-price {
  gap: 7px;
  margin: 30px 0 22px;
}

.tariff-price strong {
  font-size: 32px;
  white-space: nowrap;
}

.tariff-price span {
  font-size: 14px;
}

.tariff-footer {
  grid-template-columns: 171px 1fr;
  gap: 18px;
  align-items: end;
  width: calc(100% + 24px);
  margin-top: 0;
  margin-left: -14px;
}

.tariff-footer .tariff-price {
  margin: 0 0 22px;
}

.popular-badge {
  width: 171px;
  height: 171px;
  overflow: hidden;
  color: transparent;
  background: url("./assets/popular-badge.webp") center / contain no-repeat;
  clip-path: none;
  filter: none;
  text-indent: -999px;
}

.popular-badge::before {
  display: none;
}

.tariff-card .button {
  width: 100%;
  min-height: 40px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.tariff-card .button::before {
  content: none;
}

.tariff-card.featured .button {
  width: calc(100% + 40px);
  margin-left: -20px;
}

@media (max-width: 1199px) {
  .pricing {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .pricing .section-heading.centered {
    margin-bottom: 116px;
  }

  .pricing .section-heading > p {
    max-width: 706px;
    margin-top: 15px;
    font-size: 14px;
  }

  .tariff-grid {
    grid-template-columns: 300px 320px 300px;
    gap: 10px;
  }

  .tariff-card,
  .tariff-card.featured {
    min-height: 460px;
    padding: 25px 10px 10px;
  }

  .tariff-card.featured {
    min-height: 500px;
    margin-top: -20px;
  }

  .tariff-head,
  .tariff-card:first-child .tariff-head,
  .tariff-card.featured .tariff-head {
    min-height: 36px;
    gap: 0 5px;
    margin: 0 -10px 16px;
  }

  .tariff-head span,
  .tariff-card:first-child .tariff-head span {
    flex-basis: 120px;
    width: 120px;
    min-height: 36px;
    font-size: 26px;
  }

  .tariff-card.featured .tariff-head span,
  .tariff-card:nth-child(3) .tariff-head span {
    flex-basis: 150px;
    width: 150px;
  }

  .tariff-head em,
  .tariff-card:nth-child(3) .tariff-head em {
    max-width: 145px;
    font-size: 10px;
  }

  .tariff-duration {
    min-height: 51px;
    font-size: 13px;
  }

  .tariff-card.featured .tariff-duration {
    min-height: 34px;
  }

  .tariff-card ul {
    gap: 8px;
    margin-top: 16px;
    padding-top: 15px;
  }

  .tariff-card li {
    min-height: 13px;
    padding-left: 25px;
    font-size: 10px;
  }

  .tariff-card.featured li {
    font-size: 12px;
  }

  .tariff-card li::before {
    width: 15px;
    height: 15px;
  }

  .tariff-card li::after {
    top: 2px;
    left: 5px;
    width: 5px;
    height: 8px;
    border-width: 0 2px 2px 0;
  }

  .tariff-result span {
    font-size: 14px;
  }

  .tariff-result p {
    font-size: 12px;
  }

  .tariff-price {
    margin: 24px 0 18px;
  }

  .tariff-price strong {
    font-size: 26px;
  }

  .tariff-price span {
    font-size: 12px;
  }

  .tariff-footer {
    grid-template-columns: 138px 1fr;
    gap: 12px;
    width: 100%;
    margin-left: 0;
  }

  .tariff-footer .tariff-price {
    margin-bottom: 18px;
  }

  .popular-badge {
    width: 138px;
    height: 138px;
  }

  .tariff-card.featured .button {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 959px) {
  .pricing {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .pricing .section-heading.centered {
    margin-bottom: 77px;
  }

  .pricing .section-heading > p {
    max-width: 494px;
  }

  .tariff-grid {
    grid-template-columns: 300px;
    max-width: 300px;
    gap: 50px;
    margin-right: auto;
    margin-left: auto;
  }

  .tariff-card.featured {
    margin-top: 0;
  }
}

@media (max-width: 639px) {
  .pricing {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .pricing .section-heading.centered {
    margin-bottom: 58px;
  }

  .pricing .section-heading > p {
    max-width: 433px;
  }

  .tariff-grid {
    gap: 30px;
  }
}

@media (max-width: 479px) {
  .pricing .container {
    width: 100%;
  }

  .pricing .section-heading.centered {
    width: calc(100% - 28px);
    margin-right: 0;
    margin-bottom: 92px;
    margin-left: 14px;
  }

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

  .pricing .section-heading h2 span {
    display: block;
  }

  .pricing .section-heading > p {
    max-width: 294px;
    font-size: 17px;
  }

  .tariff-grid {
    grid-template-columns: 93.75vw;
    max-width: none;
    gap: 24px;
    width: 100%;
    justify-content: center;
  }

  .tariff-card,
  .tariff-card.featured {
    min-height: 144vw;
    padding: 7.8125vw 3.125vw 3.125vw;
  }

  .tariff-card.featured {
    min-height: 156.25vw;
  }

  .tariff-head,
  .tariff-card:first-child .tariff-head,
  .tariff-card.featured .tariff-head {
    min-height: 11.25vw;
    margin: 0 -3.125vw 5vw;
  }

  .tariff-head span,
  .tariff-card:first-child .tariff-head span {
    flex-basis: 37.5vw;
    width: 37.5vw;
    min-height: 11.25vw;
    font-size: 32px;
  }

  .tariff-card.featured .tariff-head span,
  .tariff-card:nth-child(3) .tariff-head span {
    flex-basis: 46.875vw;
    width: 46.875vw;
  }

  .tariff-head em,
  .tariff-card:nth-child(3) .tariff-head em {
    max-width: 45vw;
    font-size: 12px;
  }

  .tariff-duration {
    min-height: 15.9375vw;
    font-size: 16px;
  }

  .tariff-card.featured .tariff-duration {
    min-height: 10.625vw;
  }

  .tariff-card ul {
    gap: 2.5vw;
    margin-top: 5vw;
    padding-top: 4.6875vw;
  }

  .tariff-card li {
    min-height: 4.0625vw;
    padding-left: 7.8125vw;
    font-size: 12px;
  }

  .tariff-card.featured li {
    font-size: 14px;
  }

  .tariff-card li::before {
    width: 4.6875vw;
    height: 4.6875vw;
  }

  .tariff-card li::after {
    top: 0.625vw;
    left: 1.5625vw;
  }

  .tariff-result span {
    font-size: 17px;
  }

  .tariff-result p {
    font-size: 15px;
  }

  .tariff-price strong {
    font-size: 32px;
  }

  .tariff-price span {
    font-size: 13px;
  }

  .tariff-footer {
    grid-template-columns: 43.125vw 1fr;
    gap: 3.75vw;
  }

  .popular-badge {
    width: 43.125vw;
    height: 43.125vw;
  }

  .tariff-card .button {
    min-height: 12.5vw;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .pricing .section-heading h2 {
    font-size: 28px;
  }

  .pricing .section-heading > p {
    font-size: 14px;
  }

  .tariff-head span,
  .tariff-card:first-child .tariff-head span {
    font-size: 26px;
  }

  .tariff-head em,
  .tariff-card:nth-child(3) .tariff-head em {
    font-size: 10px;
  }

  .tariff-duration {
    font-size: 13px;
  }

  .tariff-card li {
    font-size: 10px;
  }

  .tariff-card.featured li {
    font-size: 12px;
  }

  .tariff-result span {
    font-size: 14px;
  }

  .tariff-result p {
    font-size: 12px;
  }

  .tariff-price strong {
    font-size: 26px;
  }

  .tariff-price span {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .events {
    padding: 68px 0;
  }

  .events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .events-heading h2 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  .events-heading p {
    font-size: 17px;
  }

  .events-heading .section-cta {
    margin-bottom: 0;
    font-size: 16px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card {
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .event-date {
    margin-bottom: 26px;
  }

  .downloads {
    padding: 68px 0;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .download-card {
    min-height: 470px;
    padding: 36px;
    border-radius: 30px;
  }

  .download-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 36px;
  }

  .download-card h2 {
    font-size: 30px;
  }

  .download-copy {
    max-width: 560px;
    margin-top: 20px;
    margin-bottom: 34px;
    font-size: 17px;
  }

  .download-trigger {
    min-height: 60px;
  }

  .download-form-head h3 {
    font-size: 24px;
  }

  .articles {
    padding: 68px 0;
  }

  .articles .container {
    width: min(720px, calc(100% - 40px));
  }

  .articles-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
  }

  .articles-heading h2 {
    font-size: 42px;
  }

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

  .article-card {
    min-height: 520px;
  }

  .article-media {
    height: 200px;
  }

  .newsletter {
    padding: 68px 0;
  }

  .newsletter-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 44px;
    border-radius: 32px;
  }

  .newsletter-copy h2 {
    font-size: 36px;
  }

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

  .newsletter-social {
    margin-top: 36px;
  }

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

  .newsletter-row button {
    width: 100%;
  }

  .press {
    padding: 68px 0;
  }

  .press-heading {
    margin-bottom: 40px;
  }

  .press-heading h2 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  .press-heading p {
    font-size: 17px;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .press-card {
    min-height: auto;
    padding: 32px;
    border-radius: 28px;
  }

  .press-logo {
    margin-bottom: 26px;
  }

  .press-card h3 {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.35;
  }

  .press-card p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .student-results {
    padding: 64px 0 72px;
  }

  .university-gallery {
    padding: 56px 0 58px;
  }

  .university-gallery-kicker {
    font-size: 13px;
  }

  .university-marquee {
    margin-top: 36px;
  }

  .university-marquee-group {
    gap: 46px;
    padding-right: 46px;
  }

  .university-marquee-group span {
    font-size: 32px;
  }

  .student-results-heading {
    max-width: 640px;
    margin-bottom: 34px;
  }

  .student-results-heading h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .student-results-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .student-results-rail {
    width: min(640px, calc(100% - 40px));
  }

  .student-results-track {
    grid-auto-columns: 320px;
    gap: 18px;
  }

  .student-result-card {
    min-height: 700px;
  }

  .student-result-more h3 {
    margin-top: 60px;
    font-size: 28px;
  }
}

@media (max-width: 639px) {
  .events {
    padding: 54px 0;
  }

  .events-heading {
    margin-bottom: 28px;
  }

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

  .events-heading p {
    font-size: 15px;
  }

  .event-card {
    padding: 20px;
    border-radius: 24px;
  }

  .event-date {
    min-height: 64px;
    gap: 14px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .event-date strong {
    font-size: 38px;
  }

  .event-date span {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .event-meta {
    margin-bottom: 16px;
  }

  .event-tag {
    max-width: 100%;
    min-height: 24px;
    white-space: normal;
  }

  .event-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .event-card p {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .event-button {
    min-height: 52px;
    border-radius: 14px;
    font-size: 15px;
  }

  .section-cta {
    min-height: 50px;
    padding: 0 22px;
    font-size: 15px;
  }

  .section-cta span {
    font-size: 21px;
  }

  .downloads {
    padding: 54px 0;
  }

  .downloads-grid {
    gap: 18px;
  }

  .download-card {
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .download-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    border-radius: 18px;
  }

  .download-icon svg {
    width: 28px;
    height: 28px;
  }

  .download-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 1.7px;
  }

  .download-card h2 {
    font-size: 24px;
  }

  .download-copy {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .download-trigger {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    font-size: 16px;
  }

  .download-form-head {
    margin-bottom: 22px;
  }

  .download-form-head h3 {
    font-size: 22px;
  }

  .download-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .download-form {
    max-width: none;
  }

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

  .press {
    padding: 54px 0;
  }

  .press-heading {
    margin-bottom: 28px;
  }

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

  .press-heading p {
    font-size: 15px;
  }

  .press-card {
    padding: 26px;
    border-radius: 24px;
  }

  .press-logo {
    min-height: 42px;
    margin-bottom: 22px;
  }

  .press-logo-forbes,
  .press-logo-vc,
  .press-logo-kommersant {
    font-size: 21px;
  }

  .press-logo-vc span {
    width: auto;
    height: auto;
    font-size: inherit;
  }

  .press-logo-vc strong {
    font-size: inherit;
  }

  .press-card h3 {
    font-size: 20px;
  }

  .press-card p {
    font-size: 15px;
  }

  .articles {
    padding: 54px 0;
  }

  .articles .container {
    width: calc(100% - 40px);
  }

  .articles-heading {
    margin-bottom: 28px;
  }

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

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-card {
    min-height: auto;
    border-radius: 24px;
  }

  .article-media {
    height: 190px;
  }

  .article-media span {
    top: 18px;
    left: 18px;
    min-height: 36px;
    padding: 0 15px;
    font-size: 11px;
  }

  .article-body {
    padding: 26px;
  }

  .article-body time {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .article-body h3 {
    font-size: 20px;
  }

  .newsletter {
    padding: 54px 0;
  }

  .newsletter-card {
    gap: 34px;
    padding: 28px;
    border-radius: 28px;
  }

  .newsletter-copy h2 {
    font-size: 30px;
  }

  .newsletter-copy p {
    margin-top: 18px;
    font-size: 15px;
  }

  .newsletter-social {
    gap: 10px;
    margin-top: 30px;
  }

  .newsletter-social span {
    width: 100%;
    font-size: 13px;
    letter-spacing: 1.6px;
  }

  .newsletter-social a {
    width: 44px;
    height: 44px;
  }

  .newsletter-row input,
  .newsletter-row button {
    min-height: 56px;
    border-radius: 15px;
    font-size: 16px;
  }

  .newsletter-form p {
    font-size: 12px;
  }

  .lead-modal {
    padding: 14px;
  }

  .lead-modal-panel {
    max-height: calc(100vh - 28px);
    padding: 30px 24px 26px;
    border-radius: 24px;
  }

  .lead-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .lead-modal-panel h2 {
    max-width: 260px;
    font-size: 30px;
  }

  .lead-modal-panel > p:not(.eyebrow) {
    font-size: 15px;
  }

  .lead-modal-form input,
  .lead-modal-form .button {
    min-height: 54px;
    border-radius: 16px;
  }

  .article-body p {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .student-results {
    padding: 64px 0;
  }

  .university-gallery {
    padding: 40px 0 42px;
  }

  .university-gallery-kicker {
    font-size: 12px;
  }

  .university-marquee {
    margin-top: 28px;
  }

  .university-marquee-track {
    animation-duration: 34s;
  }

  .university-marquee-group {
    gap: 32px;
    padding-right: 32px;
  }

  .university-marquee-group span {
    font-size: 26px;
  }

  .student-results-heading {
    margin-bottom: 28px;
  }

  .student-results-heading h2 {
    font-size: 28px;
  }

  .student-results-heading p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 15px;
  }

  .student-results-rail {
    width: 100%;
    padding: 0 14px 22px;
  }

  .student-results-track {
    grid-auto-columns: minmax(0, calc(100vw - 28px));
    gap: 16px;
  }

  .student-result-card {
    min-height: auto;
    padding: 12px;
    border-radius: 22px;
  }

  .student-result-media,
  .student-result-video-media {
    border-radius: 16px;
  }

  .student-result-body {
    padding: 16px 2px 0;
  }

  .student-result-body h3 {
    font-size: 20px;
  }

  .student-result-more {
    width: auto;
    min-height: 360px;
    padding: 26px;
    border-radius: 22px;
  }

  .student-result-more h3 {
    margin-top: 64px;
    font-size: 28px;
  }

  .student-results-cta .button {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 360px) {
  .university-marquee-group {
    gap: 26px;
    padding-right: 26px;
  }

  .university-marquee-group span {
    font-size: 24px;
  }

  .student-results-rail {
    padding-right: 10px;
    padding-left: 10px;
  }

  .student-results-track {
    grid-auto-columns: minmax(0, calc(100vw - 20px));
  }

  .student-result-card,
  .student-result-more {
    border-radius: 20px;
  }

  .student-result-more {
    padding: 22px;
  }

  .student-result-more h3 {
    font-size: 24px;
  }

  .student-result-more a {
    padding: 0 12px;
    font-size: 10px;
  }
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background: var(--dark);
}

.service-hero::before {
  content: none;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 46px;
  align-items: center;
}

.service-hero-copy {
  min-width: 0;
  overflow-wrap: break-word;
}

.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.service-breadcrumbs a:hover {
  color: #fff;
}

.service-breadcrumbs [aria-current="page"] {
  color: var(--yellow);
}

.service-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.04;
  text-transform: uppercase;
}

.service-hero-lead {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-button-outline {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-button-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.16);
}

.service-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
}

.service-messengers a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.service-messengers svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-hero-media {
  display: flex;
  min-width: 0;
  justify-content: flex-end;
}

.service-hero-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #121827;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.service-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(12, 18, 34, 0.9) 100%);
}

.service-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

.service-hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(16, 23, 42, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.service-hero-badge span {
  display: block;
  color: var(--yellow);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.service-hero-badge p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.4;
}

.service-quiz {
  width: min(470px, 100%);
  padding: 30px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 64px rgba(0, 11, 48, 0.18);
}

.service-quiz-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.service-quiz-head .eyebrow {
  margin-bottom: 8px;
}

.service-quiz-head > span {
  display: inline-flex;
  min-width: 48px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service-quiz h2 {
  color: #10172a;
  font-size: 28px;
  line-height: 1.18;
}

.service-quiz h3 {
  margin-bottom: 18px;
  color: #10172a;
  font-size: 20px;
}

.service-quiz p:not(.eyebrow),
.service-quiz-message {
  color: #637083;
  font-size: 15px;
}

.service-quiz-step {
  display: none;
}

.service-quiz-step.is-active {
  display: grid;
  gap: 12px;
}

.service-quiz-step label:not(.service-quiz-agreement) {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(41, 47, 70, 0.12);
  border-radius: 16px;
  color: #10172a;
  background: #f8fafc;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.service-quiz-step input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-quiz-step label:has(input[type="radio"]:checked) {
  border-color: rgba(43, 97, 219, 0.48);
  background: #eef4ff;
  color: var(--blue);
}

.service-quiz-step > input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(41, 47, 70, 0.14);
  border-radius: 16px;
  color: #10172a;
  background: #f8fafc;
}

.service-quiz-step > input:focus {
  outline: 2px solid rgba(43, 97, 219, 0.22);
  border-color: rgba(43, 97, 219, 0.45);
  background: #fff;
}

.service-quiz .button {
  min-height: 48px;
  padding: 0 26px;
}

.service-quiz-step > .button {
  justify-self: start;
  margin-top: 10px;
}

.service-quiz-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.service-quiz-nav > button:not(.button) {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(41, 47, 70, 0.14);
  border-radius: 999px;
  color: #566174;
  background: #fff;
  font-weight: 800;
}

.service-quiz-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #637083;
  font-size: 13px;
  line-height: 1.35;
}

.service-quiz-agreement input {
  margin-top: 2px;
}

.service-quiz-agreement a {
  color: var(--blue);
  font-weight: 800;
}

.service-quiz-message {
  min-height: 22px;
  margin-top: 14px;
  font-weight: 700;
}

.service-overview,
.service-help,
.service-universities {
  padding: 96px 0;
}

.service-overview {
  background: #fff;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: start;
}

.service-overview-copy h2 {
  max-width: 780px;
  color: #10172a;
}

.service-overview-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: #5f6a7b;
  font-size: 19px;
  line-height: 1.62;
}

.service-overview-panel {
  display: grid;
  gap: 16px;
}

.service-overview-panel article {
  padding: 26px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 22px;
  background: #f8fafc;
  box-shadow: 0 18px 42px -32px rgba(0, 11, 48, 0.28);
}

.service-overview-panel span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.service-overview-panel h3 {
  margin: 12px 0 10px;
  color: #10172a;
  font-size: 22px;
}

.service-overview-panel p {
  color: #637083;
  font-size: 15px;
}

.service-help {
  background:
    linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
}

.service-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 26px 42px;
  align-items: start;
}

.service-help-intro {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 22px;
}

.service-help-intro h2 {
  color: #10172a;
}

.service-help-intro p:not(.eyebrow) {
  max-width: 520px;
  color: #637083;
  font-size: 18px;
  line-height: 1.6;
}

.service-help-list {
  display: grid;
  gap: 16px;
}

.service-help-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 46px -34px rgba(0, 11, 48, 0.3);
}

.service-help-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--blue);
}

.service-help-card span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.service-help-card h3 {
  margin: 0 0 10px;
  color: #10172a;
  font-size: 24px;
}

.service-help-card p {
  color: #637083;
  font-size: 16px;
  line-height: 1.55;
}

.service-help-note {
  grid-column: 2;
  padding: 30px;
  border-radius: 26px;
  background: var(--dark);
  color: #fff;
}

.service-help-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.service-help-note p {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.service-help-note .button {
  min-height: 50px;
  padding: 0 26px;
}

.service-requirements {
  background: #fff;
}

.service-step {
  padding: 36px 40px;
}

.service-step span {
  display: block;
  margin-bottom: 14px;
}

.service-step h3 {
  font-size: 25px;
}

.service-step p {
  font-size: 17px;
}

.service-universities {
  background: var(--surface);
}

.service-universities .section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

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

.service-university-grid article {
  display: grid;
  min-height: 156px;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px -34px rgba(0, 11, 48, 0.28);
}

.service-university-grid img {
  width: 100%;
  max-width: 116px;
  height: 58px;
  object-fit: contain;
}

.service-university-grid span {
  color: #10172a;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.services-page-hero {
  padding-bottom: 104px;
}

.services-page-hero-grid {
  grid-template-columns: minmax(0, 900px);
}

.services-page-hero .tilted-label {
  position: static;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 20px;
  padding: 8px 16px;
}

.services-page-hero h1 {
  max-width: 820px;
}

.service-catalog {
  padding: 96px 0 104px;
  background:
    linear-gradient(180deg, #f5f6f8 0%, #fff 100%);
}

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

.service-category-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #20263a 0%, #151b2c 100%);
  box-shadow: 0 22px 48px -34px rgba(0, 11, 48, 0.56);
  transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-category-card:hover {
  border-color: rgba(245, 207, 20, 0.34);
  box-shadow: 0 32px 64px -34px rgba(0, 11, 48, 0.72);
}

.service-category-card .service-icon {
  margin-bottom: 24px;
}

.service-category-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 23px;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.service-category-card > p {
  min-height: 92px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.service-sublist {
  width: 100%;
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(245, 207, 20, 0.24);
  border-left: 3px solid var(--yellow);
  border-radius: 18px;
  background: rgba(8, 13, 24, 0.36);
}

.service-sublist h4 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-sublist ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-sublist li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.38;
  overflow-wrap: break-word;
}

.service-sublist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.service-sublist a {
  color: inherit;
  transition: color 0.2s ease;
}

.service-sublist a:hover {
  color: #fff;
}

.service-card-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.service-card-bottom strong {
  color: var(--yellow);
  font-size: 21px;
  line-height: 1;
}

.service-card-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.service-card-bottom a::after {
  content: "→";
  transition: transform 0.2s ease;
}

.service-category-card:hover .service-card-bottom a::after {
  transform: translateX(4px);
}

.country-page-hero .tilted-label {
  position: static;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 20px;
  padding: 8px 16px;
}

.country-page-hero h1 {
  max-width: 780px;
}

.country-hero-image {
  width: min(520px, 100%);
}

.country-hero-image .service-hero-badge {
  max-width: 286px;
}

.country-hero-image .service-hero-badge span {
  font-size: 34px;
}

.country-page-benefits,
.country-page-programs,
.country-page-directions,
.country-cost,
.country-universities {
  background: #fff;
}

.country-page-system,
.country-page-types,
.country-page-requirements,
.country-page-paths,
.country-fit {
  background: var(--surface);
}

.about-mission.country-fit {
  background: var(--surface);
  color: var(--text);
}

.country-cost,
.country-universities {
  padding: 96px 0;
}

.country-cost .section-heading {
  margin-bottom: 42px;
}

.country-cost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.country-cost-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 46px -34px rgba(0, 11, 48, 0.3);
}

.country-cost-card h3 {
  margin-bottom: 18px;
  color: #10172a;
  font-size: 26px;
}

.country-cost-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(41, 47, 70, 0.1);
}

.country-cost-row span {
  color: #637083;
  font-size: 15px;
  line-height: 1.4;
}

.country-cost-row strong {
  color: #10172a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-align: right;
}

.country-cost-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 18px;
  margin-top: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(245, 207, 20, 0.34);
  border-left: 4px solid var(--yellow);
  border-radius: 22px;
  background: #fffdf1;
  box-shadow: 0 18px 40px -34px rgba(0, 11, 48, 0.24);
}

.country-cost-note strong {
  color: #10172a;
  font-size: 16px;
  font-weight: 900;
}

.country-cost-note p {
  color: #637083;
  font-size: 15px;
}

.country-universities {
  background: #fff;
}

.country-university-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.country-university-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.78) 0%, #fff 52%),
    #fff;
  box-shadow: 0 20px 46px -34px rgba(0, 11, 48, 0.3);
}

.country-university-card > span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.country-university-card h3 {
  margin-bottom: 14px;
  color: #10172a;
  font-size: 25px;
  line-height: 1.18;
}

.country-university-card p {
  color: #637083;
  font-size: 15px;
  line-height: 1.55;
}

.country-university-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.country-university-card li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.country-university-extra {
  margin-top: 24px;
  padding: 26px 30px;
  border-radius: 24px;
  background: var(--dark);
  color: #fff;
}

.country-university-extra strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.country-university-extra p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.country-fit .section-heading {
  max-width: 820px;
}

.country-fit .about-mission-card span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.programs-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 24px 0 0;
  padding: 70px 0 0;
  list-style: none;
}

.programs-path::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(43, 97, 219, 0) 0%, rgba(43, 97, 219, 0.32) 18%, rgba(245, 207, 20, 0.55) 50%, rgba(43, 97, 219, 0.32) 82%, rgba(43, 97, 219, 0) 100%);
}

.programs-path-item {
  position: relative;
  display: flex;
}

.programs-path-step {
  position: absolute;
  top: -70px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 36px rgba(0, 11, 48, 0.22);
  transform: translateX(-50%);
}

.programs-path-step::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 18px;
  background: rgba(43, 97, 219, 0.36);
  transform: translateX(-50%);
}

.programs-path-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 26px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 46px -34px rgba(0, 11, 48, 0.3);
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.programs-path-card:hover {
  border-color: rgba(49, 99, 222, 0.18);
  box-shadow: 0 26px 50px -28px rgba(0, 11, 48, 0.2);
  transform: translateY(-4px);
}

.programs-path-card h3 {
  margin: 0 0 14px;
  color: #10172a;
  font-size: 22px;
  line-height: 1.22;
}

.programs-path-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
}

.programs-path-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.programs-path-pill-duration {
  background: #eef4ff;
  color: var(--blue);
}

.programs-path-pill-language {
  background: rgba(245, 207, 20, 0.2);
  color: #7d6300;
}

.programs-path-card p {
  flex: 1;
  margin: 0;
  color: #637083;
  font-size: 14px;
  line-height: 1.55;
}

.programs-path-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.programs-path-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.programs-path-card:hover .programs-path-link::after {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .service-hero-grid,
  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-media {
    max-width: 720px;
    justify-content: flex-start;
  }

  .service-help-layout {
    grid-template-columns: 1fr;
  }

  .service-help-intro {
    position: static;
  }

  .service-help-note {
    grid-column: auto;
  }

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

  .services-page-hero-grid,
  .service-catalog-grid {
    grid-template-columns: 1fr;
  }

  .country-cost-grid {
    grid-template-columns: 1fr;
  }

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

  .programs-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 22px;
    padding-top: 60px;
  }

  .programs-path::before {
    display: none;
  }

  .programs-path-step {
    top: -60px;
  }

  .service-category-card {
    min-height: auto;
  }

  .service-category-card > p {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .service-hero,
  .service-overview,
  .service-help,
  .service-universities {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-hero h1 {
    font-size: 34px;
  }

  .service-hero-lead {
    font-size: 17px;
  }

  .service-hero-image,
  .service-hero-image img {
    min-height: 370px;
    height: 370px;
  }

  .service-help-card {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 24px;
  }

  .service-overview-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .service-catalog {
    padding: 72px 0;
  }

  .country-cost,
  .country-universities {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 639px) {
  .service-hero {
    padding-top: 52px;
  }

  .service-hero-grid {
    gap: 38px;
  }

  .service-hero-copy,
  .service-hero-media {
    width: min(320px, calc(100vw - 60px));
    margin-left: 10px;
  }

  .service-hero h1 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.16;
  }

  .service-hero-lead {
    font-size: 16px;
  }

  .service-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-hero-actions .button {
    width: 100%;
    padding: 0 18px;
  }

  .service-messengers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-hero-media {
    max-width: none;
  }

  .service-help-layout {
    gap: 28px;
  }

  .service-help-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-help-note {
    padding: 24px;
  }

  .service-quiz {
    width: 100%;
    margin-top: 18px;
    padding: 24px;
  }

  .service-quiz-head {
    gap: 12px;
  }

  .service-quiz h2 {
    font-size: 23px;
  }

  .service-quiz-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-quiz-nav .button,
  .service-quiz-nav > button:not(.button),
  .service-quiz-step > .button {
    width: 100%;
  }

  .service-overview-grid {
    gap: 34px;
  }

  .service-overview-panel article,
  .service-step {
    padding: 24px;
  }

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

  .services-page-hero .tilted-label {
    margin-bottom: 16px;
  }

  .service-category-card {
    padding: 22px;
    border-radius: 22px;
  }

  .service-category-card h3 {
    font-size: 21px;
  }

  .service-catalog .section-heading {
    width: min(320px, 100%);
  }

  .service-catalog .section-heading h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .service-sublist {
    padding: 16px;
  }

  .service-card-bottom {
    display: grid;
    gap: 12px;
  }

  .country-page-hero .tilted-label {
    margin-bottom: 16px;
  }

  .country-hero-image,
  .country-hero-image img {
    min-height: 330px;
    height: 330px;
  }

  .country-hero-image .service-hero-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    padding: 16px;
  }

  .country-cost-card,
  .country-university-card,
  .country-university-extra {
    padding: 22px;
    border-radius: 22px;
  }

  .country-cost-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .country-cost-row strong {
    text-align: left;
  }

  .country-cost-note {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .country-university-grid {
    grid-template-columns: 1fr;
  }

  .programs-path {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 50px;
  }

  .programs-path-step {
    top: -50px;
    width: 58px;
    height: 58px;
    border-width: 4px;
    font-size: 17px;
  }

  .programs-path-card {
    padding: 26px 20px 22px;
    border-radius: 22px;
  }

  .programs-path-card h3 {
    font-size: 20px;
  }

  .country-university-card {
    min-height: auto;
  }
}

@media (max-width: 479px) {
  .service-university-grid {
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: 21px;
  }

  .service-quiz {
    padding: 20px;
    border-radius: 20px;
  }
}

.about-hero-panel {
  width: min(430px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #171e32;
  color: #fff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.about-hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

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

.about-hero-facts article {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 96px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.about-hero-facts strong {
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.about-hero-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.about-story-grid {
  align-items: center;
}

.about-story-panel article:first-child {
  background: var(--dark);
  color: #fff;
}

.about-story-panel article:first-child h3 {
  color: #fff;
}

.about-story-panel article:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.about-timeline,
.about-awards,
.about-certificates,
.about-team {
  padding: 96px 0;
}

.about-timeline {
  background: var(--surface);
}

.about-timeline-grid {
  display: block;
}

.about-timeline-grid .sticky-copy {
  position: static;
  max-width: 820px;
  gap: 22px;
}

.about-timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 44px;
  padding-top: 90px;
}

.about-timeline-list::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(43, 97, 219, 0), rgba(43, 97, 219, 0.35), rgba(245, 207, 20, 0.55), rgba(43, 97, 219, 0));
}

.about-timeline-list article {
  position: relative;
  overflow: visible;
  padding: 30px 22px 24px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 46px -34px rgba(0, 11, 48, 0.32);
}

.about-timeline-list article::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  width: 2px;
  height: 29px;
  background: rgba(43, 97, 219, 0.36);
  transform: translateX(-50%);
}

.about-timeline-list article::after {
  content: "";
  position: absolute;
  top: -49px;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(43, 97, 219, 0.2), 0 10px 24px rgba(43, 97, 219, 0.24);
  transform: translateX(-50%);
}

.about-timeline-list span {
  position: absolute;
  top: -90px;
  left: 50%;
  display: grid;
  min-width: 76px;
  height: 36px;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 11, 48, 0.16);
  transform: translateX(-50%);
}

.about-timeline-list h3 {
  margin-bottom: 10px;
  color: #10172a;
  font-size: 20px;
}

.about-timeline-list p {
  color: #637083;
  font-size: 14px;
}

.about-mission,
.about-leadership {
  padding: 78px 0;
  background: var(--dark);
}

.about-mission .section-heading {
  margin-bottom: 24px;
}

.about-mission-quote {
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.about-mission-quote blockquote {
  margin: 0;
  color: #10172a;
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.16;
}

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

.about-mission-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #fff;
  color: #10172a;
}

.about-mission-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  padding: 13px;
  border-radius: 17px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(43, 97, 219, 0.22);
}

.about-mission-card span img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-mission-card h3 {
  margin-bottom: 14px;
  color: inherit;
  font-size: 24px;
}

.about-mission-card p {
  color: #637083;
  font-size: 16px;
}

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

.about-awards-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 18px 22px 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fffdf4;
  box-shadow: 0 18px 42px rgba(0, 11, 48, 0.07);
  text-align: center;
}

.document-preview {
  position: relative;
  display: grid;
  width: 100%;
  height: 238px;
  place-items: center;
  margin: 0 0 20px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(41, 47, 70, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 252, 0.78)),
    #f4f7fb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  cursor: zoom-in;
}

.document-preview::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(41, 47, 70, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.document-preview img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 16px 30px rgba(0, 11, 48, 0.13);
  transition: transform 0.2s ease;
}

.document-preview-horizontal img {
  width: 100%;
}

.document-preview-vertical img {
  height: 100%;
}

.document-preview-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 23, 42, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.document-preview:hover img,
.document-preview:focus-visible img {
  transform: scale(1.025);
}

.document-preview:hover .document-preview-hint,
.document-preview:focus-visible .document-preview-hint {
  opacity: 1;
  transform: translateY(0);
}

.about-awards-grid .document-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.about-awards-grid h3 {
  margin-bottom: 12px;
  color: #10172a;
  font-size: 22px;
}

.about-awards-grid p {
  color: #637083;
  font-size: 15px;
}

.about-certificates {
  background: var(--surface);
}

.about-certificates-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 50px;
  align-items: start;
}

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

.about-certificate-list article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 18px 20px 28px;
  border: 1px solid rgba(41, 47, 70, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(41, 47, 70, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(41, 47, 70, 0.04) 1px, transparent 1px),
    #fff;
  background-size: 26px 26px;
  box-shadow: 0 22px 48px -36px rgba(0, 11, 48, 0.3);
}

.about-certificate-list .document-preview {
  height: 226px;
  margin-bottom: 22px;
}

.about-certificate-list .document-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.about-certificate-list h3 {
  margin-bottom: 12px;
  color: #10172a;
  font-size: 22px;
}

.about-certificate-list p {
  color: #637083;
  font-size: 15px;
}

.document-modal[hidden] {
  display: none;
}

.document-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.document-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 23, 42, 0.78);
  backdrop-filter: blur(10px);
}

.document-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.document-modal-panel img {
  max-width: 100%;
  max-height: calc(86vh - 118px);
  width: auto;
  height: auto;
  justify-self: center;
  align-self: center;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 14px 36px rgba(0, 11, 48, 0.15);
}

.document-modal-panel figcaption {
  color: #475569;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.document-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: #10172a;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 28px rgba(0, 11, 48, 0.22);
}

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

.about-leadership-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.about-leadership-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
}

.about-leadership-grid article > div {
  padding: 26px;
}

.about-leadership-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-leadership-grid h3 {
  margin-bottom: 12px;
  color: #10172a;
  font-size: 25px;
}

.about-leadership-grid p {
  color: #637083;
  font-size: 15px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.about-team-photo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
  padding: 14px;
  border-radius: 30px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.about-team-photo img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

.about-team-caption {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.about-team-caption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 22px;
}

.about-team-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.about-team-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: #637083;
  font-size: 18px;
  line-height: 1.6;
}

.about-team-roles {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.about-team-roles article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 20px;
  border: 1px solid rgba(41, 47, 70, 0.08);
  border-radius: 20px;
  background: #fff;
}

.about-team-roles span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
}

.about-team-roles strong {
  color: #10172a;
  font-size: 17px;
}

.about-team-roles p {
  color: #637083;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .about-certificates-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

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

  .about-certificate-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-timeline,
  .about-mission,
  .about-awards,
  .about-certificates,
  .about-leadership,
  .about-team {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-mission-grid,
  .about-awards-grid,
  .about-leadership-grid,
  .about-certificate-list {
    grid-template-columns: 1fr;
  }

  .about-timeline-list {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .about-timeline-list::before {
    right: 40px;
    left: 40px;
  }

  .about-leadership-grid img {
    height: 360px;
  }
}

@media (max-width: 639px) {
  .about-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .about-hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .about-hero-logo {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .about-hero-facts {
    gap: 7px;
    margin-top: 16px;
  }

  .about-hero-facts article,
  .about-mission-card,
  .about-awards-grid article,
  .about-certificate-list article,
  .about-leadership-grid article > div,
  .about-team-roles article {
    padding: 22px;
  }

  .about-hero-facts article {
    min-height: 78px;
    padding: 10px 8px;
    border-radius: 14px;
  }

  .about-hero-facts strong {
    font-size: 20px;
  }

  .about-hero-facts span {
    font-size: 10px;
  }

  .about-certificate-list article {
    min-height: 240px;
  }

  .document-preview,
  .about-certificate-list .document-preview {
    height: 260px;
  }

  .document-modal {
    padding: 16px;
  }

  .document-modal-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .document-modal-close {
    top: 10px;
    right: 10px;
  }

  .about-leadership-grid img {
    height: 300px;
  }

  .about-team-photo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }

  .about-team-caption {
    padding: 22px;
  }

  .about-team-roles article {
    grid-template-columns: 1fr;
  }

  .about-team-roles span {
    grid-row: auto;
  }
}

@media (max-width: 479px) {
  .about-hero h1 {
    font-size: 31px;
  }
}

/* === Students gallery page === */
.students-page {
  padding: 90px 0 110px;
  background: var(--light);
}

.students-page-intro {
  max-width: 960px;
  margin: 0 0 56px;
}

.students-page-intro .eyebrow {
  margin-bottom: 14px;
}

.students-page-intro h2 {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.students-page-intro p {
  color: var(--text);
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

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

.student-case {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.25s ease;
}

@media (hover: hover) {
  .student-case:hover {
    box-shadow: 0 18px 36px -12px rgba(0, 11, 48, 0.22);
  }
}

.student-case-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f2f2;
  border-radius: 20px 20px 0 0;
}

.student-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.student-case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 26px 28px;
  gap: 14px;
}

.student-case-name {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.student-case-name a {
  color: inherit;
  transition: color 0.2s ease;
}

.student-case-name a:hover {
  color: var(--blue);
}

.student-case-descr {
  flex: 1;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
}

.student-case-descr strong {
  font-weight: 700;
  color: var(--dark);
}

.student-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 0;
  background: none;
  border: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--blue);
  transition: color 0.2s ease, gap 0.2s ease;
}

.student-case-link::after {
  content: "→";
  display: inline-block;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

.student-case-link:hover {
  color: #1d49b3;
  gap: 10px;
}

.student-case-link:hover::after {
  transform: translate(2px, -1px);
}

@media (max-width: 1023px) {
  .students-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .students-page {
    padding: 70px 0 90px;
  }

  .students-page-intro {
    margin-bottom: 40px;
  }
}

@media (max-width: 639px) {
  .students-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .students-page {
    padding: 56px 0 72px;
  }

  .student-case-body {
    padding: 24px 22px 24px;
    gap: 12px;
  }

  .student-case-name {
    font-size: 20px;
  }
}

/* === Professors / mentors page === */
.mentors {
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: var(--surface);
}

.mentors .mentors-heading {
  max-width: 957px;
  margin-bottom: 46px;
  text-align: left;
}

.mentors .service-breadcrumbs {
  margin-bottom: 24px;
  color: rgba(16, 23, 42, 0.58);
}

.mentors .service-breadcrumbs a {
  color: rgba(16, 23, 42, 0.58);
}

.mentors .service-breadcrumbs a:hover {
  color: #10172a;
}

.mentors .service-breadcrumbs [aria-current="page"] {
  color: var(--blue);
}

.mentors .mentors-heading h1 {
  max-width: none;
  color: #10172a;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.mentors .mentors-heading h1 span {
  color: var(--blue);
}

.mentors .mentors-heading p {
  margin-top: 20px;
  color: #637083;
  font-size: 19px;
  line-height: 1.55;
}

.mentors-desktop {
  display: block;
}

.mentors-mobile {
  display: none;
}

.mentor-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 48px;
}

.mentor-row:last-child {
  margin-bottom: 0;
}

.mentor-row-media {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 6 / 5;
  background: #f1f2f2;
}

.mentor-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mentor-row-name {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.mentor-row-role {
  margin: 0 0 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  color: var(--blue);
}

.mentor-bullets {
  display: grid;
  gap: 8px;
}

.mentor-bullet {
  position: relative;
  margin: 0;
  padding-left: 1.15em;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}

.mentor-bullet::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "▸";
}

.mentor-card {
  display: flex;
  flex-direction: column;
}

.mentor-card-media {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  background: #f1f2f2;
}

.mentor-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.mentor-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 14px;
}

.mentor-card-name {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.mentor-card-role {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  color: var(--blue);
}

.mentor-card-text {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.mentor-bullets-hidden {
  display: none;
}

.mentor-card.is-expanded .mentor-bullets-hidden {
  display: grid;
}

.mentor-read-more {
  align-self: flex-start;
  margin-top: 6px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--blue);
  background: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--blue);
  cursor: pointer;
}

.mentor-read-more:hover {
  color: #1d49b3;
  border-bottom-color: #1d49b3;
}

@media (max-width: 979px) {
  .mentors-desktop {
    display: none;
  }

  .mentors-mobile {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }
}

@media (max-width: 979px) and (hover: hover) {
  .mentor-card:hover .mentor-card-media img,
  .mentor-card:focus-within .mentor-card-media img {
    transform: scale(1.06);
  }
}

@media (max-width: 639px) {
  .mentors-mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 479px) {
  .mentors-mobile {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* === Student story (single post, WordPress-ready) === */

.student-story {
  border-top: 1px solid rgba(41, 47, 70, 0.08);
  background: var(--surface);
}

.student-story .student-story-heading {
  max-width: 760px;
  margin-bottom: 32px;
  text-align: left;
}

.student-story .service-breadcrumbs {
  margin-bottom: 0;
  color: rgba(16, 23, 42, 0.58);
}

.student-story .service-breadcrumbs a {
  color: rgba(16, 23, 42, 0.58);
}

.student-story .service-breadcrumbs a:hover {
  color: #10172a;
}

.student-story .service-breadcrumbs [aria-current="page"] {
  color: var(--blue);
}

.student-story-article {
  max-width: 760px;
}

.student-story-meta {
  margin-bottom: 36px;
}

.student-story-meta h1 {
  margin: 0;
  color: #10172a;
  font-size: 48px;
  line-height: 1.2;
  text-transform: none;
}

/* Стили только через потомков — контент из the_content() без обёрток */
.student-story .entry-content {
  color: #424650;
  font-size: 17px;
  line-height: 1.65;
}

.student-story .entry-content > *:first-child {
  margin-top: 0;
}

.student-story .entry-content > *:last-child {
  margin-bottom: 0;
}

.student-story .entry-content img,
.student-story .entry-content figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 32px;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 11, 48, 0.1);
}

.student-story .entry-content figure {
  margin: 0 0 32px;
}

.student-story .entry-content figcaption {
  margin-top: 10px;
  color: #637083;
  font-size: 14px;
  line-height: 1.45;
}

.student-story .entry-content h2 {
  margin: 0 0 24px;
  color: #10172a;
  font-size: 28px;
  line-height: 1.28;
  text-transform: none;
}

.student-story .entry-content h3,
.student-story .entry-content h4 {
  margin: 32px 0 14px;
  color: #10172a;
  font-size: 20px;
  line-height: 1.3;
  text-transform: none;
}

.student-story .entry-content p {
  margin: 0 0 18px;
}

.student-story .entry-content hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid rgba(41, 47, 70, 0.12);
}

.student-story .entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.student-story .entry-content a:hover {
  color: #1f4fd6;
}

.student-story .entry-content ul,
.student-story .entry-content ol {
  margin: 0 0 18px;
  padding-left: 1.35em;
}

.student-story .entry-content li + li {
  margin-top: 8px;
}

.student-story .entry-content blockquote {
  margin: 36px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--blue);
  border-radius: 0 20px 20px 0;
  background: rgba(49, 99, 222, 0.06);
}

.student-story .entry-content blockquote p {
  margin: 0;
  color: #10172a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.student-story .entry-content .wp-block-image,
.student-story .entry-content .alignwide,
.student-story .entry-content .alignfull {
  max-width: 100%;
}

@media (max-width: 639px) {
  .student-story .entry-content h2 {
    font-size: 24px;
  }

  .student-story .entry-content blockquote {
    padding: 20px 22px;
  }

  .student-story .entry-content blockquote p {
    font-size: 16px;
  }
}

/* === Programs listing page === */

.programs-catalog {
  padding: 96px 0 104px;
  background: var(--surface);
  border-top: 1px solid rgba(41, 47, 70, 0.08);
}

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

.programs-listing-grid .programs-path-card {
  height: 100%;
  text-align: left;
  align-items: flex-start;
}

.programs-listing-grid .programs-path-meta {
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .programs-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .programs-listing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 32px;
  }

  .programs-catalog {
    padding: 72px 0 88px;
  }
}

/* === Projects listing cards (country-style) === */

.project-grid {
  margin-top: 46px;
}

.project-card {
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}

.project-card-content {
  min-height: 320px;
  justify-content: flex-start;
  padding: 28px 30px 30px;
}

.project-card .country-icon {
  margin-bottom: 16px;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.project-card p {
  flex: 1;
  max-width: 100%;
  margin-bottom: 18px;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.project-card-link::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.project-card:hover .project-card-link::after {
  transform: translateX(4px);
}

@media (max-width: 639px) {
  .project-grid {
    margin-top: 32px;
  }

  .project-card,
  .project-card-content {
    min-height: 280px;
  }

  .project-card h3 {
    font-size: 20px;
  }
}
