@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #0a2540;
  --primary-light: #1a4a6b;
  --accent: #d4af37;
  --accent-light: #f0d78c;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.form-card {
  word-break: break-word;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.section {
  padding: 64px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.overline {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--form {
  background: var(--primary);
  color: white;
  width: 100%;
  justify-content: center;
}

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

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-line:first-child {
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-line:last-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__list a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav__list a:hover {
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

.hero {
  padding: 40px 0 64px;
  background: linear-gradient(135deg, #f6f9fc 0%, #e9f0f5 100%);
}

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

.hero__title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--primary);
}

.feature-badge i {
  color: var(--accent);
}

.hero__form .form-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.form-card__title {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-card__subtitle {
  color: var(--text-light);
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form__checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.form__checkbox label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-course__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-course__image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
}

.about-course__text {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.about-course__list {
  list-style: none;
}

.about-course__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

.about-course__list i {
  color: var(--accent);
}

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

.advantage-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-card__icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.advantage-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.advantage-card__text {
  color: var(--text-light);
}

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

.module-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf2f7;
}

.module-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.module-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.module-card__desc {
  color: var(--text-light);
  margin-bottom: 16px;
}

.module-card__duration {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.modules__extra {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}

.modules__extra-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.modules__extra-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  list-style: none;
}

.modules__extra-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #edf2f7;
}

.modules__extra-list i {
  color: var(--accent);
  font-size: 0.9rem;
}

.modules__extra-note {
  margin-top: 24px;
  text-align: center;
  font-weight: 500;
  color: var(--text-dark);
}

.modules__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  text-align: center;
}

.stat-item__number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-item__label {
  font-size: 1rem;
  color: var(--text-light);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.split-layout:last-child {
  margin-bottom: 0;
}

.split-layout--reverse {
  direction: rtl;
}

.split-layout--reverse .split-layout__text {
  direction: ltr;
}

.split-layout__image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
}

.mission-text {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-top: 16px;
}

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

.instructor-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.instructor-card:hover {
  transform: translateY(-4px);
}

.instructor-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.instructor-card__name {
  font-size: 1.4rem;
  margin: 20px 20px 4px;
  color: var(--primary);
}

.instructor-card__title {
  margin: 0 20px 12px;
  color: var(--accent);
  font-weight: 600;
}

.instructor-card__bio {
  margin: 0 20px 20px;
  color: var(--text-light);
}

.testimonials__swiper {
  padding-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card__rating {
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
}

.testimonial-card__author strong {
  color: var(--primary);
}

.testimonial-card__author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

.pricing__grid {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  width: 100%;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card--featured {
  border-color: var(--accent);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.pricing-card__name {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 24px;
}

.price-old {
  display: block;
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-new {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.pricing-card__features i {
  color: var(--accent);
}

.pricing__footnote {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cta-form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.cta-form__title {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-form__text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.cta-form__contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--primary);
}

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

.faq-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.faq-item__answer {
  color: var(--text-light);
}

.contact-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-details {
  font-style: normal;
  margin: 24px 0;
  line-height: 1.8;
}

.contact-note {
  color: var(--text-light);
}

.contact-map__map {
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.footer {
  background: var(--primary);
  color: #e2e8f0;
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer .logo a {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  color: #ffffff;
}

.footer .logo .logo-text .logo-line {
  color: #ffffff;
}

.footer .logo .logo-text .logo-line:last-child {
  color: var(--accent);
}

.footer__contact p {
  margin-bottom: 8px;
  color: #cbd5e1;
}

.footer__legal-title {
  color: white;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.footer__legal-list {
  list-style: none;
}

.footer__legal-list li {
  margin-bottom: 8px;
}

.footer__legal-list a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer__legal-list a:hover {
  color: var(--accent);
}

.footer__disclaimer-title {
  color: white;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer__disclaimer p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .hero__container,
  .about-course__grid,
  .split-layout,
  .cta-form__wrapper,
  .contact-map__grid {
    grid-template-columns: 1fr;
  }

  .advantages__grid,
  .modules__grid,
  .instructors__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules__extra-list {
    grid-template-columns: 1fr;
  }

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

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

  .nav__list {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-md);
  }

  .nav__list.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .advantages__grid,
  .modules__grid,
  .instructors__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .logo a {
    justify-content: center;
  }

  .footer__legal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__form .form-card {
    padding: 20px;
  }

  .pricing-card {
    padding: 24px;
  }
}
.thanks__container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
}
.thanks__content {
  max-width: 700px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}
.thanks__icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.thanks__title {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--primary);
}
.thanks__message {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.thanks__detail {
  margin-bottom: 32px;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .thanks__content {
    padding: 24px;
  }
  .thanks__title {
    font-size: 2rem;
  }
}
.legal-page {
  padding: 64px 0;
  word-break: break-word;
}
.legal-page__container {
  max-width: 900px;
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.legal-page h1 {
  font-size: 2.8rem;
  margin-bottom: 32px;
  color: var(--primary);
}
.legal-page h2 {
  font-size: 2rem;
  margin: 32px 0 16px;
  color: var(--primary);
}
.legal-page h3 {
  font-size: 1.5rem;
  margin: 24px 0 12px;
}
.legal-page p,
.legal-page li {
  color: var(--text-dark);
  margin-bottom: 16px;
}
.legal-page ul {
  padding-left: 24px;
  margin-bottom: 24px;
}
.legal-page a {
  color: var(--accent);
}
@media (max-width: 768px) {
  .legal-page__container {
    padding: 24px;
  }
}