:root {
  --navy: #0b1736;
  --ink: #101b3d;
  --muted: #58627f;
  --soft: #f6f8ff;
  --line: #dce2f2;
  --white: #ffffff;
  --primary: #4e55f4;
  --primary-dark: #3838d8;
  --violet: #7b45e9;
  --green: #48c49b;
  --amber: #f8ab2e;
  --pink: #df55a8;
  --blue: #3678ec;
  --shadow: 0 22px 60px rgba(35, 48, 98, 0.14);
  --soft-shadow: 0 14px 34px rgba(35, 48, 98, 0.1);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - clamp(40px, 8vw, 96px)));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 226, 242, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #766df5 5%, #58c6d6 95%);
  box-shadow: 0 12px 28px rgba(78, 85, 244, 0.24);
}

.brand-word {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #101936;
  font-size: 13px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

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

.nav-link.is-active {
  color: var(--primary);
}

.chevron {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--navy);
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.icon-button:hover {
  background: #f2f4ff;
}

.icon-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  min-height: 38px;
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.course-card:hover,
.path-card:hover,
.trainer-card:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #6245e8);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 25px rgba(78, 85, 244, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(78, 85, 244, 0.32);
}

.button-ghost {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.button-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: #cbd4e8;
}

.button-large {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid #d8def0;
  background: var(--white);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(123, 69, 233, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f7f9ff 100%);
  border-bottom: 1px solid #eef2fb;
}

.hero-grid {
  min-height: 460px;
  padding: 54px 0 50px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
}

.hero-copy {
  padding: 0;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(46px, 4.9vw, 64px);
  line-height: 1.01;
  letter-spacing: 0;
  font-weight: 900;
}

.hero p {
  width: min(520px, 100%);
  margin: 0;
  color: #273251;
  font-size: 16px;
  line-height: 1.58;
}

.hero-benefits {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
}

.benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(220, 226, 242, 0.75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: grid;
  place-items: center;
}

.benefit-icon svg,
.path-icon svg,
.stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon.purple {
  background: #eef0ff;
  color: var(--primary);
}

.benefit-icon.green {
  background: #e9f9f2;
  color: var(--green);
}

.benefit-icon.amber {
  background: #fff4d9;
  color: var(--amber);
}

.benefit strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.22;
}

.benefit span:not(.benefit-icon) {
  display: block;
  color: #55617c;
  font-size: 11px;
  line-height: 1.35;
  margin-top: 4px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-art {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  min-width: 0;
}

.hero-art img {
  width: min(580px, 100%);
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(220, 226, 242, 0.85);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.section {
  padding: 54px 0 0;
}

.section-tight {
  padding-top: 46px;
}

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

.section-heading h2,
.testimonial-card h2,
.faq-card h2,
.cta-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  font-weight: 900;
}

.section-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.course-grid,
.path-grid {
  display: grid;
  gap: 24px;
}

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

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

.course-card,
.path-card,
.trainer-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.course-card:hover,
.path-card:hover,
.trainer-card:hover {
  border-color: #c8d0ee;
  box-shadow: var(--soft-shadow);
}

.course-card:focus-visible,
.path-card:focus-visible,
.trainer-card:focus-visible,
.button:focus-visible,
.icon-button:focus-visible,
.nav-link:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(78, 85, 244, 0.25);
  outline-offset: 3px;
}

.course-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.label.purple {
  background: linear-gradient(135deg, #4e55f4, #8a4ceb);
}

.label.green {
  background: #18b991;
}

.course-body {
  min-height: 156px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}

.course-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.16;
  font-weight: 900;
}

.course-body p {
  margin: 0;
  color: #34415f;
  font-size: 13px;
  line-height: 1.5;
}

.course-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #596786;
  font-size: 11px;
  font-weight: 700;
}

.course-meta span:first-child {
  color: #52607a;
}

.course-meta span:first-child::first-letter {
  color: #f8ae24;
}

.path-card {
  min-height: 206px;
  padding: 20px 16px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(247, 249, 255, 0.8), rgba(255, 255, 255, 0.88)),
    var(--white);
}

.path-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(78, 85, 244, 0.16);
}

