:root {
  --navy: #262A69;
  --navy-dark: #1E2152;
  --orange: #F39200;
  --orange-light: #FFB547;
  --bg: #F7F8FA;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #EEF0F4;
  --white: #fff;
  --shadow: 0 10px 30px rgba(38, 42, 105, .07);
  --shadow-lg: 0 20px 50px rgba(38, 42, 105, .10);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased
}

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

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

ul {
  list-style: none
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
  border: none;
  cursor: pointer;
  white-space: nowrap
}

.btn-primary {
  background: #262A69;
  color: #fff
}

.btn-primary:hover {
  background: var(--navy-dark)
}

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

.btn-orange:hover {
  background: #d97e00
}

.btn-ghost {
  background: transparent;
  color: #262A69;
  border: 1.5px solid #d8dde8
}

.orange-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 24px 0
}

.btn-ghost:hover {
  background: #f3f5fa
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: #262A69;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: logoFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both
}

.logo:hover {
  transform: scale(1.04)
}

.logo-main {
  font-weight: 800;
  font-size: 24px;
  color: #262A69;
  letter-spacing: .5px;
  transition: color 0.3s
}

.header .logo-main {
  color: #fff
}

.header .logo:hover .logo-main {
  color: var(--orange-light)
}

.logo-sub {
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-top: 3px;
  transition: color 0.3s
}

.logo-light {
  align-items: flex-start
}

.logo-light .logo-main {
  color: #fff
}

.logo-img {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s
}

.logo:hover .logo-img {
  filter: brightness(1.05)
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateX(-16px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.nav {
  display: flex;
  gap: 28px
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
  animation: navItemFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) both
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-link:hover {
  color: #fff
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left
}

.nav-link.active {
  color: #fff;
  font-weight: 600
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left
}

@keyframes navItemFade {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.nav-link:nth-child(1) {
  animation-delay: 0.05s
}

.nav-link:nth-child(2) {
  animation-delay: 0.1s
}

.nav-link:nth-child(3) {
  animation-delay: 0.15s
}

.nav-link:nth-child(4) {
  animation-delay: 0.2s
}

.nav-link:nth-child(5) {
  animation-delay: 0.25s
}

.nav-link:nth-child(6) {
  animation-delay: 0.3s
}

.nav-link:nth-child(7) {
  animation-delay: 0.35s
}

.nav-link:nth-child(8) {
  animation-delay: 0.4s
}

.header-cta {
  animation: navItemFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.45s;
  padding: 11px 22px
}

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 100
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.3s ease, opacity 0.2s ease
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(243, 146, 0, .10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(38, 42, 105, .08), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  padding: 30px 0 80px;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5
}

.orb-a {
  width: 380px;
  height: 380px;
  background: #FFD89C;
  top: -80px;
  right: -60px;
  animation: floatY 9s ease-in-out infinite
}

.orb-b {
  width: 280px;
  height: 280px;
  background: #cdd6ee;
  bottom: -100px;
  left: -40px;
  animation: floatY 11s ease-in-out infinite reverse
}

.orb-c {
  width: 160px;
  height: 160px;
  background: #F39200;
  opacity: .18;
  top: 40%;
  left: 45%;
  animation: floatY 7s ease-in-out infinite
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-26px)
  }
}

.hero-slides-wrap {
  position: relative;
  min-height: 600px
}

.hero-slide {
  position: absolute;
  inset: 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: scale(.985);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .8s;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.22, .61, .36, 1)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  background: rgba(243, 146, 0, .10);
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 24px
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 146, 0, .2)
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.05;
  color: #262A69;
  font-weight: 800;
  letter-spacing: -1.5px
}

.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orange), #ffb547);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-text p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-buttons .btn {
  padding-left: 42px;
  padding-right: 42px;
  justify-content: center
}

.hero-buttons .btn-primary {
  box-shadow: 0 12px 28px rgba(38, 42, 105, .25)
}

/* Reveal stagger */
.hero-slide .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .9s cubic-bezier(.22, .61, .36, 1)
}

.hero-slide.is-active .reveal {
  opacity: 1;
  transform: none
}

.hero-slide.is-active h1 .reveal:nth-child(1) {
  transition-delay: .15s
}

