/* Страницы: трек обучения, СКБ, студенческое общество */

.page-split-hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-split-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 122, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.page-split-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.12), transparent 62%);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.page-hero-grid h1 {
  margin: 0 0 18px;
}

.page-hero-grid .hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 560px;
}

.page-hero-grid .hero-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0;
}

.eyebrow-line {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 122, 26, 0.35);
}

.image-placeholder {
  min-height: 280px;
  border: 1px dashed rgba(255, 122, 26, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 122, 26, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  box-shadow: 0 0 40px rgba(255, 122, 26, 0.06);
}

/* Roadmap — трек обучения */
.roadmap-section {
  padding: 64px 0;
}

.roadmap-section .section-heading {
  margin-bottom: 40px;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.55), transparent);
  z-index: 0;
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.25);
  transition: box-shadow 0.4s ease;
}

.page-track .roadmap-timeline.is-line-glow::before {
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.4);
}

.roadmap-step {
  position: relative;
  z-index: 1;
  padding: 0 16px 8px;
  cursor: default;
  transition: transform 0.25s ease;
}

.roadmap-step.is-active .roadmap-step-card,
.roadmap-step:hover .roadmap-step-card,
.roadmap-step:focus-within .roadmap-step-card {
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 0 36px rgba(255, 122, 26, 0.14), inset 0 0 24px rgba(255, 122, 26, 0.03);
  transform: translateY(-6px);
}

.roadmap-step.is-active .roadmap-step-marker {
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.45);
  border-color: var(--orange);
}

.roadmap-step-marker {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 122, 26, 0.5);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.2);
}

.roadmap-step-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.roadmap-step-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.roadmap-step-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roadmap-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 26, 0.25);
  color: var(--muted);
}

/* Компетенции */
.competency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.competency-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, transform 0.2s;
}

.competency-card:hover {
  border-color: rgba(255, 122, 26, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 26px rgba(255, 122, 26, 0.1);
}

.page-track .competency-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  box-shadow: inset 0 0 20px rgba(255, 122, 26, 0.06);
}

.page-track .competency-card {
  position: relative;
}

.page-track .competency-card:hover::after {
  opacity: 1;
}

.competency-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.competency-card span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* CTA — без тяжёлой заливки */
.page-cta {
  padding: 48px 0 72px;
}

.page-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  position: relative;
}

.page-cta-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), transparent);
  border-radius: var(--radius) 0 0 var(--radius);
}

.page-cta-inner p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* СКБ */
.skb-about {
  padding: 56px 0;
}

.skb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.skb-about-grid h2 {
  font-size: 1.75rem;
  margin: 0 0 16px;
}

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

.direction-pill {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.direction-pill:hover,
.direction-pill.pill-active {
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.12);
  transform: translateY(-3px);
}

.page-skb .direction-pill {
  cursor: default;
}

.project-showcase {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.page-skb .project-row:hover {
  border-color: rgba(255, 122, 26, 0.35);
  box-shadow: 0 0 32px rgba(255, 122, 26, 0.08);
}

.page-skb .image-placeholder {
  box-shadow: 0 0 40px rgba(255, 122, 26, 0.06);
  transition: box-shadow 0.3s ease;
}

.page-skb .project-row:hover .image-placeholder {
  box-shadow: 0 0 48px rgba(255, 122, 26, 0.12);
}

.project-row:last-child {
  margin-bottom: 0;
}

.project-row.reverse .project-copy {
  order: 2;
}

.project-row.reverse .project-visual {
  order: 1;
}

.project-copy h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.project-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 12px;
}

.project-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* Студенческое общество */
.community-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.community-pillar {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.page-community .community-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.38);
  box-shadow: 0 0 30px rgba(255, 122, 26, 0.1);
}

.community-pillar h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

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

.activity-tile {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.activity-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.35);
}

.enterprise-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 8px;
  margin-top: 36px;
  padding: 32px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.flow-node {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 120px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.flow-node.highlight,
.flow-node.flow-lit {
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.14);
}

.page-community .enterprise-flow {
  position: relative;
  overflow: hidden;
}

.page-community .enterprise-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 122, 26, 0.04) 50%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}

.flow-arrow {
  color: var(--orange);
  font-size: 1.25rem;
  opacity: 0.7;
}

.community-hero-visual .image-placeholder {
  min-height: 240px;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.community-link-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 0.2s;
}

.community-link-card:hover {
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.1);
  transform: translateY(-3px);
}