.path-icon.violet {
  background: linear-gradient(135deg, #9b80f3, #6146e7);
}

.path-icon.mint {
  background: linear-gradient(135deg, #68d2ad, #33a77e);
}

.path-icon.orange {
  background: linear-gradient(135deg, #ffbb57, #f18a23);
}

.path-icon.pink {
  background: linear-gradient(135deg, #ee73bd, #d93b9b);
}

.path-icon.blue {
  background: linear-gradient(135deg, #67a2ff, #2c66df);
}

.path-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.path-card p {
  margin: 0;
  color: #536180;
  font-size: 12.5px;
  line-height: 1.48;
}

.path-meta {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  color: #596a8b;
  font-size: 11px;
  font-weight: 700;
}

.stats-section {
  padding-top: 54px;
}

.stats-panel {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 26px 34px;
  border-radius: 11px;
  background: linear-gradient(90deg, #f9faff, #f2f5ff);
  border: 1px solid rgba(220, 226, 242, 0.9);
}

.stat {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}

.stat-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  color: var(--primary);
  display: grid;
  place-items: center;
}

.stat-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
  fill: rgba(78, 85, 244, 0.08);
}

.stat strong {
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.stat span:last-child {
  color: #52617f;
  font-size: 12px;
  line-height: 1.3;
}

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

.trainer-card {
  min-height: 170px;
  padding: 18px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.trainer-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #edf1fb;
}

.trainer-card > div {
  min-width: 0;
}

.trainer-card h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.trainer-card p {
  margin: 0 0 10px;
  color: #5c6780;
  font-size: 12px;
  font-weight: 700;
}

.trainer-card span {
  display: inline-block;
  max-width: 100%;
  padding: 4px 6px;
  color: #5361b7;
  background: #f1f2ff;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.social-button {
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 8px;
  border: 0;
  border-radius: 5px;
  background: #ecf3ff;
  color: #2867b2;
  font-size: 10px;
  font-weight: 900;
}

.feedback-section {
  padding: 54px 0 42px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.08fr 0.98fr;
  gap: 20px;
}

.testimonial-card,
.faq-card,
.cta-card {
  min-height: 250px;
  border-radius: var(--radius);
}

.testimonial-card,
.faq-card {
  padding: 24px;
  background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
  border: 1px solid #ecf0fa;
}

.testimonial-card h2,
.faq-card h2 {
  font-size: 20px;
  margin-bottom: 18px;
}

.quote-mark {
  height: 21px;
  color: var(--navy);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.7;
}

.testimonial-card p {
  margin: 12px 0 18px;
  max-width: 300px;
  color: #263554;
  font-size: 14px;
  line-height: 1.55;
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

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

.person strong {
  color: var(--navy);
  font-size: 14px;
}

.person span {
  color: #63708e;
  font-size: 12px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9def4;
}

.dots .active {
  background: var(--primary);
}

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

.faq-question {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #dce2ef;
  border-radius: 6px;
  background: var(--white);
  color: #27314f;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.faq-question span {
  width: 8px;
  height: 8px;
  border-right: 2px solid #2a3552;
  border-bottom: 2px solid #2a3552;
  transform: rotate(45deg);
  transition: transform 150ms ease;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(225deg);
}

.faq-answer {
  margin: -4px 0 4px;
  padding: 12px 14px;
  border: 1px solid #e4e9f5;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  color: #58627f;
  font-size: 12px;
  line-height: 1.45;
  background: var(--white);
}

.cta-card {
  padding: 30px 24px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #4d50ee 0%, #7f36de 100%);
  box-shadow: 0 22px 46px rgba(80, 59, 225, 0.22);
}

.cta-card h2 {
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.cta-card p {
  margin: 14px auto 24px;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.cta-button {
  min-width: 212px;
  min-height: 44px;
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 14px 26px rgba(16, 27, 61, 0.16);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 15% 10%, rgba(78, 85, 244, 0.12), transparent 28%),
    #061934;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.95fr 0.95fr 1.55fr;
  gap: 42px;
  padding: 42px 0 28px;
}

.site-footer h2 {
  margin: 0 0 11px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer p {
  margin: 0 0 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 5px;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #eaf0ff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 900;
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  color: var(--navy);
  border: 0;
  border-radius: 5px;
  background: var(--white);
  font-size: 12px;
}

.newsletter-form input.is-invalid {
  box-shadow: 0 0 0 3px rgba(255, 99, 99, 0.28);
}

.newsletter-form button {
  height: 42px;
  padding: 0 18px;
  color: var(--white);
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #8755f1, #7342dc);
  font-size: 12px;
  font-weight: 900;
}

.newsletter-message {
  grid-column: 1 / -1;
  min-height: 16px;
  color: #dce5ff;
  font-size: 11px;
}

.footer-bottom {
  padding: 16px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 11px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(6, 17, 42, 0.58);
  backdrop-filter: blur(8px);
}

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

.contact-modal {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(4, 13, 35, 0.35);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #eef2ff;
  font-size: 24px;
  line-height: 1;
}

.contact-modal h2 {
  margin: 0 40px 10px 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.16;
  font-weight: 900;
}

.contact-modal p {
  margin: 0 0 22px;
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce2f2;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--navy);
  background: #fbfcff;
  resize: vertical;
}

.contact-status {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 16px;
  }

  .brand {
    min-width: 150px;
  }

  .site-nav {
    gap: 12px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    padding-inline: 14px;
    font-size: 12px;
  }

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

  .hero-grid {
    grid-template-columns: minmax(390px, 0.9fr) minmax(420px, 1.1fr);
  }

  .course-grid,
  .path-grid {
    gap: 16px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .site-nav {
    position: fixed;
    top: 60px;
    right: 0;
    left: auto;
    width: min(320px, 86vw);
    height: calc(100vh - 60px);
    padding: 28px 22px;
    display: none;
    align-content: start;
    justify-content: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e6ebf7;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    box-shadow: -24px 0 50px rgba(17, 27, 61, 0.14);
    transition: transform 200ms ease;
  }

  .menu-open .site-nav {
    display: grid;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    min-height: 48px;
    padding: 0 10px;
    font-size: 15px;
  }

  .nav-link::after {
    bottom: 0;
  }

  .header-actions .button,
  .header-actions .icon-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 44px 0 0;
  }

  .hero h1 {
    font-size: clamp(42px, 9vw, 58px);
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .hero-art {
    margin: 0;
    justify-content: center;
  }

  .hero-art img {
    width: min(700px, 100%);
  }

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

  .trainer-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cta-card {
    grid-column: 1 / -1;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand-word {
    width: 96px;
  }

  .site-nav {
    top: 64px;
    height: calc(100vh - 64px);
  }

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

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

  .hero-benefits {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

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

  .section {
    padding-top: 28px;
  }

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

  .course-grid,
  .path-grid,
  .trainer-grid,
  .feedback-grid,
  .stats-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .course-media {
    height: 160px;
  }

  .stats-panel {
    gap: 18px;
    padding: 22px 18px;
  }

  .trainer-card {
    grid-template-columns: 70px 1fr;
  }

  .cta-card {
    padding: 28px 20px;
  }

  .newsletter {
    grid-column: auto;
  }

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

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

  .footer-grid {
    gap: 24px;
  }

  .contact-modal {
    padding: 26px 20px;
    width: min(100%, 520px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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