.hero-slide.is-active h1 .reveal:nth-child(2) {
  transition-delay: .30s
}

.hero-slide.is-active p.reveal {
  transition-delay: .45s
}

.hero-slide.is-active .hero-buttons.reveal {
  transition-delay: .60s
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-blob {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 48% 52% 60% 40%/55% 45% 55% 45%;
  background: radial-gradient(circle at 30% 30%, #ffe0b8 0%, #f9c994 50%, #f0a85a 100%);
  z-index: 1;
  animation: morph 12s ease-in-out infinite;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 48% 52% 60% 40%/55% 45% 55% 45%;
    transform: rotate(0)
  }

  50% {
    border-radius: 60% 40% 45% 55%/40% 60% 40% 60%;
    transform: rotate(8deg)
  }
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 460px;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  border-radius: 50%;
  animation: popIn 1s cubic-bezier(.22, .61, .36, 1)
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.9)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1
}

.hero-circle-2 {
  width: 110px;
  height: 110px;
  right: 10px;
  bottom: 90px;
  background: var(--orange);
  opacity: .9
}

.hero-circle-3 {
  width: 54px;
  height: 54px;
  left: 20px;
  top: 60px;
  background: var(--orange-light);
  opacity: .9
}

.hero-badge {
  position: absolute;
  left: -20px;
  bottom: 60px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  max-width: 240px;
  backdrop-filter: blur(10px)
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(243, 146, 0, .4)
}

.hero-badge-icon.orange-soft {
  background: linear-gradient(135deg, var(--orange), #ffb547)
}

.hero-badge-icon svg {
  width: 22px;
  height: 22px
}

.hero-badge-title {
  font-weight: 700;
  color: #262A69;
  font-size: 15px;
  line-height: 1.2
}

.hero-badge-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px
}

.hero-mini-card {
  position: absolute;
  top: 30px;
  right: -10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  max-width: 240px
}

.mini-avatars {
  display: flex
}

.mini-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px
}

.mini-avatars img:first-child {
  margin-left: 0
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #262A69;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mini-icon svg {
  width: 18px;
  height: 18px
}

.mini-title {
  font-size: 13px;
  font-weight: 700;
  color: #262A69;
  line-height: 1.2
}

.mini-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px
}

.float-1 {
  animation: floatBadge 5s ease-in-out infinite
}

.float-2 {
  animation: floatBadge 6.5s ease-in-out infinite reverse
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* Controls */
.hero-controls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  z-index: 5
}

.hero-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #d8dde8;
  background: #fff;
  color: #262A69;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  flex-shrink: 0
}

.hero-nav:hover {
  background: #262A69;
  border-color: #262A69;
  color: #fff;
  transform: scale(1.06)
}

.hero-nav svg {
  width: 20px;
  height: 20px
}

.hero-pagination {
  display: flex;
  gap: 12px;
  flex: 1;
  overflow: hidden
}

.hp-item {
  flex: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 14px 0 0;
  border-top: 2px solid #e3e6ee;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: .3s;
  color: var(--muted)
}

.hp-item .hp-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px
}

.hp-item .hp-label {
  font-size: 14px;
  font-weight: 600;
  color: #262A69
}

.hp-item .hp-bar {
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  overflow: hidden
}

.hp-item .hp-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange)
}

.hp-item.is-active {
  color: #262A69
}

.hp-item.is-active .hp-fill {
  animation: hpFill 6s linear forwards
}

.hero-slider.is-paused .hp-item.is-active .hp-fill {
  animation-play-state: paused
}

@keyframes hpFill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

.hero-counter {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  font-size: 13px;
  font-weight: 700;
  color: #262A69;
  letter-spacing: 3px;
  opacity: .5;
  pointer-events: none
}

.hero-counter #heroCurrent {
  color: var(--orange);
  font-size: 18px
}

.hero-counter .sep {
  margin: 0 6px;
  opacity: .4
}

/* FEATURES */
.features {
  margin-top: -30px;
  position: relative;
  z-index: 5;
  padding-bottom: 60px
}

.features-grid {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg)
}

.feature-card {
  text-align: center;
  padding: 12px
}

.circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFF3E0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

.circle-icon svg {
  width: 28px;
  height: 28px
}

