/* ====== VARIABLES ====== */
:root {
  --dark: #0e0e18;
  --dark-2: #191928;
  --dark-3: #24243a;
  --accent: #e63946;
  --accent-hover: #c1121f;
  --accent-2: #f4a261;
  --light: #fafaf7;
  --light-2: #f2ede8;
  --light-3: #e8e2da;
  --text: #1a1a2e;
  --text-muted: #6b6b80;
  --text-light: #a0a0b8;
  --font-heading: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ====== UTILITIES ====== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

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

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--light-3);
}

.btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header.scrolled {
  background: rgba(14,14,24,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.nav__link:hover {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-dancer.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,14,24,0.92) 0%,
    rgba(14,14,24,0.6) 50%,
    rgba(14,14,24,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 28px;
}

.hero__tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ====== FOR WHOM ====== */
.for-whom {
  background: var(--light-2);
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.for-whom__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--light-3);
  transition: box-shadow var(--transition), transform var(--transition);
}

.for-whom__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.for-whom__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(230,57,70,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.for-whom__card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.for-whom__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====== ABOUT COURSE ====== */
.about {
  background: var(--light);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text .section-subtitle {
  max-width: 100%;
  margin-bottom: 32px;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about__highlight-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.about__highlight p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.about__highlight strong {
  color: var(--text);
}

/* ====== FORMAT ====== */
.format {
  background: var(--dark);
}

.format__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.format__card {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--dark-3);
  transition: border-color var(--transition);
}

.format__card:hover {
  border-color: rgba(230,57,70,0.4);
}

.format__icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}

.format__card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.format__card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ====== PROGRAM ====== */
.program {
  background: var(--light);
}

.program__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-3);
}

.program__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--light-3);
  transition: background var(--transition);
}

.program__item:last-child {
  border-bottom: none;
}

.program__item:hover {
  background: var(--light-2);
}

.program__number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: rgba(230,57,70,0.15);
  background: var(--light-2);
  border-right: 1px solid var(--light-3);
  padding: 32px 0;
}

.program__body {
  padding: 32px 36px;
}

.program__weeks {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.program__body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.program__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}

/* ====== INSTRUCTOR ====== */
.instructor {
  background: var(--light-2);
}

.instructor__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.instructor__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.instructor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor__text .section-tag {
  margin-bottom: 8px;
}

.instructor__name {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.instructor__title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.instructor__bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.instructor__bio p + p {
  margin-top: 16px;
}

.instructor__stats {
  display: flex;
  gap: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ====== FAQ ====== */
.faq {
  background: var(--light);
}

.faq__list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-3);
}

.faq__item {
  border-bottom: 1px solid var(--light-3);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 24px 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: background var(--transition);
}

.faq__question:hover {
  background: var(--light-2);
}

.faq__question.active {
  background: var(--light-2);
}

.faq__chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 14px;
  color: var(--text-muted);
}

.faq__question.active .faq__chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer.open {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 28px 28px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ====== LEAD FORM ====== */
.lead-form {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lead-form__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lead-form__inner .section-title {
  color: #fff;
}

.lead-form__inner .section-subtitle {
  color: var(--text-light);
  margin: 0 auto 44px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-2);
  border: 1.5px solid var(--dark-3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color var(--transition);
}

.form__input::placeholder {
  color: var(--text-light);
}

.form__input:focus {
  border-color: var(--accent);
}

.form__input.error {
  border-color: var(--accent);
  background: rgba(230,57,70,0.06);
}

.form__error {
  font-size: 12px;
  color: var(--accent);
  display: none;
}

.form__field.has-error .form__error {
  display: block;
}

.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.form__agree input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form__agree-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.form__agree-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__submit {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
}

/* ====== FOOTER ====== */
.footer {
  background: var(--dark-2);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer__logo span {
  color: var(--accent);
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__legal {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid var(--dark-3);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-light);
}

.footer__policies {
  display: flex;
  gap: 24px;
}

.footer__policy-link {
  font-size: 13px;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer__policy-link:hover {
  color: rgba(255,255,255,0.8);
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: none;
  animation: slide-up 0.4s ease;
}

.cookie-banner.visible {
  display: block;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--accent-hover);
}

.cookie-btn--decline {
  background: var(--dark-3);
  color: rgba(255,255,255,0.6);
}

.cookie-btn--decline:hover {
  color: rgba(255,255,255,0.9);
}

/* ====== LEGAL PAGES ====== */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--light);
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  transition: color var(--transition);
}

.legal-page__back:hover {
  color: var(--accent);
}

.legal-page__back::before {
  content: '←';
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-page__date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ====== SUCCESS PAGE ====== */
.success-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-page__inner {
  max-width: 480px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(230,57,70,0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-page__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.success-page__text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ====== MOBILE NAV ====== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(14,14,24,0.98);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.mobile-nav__link:hover {
  color: #fff;
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    aspect-ratio: 16/9;
    max-height: 380px;
  }

  .instructor__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instructor__image {
    aspect-ratio: 16/9;
    max-height: 400px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 32px;
  }

  .footer__nav-title {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav__links {
    display: none;
  }

  .nav .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__title {
    font-size: 44px;
  }

  .program__item {
    grid-template-columns: 56px 1fr;
  }

  .program__number {
    font-size: 22px;
  }

  .program__body {
    padding: 24px 20px;
  }

  .instructor__stats {
    gap: 24px;
  }

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

  .footer__policies {
    gap: 16px;
  }

  .for-whom__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 540px) {
  .for-whom__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
  }

  .instructor__stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }
}