.community-link-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.page-split-hero .image-placeholder {
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.page-track .image-placeholder:hover {
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 0 48px rgba(255, 122, 26, 0.12);
}

.community-link-card h3 {
  margin: 0 0 8px;
}

.community-link-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .page-hero-grid,
  .skb-about-grid,
  .project-row {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .roadmap-timeline::before {
    display: none;
  }

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

  .community-pillars {
    grid-template-columns: 1fr;
  }

  .project-row.reverse .project-copy,
  .project-row.reverse .project-visual {
    order: unset;
  }
}

@media (max-width: 600px) {
  .competency-grid,
  .directions-grid,
  .activity-grid,
  .community-links,
  .dev-grid,
  .env-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* —— Единая страница «Студенческое общество» —— */
.page-student-unified .sc-hero {
  position: relative;
  overflow: hidden;
}

.sc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 122, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 80% at 65% 40%, #000 15%, transparent 72%);
  pointer-events: none;
  animation: sc-grid-drift 24s linear infinite;
}

@keyframes sc-grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@media (prefers-reduced-motion: reduce) {
  .sc-hero-bg {
    animation: none;
  }
}

.sc-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 45%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.1), transparent 65%);
  pointer-events: none;
}

.sc-hero-visual {
  min-height: 260px;
  box-shadow: 0 0 48px rgba(255, 122, 26, 0.08);
}

.sc-section {
  scroll-margin-top: 100px;
}

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

.dev-card {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
  cursor: default;
  overflow: hidden;
}

.dev-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}

.dev-card:hover,
.dev-card:focus-visible,
.dev-card.dev-card-active {
  border-color: rgba(255, 122, 26, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 0 32px rgba(255, 122, 26, 0.12);
}

.dev-card:hover::before,
.dev-card.dev-card-active::before {
  opacity: 1;
}

.dev-card-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.85;
}

.dev-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.dev-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.sc-roadmap-compact .roadmap-step-card {
  padding: 20px 16px;
}

.sc-roadmap-compact .roadmap-step-card p {
  margin: 0;
  font-size: 0.82rem;
}

.sc-growth {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.sc-project-flow {
  margin-bottom: 28px;
}

.sc-projects-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sc-project-chip {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.sc-project-chip:hover {
  border-color: rgba(255, 122, 26, 0.4);
  box-shadow: 0 0 28px rgba(255, 122, 26, 0.1);
}

.sc-project-chip h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.sc-project-chip p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.env-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.env-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.35);
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.09);
}

.env-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.env-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.sc-env-flow {
  margin-top: 8px;
}

.sc-cta-inner {
  justify-content: center;
  padding: 32px;
}

.sc-cta-inner p {
  display: none;
}

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

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

  .sc-projects-mini {
    grid-template-columns: 1fr;
  }
}
/* Hero статистика */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-quote {
  background: rgba(18, 18, 23, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-quote p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: italic;
}

.hero-quote-author {
  font-size: 0.85rem;
  color: var(--muted);
}

/* О студенческом обществе */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-mission {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mission-icon {
  font-size: 2rem;
}

.mission-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.mission-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Направления работы */
.directions-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.direction-category {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.direction-category h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 122, 26, 0.3);
}

.direction-category ul {
  margin: 0;
  padding-left: 20px;
}

.direction-category li {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Организация работы */
.organization-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.org-card {
  flex: 1;
  min-width: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s, border-color 0.25s;
}

.org-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.4);
}

.org-number {
  width: 40px;
  height: 40px;
  background: rgba(255, 122, 26, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.org-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.org-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.org-arrow {
  color: var(--orange);
  font-size: 1.5rem;
  padding: 0 8px;
  display: flex;
  align-items: center;
}

/* Трек обучения */
.track-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.track-step {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s, border-color 0.25s;
}

.track-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.4);
}

.track-step-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.5;
  line-height: 1;
}

.track-step-content h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.track-step-content ul {
  margin: 0;
  padding-left: 18px;
}

.track-step-content li {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.track-note {
  margin-top: 32px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 122, 26, 0.05);
  border-radius: 16px;
  border-left: 3px solid var(--orange);
}

.track-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Проекты */
.projects-full-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-full {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 0.25s, transform 0.25s;
}

.project-full:hover {
  border-color: rgba(255, 122, 26, 0.4);
  transform: translateX(8px);
}

.project-full-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.project-full-content h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.project-full-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Компетенции */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.competency-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.competency-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.4);
}

.competency-item h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.competency-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Предприятия */
.enterprise-connection {
  text-align: center;
}