.feature-card h3 {
  font-size: 16px;
  color: #262A69;
  font-weight: 700;
  margin-bottom: 8px
}

.feature-card p {
  font-size: 13px;
  color: var(--muted)
}

/* SECTION */
.section {
  padding: 70px 0;
  background: #fff
}

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

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px
}

.section-head h2 {
  font-size: 34px;
  color: #262A69;
  font-weight: 700
}

.section-foot {
  text-align: center;
  margin-top: 40px
}

/* COURSES */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.course-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: .25s
}

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

.course-image {
  aspect-ratio: 1/.85;
  overflow: hidden
}

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

.course-body {
  padding: 50px 22px 24px;
  text-align: center;
  position: relative
}

.course-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(243, 146, 0, .4)
}

.course-icon svg {
  width: 28px;
  height: 28px
}

.course-body h3 {
  font-size: 18px;
  color: #262A69;
  font-weight: 700;
  margin-bottom: 8px
}

.course-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 38px
}

.link-arrow {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px
}

.link-arrow:hover {
  color: #d97e00
}

/* STATS */
.stats {
  padding: 0
}

.stats-full {
  width: 100%
}

.stats-grid {
  background: #262A69;
  border-radius: 0;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  color: #fff;
  width: 100%;
  min-height: 200px;
  align-items: center
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.stat-icon svg {
  width: 26px;
  height: 26px
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.why-card {
  text-align: center;
  padding: 12px
}

.why-card h3 {
  font-size: 16px;
  color: #262A69;
  font-weight: 700;
  margin: 14px 0 10px
}

.why-card p {
  font-size: 13px;
  color: var(--muted)
}

/* SUCCESS */
.success {
  padding: 70px 0;
  background: var(--bg)
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow)
}

.success-text h2 {
  font-size: 30px;
  color: #262A69;
  font-weight: 700;
  margin: 10px 0 14px;
  line-height: 1.2
}

.success-text p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px
}

.success-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-bottom: 40px
}

.success-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  padding: 15px 0;
  margin: -15px 0
}

.success-track {
  display: flex;
  gap: 18px;
  transition: transform .5s ease
}

.success-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: none;
  box-sizing: border-box
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

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

.success-card h4 {
  font-size: 15px;
  color: #262A69;
  font-weight: 700;
  margin-bottom: 4px
}

.muted {
  color: var(--muted);
  font-size: 12px
}

.success-card p {
  font-size: 12px;
  color: var(--text);
  margin: 10px 0;
  line-height: 1.5
}

.rank {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  display: block;
  border-top: 1px dashed #e5e7eb;
  padding-top: 10px
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 20px;
  color: #262A69;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1
}

.slider-arrow:hover {
  background: #262A69;
  color: #fff;
  border-color: #262A69
}

.dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db
}

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

/* BLOG */
.blog-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 40px
}

.blog-viewport {
  flex: 1;
  overflow: hidden;
  padding: 15px 0;
  margin: -15px 0
}

.blog-track {
  display: flex;
  gap: 20px;
  transition: transform .5s ease
}

.blog-card {
  flex: 0 0 calc((100% - 60px) / 4);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  transition: .2s;
  box-sizing: border-box
}

.blog-card:hover {
  transform: translateY(-3px)
}

.blog-img {
  aspect-ratio: 16/10;
  overflow: hidden
}

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

.blog-body {
  padding: 20px
}

.blog-body h4 {
  font-size: 15px;
  color: #262A69;
  font-weight: 700;
  margin: 8px 0 8px;
  line-height: 1.35;
  min-height: 42px
}

.blog-body p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px
}

.blog-slider .dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  justify-content: center
}

.side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2
}

.side.prev {
  left: -18px
}

.side.next {
  right: -18px
}

/* CTA */
.cta-band {
  padding: 50px 0
}

.cta-inner {
  background: #262A69;
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(243, 146, 0, .15)
}

.cta-inner::before {
  width: 120px;
  height: 120px;
  left: -30px;
  top: -30px
}

.cta-inner::after {
  width: 140px;
  height: 140px;
  right: -40px;
  bottom: -50px
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1
}

.cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center
}

.cta-icon svg {
  width: 24px;
  height: 24px
}

