:root {
  --font-primary: 'Inter', sans-serif;
  --color-background: #12182B;
  --color-primary-accent: #00F5D4;
  --color-secondary-accent: #9B5DE5;
  --color-highlight: #FEE440;
  --color-white: #F0F8FF;
  --color-text-muted: #CBD5E1;
  --color-surface: #1E293B;
  --base-font-size: 16px;
  --transition-speed: 0.4s;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--base-font-size);
  line-height: 1.7;
  color: var(--color-text-muted);
  background-color: var(--color-background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

a {
  text-decoration: none;
  color: var(--color-primary-accent);
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-highlight);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section:last-of-type {
  border-bottom: none;
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn--primary:hover {
  color: var(--color-background);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 245, 212, 0.2);
}

.section__title {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary-accent), var(--color-primary-accent));
  border-radius: 2px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.header--scrolled {
  background-color: rgba(18, 24, 43, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
}

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

.header__logo {
  height: 45px;
  width: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header__nav-link {
  color: var(--color-white);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-speed) ease-in-out;
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header__phone {
  color: var(--color-highlight);
  font-weight: 600;
  border: 1px solid var(--color-highlight);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all var(--transition-speed) ease;
}
.header__phone:hover {
  background-color: var(--color-highlight);
  color: var(--color-background);
}
.header__burger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.header__burger-line {
  width: 28px;
  height: 3px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: all var(--transition-speed) ease;
  border-radius: 3px;
}

.header__burger.is-active .header__burger-line:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
.header__burger.is-active .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger.is-active .header__burger-line:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/1.webp') no-repeat center center/cover;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(18, 24, 43, 0.95), rgba(30, 41, 59, 0.7));
}

.hero__container {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero__title {
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero__title span {
  background: linear-gradient(90deg, var(--color-primary-accent), var(--color-highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 650px;
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero__shape {
  position: absolute;
  background-color: var(--color-primary-accent);
  opacity: 0.1;
  border-radius: 30%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}
.hero__shape--1 { width: 150px; height: 150px; top: 20%; left: 5%; animation-delay: 0s; }
.hero__shape--2 { width: 80px; height: 80px; top: 70%; right: 10%; animation-delay: 2s; background-color: var(--color-secondary-accent); }
.hero__shape--3 { width: 120px; height: 120px; top: 30%; right: 15%; animation-delay: 4s; }


.promo {
  background-color: var(--color-surface);
}

.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.promo__image-wrapper {
  position: relative;
}
.promo__image {
  border-radius: 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  transition: clip-path var(--transition-speed) ease-in-out;
}
.promo__image-wrapper:hover .promo__image {
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
}
.promo__image-wrapper::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 30px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-secondary-accent);
  border-radius: 15px;
  z-index: 1;
  transition: all var(--transition-speed) ease;
}

.promo__content-subtitle {
  color: var(--color-primary-accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.courses {
  background-color: var(--color-background);
}

.course-card {
  background: var(--color-surface);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary-accent);
  box-shadow: 0 20px 40px rgba(0, 245, 212, 0.1);
}

.course-card__icon {
  color: var(--color-primary-accent);
  margin: 0 auto 1.5rem;
  transition: color var(--transition-speed) ease;
}
.course-card:hover .course-card__icon {
  color: var(--color-highlight);
}
.course-card__icon svg {
  width: 50px;
  height: 50px;
}

.course-card__title {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.course-card__description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-card__link {
  font-weight: 600;
  color: var(--color-primary-accent);
}
.swiper-pagination-bullet-active { background-color: var(--color-primary-accent) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--color-primary-accent) !important; }

.features {
  background-color: var(--color-surface);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.feature-item {
  background: var(--color-background);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(0, 245, 212, 0.2),
    transparent 30%
  );
  animation: rotate 6s linear infinite;
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}
.feature-item:hover::before { opacity: 1; }
@keyframes rotate { 100% { transform: rotate(360deg); } }

.feature-item__content {
  position: relative;
  z-index: 2;
  background: var(--color-background);
  padding: 1rem;
  border-radius: 8px;
  height: 100%;
}
.feature-item__icon {
  font-size: 3rem;
  color: var(--color-primary-accent);
  margin-bottom: 1rem;
}
.feature-item__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.testimonials {
  background-color: var(--color-background);
}
.testimonial-card {
  background: linear-gradient(145deg, #1E293B, #171F2E);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
}
.testimonial-card__quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}
.testimonial-card__author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--color-primary-accent);
  margin: 0 auto 1rem;
}

.faq {
    background-color: var(--color-surface);
}
.faq__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq__question {
    font-size: 1.2rem;
    padding: 1.5rem 0;
}
.faq__question::after {
    color: var(--color-primary-accent);
}
.faq__item.is-active .faq__question::after { color: var(--color-highlight); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
.faq__answer p { padding: 0 0 1.5rem 0; }
.faq__item.is-active .faq__answer { max-height: 300px; }

.get-started {
  background: linear-gradient(rgba(18, 24, 43, 0.9), rgba(18, 24, 43, 0.95)), url('images/2.webp') no-repeat center center/cover;
}
.get-started__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  position: relative;
}
.get-started__step {
  position: relative;
}
.get-started__icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-surface);
  border: 3px solid var(--color-secondary-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary-accent);
  position: relative;
  z-index: 1;
  transition: all var(--transition-speed) ease;
}
.get-started__step:hover .get-started__icon-wrapper {
  background-color: var(--color-secondary-accent);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.5);
}
.get-started__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #0d1220;
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  height: 45px;
  margin-bottom: 1.5rem;
}
.footer__col-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}
.footer__list-item { margin-bottom: 0.8rem; }
.footer__link { color: var(--color-text-muted); }
.footer__link:hover { color: var(--color-primary-accent); padding-left: 5px; }
.footer__contact-item {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-text-muted);
}
.footer__copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .promo__grid { grid-template-columns: 1fr; }
  .promo__image-wrapper { margin-bottom: 4rem; }
  .get-started__grid { grid-template-columns: 1fr; gap: 4rem; }
  .get-started__step:not(:last-child)::after {
    width: 2px;
    height: 100%;
    top: 50%;
    left: calc(50% - 1px);
    transform: translateY(50%);
    border-top: none;
    border-left: 2px dashed var(--color-text-muted);
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--color-surface);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-speed) ease-in-out;
  }
  .header__nav.is-active { right: 0; box-shadow: -10px 0 30px rgba(0,0,0,0.3); }
  .header__nav-list { flex-direction: column; text-align: center; }
  .header__burger { display: block; }
  .header__cta-desktop { display: none; }
  .section { padding: 5rem 0; }
}


