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

:root {
  --navy:       #0f1e35;
  --navy-card:  #162540;
  --navy-light: #1e3154;
  --gold:       #b6741c;
  --white:      #ffffff;
  --text-muted: #a8b8cc;
  --bg-page:    #e8edf5;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--white);
  position: relative;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__img {
  position: absolute;
  width:  clamp(90px, 9vw, 240px);
  height: clamp(90px, 9vw, 240px);
  object-fit: contain;
  opacity: 0.15;
  user-select: none;
}

body > :not(.page-bg):not(.lightbox) {
  position: relative;
  z-index: 1;
}

.hero {
  background: linear-gradient(135deg, #0a1628 0%, #162540 55%, #1a2e4a 100%);
  padding: 36px 48px 40px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 0 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__medal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content { grid-column: 2; }

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

.hero__cta-btn {
  display: inline-block;
  padding: 16px 34px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transform: skewX(-10deg);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  animation: slideInFromRight 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  transition: background 0.2s, color 0.2s, outline-color 0.2s;
}

.hero__actions .hero__cta-btn:nth-child(2) { animation-delay: 0.09s; }
.hero__actions .hero__cta-btn:nth-child(3) { animation-delay: 0.18s; }
.hero__actions .hero__cta-btn:nth-child(4) { animation-delay: 0.27s; }

.hero__cta-btn span {
  display: inline-block;
  transform: skewX(10deg);
}

.hero__cta-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.hero__cta-btn--steel {
  background: var(--navy-light);
  color: var(--white);
  outline-color: var(--gold);
}

.hero__cta-btn--steel:hover {
  background: var(--gold);
  color: var(--white);
}

.hero__cta-btn--gold {
  background: var(--gold);
  color: var(--white);
  outline-color: var(--gold);
}

.hero__cta-btn--gold:hover {
  background: var(--white);
  color: var(--gold);
}

@keyframes slideInFromRight {
  from { transform: skewX(-10deg) translateX(120px); opacity: 0; }
  to   { transform: skewX(-10deg) translateX(0);     opacity: 1; }
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.brand-icon { width: 64px; height: 64px; overflow: hidden; }
.brand-icon img { width: 100px; height: auto; margin-left: -17px; }

.brand-name {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.brand-name strong { color: var(--gold); font-weight: 900; }

.brand-tagline {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.brand-tagline em { color: var(--gold); font-style: normal; font-weight: 800; }

.hero__headline {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.accent-gold { color: var(--gold); }

.hero__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.hero__sub strong { color: var(--white); }

.hero__motto {
  margin-top: 14px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.hero__motto strong { color: var(--gold); }

.underline-you {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.teachers {
  padding: 40px 40px 56px;
}

.teachers__heading,
.why__heading {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;

}

.teachers__heading {
  margin-bottom: 82px;
}

.teachers__heading h2 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.why__heading h2 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.arrow-left, .arrow-right {
  font-size: 20px;
  color: var(--gold);
  font-weight: 900;
}

.arrow-right { transform: scaleX(-1); display: inline-block; }

.cards,
.results__grid {
  --cards-inset: 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;

  justify-content: safe center;
  gap: 64px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--cards-inset);
  -webkit-overflow-scrolling: touch;

  max-width: none;
  margin-inline: calc(-1 * var(--cards-inset));
  padding-inline: var(--cards-inset);

  padding-block: 8px 20px;
  margin-block: -8px -20px;
  scrollbar-width: none;
}

.cards {
  padding-block: 60px 24px;
  margin-block: -60px -24px;
}

.cards::-webkit-scrollbar,
.results__grid::-webkit-scrollbar { display: none; }

.cards .card,
.results__grid .result-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.cards .card { width: min(380px, 82vw); }

.results__grid .result-card { width: min(420px, 88vw); }

.teacher-card__footer {
  width: calc(100% + 48px);
  margin: 20px -24px 0;
  background: linear-gradient(90deg, #8B6914, #C9A84C, #8B6914);
  text-align: center;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  padding: 14px 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.why {
  padding: 48px 40px 56px;
}

.why__big-card {
  background: linear-gradient(135deg, #0a1628 0%, #162540 60%, #1a2e4a 100%);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.why__top-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.why-card {
  background: var(--gold);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-card__header {
  padding: 22px 24px 14px;
}

.why-card__title {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.why-card__body {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 0 24px 24px;
  align-items: flex-start;
}

.why-card__points { flex: 1; min-width: 0; }

.why-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card__list li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.why-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
}

.why-card__img-box {
  flex-shrink: 0;
  width: 380px;

  aspect-ratio: 5 / 8;
  background: rgba(10, 22, 40, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card__img-box:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.why-card__img-box--photo {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.why-card__img-box--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.why-card__photo-grid {
  flex-shrink: 0;
  width: 380px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.why-card__photo-cell {
  background: rgba(10, 22, 40, 0.35);
  border-radius: 5px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

img.why-card__photo-cell {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card__photo-cell:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  z-index: 2;
  position: relative;
}

.why-team {
  background: linear-gradient(135deg, #162540 0%, #1a2e4a 100%);
  border-radius: 16px;
  border: 2px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 32px 36px;
  align-items: center;
}

.why-team__title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}

.why-team__text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 12px;
}

.why-team__text strong { font-weight: 800; color: var(--gold); }
.why-team__text u { text-decoration-color: var(--gold); }

.why-team__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 300px;
}

.why-team__figures {
  display: flex;

  align-items: flex-end;
  justify-content: center;
  gap: 0;

  --figures-height: clamp(200px, 15vw, 210px);
}

.why-team__figures .why-team__figure:nth-child(2) {
  margin-inline: -10px;
  position: relative;
  z-index: 1;
}

.why-team__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
  cursor: default;
}

.why-team__figure:hover { transform: translateY(-6px) scale(1.08); }

.why-team__photo {
  height: calc(var(--figures-height) * var(--photo-scale, 1));
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 10px rgba(6, 14, 28, 0.55));
  cursor: zoom-in;
}

.figure-label {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  background: var(--navy);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--gold);
}

.why-team__btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transform: skewX(-10deg);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.why-team__btn span { display: inline-block; transform: skewX(10deg); }
.why-team__btn:hover { background: var(--gold); color: var(--white); }

.courses {
  padding: 8px 40px 56px;
}

.courses__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.courses__heading h2 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.courses__big-card {
  background: linear-gradient(135deg, #0a1628 0%, #162540 60%, #1a2e4a 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

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

.course-card,
.plan-card {
  background: #13233f;
  border: 1px solid rgba(182, 116, 28, 0.35);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.course-card__title-bar,
.plan-card__title-bar {
  background: linear-gradient(90deg, #8a5715, #b6741c 50%, #d6953f, #b6741c 70%, #8a5715);
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  padding: 10px 12px;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  letter-spacing: 0.5px;
}

.plan-card__title-bar {
  font-size: 22px;
  padding: 12px;
}

.course-card__list,
.plan-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.course-card__list li,
.plan-card__list li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
}

.course-card__list li::before,
.plan-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.course-card__btn {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 18px;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.course-card__btn:hover { background: var(--gold); }

.course-card__btn-label {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.course-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.course-card__old-price {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #a35a2a;
  text-decoration: line-through;
}

.course-card__price {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.course-card__btn:hover .course-card__btn-label,
.course-card__btn:hover .course-card__old-price,
.course-card__btn:hover .course-card__price {
  color: var(--white);
}

.course-card__per-lesson {
  margin-top: 12px;
  background: linear-gradient(90deg, #8a5715, #b6741c 50%, #d6953f, #b6741c 70%, #8a5715);
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  padding: 10px 12px;
  letter-spacing: 0.3px;
}

.plan-card__banner {
  margin-top: 16px;
  background: linear-gradient(90deg, #8a5715, #b6741c 50%, #d6953f, #b6741c 70%, #8a5715);
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  padding: 12px 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.courses__slogan {
  max-width: 1400px;
  margin: 28px auto 0;
  text-align: center;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.results {
  padding: 8px 40px 72px;
}

.results__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.results__heading h2 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.results__grid {
  gap: 32px;
}

.result-card {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #162540 60%, #1a2e4a 100%);
  border-radius: 14px;
  padding: 24px 22px 0;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.10);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.result-card__top {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.result-card__photo {
  flex-shrink: 0;
  width: 120px;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gold);
}

.result-card__photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.result-card__info { flex: 1; }

.result-card__name {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 14px;
}

.result-card__achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-card__achievements li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #dde0ee;
  line-height: 1.5;
  text-align: center;
}

.result-card__achievements li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.result-card__quote {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  text-align: center;
  flex: 1;
}

.result-card__signature {
  margin-top: 14px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-align: right;
}

.result-card .result-card__banner {
  width: calc(100% + 44px);
  margin: 20px -22px 0;

  border-radius: 0 0 14px 14px;
}

.join {
  background: linear-gradient(100deg, #08152b 0%, #0d2a5c 45%, #1252ab 100%);
  padding: 56px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.join__title {
  font-family: var(--font-main);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  text-align: center;
}

.join__btn {
  display: inline-block;

  text-align: center;
  padding: 18px 56px;
  background: linear-gradient(90deg, #b6741c, #d6953f 50%, #b6741c);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.join__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}

.footer {
  background: linear-gradient(135deg, #0a1628 0%, #162540 55%, #1a2e4a 100%);
  padding: 36px 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

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

.footer__logo {
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.footer__logo img {
  width: 68px;
  height: auto;
  margin-left: -12px;
}

.footer__name {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.footer__name strong { color: var(--gold); font-weight: 900; }

.footer__tagline {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

.footer__phone:hover { text-decoration: underline; }

.footer__phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__phone-icon svg { width: 18px; height: 18px; }

.footer__socials {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
}

.footer__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 2px solid transparent;
  border-radius: 50%;
  transition: border-color 0.2s, transform 0.2s;
}

.footer__social:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer__social svg { width: 22px; height: 22px; }

img { cursor: zoom-in; }
.page-bg__img { cursor: default; }
.lightbox__img { cursor: zoom-out; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 11, 22, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.25s;
}

.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
  transform: scale(0.94);
  transition: transform 0.25s;
}

.lightbox.is-open .lightbox__video { transform: scale(1); }

.lightbox:not(.is-video) .lightbox__video,
.lightbox.is-video .lightbox__img { display: none; }

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  border: none;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox__close:hover { color: var(--gold); }

@media (min-width: 960px) {
  .why__big-card {
    max-width: 1700px;
    padding: 56px 56px 48px;
  }

  .why__top-cards {
    gap: 32px;
  }

  .why-card__body {
    gap: 20px;
  }

  .why-card__img-box {
    width: 150px;
  }

  .why-card__photo-grid {
    width: 150px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .courses__big-card {
    max-width: 1700px;
    padding: 48px;
  }

  .courses__slogan { max-width: 1700px; }
}

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

  .why__top-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card__body {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px 20px;
  }

  .why-card__points {
    width: 100%;
    flex: unset;
  }

  .why-card__img-box {
    width: 75%;
    max-width: 300px;
  }

  .why-card__photo-grid {
    width: 90%;
    max-width: 420px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .why-team {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-team__right { min-width: unset; width: 100%; }
}

@media (max-width: 1300px) {
  .hero {
    grid-template-columns: 100px 1fr;
  }

  .hero__actions {
    grid-column: 1 / 3;
    justify-self: center;
    margin-top: 28px;
  }

  .hero__cta-btn {
    padding: 15px 40px;
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 60px 1fr;
    padding: 20px;
    gap: 0 16px;
  }

  .hero__actions {
    grid-column: 1 / 3;
    margin-top: 20px;
  }

  .hero__cta-btn {
    padding: 14px 32px;
    font-size: 16px;
  }

  .cards,
  .results__grid { gap: 16px; }

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

@media (max-width: 600px) {

  .cards { gap: 64px; }

  .courses { padding: 8px 12px 32px; }

  .results { padding: 8px 12px 48px; }

  .result-card { padding: 18px 14px 0; }

  .result-card__top {
    flex-direction: column;
    align-items: center;
  }

  .result-card__photo { width: 140px; height: 140px; }

  .result-card .result-card__banner {
    width: calc(100% + 28px);
    margin: 16px -14px 0;
  }

  .join { padding: 40px 16px 48px; gap: 24px; }

  .join__btn { padding: 15px 40px; font-size: 16px; }

  .courses__big-card {
    padding: 16px 10px;
    border-radius: 16px;
  }

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

  .courses__slogan { font-size: 17px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hero__medal { display: none; }
  .hero__content { grid-column: 1; }

  .hero__actions {
    grid-column: 1;
    margin-top: 16px;
    gap: 10px;
  }

  .hero__cta-btn {
    padding: 13px 18px;
    font-size: 14px;
    transform: skewX(-6deg);
    white-space: normal;
    display: block;
    width: 100%;
  }

  .hero__headline { font-size: 24px; letter-spacing: -0.5px; }
  .brand-name { font-size: 17px; }
  .brand-tagline { font-size: 11px; }
  .hero__sub { font-size: 12px; }
  .hero__motto { font-size: 13px; }

  .teachers { padding: 20px 12px 32px; }

  .teachers__heading { margin-bottom: 56px; }
  .cards,
  .results__grid { --cards-inset: 12px; }
  .teacher-card__footer { font-size: 16px; }

  .why { padding: 20px 12px 32px; }

  .why__big-card {
    padding: 16px 10px;
    border-radius: 16px;
  }

  .why__top-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .why-card__body {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 12px 16px;
  }

  .why-card__points { width: 100%; }

  .why-card__img-box {
    width: 100%;
    max-width: 280px;
  }

  .why-card__photo-grid {
    width: 100%;
    max-width: 420px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .why-team {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .why-team__right { min-width: unset; width: 100%; }

  .why-team__figures { gap: 8px; flex-wrap: wrap; justify-content: center; }

  .why-team__btn {
    padding: 12px 16px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }
}