.cta-left h3 {
  font-size: 20px;
  font-weight: 700
}

.cta-left p {
  font-size: 13px;
  opacity: .85
}

/* FOOTER */
.footer {
  background: #262A69;
  color: #cbd2e3;
  padding: 60px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 36px
}

.footer-about {
  font-size: 13px;
  margin: 20px 0;
  line-height: 1.6;
  color: #a8b0c5
}

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

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff
}

.socials a:hover {
  background: var(--orange)
}

.socials svg {
  width: 16px;
  height: 16px
}

.footer h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 700
}

.h5-orange {
  color: var(--orange) !important
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 13px
}

.footer ul li a:hover {
  color: var(--orange)
}

.contact-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5
}

.ci {
  color: var(--orange);
  flex-shrink: 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding: 20px 0;
  font-size: 12px;
  color: #8892ab
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.footer-bottom a:hover {
  color: var(--orange)
}

/* TO TOP */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 17px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center
}

@media (max-width:780px) {
  .to-top {
    width: 36px !important;
    height: 36px !important;
    bottom: 15px !important;
    right: 15px !important;
    font-size: 16px !important
  }
}

.to-top.show {
  opacity: 1;
  visibility: visible
}

/* RESPONSIVE */
@media (max-width:1024px) {
  .nav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #262A69;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
  }

  .nav-link {
    animation: none
  }

  .nav.open .nav-link {
    animation: navItemFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) both
  }

  .hamburger {
    display: flex
  }

  .header-cta {
    display: none
  }

  .features-grid,
  .courses-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .success-cards {
    grid-template-columns: 1fr
  }

  .success-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px
  }

  .success-card {
    flex: 0 0 calc((100% - 18px) / 2)
  }

  .success-text {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 10px
  }

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

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

  .hero-text h1 {
    font-size: 40px
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 30px
  }

  .hero-slides-wrap {
    min-height: 900px
  }

  .hero-counter {
    display: none
  }

  .hp-item .hp-label {
    display: none
  }
}

@media (max-width:640px) {

  .features-grid,
  .courses-grid,
  .why-grid,
  .blog-grid,
  .stats-grid {
    grid-template-columns: 1fr
  }

  .stats-grid {
    padding: 40px 24px;
    gap: 24px
  }

  .stat {
    justify-content: flex-start;
    width: 100%;
    max-width: 240px;
    margin: 0 auto
  }

  .success-grid {
    padding: 30px 16px;
    gap: 24px
  }

  .success-text h2 {
    font-size: 24px
  }

  .success-slider {
    display: block;
    position: relative
  }

  .success-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px
  }

  .success-slider .slider-arrow.prev {
    left: -10px
  }

  .success-slider .slider-arrow.next {
    right: -10px
  }

  .success-viewport {
    width: 100%
  }

  .success-card {
    flex: 0 0 100%
  }

  .hero-text h1 {
    font-size: 32px
  }

  .section-head h2 {
    font-size: 26px
  }

  .cta-inner {
    flex-direction: column;
    text-align: center
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-slides-wrap {
    min-height: 820px
  }

  .hero-blob {
    width: 340px;
    height: 340px
  }

  .hero-mini-card {
    right: 0;
    top: 10px
  }

  .hero-badge {
    left: 0;
    bottom: 20px
  }
}

/* ============= GALLERY ============= */
.gallery-section {
  background: linear-gradient(180deg, #fff 0%, #F7F8FA 100%)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 40px
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  display: block;
  background: #eee;
  box-shadow: var(--shadow)
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 42, 105, 0) 50%, rgba(38, 42, 105, .55) 100%);
  opacity: 0;
  transition: .3s
}

.gal-item:hover::after {
  opacity: 1
}

.gal-item:hover img {
  transform: scale(1.08)
}

.gal-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  opacity: 0;
  transition: .35s;
  z-index: 2;
  pointer-events: none
}

.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1)
}

.gal-lg {
  grid-column: span 2;
  grid-row: span 2
}

.gal-tall {
  grid-row: span 2
}

@media (max-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 12px
  }

  .gal-lg {
    grid-column: span 2;
    grid-row: span 2
  }

  .gal-tall {
    grid-row: span 2
  }
}