.page-hero {
  padding: 8rem 0 4rem;
  background-color: var(--color-surface);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.1) 0%, rgba(18, 24, 43, 0) 70%);
  opacity: 0.5;
}
.page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb {
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb a {
  color: var(--color-primary-accent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.team-card {
  background: var(--color-surface);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.team-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(80%);
  transition: filter var(--transition-speed) ease;
}
.team-card:hover .team-card__image {
  filter: grayscale(0%);
}
.team-card__content {
  padding: 1.5rem;
}
.team-card__name {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}
.team-card__role {
  color: var(--color-primary-accent);
  font-weight: 600;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--color-surface);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline__item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline__item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -14px;
  background-color: var(--color-background);
  border: 4px solid var(--color-secondary-accent);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.timeline__item--left {
  left: 0;
}
.timeline__item--right {
  left: 50%;
}
.timeline__item--left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--color-surface);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--color-surface);
}
.timeline__item--right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--color-surface);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--color-surface) transparent transparent;
}
.timeline__item--right::after {
  left: -14px;
}
.timeline__content {
  padding: 20px 30px;
  background-color: var(--color-surface);
  position: relative;
  border-radius: 6px;
}
.timeline__year {
  color: var(--color-highlight);
  font-weight: bold;
}

.tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--color-surface);
  margin-bottom: 2rem;
}
.tabs__button {
  padding: 1rem 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  transition: color var(--transition-speed) ease;
}
.tabs__button::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary-accent);
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}
.tabs__button:hover {
  color: var(--color-white);
}
.tabs__button.is-active {
  color: var(--color-primary-accent);
}
.tabs__button.is-active::after {
  transform: scaleX(1);
}
.tabs__content {
  display: none;
}
.tabs__content.is-active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.course-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.course-overview-card {
    background: var(--color-surface);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.course-overview-card__image {
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.course-overview-card__content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.course-overview-card__title {
    margin-bottom: 1rem;
}
.course-overview-card__description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--color-surface);
    border: 2px solid var(--color-surface);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}
.pricing-card--featured {
    border-color: var(--color-secondary-accent);
    transform: scale(1.05);
}
.pricing-card__plan {
    color: var(--color-primary-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}
.pricing-card__price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.pricing-card__price span {
    font-size: 1rem;
    color: var(--color-text-muted);
}
.pricing-card__features {
    margin: 2rem 0;
}
.pricing-card__feature {
    margin-bottom: 0.8rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    color: var(--color-primary-accent);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.legal-content h3 {
    color: var(--color-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content p, .legal-content li {
    color: var(--color-text-muted);
    line-height: 1.8;
}
.legal-content ul {
    list-style: disc;
    padding-left: 20px;
}

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

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

.centered-block {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.mentor-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.get-started__icon-wrapper--alt {
  border-color: var(--color-primary-accent);
  color: var(--color-primary-accent);
}

.get-started__icon-wrapper--alt:hover {
  background-color: var(--color-primary-accent);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
}

.page-image {
  display: block;
  margin-top: 4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase__image {
  display: block;
  margin: 2rem auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
}


.course-hero {
  padding: 8rem 0;
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}
.course-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.08) 0%, rgba(18, 24, 43, 0) 60%);
  transform: rotate(20deg);
}
.course-hero__container {
  position: relative;
  z-index: 2;
}
.course-hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 800px;
}
.course-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
}
.course-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--color-primary-accent);
  border-radius: 50px;
  color: var(--color-white);
  font-weight: 600;
}