.enterprise-note {
  margin-top: 32px;
  padding: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

/* CTA */
.cta-content {
  text-align: left;
}

.cta-content h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.cta-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sc-cta-inner {
  justify-content: space-between;
  text-align: left;
}

/* Анимация появления */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Адаптив */
@media (max-width: 1024px) {
  .about-content,
  .track-steps {
    grid-template-columns: 1fr;
  }
  
  .directions-grid-full {
    grid-template-columns: 1fr;
  }
  
  .competencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .organization-flow {
    flex-direction: column;
    gap: 16px;
  }
  
  .org-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 16px;
  }
  
  .hero-stat-number {
    font-size: 1.6rem;
  }
  
  .competencies-grid {
    grid-template-columns: 1fr;
  }
  
  .sc-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content {
    text-align: center;
  }
}
/* Университеты — партнёры (вертикальное расположение) */
.universities-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.university-card {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s, border-color 0.25s;
}

.university-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 122, 26, 0.4);
}

.university-card-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.university-logo {
  max-width: 160px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.25s;
}

.university-card:hover .university-logo {
  filter: brightness(1) contrast(1);
}

.university-info {
  flex: 1;
}

.university-info h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.university-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 768px) {
  .university-card {
    padding: 20px;
  }
  
  .university-card-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .university-logo {
    max-width: 120px;
  }
  
  .university-info h3 {
    font-size: 1rem;
  }
  
  .university-info p {
    font-size: 0.85rem;
  }
}
/* Блок с фото студентов */
.students-photo-block {
  margin: 16px 0 24px;
}

.students-photo {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 0 40px rgba(255, 122, 26, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.students-photo:hover {
  transform: scale(1.01);
  box-shadow: 0 0 56px rgba(255, 122, 26, 0.15);
}


/* Карусель */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 16px 0 24px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 122, 26, 0.1);
}

.carousel-slides {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
}

.carousel-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  font-size: 28px;
  font-weight: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 122, 26, 0.8);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--orange);
}

.dot:hover {
  background: rgba(255, 122, 26, 0.8);
}

@media (max-width: 768px) {
  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .carousel-prev {
    left: 12px;
  }
  
  .carousel-next {
    right: 12px;
  }
  
  .carousel-image {
    max-height: 300px;
  }
}
/* Перспективы развития */
.prospects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.prospect-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, transform 0.2s;
}

.prospect-card:hover {
  border-color: rgba(255, 122, 26, 0.4);
  transform: translateY(-2px);
}

.prospect-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
}

.prospect-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.prospects-data {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.prospects-data p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Адаптив */
@media (max-width: 1024px) {
  .prospects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prospects-grid {
    grid-template-columns: 1fr;
  }
}
/* Траектория развития — блок-схема */
.trajectory-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.trajectory-node {
  flex: 1;
  min-width: 200px;
  background: rgba(18, 18, 23, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.trajectory-node:hover {
  border-color: rgba(255, 122, 26, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(255, 122, 26, 0.12);
}

.trajectory-node.active {
  border-color: var(--orange);
  background: rgba(255, 122, 26, 0.05);
}

.node-marker {
  width: 36px;
  height: 36px;
  background: rgba(255, 122, 26, 0.15);
  border: 1px solid rgba(255, 122, 26, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.trajectory-node:hover .node-marker,
.trajectory-node.active .node-marker {
  background: var(--orange);
  color: white;
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.4);
}

.node-content h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
}

.node-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.trajectory-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.3), rgba(255, 122, 26, 0.8), rgba(255, 122, 26, 0.3));
  margin: 0 -8px;
  align-self: center;
  position: relative;
  z-index: 1;
}

/* Адаптив для траектории */
@media (max-width: 1024px) {
  .trajectory-diagram {
    flex-direction: column;
    gap: 20px;
  }
  
  .trajectory-line {
    width: 2px;
    height: 30px;
    margin: -8px auto;
    background: linear-gradient(180deg, rgba(255, 122, 26, 0.3), rgba(255, 122, 26, 0.8), rgba(255, 122, 26, 0.3));
  }
  
  .trajectory-node {
    width: 100%;
  }
}
/* CTA карточка */
.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 48px 56px;
  border: 1px solid rgba(255, 122, 26, 0.3);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(255, 122, 26, 0.05));
  transition: all 0.3s ease;
}

.cta-card:hover {
  border-color: rgba(255, 122, 26, 0.6);
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.2), rgba(255, 122, 26, 0.08));
}

.cta-text h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
}

.cta-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 480px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-accent {
  background: var(--orange);
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn-accent:hover {
  background: #e05a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.3);
}

@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .cta-text p {
    max-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accent {
    text-align: center;
    width: 100%;
  }
}