@media (max-width:500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px
  }

  .gal-lg {
    grid-column: span 1;
    grid-row: span 1
  }

  .gal-tall {
    grid-row: span 1
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 40, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  backdrop-filter: blur(6px)
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible
}

.lb-figure {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center
}

.lb-stage {
  position: relative;
  width: min(90vw, 1100px);
  height: min(80vh, 720px);
  min-width: 220px;
  min-height: 180px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, .22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transition: width .28s ease, height .28s ease
}

.lb-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
  will-change: transform, clip-path, opacity;
  backface-visibility: hidden
}

.lb-layer.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 1
}

.lb-layer.is-incoming {
  opacity: 1;
  visibility: visible;
  z-index: 2
}

.lb-layer.lb-open-in {
  animation: lbOpenIn .62s cubic-bezier(.22, .61, .36, 1) both
}

.lb-layer.reveal-right {
  animation: lbRevealRight .82s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-left {
  animation: lbRevealLeft .82s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-top {
  animation: lbRevealTop .82s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-bottom {
  animation: lbRevealBottom .82s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-top-right {
  animation: lbRevealTopRight .86s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-top-left {
  animation: lbRevealTopLeft .86s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-bottom-right {
  animation: lbRevealBottomRight .86s cubic-bezier(.77, 0, .18, 1) both
}

.lb-layer.reveal-center {
  animation: lbRevealCenter .86s cubic-bezier(.77, 0, .18, 1) both
}

@keyframes lbOpenIn {
  from {
    opacity: 0;
    transform: scale(1.12);
    clip-path: inset(42% 42% 42% 42% round 18px)
  }

  to {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0 round 0)
  }
}

@keyframes lbRevealRight {
  0% {
    opacity: 1;
    transform: translateX(26px) scale(1.045);
    clip-path: inset(0 0 0 100%)
  }

  72% {
    opacity: 1;
    transform: translateX(0) scale(1.012);
    clip-path: inset(0 0 0 0)
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    clip-path: inset(0 0 0 0)
  }
}

@keyframes lbRevealLeft {
  0% {
    opacity: 1;
    transform: translateX(-26px) scale(1.045);
    clip-path: inset(0 100% 0 0)
  }

  72% {
    opacity: 1;
    transform: translateX(0) scale(1.012);
    clip-path: inset(0 0 0 0)
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    clip-path: inset(0 0 0 0)
  }
}

@keyframes lbRevealTop {
  0% {
    opacity: 1;
    transform: translateY(-26px) scale(1.045);
    clip-path: inset(0 0 100% 0)
  }

  72% {
    opacity: 1;
    transform: translateY(0) scale(1.012);
    clip-path: inset(0 0 0 0)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0)
  }
}

@keyframes lbRevealBottom {
  0% {
    opacity: 1;
    transform: translateY(26px) scale(1.045);
    clip-path: inset(100% 0 0 0)
  }

  72% {
    opacity: 1;
    transform: translateY(0) scale(1.012);
    clip-path: inset(0 0 0 0)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0)
  }
}

@keyframes lbRevealTopRight {
  0% {
    opacity: 1;
    transform: translate(24px, -24px) scale(1.05);
    clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0)
  }

  72% {
    opacity: 1;
    transform: translate(0, 0) scale(1.012);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
}

@keyframes lbRevealTopLeft {
  0% {
    opacity: 1;
    transform: translate(-24px, -24px) scale(1.05);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0)
  }

  72% {
    opacity: 1;
    transform: translate(0, 0) scale(1.012);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
}

@keyframes lbRevealBottomRight {
  0% {
    opacity: 1;
    transform: translate(24px, 24px) scale(1.05);
    clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%)
  }

  72% {
    opacity: 1;
    transform: translate(0, 0) scale(1.012);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
}

@keyframes lbRevealCenter {
  0% {
    opacity: 1;
    transform: scale(1.08);
    clip-path: inset(50% 50% 50% 50% round 16px)
  }

  72% {
    opacity: 1;
    transform: scale(1.012);
    clip-path: inset(0 0 0 0 round 0)
  }

  100% {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0 round 0)
  }
}

.lb-figure figcaption,
.lb-counter {
  transition: opacity .35s ease, transform .35s ease
}

.lb-figure.is-switching figcaption,
.lb-figure.is-switching .lb-counter {
  opacity: 0;
  transform: translateY(8px)
}

.lb-figure figcaption {
  color: #fff;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: center
}

.lb-counter {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  margin-top: 6px;
  letter-spacing: 1px
}

.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  z-index: 2
}

.lb-close:hover,
.lb-nav:hover {
  background: var(--orange)
}

.lb-close {
  top: 24px;
  right: 24px;
  font-size: 30px
}

.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px
}