.key-benefits__list {
  list-style: none;
  padding-left: 0;
}
.key-benefits__item {
  font-size: 1.1rem;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}
.key-benefits__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary-accent);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.curriculum-tabs .tabs__nav {
  justify-content: center;
  gap: 1rem;
  border-bottom: 2px solid var(--color-surface);
}
.curriculum-tabs .tabs__button {
  background-color: var(--color-surface);
  border-radius: 10px 10px 0 0;
  border: 2px solid transparent;
  border-bottom: none;
}
.curriculum-tabs .tabs__button.is-active {
  background-color: var(--color-background);
  border-color: var(--color-surface);
  color: var(--color-primary-accent);
}
.curriculum-tabs .tabs__content {
  background-color: var(--color-surface);
  padding: 2.5rem;
  border-radius: 0 0 15px 15px;
}
.curriculum-tabs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.curriculum-tabs__module-title {
  color: var(--color-primary-accent);
  margin-bottom: 1rem;
}
.curriculum-tabs__list {
  list-style: none;
}
.curriculum-tabs__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
}
.curriculum-tabs__list-item::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-primary-accent);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.skill-card {
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid var(--color-secondary-accent);
}
.skill-card__title {
  font-size: 1.3rem;
  color: var(--color-white);
}

.instructor-spotlight {
  background-color: var(--color-surface);
}
.instructor-spotlight__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}
.instructor-spotlight__image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--color-primary-accent);
  box-shadow: 0 0 30px rgba(0, 245, 212, 0.2);
}
.instructor-spotlight__name {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.instructor-spotlight__role {
  color: var(--color-primary-accent);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.instructor-spotlight__quote {
  font-style: italic;
  border-left: 3px solid var(--color-secondary-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.instructor-spotlight__specialties-title {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.instructor-spotlight__specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.instructor-spotlight__specialty {
  background-color: var(--color-background);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}
@media (max-width: 992px) {
  .instructor-spotlight__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .instructor-spotlight__image {
    margin: 0 auto;
  }
}

.course-testimonial {
  border: 2px solid var(--color-surface);
  border-radius: 15px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.course-testimonial__text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
}
.course-testimonial__author-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.course-testimonial__author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-primary-accent);
}
.course-testimonial__author-name {
  font-weight: 700;
  color: var(--color-white);
}

.final-cta {
  background: linear-gradient(45deg, var(--color-secondary-accent), var(--color-primary-accent));
  text-align: center;
  border-radius: 20px;
  padding: 4rem;
}
.final-cta__title {
  color: var(--color-background);
  font-size: 2.5rem;
}
.final-cta__text {
  color: var(--color-background);
  max-width: 600px;
  margin: 1rem auto 2rem;
}
.final-cta__button {
  background-color: var(--color-background);
  color: var(--color-white);
  padding: 1.2rem 3.5rem;
  font-size: 1.1rem;
}
.final-cta__button:hover {
  background-color: var(--color-highlight);
  color: var(--color-background);
  box-shadow: 0 10px 25px rgba(254, 228, 64, 0.3);
}


.process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 74px;
  top: 150px;
  height: calc(100% - 130px);
  width: 2px;
  background: linear-gradient(var(--color-surface), var(--color-secondary-accent), var(--color-surface));
  opacity: 0.5;
}

.process-step__icon {
  width: 150px;
  height: 150px;
  background-color: var(--color-surface);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--color-surface);
}

.process-step__content-number {
  color: var(--color-primary-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}


.svg-spark__note {
  animation: spark-float 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes spark-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-10px) scale(1.1); opacity: 0.8; }
}

.svg-roots__line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 3s ease-out forwards;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.svg-growth__stem {
  transform-origin: bottom center;
  animation: grow-stem 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
.svg-growth__leaf {
  opacity: 0;
  transform-origin: bottom left;
  animation: grow-leaf 1s ease-out 1.5s forwards;
}
@keyframes grow-stem {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes grow-leaf {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.svg-bloom__wave {
  transform-origin: center;
  animation: bloom-wave 3s ease-out infinite;
  opacity: 0;
}
.svg-bloom__wave--2 { animation-delay: 1s; }
.svg-bloom__wave--3 { animation-delay: 2s; }

@keyframes bloom-wave {
  0% { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0; }
}

@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .process-step__icon {
    margin: 0 auto;
  }
  .process-step:not(:last-child)::after {
    left: 50%;
    margin-left: -1px;
    height: 4rem;
    top: auto;
    bottom: -4rem;
  }
  .process-step {
    margin-bottom: 8rem;
  }
  .timeline__item
  {
    padding: 0;
    position: unset;
    width: unset;
  }
  .tabs__nav
  {
    flex-direction: column;
  }
  .timeline::after, .timeline__item::after, .timeline__item--right::before
  {
    display: none;
  }
  .course-overview-grid
  {
    grid-template-columns: 1fr;
  }
}