.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px
}

@media (max-width:600px) {
  .lb-prev {
    left: 10px;
    width: 42px;
    height: 42px
  }

  .lb-next {
    right: 10px;
    width: 42px;
    height: 42px
  }

  .lb-close {
    top: 14px;
    right: 14px
  }
}

body.lb-open {
  overflow: hidden
}

/* ===== Kurslarımız Sayfası ===== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #1b1e4b 0%, #262A69 50%, #1e2152 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.page-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.page-hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35
}

.page-hero-orbs .orb-a {
  width: 380px;
  height: 380px;
  background: #F39200;
  top: -120px;
  right: -80px
}

.page-hero-orbs .orb-b {
  width: 300px;
  height: 300px;
  background: #5b7fd1;
  bottom: -100px;
  left: -60px
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  width: 100%
}

.edu-floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  mask-image: radial-gradient(circle at center, transparent 20%, #000 70%);
  -webkit-mask-image: radial-gradient(circle at center, transparent 20%, #000 70%)
}

.page-hero .eyebrow {
  color: #F39200;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 11px;
  background: rgba(243, 146, 0, 0.12);
  padding: 5px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(243, 146, 0, 0.15)
}

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.5px
}

.page-hero p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6
}

.breadcrumbs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05)
}

.breadcrumbs a {
  color: #FFB547;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s
}

.breadcrumbs a:hover {
  color: #fff;
  text-decoration: none
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.4)
}

.breadcrumbs .current {
  color: #fff;
  font-weight: 600
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: var(--base-opacity, 0.03);
  }

  25% {
    transform: translateY(-12px) rotate(90deg) scale(1.22);
    opacity: 0.12;
  }

  50% {
    transform: translateY(-24px) rotate(180deg) scale(1);
    opacity: var(--base-opacity, 0.03);
  }

  75% {
    transform: translateY(-12px) rotate(270deg) scale(1.22);
    opacity: 0.12;
  }

  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    opacity: var(--base-opacity, 0.03);
  }
}

.section-tight {
  padding: 60px 0 40px
}

.course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px
}

.chip {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #262A69;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease
}

.chip:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.chip.is-active {
  background: #262A69;
  color: #fff;
  border-color: #262A69
}

.courses-detailed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px
}

.course-detailed {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(38, 42, 105, .08);
  border: 1px solid #eef0f5;
  transition: transform .25s ease, box-shadow .25s ease;
  scroll-margin-top: 120px;
}

.course-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(38, 42, 105, .14)
}

.course-detailed.is-highlighted {
  animation: highlightCourse 2.5s ease-out;
}

@keyframes highlightCourse {
  0% {
    box-shadow: 0 0 0 4px var(--orange), 0 10px 30px rgba(255, 102, 0, 0.25);
  }

  100% {
    box-shadow: 0 12px 36px rgba(38, 42, 105, .08);
  }
}

.cd-media {
  position: relative;
  overflow: hidden;
  min-height: 280px
}

.cd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.course-detailed:hover .cd-media img {
  transform: scale(1.06)
}

.cd-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(243, 146, 0, .4)
}

.cd-body {
  padding: 30px 32px;
  display: flex;
  flex-direction: column
}

.cd-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase
}

.cd-body h3 {
  font-size: 24px;
  color: #262A69;
  font-weight: 700;
  margin-bottom: 10px
}

.cd-body>p {
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px
}

.cd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px
}

.cd-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px
}

.ck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(243, 146, 0, .15);
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0
}

.cd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px dashed #e5e7eb;
  border-bottom: 1px dashed #e5e7eb;
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500
}

.cd-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto
}

.why-mini {
  background: #f8fafc
}

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

.why-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eef0f5;
  transition: transform .25s ease, box-shadow .25s ease
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(38, 42, 105, .1)
}

.why-ic {
  font-size: 38px;
  margin-bottom: 12px
}

.why-card h4 {
  color: #262A69;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px
}

.why-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6
}

.cta-band {
  background: linear-gradient(135deg, #262A69 0%, #3b3f8a 100%);
  color: #fff;
  padding: 60px 0
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.cta-band h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px
}

.cta-band p {
  opacity: .85;
  font-size: 15px;
  max-width: 560px
}

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

.btn-orange:hover {
  background: #d97f00
}

@media(max-width:900px) {
  .page-hero h1 {
    font-size: 34px
  }

  .course-detailed {
    grid-template-columns: 1fr
  }

  .cd-media {
    min-height: 220px;
    max-height: 280px
  }

  .cd-features {
    grid-template-columns: 1fr
  }

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

  .cta-band-inner {
    flex-direction: column;
    text-align: center
  }
}

@media(max-width:560px) {
  .page-hero {
    padding: 60px 0 50px
  }

  .page-hero h1 {
    font-size: 28px
  }

  .cd-body {
    padding: 24px 22px
  }

  .why-grid {
    grid-template-columns: 1fr
  }
}

/* ===== HAKKIMIZDA ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-story-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(38, 42, 105, .35)
}

.about-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #F39200;
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 30px -10px rgba(243, 146, 0, .6);
  z-index: 9999;
}

.about-badge .ab-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1
}

.about-badge .ab-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2
}

.about-story-text h2 {
  font-size: 36px;
  color: #262A69;
  margin: 10px 0 18px;
  font-weight: 800;
  line-height: 1.2
}

.about-story-text p {
  color: #5b6280;
  line-height: 1.7;
  margin-bottom: 14px
}

.about-points {
  margin-top: 22px;
  display: grid;
  gap: 10px
}

.about-points .ap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262A69;
  font-weight: 600
}

.about-points .ck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F39200;
  color: #fff;
  font-size: 13px;
  font-weight: 800
}

.section-soft {
  background: #f5f7fb
}

.section-head.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px
}

.section-head h2 {
  font-size: 36px;
  color: #262A69;
  font-weight: 800;
  margin-top: 8px
}

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

.mvv-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px -15px rgba(38, 42, 105, .2);
  transition: transform .25s ease, box-shadow .25s ease;
  border-top: 4px solid #F39200
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(38, 42, 105, .3)
}

.mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #262A69, #3b3f8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px
}

.mvv-card h3 {
  color: #262A69;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px
}

.mvv-card p {
  color: #5b6280;
  line-height: 1.7
}

.director-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: center
}

.director-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(38, 42, 105, .4)
}

.director-photo img {
  width: 100%;
  display: block
}

.director-msg h2 {
  font-size: 30px;
  color: #262A69;
  font-weight: 800;
  margin: 10px 0 16px;
  line-height: 1.3;
  font-style: italic
}

.director-msg p {
  color: #5b6280;
  line-height: 1.8;
  margin-bottom: 20px
}

.director-sign {
  display: flex;
  flex-direction: column;
  border-left: 3px solid #F39200;
  padding-left: 14px
}

.director-sign strong {
  color: #262A69;
  font-size: 17px
}

.director-sign span {
  color: #7a8197;
  font-size: 14px
}

.timeline {
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative
}

.timeline:before {
  content: "";
  position: absolute;
  left: 80px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e3e7f1
}

.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 18px 0;
  position: relative
}

.timeline .t-year {
  font-size: 22px;
  font-weight: 800;
  color: #F39200;
  text-align: right
}

.timeline li:before {
  content: "";
  position: absolute;
  left: 74px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F39200;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #F39200
}

.timeline h4 {
  color: #262A69;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px
}

.timeline p {
  color: #5b6280;
  line-height: 1.6
}

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .mvv-grid {
    grid-template-columns: 1fr
  }

  .director-wrap {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .director-photo {
    max-width: 280px;
    margin: 0 auto
  }

  .timeline:before {
    left: 50px
  }

  .timeline li {
    grid-template-columns: 50px 1fr;
    gap: 20px
  }

  .timeline li:before {
    left: 44px
  }

  .section-head h2,
  .about-story-text h2 {
    font-size: 28px
  }
}

/* ===== HAKKIMIZDA / FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px -15px rgba(38, 42, 105, .18);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden
}

.feature-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #F39200;
  transition: width .35s ease
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -18px rgba(38, 42, 105, .3)
}

.feature-card:hover:before {
  width: 100%
}

.fc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff4e0, #ffe0b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  border: 1px solid #ffd699
}

.feature-card h4 {
  color: #262A69;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px
}

.feature-card p {
  color: #5b6280;
  line-height: 1.65;
  font-size: 15px
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 32px
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(38, 42, 105, .2);
  transition: transform .25s ease, box-shadow .25s ease
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -18px rgba(38, 42, 105, .3)
}

.tc-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eef1f7
}

.tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.team-card:hover .tc-photo img {
  transform: scale(1.05)
}

.tc-socials {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(to top, rgba(38, 42, 105, .85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease
}

.team-card:hover .tc-socials {
  opacity: 1;
  transform: translateY(0)
}

.tc-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F39200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px
}

.tc-socials a:hover {
  background: #fff;
  color: #262A69
}

.tc-body {
  padding: 20px 22px 24px
}

.tc-tag {
  display: inline-block;
  background: #fff4e0;
  color: #F39200;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: .5px;
  text-transform: uppercase
}

.tc-body h3 {
  color: #262A69;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px
}

.tc-body p {
  color: #5b6280;
  line-height: 1.55;
  font-size: 14px
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

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

@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr
  }
}

/* ===== Achievements page ===== */
.ach-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.ach-kpi {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(38, 42, 105, .06);
  transition: transform .25s ease, box-shadow .25s ease
}

.ach-kpi:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(38, 42, 105, .10)
}

.ach-kpi-num {
  font-size: 42px;
  font-weight: 800;
  color: #262A69;
  line-height: 1
}

.ach-kpi-lbl {
  margin-top: 8px;
  color: #5b6478;
  font-weight: 600;
  font-size: 14px
}

.ach-top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.ach-top {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 26px 20px 22px;
  text-align: center;
  border: 1px solid #eef0f6;
  box-shadow: 0 10px 30px rgba(38, 42, 105, .06);
  transition: transform .25s ease, box-shadow .25s ease
}

.ach-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(38, 42, 105, .12)
}

.ach-top-rank {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(243, 146, 0, .45)
}

.ach-top img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto 14px;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(38, 42, 105, .15)
}

.ach-top h3 {
  margin: 0 0 4px;
  color: #262A69;
  font-size: 18px
}

.ach-top-exam {
  color: #5b6478;
  font-size: 13px;
  margin: 0 0 8px
}

.ach-top-result {
  color: var(--orange);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 10px
}

.ach-top-uni {
  display: inline-block;
  background: #f3f5fb;
  color: #262A69;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px
}

.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px
}

.ach-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(38, 42, 105, .05);
  transition: transform .25s ease, box-shadow .25s ease
}

.ach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(38, 42, 105, .10)
}

.ach-card img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0
}

.ach-card-body h4 {
  margin: 0 0 2px;
  color: #262A69;
  font-size: 15px
}

.ach-card-exam {
  margin: 0 0 6px;
  font-size: 12px;
  color: #5b6478
}

.ach-card-uni {
  display: inline-block;
  background: #fff4e1;
  color: #b96d00;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px
}

.uni-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px
}

.uni-strip span {
  background: #fff;
  border: 1px solid #eef0f6;
  color: #262A69;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(38, 42, 105, .04)
}

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

  .ach-top-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

@media (max-width:560px) {

  .ach-top-grid,
  .ach-grid {
    grid-template-columns: 1fr
  }

  .ach-kpi-num {
    font-size: 34px
  }
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

.is-hidden {
  display: none !important;
}

/* ===== ADVANCED FILTERS ===== */
.advanced-filters {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr auto;
  gap: 16px;
  align-items: end;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.advanced-filters input,
.advanced-filters select {
  font-family: inherit;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  color: #262A69;
  transition: border-color 0.2s;
}

.advanced-filters input:focus,
.advanced-filters select:focus {
  border-color: var(--orange);
}

@media (max-width: 900px) {
  .advanced-filters {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 16px;
  }
}