:root {
  --primary: #7c3d9e;
  --primary-dark: #4d2365;
  --primary-soft: #f6eef9;
  --ink: #20212a;
  --muted: #667085;
  --line: #e9e3ee;
  --surface: #ffffff;
  --soft: #faf8fc;
  --dark: #21162a;
  --dark-2: #2f1d3c;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(36, 20, 50, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.topbar { background: var(--dark); color: rgba(255,255,255,.82); font-size: 14px; }
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; }

.navbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; letter-spacing: -.04em; }
.brand__text { font-size: 18px; }
.nav-menu { display: flex; align-items: center; gap: 22px; color: #373541; font-size: 15px; font-weight: 700; }
.nav-menu a:hover { color: var(--primary); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--primary); color: white !important; padding: 14px 22px; font-weight: 850; box-shadow: 0 16px 36px rgba(124,61,158,.24); }
.btn--small { padding: 10px 16px; font-size: 14px; }
.btn--ghost { background: white; color: var(--primary) !important; border: 1px solid rgba(124,61,158,.25); box-shadow: none; }
.btn--ghost-light { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); box-shadow: none; }

.hero { position: relative; overflow: hidden; padding: 96px 0 88px; background: radial-gradient(circle at 80% 12%, rgba(124,61,158,.22), transparent 28%), linear-gradient(135deg, #fbf8fd 0%, #ffffff 48%, #f4ecf8 100%); }
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--primary); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1,h2,h3,p { margin-top: 0; }
h1 { max-width: 780px; font-size: clamp(42px, 6vw, 74px); line-height: .98; letter-spacing: -.06em; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.2; margin-bottom: 10px; }
.hero__lead { max-width: 680px; color: var(--muted); font-size: 19px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card { padding: 32px; border-radius: 34px; background: rgba(255,255,255,.82); border: 1px solid rgba(124,61,158,.16); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-card__top span { display: block; color: var(--primary); font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.hero-card__top strong { display: block; font-size: 28px; line-height: 1.12; letter-spacing: -.04em; margin: 8px 0 24px; }
.journey { display: grid; gap: 12px; }
.journey div { display: flex; align-items: center; gap: 14px; padding: 15px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line); }
.journey b { color: var(--primary); }

.section { padding: 88px 0; }
.section--soft { background: var(--soft); }
.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading p { color: var(--muted); }
.section-heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading--row { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 24px; }

.triad-grid, .program-grid, .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.triad-card, .program-box, .news-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.triad-card:hover, .program-box:hover, .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.number, .tag { display: inline-flex; margin-bottom: 18px; padding: 7px 12px; border-radius: 999px; background: var(--primary-soft); color: var(--primary); font-size: 13px; font-weight: 900; }
.program-box--featured { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: white; border-color: transparent; }
.program-box--featured p, .program-box--featured li { color: rgba(255,255,255,.75); }
.program-box ul { padding-left: 18px; color: var(--muted); }
.program-box p, .triad-card p, .news-card p { color: var(--muted); }
.program-box--featured .text-link { color: #e6c6f5; }
.text-link { color: var(--primary); font-weight: 900; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.split p { color: var(--muted); }
.activity-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.activity-grid span { min-height: 92px; display: flex; align-items: flex-end; padding: 18px; border-radius: 22px; background: var(--soft); border: 1px solid var(--line); font-weight: 900; }

.academy { background: linear-gradient(135deg, var(--dark), var(--dark-2)); color: white; }
.academy .eyebrow { color: #d8b8e7; }
.academy p { color: rgba(255,255,255,.74); }
.academy__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: center; }
.academy-cards { display: grid; gap: 16px; }
.academy-cards article { padding: 24px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }

.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.impact-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.impact-grid strong { display: block; color: var(--primary); font-size: 30px; }
.impact-grid span { font-weight: 850; }
.news-card time { color: var(--primary); font-size: 13px; font-weight: 900; }

.cta { padding: 76px 0; background: var(--primary-soft); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta h2 { margin-bottom: 10px; }
.cta p { color: var(--muted); margin-bottom: 0; }

.footer { padding: 56px 0; color: rgba(255,255,255,.78); background: #15121a; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 36px; }
.footer h3 { color: white; font-size: 16px; }
.footer a { display: block; margin-bottom: 9px; }
.brand--footer { color: white; margin-bottom: 18px; }

@media (max-width: 940px) {
  .topbar__inner { flex-direction: column; gap: 4px; }
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; left: 20px; right: 20px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow); }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px 8px; }
  .hero { padding: 64px 0; }
  .hero__grid, .split, .academy__grid, .footer__grid { grid-template-columns: 1fr; }
  .triad-grid, .program-grid, .news-grid, .impact-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .section-heading--row, .cta__inner { align-items: flex-start; flex-direction: column; }
}


/* Page templates */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(124,61,158,.18), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #ffffff 52%, #f4ecf8 100%);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.program-summary-card {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.program-summary-card h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.program-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.program-detail-card p {
  color: var(--muted);
}

.program-detail-card--featured {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  border-color: transparent;
}

.program-detail-card--featured p,
.program-detail-card--featured .info-list span {
  color: rgba(255,255,255,.74);
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.info-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.program-detail-card--featured .info-list div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list strong {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 2px;
}

.program-detail-card--featured .info-list strong {
  color: #d8b8e7;
}

.info-list span {
  color: var(--muted);
  font-weight: 750;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 48px 160px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.process-list b {
  color: var(--primary);
  font-size: 18px;
}

.process-list span {
  color: var(--muted);
}

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

.component-grid article,
.values-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.component-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.component-grid p,
.values-grid p {
  color: var(--muted);
}

.values-section {
  background: linear-gradient(135deg, #fff, #faf8fc);
}

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

@media (max-width: 940px) {
  .page-hero__grid,
  .program-detail-grid,
  .component-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Lisans Programı page */
.program-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(124,61,158,.2), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 50%, #f4ecf8 100%);
}

.program-fact-card {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.fact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fact-list div {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.fact-list strong,
.fact-list span {
  display: block;
}

.fact-list strong {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 3px;
}

.fact-list span {
  color: var(--ink);
  font-weight: 800;
}

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

.purpose-grid article {
  padding: 26px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.purpose-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.purpose-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.purpose-grid p {
  color: var(--muted);
}

.process-list--compact div {
  grid-template-columns: 48px 145px 1fr;
}

.application-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(124,61,158,.08), transparent 24%),
    #fff;
}

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

.application-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.application-grid p {
  color: var(--muted);
}

.faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.cta--dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.cta--dark .eyebrow {
  color: #d8b8e7;
}

.cta--dark p {
  color: rgba(255,255,255,.74);
}

@media (max-width: 940px) {
  .purpose-grid,
  .application-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .process-list--compact div {
    grid-template-columns: 1fr;
  }
}


/* Ihtisas Programı page */
.ihtisas-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(124,61,158,.24), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 46%, #f0e6f6 100%);
}

.fact-card--dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  border-color: transparent;
}

.fact-card--dark .fact-list div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.fact-card--dark .fact-list strong {
  color: #d8b8e7;
}

.fact-card--dark .fact-list span {
  color: rgba(255,255,255,.88);
}

.ihtisas-lab {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.ihtisas-lab .eyebrow {
  color: #d8b8e7;
}

.ihtisas-lab p {
  color: rgba(255,255,255,.74);
}


/* Liseliler Akademik Programı page */
.lise-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(124,61,158,.16), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 52%, #f7f1fa 100%);
}

.lise-fact-card {
  background: rgba(255,255,255,.9);
}

.lise-highlight {
  background:
    radial-gradient(circle at 12% 18%, rgba(124,61,158,.16), transparent 28%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.lise-highlight .eyebrow {
  color: #d8b8e7;
}

.lise-highlight p {
  color: rgba(255,255,255,.74);
}


/* Kurum Akademi page */
.akademi-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124,61,158,.22), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 48%, #f1e8f6 100%);
}

.academy-map-card {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.academy-map-card h2 {
  font-size: clamp(27px, 3vw, 40px);
}

.academy-map {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.academy-map span {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 850;
}

.research-list {
  display: grid;
  gap: 14px;
}

.research-list article {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
}

.research-list strong,
.research-list span {
  display: block;
}

.research-list strong {
  color: var(--ink);
  margin-bottom: 5px;
}

.research-list span {
  color: var(--muted);
}

.academy-dark-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.academy-dark-panel .eyebrow {
  color: #d8b8e7;
}

.academy-dark-panel p {
  color: rgba(255,255,255,.74);
}

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

.production-grid article {
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.production-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.production-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.production-grid p {
  color: var(--muted);
}

@media (max-width: 940px) {
  .production-grid {
    grid-template-columns: 1fr;
  }
}


/* Etkinlikler page */
.etkinlik-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124,61,158,.18), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 50%, #f4ecf8 100%);
}

.event-calendar-card {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.event-calendar-card h2 {
  font-size: clamp(27px, 3vw, 40px);
}

.mini-agenda {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-agenda div {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.mini-agenda b,
.mini-agenda span {
  display: block;
}

.mini-agenda b {
  color: var(--primary);
}

.mini-agenda span {
  color: var(--muted);
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-type-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

.event-type-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-type-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.event-type-grid p {
  color: var(--muted);
}

.etkinlik-dark-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.etkinlik-dark-panel .eyebrow {
  color: #d8b8e7;
}

.etkinlik-dark-panel p {
  color: rgba(255,255,255,.74);
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

.event-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.event-list time {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 110px;
  border-radius: 20px;
  background: var(--primary-soft);
  color: var(--primary);
}

.event-list time strong {
  font-size: 38px;
  line-height: 1;
}

.event-list time span {
  font-weight: 900;
}

.event-list p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 940px) {
  .event-type-grid {
    grid-template-columns: 1fr;
  }

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

  .event-list time {
    min-height: auto;
    place-items: start;
    align-content: start;
    padding: 16px;
  }
}


/* Duyurular page */
.duyuru-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124,61,158,.18), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 48%, #f4ecf8 100%);
}

.announcement-featured {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.announcement-featured time,
.announcement-card time {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.announcement-featured h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.announcement-featured p {
  color: var(--muted);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pills a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
}

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

.announcement-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.announcement-card--large {
  grid-column: span 2;
  background:
    radial-gradient(circle at 85% 15%, rgba(124,61,158,.12), transparent 28%),
    white;
}

.announcement-card p {
  color: var(--muted);
}

.duyuru-dark-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.duyuru-dark-panel .eyebrow {
  color: #d8b8e7;
}

.duyuru-dark-panel p {
  color: rgba(255,255,255,.74);
}

@media (max-width: 940px) {
  .announcement-grid {
    grid-template-columns: 1fr;
  }

  .announcement-card--large {
    grid-column: auto;
  }
}


/* Basvuru page */
.basvuru-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124,61,158,.19), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 48%, #f4ecf8 100%);
}

.application-hero-card {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.application-hero-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.application-hero-card p {
  color: var(--muted);
}

.application-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.application-program-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

.application-program-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.application-program-grid p {
  color: var(--muted);
}

.basvuru-dark-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.basvuru-dark-panel .eyebrow {
  color: #d8b8e7;
}

.basvuru-dark-panel p {
  color: rgba(255,255,255,.74);
}

.application-form-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.form-preview {
  padding: 30px;
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin-bottom: 12px;
  padding: 0 16px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.form-row--large {
  min-height: 120px;
  align-items: flex-start;
  padding-top: 8px;
}

.form-notes {
  display: grid;
  gap: 14px;
}

.form-notes article {
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
}

.form-notes p {
  color: var(--muted);
}

@media (max-width: 940px) {
  .application-program-grid,
  .application-form-layout {
    grid-template-columns: 1fr;
  }
}


/* Iletisim page */
.iletisim-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(124,61,158,.17), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 48%, #f4ecf8 100%);
}

.contact-hero-card {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-lines div {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-lines strong,
.contact-lines span {
  display: block;
}

.contact-lines strong {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 3px;
}

.contact-lines span {
  font-weight: 800;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-topic-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-topic-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-topic-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.contact-topic-grid p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-note-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-note-list article {
  padding: 18px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.contact-note-list strong,
.contact-note-list span {
  display: block;
}

.contact-note-list span {
  color: var(--muted);
}

.contact-form-preview {
  padding: 30px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-dark-panel {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.contact-dark-panel .eyebrow {
  color: #d8b8e7;
}

.contact-dark-panel p {
  color: rgba(255,255,255,.74);
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.map-placeholder span {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

@media (max-width: 940px) {
  .contact-topic-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


/* Duyuru detay page */
.detail-hero {
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 82% 16%, rgba(124,61,158,.18), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #fff 48%, #f4ecf8 100%);
}

.detail-hero__inner {
  max-width: 880px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--primary);
  font-weight: 900;
}

.detail-hero time {
  display: block;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 850;
}

.detail-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}

.detail-content {
  font-size: 18px;
}

.detail-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 42px;
}

.detail-content p,
.detail-content li {
  color: var(--muted);
}

.detail-content ul {
  padding-left: 22px;
}

.detail-callout {
  margin: 34px 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--primary-soft);
  border: 1px solid rgba(124,61,158,.18);
}

.detail-callout strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.detail-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.sidebar-card div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.sidebar-card strong,
.sidebar-card span {
  display: block;
}

.sidebar-card strong {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 2px;
}

.sidebar-card span,
.sidebar-card p {
  color: var(--muted);
}

.sidebar-card--soft {
  background: var(--primary-soft);
  border-color: rgba(124,61,158,.18);
}

@media (max-width: 940px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}


/* v2.4 Akademik ihtisas akademisi updates */
.nav-item {
  position: relative;
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 230px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
}

.dropdown-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: block;
}

.academic-journey-section {
  background: linear-gradient(135deg, #fff, #faf8fc);
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.journey-line article {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(36,20,50,.06);
}

.journey-line span,
.year-grid span,
.prestige-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.journey-line p,
.year-grid p,
.prestige-grid p,
.academy-expansion-grid p {
  color: var(--muted);
}

.four-year-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(124,61,158,.1), transparent 24%),
    #fff;
}

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

.year-grid article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}

.year-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ihtisas-prestige {
  background:
    radial-gradient(circle at 88% 14%, rgba(124,61,158,.18), transparent 25%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
}

.ihtisas-prestige .eyebrow {
  color: #d8b8e7;
}

.ihtisas-prestige p {
  color: rgba(255,255,255,.74);
}

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

.prestige-grid article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.academy-expansion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.academy-expansion-grid article {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

@media (max-width: 940px) {
  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
    margin: 0 0 8px;
    background: var(--soft);
  }

  .journey-line,
  .year-grid,
  .prestige-grid,
  .academy-expansion-grid {
    grid-template-columns: 1fr;
  }
}


/* v2.5 temporary visual system */
.hero-visual-stack {
  display: grid;
  gap: 18px;
}

.visual-frame {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
  background: white;
}

.visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual-stack > aside {
  box-shadow: 0 18px 46px rgba(36,20,50,.09);
}

@media (max-width: 940px) {
  .visual-frame {
    border-radius: 22px;
  }
}


/* v2.6 dropdown fix + JPG visual placement */
.has-dropdown {
  padding: 26px 0;
  margin: -26px 0;
}

.dropdown-menu {
  top: calc(100% + 4px);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.hero-visual-stack {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.visual-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(124,61,158,.16);
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-frame--card {
  min-height: 300px;
  aspect-ratio: 1.55 / 1;
}

.visual-frame--wide {
  min-height: 430px;
  aspect-ratio: 1.22 / 1;
}

.page-hero__grid,
.hero__grid {
  align-items: center;
}

.hero-visual-stack > aside {
  box-shadow: 0 18px 46px rgba(36,20,50,.08);
}

@media (max-width: 940px) {
  .has-dropdown {
    padding: 0;
    margin: 0;
  }
  .dropdown-menu::before {
    display: none;
  }
  .visual-frame--card,
  .visual-frame--wide {
    min-height: 220px;
    aspect-ratio: 1.45 / 1;
  }
}

/* Variant A: balanced institutional image card */
.visual-frame--card {
  border-radius: 30px;
}

.hero-visual-stack > aside {
  border-radius: 28px;
}


/* v2.7 Hybrid visual strategy */
.visual-frame--editorial {
  min-height: 430px;
  aspect-ratio: 1.22 / 1;
  border-radius: 42px;
}

.visual-frame--compact {
  min-height: 220px;
  aspect-ratio: 1.8 / 1;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(36,20,50,.08);
}

.hero-visual-stack--homepage .visual-frame--editorial,
.hero-visual-stack--academy .visual-frame--editorial,
.hero-visual-stack--life .visual-frame--editorial {
  position: relative;
}

.hero-visual-stack--homepage > aside,
.hero-visual-stack--academy > aside,
.hero-visual-stack--life > aside {
  margin-top: -34px;
  margin-left: 24px;
  margin-right: 24px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.32);
}

.hero-visual-stack--academy .visual-frame--editorial,
.hero-visual-stack--life .visual-frame--editorial {
  min-height: 460px;
}

.duyuru-hero .visual-frame--compact,
.basvuru-hero .visual-frame--compact,
.iletisim-hero .visual-frame--compact {
  opacity: .92;
}

@media (max-width: 940px) {
  .visual-frame--editorial,
  .visual-frame--compact {
    min-height: 220px;
    aspect-ratio: 1.45 / 1;
    border-radius: 26px;
  }

  .hero-visual-stack--homepage > aside,
  .hero-visual-stack--academy > aside,
  .hero-visual-stack--life > aside {
    margin: 0;
  }
}


/* v2.8 editorial hero + sticky header + back-to-top */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .topbar {
  transition: max-height .25s ease, opacity .25s ease, padding .25s ease;
  overflow: hidden;
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
}

.site-header.is-scrolled .navbar {
  box-shadow: 0 12px 36px rgba(36,20,50,.08);
}

.site-header.is-scrolled .navbar__inner {
  min-height: 62px;
}

.site-header.is-scrolled .brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.navbar__inner,
.brand__mark {
  transition: min-height .25s ease, width .25s ease, height .25s ease, border-radius .25s ease;
}

.hero--editorial {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 84px 0 72px;
}

.hero--editorial .hero__grid {
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
}

.hero--editorial h1 {
  font-size: clamp(48px, 6.6vw, 86px);
  line-height: .94;
  max-width: 820px;
}

.hero--editorial .hero__lead {
  max-width: 680px;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.editorial-meta span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(124,61,158,.08);
  border: 1px solid rgba(124,61,158,.16);
  color: var(--primary);
  font-weight: 850;
  font-size: 13px;
}

.hero-visual-stack--editorial .visual-frame--editorial,
.hero-visual-stack--homepage .visual-frame--editorial {
  min-height: 560px;
  border-radius: 46px;
}

.hero-visual-stack--editorial > aside,
.hero-visual-stack--homepage > aside {
  margin-top: -54px;
  margin-left: 38px;
  margin-right: 38px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 36px rgba(124,61,158,.28);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 940px) {
  .hero--editorial {
    min-height: auto;
    padding: 58px 0 62px;
  }

  .hero--editorial .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero--editorial h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-visual-stack--editorial .visual-frame--editorial,
  .hero-visual-stack--homepage .visual-frame--editorial {
    min-height: 260px;
    border-radius: 28px;
  }

  .hero-visual-stack--editorial > aside,
  .hero-visual-stack--homepage > aside {
    margin: 0;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }
}


/* v2.8 dropdown stability refinement */
.has-dropdown {
  padding: 28px 0;
  margin: -28px 0;
}

.dropdown-menu {
  top: calc(100% + 0px);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

@media (max-width: 940px) {
  .has-dropdown {
    padding: 0;
    margin: 0;
  }
}


/* v2.8.1 homepage hero vertical balance */
.hero--editorial {
  align-items: flex-start;
  padding-top: 54px;
  padding-bottom: 72px;
  min-height: calc(100vh - 84px);
}

.hero--editorial .hero__grid {
  align-items: start;
}

.hero--editorial .hero__content {
  padding-top: 18px;
}

.hero-visual-stack--editorial,
.hero-visual-stack--homepage {
  padding-top: 0;
}

@media (max-width: 940px) {
  .hero--editorial {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .hero--editorial .hero__content {
    padding-top: 0;
  }
}


/* v2.8.2 responsive editorial hero refinement */
.hero--editorial {
  min-height: clamp(680px, calc(100vh - 72px), 920px);
  padding-top: clamp(32px, 5.2vh, 64px);
  padding-bottom: clamp(48px, 7vh, 86px);
  align-items: center;
}

.hero--editorial .hero__grid {
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.hero--editorial .hero__content {
  padding-top: clamp(0px, 1.8vh, 18px);
}

.hero--editorial h1 {
  font-size: clamp(44px, 6.1vw, 82px);
}

.hero--editorial .hero__lead {
  font-size: clamp(17px, 1.35vw, 20px);
}

.hero-visual-stack--editorial .visual-frame--editorial,
.hero-visual-stack--homepage .visual-frame--editorial {
  min-height: clamp(360px, 48vh, 560px);
}

@media (min-width: 1200px) {
  .hero--editorial {
    padding-top: clamp(36px, 5vh, 58px);
  }
}

@media (max-width: 940px) {
  .hero--editorial {
    min-height: auto;
    padding-top: clamp(34px, 7vw, 56px);
    padding-bottom: clamp(44px, 8vw, 64px);
  }

  .hero--editorial .hero__grid {
    gap: 32px;
    align-items: start;
  }

  .hero--editorial h1 {
    font-size: clamp(40px, 11vw, 62px);
  }

  .hero-visual-stack--editorial .visual-frame--editorial,
  .hero-visual-stack--homepage .visual-frame--editorial {
    min-height: clamp(220px, 42vw, 320px);
  }
}

@media (max-width: 520px) {
  .hero--editorial {
    padding-top: 30px;
  }

  .hero--editorial .hero__actions {
    width: 100%;
  }

  .hero--editorial .hero__actions .btn {
    width: 100%;
  }

  .editorial-meta span {
    font-size: 12px;
  }
}


/* v2.8.3 embedded editorial homepage hero */
.hero--embedded {
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, calc(100vh - 72px), 960px);
  padding-top: clamp(38px, 5vh, 62px);
  padding-bottom: clamp(58px, 7vh, 88px);
}

.hero--embedded::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(124,61,158,.18), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.58) 68%, rgba(246,238,249,.72) 100%);
  z-index: 0;
}

.hero--embedded .hero__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.08fr);
  align-items: center;
}

.hero--embedded .hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(18px, 2.2vw, 34px);
  margin-right: clamp(-60px, -5vw, -24px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.66));
  border: 1px solid rgba(124,61,158,.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(36,20,50,.08);
}

.hero--embedded h1 {
  font-size: clamp(46px, 6.3vw, 84px);
}

.hero--embedded .hero__lead {
  max-width: 700px;
}

.hero--embedded .hero-visual-stack--homepage,
.hero--embedded .hero-visual-stack--editorial {
  position: relative;
  z-index: 1;
}

.hero--embedded .visual-frame--embedded {
  min-height: clamp(500px, 62vh, 720px);
  aspect-ratio: 1.08 / 1;
  border-radius: 52px;
  border: 1px solid rgba(124,61,158,.18);
  box-shadow: 0 34px 90px rgba(36,20,50,.18);
  overflow: hidden;
  position: relative;
}

.hero--embedded .visual-frame--embedded::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.08) 46%, rgba(124,61,158,.08) 100%),
    linear-gradient(0deg, rgba(33,22,42,.12), transparent 42%);
  pointer-events: none;
}

.hero--embedded .visual-frame--embedded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero--embedded .hero-visual-stack--homepage > aside,
.hero--embedded .hero-visual-stack--editorial > aside {
  margin-top: -70px;
  margin-left: clamp(34px, 5vw, 70px);
  margin-right: clamp(18px, 3vw, 46px);
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
}

.embedded-quote {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(150px, 18vh, 210px);
  z-index: 4;
  max-width: 360px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(33,22,42,.78);
  color: white;
  box-shadow: 0 24px 60px rgba(36,20,50,.22);
  backdrop-filter: blur(16px);
}

.embedded-quote span {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .hero--embedded .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero--embedded .hero__content {
    margin-right: 0;
  }

  .embedded-quote {
    bottom: 130px;
  }
}

@media (max-width: 940px) {
  .hero--embedded {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .hero--embedded::before {
    background:
      radial-gradient(circle at 80% 18%, rgba(124,61,158,.16), transparent 36%),
      linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,238,249,.72));
  }

  .hero--embedded .hero__content {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero--embedded .visual-frame--embedded {
    min-height: clamp(260px, 54vw, 380px);
    aspect-ratio: 1.45 / 1;
    border-radius: 30px;
  }

  .hero--embedded .hero-visual-stack--homepage > aside,
  .hero--embedded .hero-visual-stack--editorial > aside {
    margin: 0;
  }

  .embedded-quote {
    position: static;
    max-width: none;
    margin-top: -18px;
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 520px) {
  .embedded-quote span {
    font-size: 15px;
  }
}


/* v2.8.4 Option C homepage hero */
.hero--option-c {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vh, 86px) 0 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(124,61,158,.16), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fbf8fd 52%, #f4ecf8 100%);
}

.hero-c__intro {
  max-width: 1040px;
  text-align: left;
}

.hero-c__intro h1 {
  max-width: 960px;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  margin-bottom: 26px;
}

.hero-c__intro .hero__lead {
  max-width: 760px;
  font-size: clamp(18px, 1.45vw, 21px);
}

.hero-c__media-wrap {
  margin-top: clamp(42px, 6vh, 72px);
}

.hero-c__media {
  position: relative;
  height: clamp(360px, 52vh, 620px);
  margin: 0;
  border-radius: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(124,61,158,.18);
  box-shadow: 0 34px 90px rgba(36,20,50,.16);
  background: #fff;
}

.hero-c__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(33,22,42,.22), transparent 42%),
    linear-gradient(90deg, rgba(255,255,255,.22), transparent 45%, rgba(124,61,158,.10));
  pointer-events: none;
}

.hero-c__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-c__model {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px;
  align-items: center;
  margin-top: clamp(-46px, -5vh, -28px);
  padding: clamp(26px, 3vw, 40px);
  border-radius: 34px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: 0 24px 70px rgba(36,20,50,.11);
  backdrop-filter: blur(18px);
}

.hero-c__model-heading h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 0;
}

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

.hero-c__steps article {
  padding: 20px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.hero-c__steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 900;
}

.hero-c__steps h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-c__steps p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.hero--option-c + .intro {
  padding-top: 96px;
}

@media (max-width: 1100px) {
  .hero-c__model {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 940px) {
  .hero--option-c {
    padding-top: 46px;
  }

  .hero-c__intro h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .hero-c__media {
    height: clamp(260px, 48vw, 380px);
    border-radius: 28px;
  }

  .hero-c__model {
    margin-top: 24px;
    padding: 24px;
    border-radius: 28px;
  }

  .hero-c__steps {
    grid-template-columns: 1fr;
  }

  .hero--option-c + .intro {
    padding-top: 72px;
  }
}

@media (max-width: 520px) {
  .hero-c__intro .hero__actions {
    width: 100%;
  }

  .hero-c__intro .hero__actions .btn {
    width: 100%;
  }
}


/* v2.8.5 compact intro + stronger photo/model entry */
.hero--option-c {
  padding-top: clamp(34px, 4.6vh, 58px);
}

.hero-c__intro--compact {
  max-width: 900px;
}

.hero-c__intro--compact h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.hero-c__intro--compact .hero__lead {
  max-width: 740px;
  font-size: clamp(17px, 1.28vw, 20px);
  margin-bottom: 24px;
}

.hero-c__intro--compact .hero__actions {
  margin-top: 0;
}

.hero-c__media-wrap {
  margin-top: clamp(30px, 4.5vh, 54px);
}

.hero-c__media {
  height: clamp(390px, 56vh, 660px);
}

.hero-c__model {
  margin-top: clamp(-54px, -5.8vh, -34px);
}

.hero-c__model-heading h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.hero-c__steps article:nth-child(4) {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  border-color: transparent;
}

.hero-c__steps article:nth-child(4) span {
  color: #d8b8e7;
}

.hero-c__steps article:nth-child(4) p {
  color: rgba(255,255,255,.76);
}

@media (max-width: 940px) {
  .hero-c__intro--compact h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .hero-c__media-wrap {
    margin-top: 32px;
  }

  .hero-c__media {
    height: clamp(260px, 52vw, 390px);
  }

  .hero-c__model {
    margin-top: 22px;
  }
}


/* v2.8.6 homepage proportion refinement */
.hero--option-c .container {
  width: min(1500px, calc(100% - 72px));
}

.hero-c__intro--compact {
  max-width: 1120px;
}

.hero-c__intro--compact h1 {
  max-width: 980px;
}

.hero-c__media-wrap {
  margin-top: clamp(18px, 2.6vh, 34px);
}

.hero-c__media {
  height: clamp(430px, 60vh, 720px);
  border-radius: clamp(30px, 3.6vw, 56px);
}

.hero-c__model {
  margin-top: clamp(-62px, -6.4vh, -42px);
}

@media (min-width: 1500px) {
  .hero--option-c .container {
    width: min(1560px, calc(100% - 96px));
  }
}

@media (max-width: 940px) {
  .hero--option-c .container {
    width: min(100% - 36px, 720px);
  }

  .hero-c__media-wrap {
    margin-top: 28px;
  }

  .hero-c__media {
    height: clamp(280px, 54vw, 420px);
  }

  .hero-c__model {
    margin-top: 22px;
  }
}


/* v2.8.7 unified homepage hero */
.hero--unified {
  padding: clamp(44px, 6vh, 74px) 0 clamp(84px, 9vh, 120px);
  background:
    radial-gradient(circle at 84% 6%, rgba(124,61,158,.16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fbf8fd 52%, #f4ecf8 100%);
  overflow: hidden;
}

.unified-hero {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto;
}

.unified-hero__media {
  height: clamp(430px, 58vh, 680px);
  margin: 0;
  border-radius: clamp(30px, 3.6vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: 0 34px 90px rgba(36,20,50,.16);
  background: #fff;
  position: relative;
}

.unified-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(33,22,42,.18), transparent 44%),
    linear-gradient(90deg, rgba(255,255,255,.15), transparent 46%, rgba(124,61,158,.08));
  pointer-events: none;
}

.unified-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unified-hero__panel {
  position: relative;
  z-index: 2;
  margin: clamp(-80px, -8vh, -56px) auto 0;
  width: min(1420px, calc(100% - 56px));
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(540px, 1.1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(28px, 3.2vw, 46px);
  border-radius: clamp(30px, 3.2vw, 48px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: 0 26px 80px rgba(36,20,50,.12);
  backdrop-filter: blur(18px);
}

.unified-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unified-hero__copy h1 {
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.unified-hero__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
  max-width: 660px;
}

.unified-hero__programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.unified-hero__programs article {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.unified-hero__programs span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 900;
}

.unified-hero__programs h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.unified-hero__programs p {
  color: var(--muted);
  margin: 0;
}

.unified-hero__academy {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  text-decoration: none;
}

.unified-hero__academy span {
  display: block;
  color: #d8b8e7;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.unified-hero__academy strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.unified-hero__academy em {
  color: rgba(255,255,255,.72);
  font-style: normal;
  font-weight: 750;
  text-align: right;
}

.hero--unified + .intro {
  padding-top: clamp(64px, 7vh, 96px);
}

@media (max-width: 1100px) {
  .unified-hero__panel {
    grid-template-columns: 1fr;
  }
  .unified-hero__academy {
    grid-column: auto;
  }
}

@media (max-width: 940px) {
  .hero--unified {
    padding-top: 36px;
  }
  .unified-hero {
    width: min(100% - 36px, 760px);
  }
  .unified-hero__media {
    height: clamp(260px, 54vw, 420px);
    border-radius: 30px;
  }
  .unified-hero__panel {
    width: calc(100% - 20px);
    margin-top: 20px;
    padding: 24px;
    border-radius: 28px;
  }
  .unified-hero__programs {
    grid-template-columns: 1fr;
  }
  .unified-hero__programs article {
    min-height: auto;
  }
  .unified-hero__academy {
    grid-template-columns: 1fr;
  }
  .unified-hero__academy em {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .unified-hero__copy .hero__actions {
    width: 100%;
  }
  .unified-hero__copy .hero__actions .btn {
    width: 100%;
  }
}


/* v2.8.8 viewport-fit unified hero refinement */
.hero--unified {
  padding-top: clamp(26px, 3.6vh, 46px);
  padding-bottom: clamp(70px, 8vh, 104px);
}

.unified-hero__media {
  height: clamp(340px, 44vh, 540px);
}

.unified-hero__panel {
  margin-top: clamp(-118px, -12vh, -86px);
  grid-template-columns: minmax(360px, .92fr) minmax(560px, 1.08fr);
  align-items: start;
}

.unified-hero__copy {
  justify-content: start;
  padding-top: 4px;
}

.unified-hero__copy h1 {
  font-size: clamp(36px, 4.35vw, 60px);
}

.unified-hero__copy p:not(.eyebrow) {
  max-width: 620px;
}

.unified-hero__programs {
  align-items: stretch;
}

.unified-hero__programs article {
  min-height: 150px;
  padding: 20px 20px 18px;
}

.unified-hero__programs span {
  margin-bottom: 14px;
}

.unified-hero__programs h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.unified-hero__programs p {
  font-size: 15px;
  line-height: 1.5;
}

.unified-hero__academy {
  margin-top: -8px;
  padding: 20px 24px;
  min-height: 116px;
}

.unified-hero__academy strong {
  font-size: clamp(22px, 1.8vw, 28px);
}

@media (min-width: 1300px) {
  .unified-hero__panel {
    width: min(1420px, calc(100% - 72px));
  }
}

@media (max-width: 1100px) {
  .unified-hero__panel {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }

  .unified-hero__academy {
    margin-top: 0;
  }
}

@media (max-width: 940px) {
  .hero--unified {
    padding-top: 28px;
  }

  .unified-hero__media {
    height: clamp(240px, 48vw, 360px);
  }

  .unified-hero__panel {
    margin-top: 18px;
  }

  .unified-hero__programs article {
    min-height: auto;
  }
}


/* v2.8.9 final unified hero alignment */
.unified-hero__panel {
  align-items: start;
  gap: clamp(18px, 2.4vw, 34px);
}

.unified-hero__copy h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 14px;
}

.unified-hero__copy p:not(.eyebrow) {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  max-width: 600px;
  margin-bottom: 18px;
}

.unified-hero__copy .hero__actions {
  margin-top: 6px;
}

.unified-hero__programs {
  gap: 12px;
}

.unified-hero__programs article {
  min-height: 132px;
  padding: 18px;
}

.unified-hero__programs span {
  margin-bottom: 10px;
}

.unified-hero__programs h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.unified-hero__programs p {
  font-size: 14.5px;
  line-height: 1.42;
}

.unified-hero__academy {
  margin-top: 12px;
  min-height: 104px;
  padding: 18px 22px;
}

.unified-hero__academy strong {
  font-size: clamp(20px, 1.65vw, 26px);
}

.unified-hero__academy em {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .unified-hero__academy {
    margin-top: 0;
  }
}

@media (max-width: 940px) {
  .unified-hero__copy h1 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .unified-hero__programs article {
    min-height: auto;
  }
}

/* v2.9.0 */
.unified-hero__programs{gap:8px!important;}
.unified-hero__academy{margin-top:2px!important;padding:16px 22px!important;}
.unified-hero__panel{row-gap:8px!important;}


/* v2.9.1 structural academy model alignment */
.unified-hero__model {
  display: grid;
  gap: 12px;
  align-self: start;
}

.unified-hero__panel {
  align-items: start;
}

.unified-hero__programs {
  gap: 12px !important;
}

.unified-hero__programs article {
  min-height: 128px !important;
  padding: 18px !important;
}

.unified-hero__programs span {
  margin-bottom: 8px !important;
}

.unified-hero__programs h3 {
  font-size: 21px !important;
  margin-bottom: 6px !important;
}

.unified-hero__programs p {
  font-size: 14.5px !important;
  line-height: 1.42 !important;
}

.unified-hero__academy {
  grid-column: auto !important;
  margin-top: 0 !important;
  min-height: 0 !important;
  padding: 18px 22px !important;
  border-radius: 22px !important;
}

.unified-hero__academy strong {
  font-size: clamp(20px, 1.65vw, 26px) !important;
}

.unified-hero__academy em {
  font-size: 15px !important;
}

@media (min-width: 1101px) {
  .unified-hero__academy {
    display: grid !important;
    grid-template-columns: .78fr 1.22fr !important;
  }
}

@media (max-width: 940px) {
  .unified-hero__model {
    gap: 12px;
  }
}


/* v2.9.2 panel-up refinement */
.unified-hero__panel {
  margin-top: clamp(-144px, -14vh, -112px) !important;
  padding-top: clamp(24px, 2.6vw, 38px) !important;
  padding-bottom: clamp(24px, 2.6vw, 38px) !important;
}

.unified-hero__media {
  height: clamp(320px, 42vh, 510px) !important;
}

.unified-hero__copy h1 {
  font-size: clamp(32px, 3.75vw, 52px) !important;
}

.unified-hero__copy p:not(.eyebrow) {
  margin-bottom: 14px !important;
}

.unified-hero__copy .hero__actions {
  margin-top: 2px !important;
}

@media (max-width: 1100px) {
  .unified-hero__panel {
    margin-top: 18px !important;
  }
}

@media (max-width: 940px) {
  .unified-hero__media {
    height: clamp(230px, 46vw, 340px) !important;
  }
}


/* v2.9.3 minimal premium geometric hero */
.hero--minimal {
  min-height: clamp(560px, calc(100vh - 96px), 760px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vh, 96px) 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.58) 62%, rgba(255,255,255,.18) 100%),
    url("../img/hero-premium-geometric.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.minimal-hero {
  width: min(1280px, calc(100% - 72px));
}

.minimal-hero__content {
  max-width: 760px;
}

.minimal-hero__content h1 {
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: .96;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}

.minimal-hero__content .hero__lead {
  max-width: 680px;
  font-size: clamp(18px, 1.35vw, 21px);
}

.model-strip {
  padding-top: clamp(54px, 7vh, 86px);
  padding-bottom: clamp(54px, 7vh, 86px);
  background: #fff;
}

.model-strip__heading {
  margin-bottom: 24px;
}

.model-strip__heading h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0;
}

.model-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.model-strip__grid article {
  padding: 24px;
  border-radius: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  min-height: 180px;
}

.model-strip__grid article span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.model-strip__grid article h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.model-strip__grid article p {
  color: var(--muted);
  margin: 0;
}

.model-strip__academy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  text-decoration: none;
}

.model-strip__academy span {
  color: #d8b8e7;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.model-strip__academy strong {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.model-strip__academy em {
  color: rgba(255,255,255,.72);
  font-style: normal;
  font-weight: 750;
  text-align: right;
}

@media (max-width: 940px) {
  .hero--minimal {
    min-height: auto;
    padding: 56px 0;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
      url("../img/hero-premium-geometric.png") center / cover no-repeat;
  }

  .minimal-hero {
    width: min(100% - 36px, 720px);
  }

  .model-strip__grid {
    grid-template-columns: 1fr;
  }

  .model-strip__academy {
    grid-template-columns: 1fr;
  }

  .model-strip__academy em {
    text-align: left;
  }
}


/* v3-step1 index-only menu/logo test */
.brand--logo {
  gap: 12px;
}

.brand--logo img {
  display: block;
  width: auto;
  height: 46px;
  max-width: 180px;
  object-fit: contain;
}

.nav-cta {
  box-shadow: 0 12px 28px rgba(124,61,158,.20);
}

.nav-menu > .has-dropdown > .nav-cta::after {
  content: " ▾";
  font-size: 12px;
}

.nav-obs-link {
  font-weight: 850;
  opacity: .78;
}

.dropdown-menu--right {
  left: auto;
  right: 0;
}

@media (max-width: 940px) {
  .brand--logo img {
    height: 40px;
    max-width: 150px;
  }
}


/* v3-step3 hakkimizda page */
.about-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 48%, rgba(255,255,255,.68) 100%),
    url("../img/hero-premium-geometric.png") center / cover no-repeat;
}

.about-hero-card {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(124,61,158,.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.about-hero-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.about-hero-card p {
  color: var(--muted);
}

.about-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.about-intro__text {
  font-size: 18px;
  color: var(--muted);
}

.about-intro__text p + p {
  margin-top: 18px;
}

.about-model .journey-line {
  margin-top: 20px;
}

@media (max-width: 940px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
}


/* v3-step4 application page */
.application-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 54%, rgba(255,255,255,.66) 100%),
    url("../img/hero-premium-geometric.png") center / cover no-repeat;
}

.application-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.application-choice {
  display: block;
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(36,20,50,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.application-choice:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.application-choice span {
  color: var(--primary);
  font-weight: 900;
}

.application-choice h3 {
  font-size: 25px;
  margin-top: 16px;
}

.application-choice p {
  color: var(--muted);
}

.application-programs .container {
  display: grid;
  gap: 22px;
}

.application-program-card {
  display: grid;
  grid-template-columns: .9fr 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(36,20,50,.06);
  scroll-margin-top: 120px;
}

.application-program-card p {
  color: var(--muted);
}

.application-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.application-info-grid div {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.application-info-grid strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.application-info-grid p {
  margin: 0;
  font-size: 14px;
}

.application-program-card--dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: white;
  border-color: transparent;
}

.application-program-card--dark p,
.application-program-card--dark .application-info-grid p {
  color: rgba(255,255,255,.76);
}

.application-program-card--dark .application-info-grid div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.application-program-card--dark .application-info-grid strong {
  color: #d8b8e7;
}

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

.process-steps article {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

.process-steps span {
  color: var(--primary);
  font-weight: 900;
}

.process-steps p,
.faq-list p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .application-program-card {
    grid-template-columns: 1fr;
  }

  .application-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .application-choice-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
}


/* v3-step5 corporate page */
.corporate-hero{background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.86) 54%,rgba(255,255,255,.66) 100%),url("../img/hero-premium-geometric.png") center/cover no-repeat;}
.corporate-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:46px;align-items:start;}
.corporate-nav{position:sticky;top:110px;display:grid;gap:8px;padding:18px;border-radius:24px;background:#fff;border:1px solid var(--line);box-shadow:0 14px 40px rgba(36,20,50,.06);}
.corporate-nav span{color:var(--primary);font-weight:950;margin-bottom:8px;}
.corporate-nav a{padding:11px 13px;border-radius:14px;color:var(--muted);font-weight:850;text-decoration:none;}
.corporate-nav a:hover{background:var(--primary-soft);color:var(--primary);}
.corporate-content{display:grid;gap:28px;}
.corporate-section{scroll-margin-top:120px;padding:clamp(30px,4vw,52px);border-radius:32px;background:#fff;border:1px solid var(--line);box-shadow:0 14px 40px rgba(36,20,50,.05);}
.corporate-section h2{font-size:clamp(32px,4vw,54px);line-height:1;letter-spacing:-.045em;}
.corporate-section p{color:var(--muted);font-size:17px;}
.corporate-mini-grid,.download-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:24px;}
.corporate-mini-grid article,.download-card,.bulletin-list article{padding:20px;border-radius:22px;background:var(--soft);border:1px solid var(--line);}
.video-placeholder{display:grid;place-items:center;min-height:320px;padding:30px;text-align:center;border-radius:28px;background:linear-gradient(135deg,var(--dark),var(--dark-2));color:#fff;margin-top:22px;}
.video-placeholder span{font-size:clamp(28px,4vw,46px);font-weight:950;}
.video-placeholder p{color:rgba(255,255,255,.74);}
.download-card{display:grid;gap:8px;color:inherit;text-decoration:none;}
.download-card span{color:var(--primary);font-weight:950;}
.download-card em,.bulletin-list a{color:var(--muted);font-style:normal;font-weight:800;}
.bulletin-list{display:grid;gap:14px;margin-top:22px;}
.bulletin-list time{color:var(--primary);font-weight:950;}
@media(max-width:940px){.corporate-layout{grid-template-columns:1fr}.corporate-nav{position:static}.corporate-mini-grid,.download-grid{grid-template-columns:1fr}}


/* v3-step6 activities page */
.activities-hero{background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.86) 54%,rgba(255,255,255,.66) 100%),url("../img/hero-premium-geometric.png") center/cover no-repeat;}
.activities-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:46px;align-items:start;}
.activities-nav{position:sticky;top:110px;display:grid;gap:8px;padding:18px;border-radius:24px;background:#fff;border:1px solid var(--line);box-shadow:0 14px 40px rgba(36,20,50,.06);}
.activities-nav span{color:var(--primary);font-weight:950;margin-bottom:8px;}
.activities-nav a{padding:11px 13px;border-radius:14px;color:var(--muted);font-weight:850;text-decoration:none;}
.activities-nav a:hover{background:var(--primary-soft);color:var(--primary);}
.activities-content{display:grid;gap:28px;}
.activities-section{scroll-margin-top:120px;padding:clamp(30px,4vw,52px);border-radius:32px;background:#fff;border:1px solid var(--line);box-shadow:0 14px 40px rgba(36,20,50,.05);}
.activities-section h2{font-size:clamp(32px,4vw,54px);line-height:1;letter-spacing:-.045em;}
.activity-list{display:grid;gap:14px;margin-top:24px;}
.activity-list article,.activity-card-grid article{padding:22px;border-radius:24px;background:var(--soft);border:1px solid var(--line);}
.activity-list time,.activity-card-grid span{display:inline-block;color:var(--primary);font-weight:950;margin-bottom:8px;}
.activity-list p,.activity-card-grid p{color:var(--muted);}
.activity-list a{font-weight:900;color:var(--primary);text-decoration:none;}
.activity-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:24px;}
@media(max-width:940px){.activities-layout{grid-template-columns:1fr}.activities-nav{position:static}.activity-card-grid{grid-template-columns:1fr}}


/* v3-step7 final menu alignment */
.nav-cta {
  box-shadow: 0 12px 28px rgba(124,61,158,.20);
}

.nav-menu > .has-dropdown > .nav-cta::after {
  content: " ▾";
  font-size: 12px;
}

.dropdown-menu--right {
  left: auto;
  right: 0;
}


/* v3-step8 application page refinement */
.application-selector--lead {
  padding-top: clamp(54px, 7vh, 86px);
  padding-bottom: clamp(54px, 7vh, 86px);
  background:
    linear-gradient(135deg, rgba(124,61,158,.08), rgba(255,255,255,.96) 52%, rgba(124,61,158,.06)),
    #fbf8fd;
  border-bottom: 1px solid var(--line);
}

.application-selector--lead .section-heading {
  margin-bottom: 28px;
}

.application-selector--lead .section-heading h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.application-choice-grid {
  align-items: stretch;
}

.application-choice {
  min-height: 230px;
}

.application-choice span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124,61,158,.10);
  color: var(--primary);
}

.application-choice h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.application-choice:nth-child(1) {
  border-top: 4px solid rgba(124,61,158,.28);
}

.application-choice:nth-child(2) {
  border-top: 4px solid rgba(124,61,158,.42);
}

.application-choice:nth-child(3) {
  border-top: 4px solid rgba(124,61,158,.56);
}

.application-program-card {
  grid-template-columns: .85fr 1.25fr auto;
}

.application-program-card--summer {
  background: white;
  color: inherit;
  border-color: var(--line);
}

.application-program-card--summer p,
.application-program-card--summer .application-info-grid p {
  color: var(--muted);
}

.application-program-card--summer .application-info-grid div {
  background: var(--soft);
  border-color: var(--line);
}

.application-program-card--summer .application-info-grid strong {
  color: var(--primary);
}

.application-program-card--summer .tag {
  background: rgba(124,61,158,.10);
  color: var(--primary);
}

@media (max-width: 1100px) {
  .application-program-card {
    grid-template-columns: 1fr;
  }
}

/* Sprint 1B — Premium üst bar rötuşları */
.topbar__inner {
  min-height: 44px;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__social a {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition:
    transform .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.topbar__social a::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: box-shadow .22s ease;
}

.topbar__social a:hover,
.topbar__social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .44);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, .13),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

.topbar__social a:hover::after,
.topbar__social a:focus-visible::after {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .06);
}

.topbar__social a:focus-visible,
.topbar__obs:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .82);
  outline-offset: 3px;
}

.topbar__social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.topbar__social a:nth-child(2) svg {
  width: 15px;
  height: 15px;
}

.topbar__social a:nth-child(3) svg {
  width: 16px;
  height: 16px;
}

.topbar__obs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 17px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, .055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 4px 14px rgba(0, 0, 0, .08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1;
  text-decoration: none;
  transition:
    transform .22s ease,
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.topbar__obs:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
  color: #7c3d9e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.topbar__obs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  opacity: .82;
  transition: transform .22s ease;
}

.topbar__obs:hover .topbar__obs-icon {
  transform: translate(1px, -1px);
}

@media (max-width: 720px) {
  .topbar__inner {
    min-height: 42px;
  }

  .topbar__social {
    gap: 6px;
  }

  .topbar__social a {
    width: 30px;
    height: 30px;
  }

  .topbar__obs {
    min-height: 32px;
    padding: 6px 14px;
  }
}

@media (max-width: 420px) {
  .topbar__social a {
    width: 28px;
    height: 28px;
  }

  .topbar__obs {
    padding-inline: 12px;
    font-size: 12px;
  }

  .topbar__obs-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__social a,
  .topbar__social a::after,
  .topbar__obs,
  .topbar__obs-icon {
    transition: none;
  }
}

/* Sprint 2 — Ana sayfa bölüm sırası ve Kurum International */
.academy--international {
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 61, 158, .14), transparent 32%),
    linear-gradient(135deg, #f6eff9 0%, #ffffff 48%, #eee3f4 100%);
  color: var(--dark);
  border-top: 1px solid rgba(124, 61, 158, .10);
  border-bottom: 1px solid rgba(124, 61, 158, .10);
}

.academy--international .eyebrow {
  color: var(--primary);
}

.academy--international p {
  color: var(--muted);
}

.academy--international .academy-cards article {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(124, 61, 158, .15);
  box-shadow: 0 14px 34px rgba(50, 28, 65, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.academy--international .academy-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 61, 158, .28);
  box-shadow: 0 18px 42px rgba(50, 28, 65, .12);
}

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

.btn--international:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .academy--international .academy-cards article,
  .btn--international {
    transition: none;
  }
}

/* Sprint3 active nav placeholder */
.corporate-nav a.active{color:var(--primary);font-weight:700;border-left:3px solid var(--primary);padding-left:10px;}

/* Sprint 3B — Kurumsal sayfa aktif bölüm navigasyonu */
[data-section-nav] a {
  position: relative;
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    transform .22s ease;
}

[data-section-nav] a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--primary, #7c3d9e);
  transform: translateY(-50%);
  transition: height .22s ease;
}

[data-section-nav] a.active {
  color: var(--primary, #7c3d9e);
  background: rgba(124, 61, 158, .08);
  border-color: rgba(124, 61, 158, .18);
  transform: translateX(2px);
}

[data-section-nav] a.active::before {
  height: 60%;
}

[data-section-nav] a:focus-visible {
  outline: 2px solid rgba(124, 61, 158, .45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  [data-section-nav] a,
  [data-section-nav] a::before {
    transition: none;
  }
}

/* Sprint 4 — Programlar sayfası sadeleştirme ve rötuş */
.page-programs main > section:first-of-type {
  padding-top: clamp(28px, 3vw, 44px);
}

.page-programs main > section + section {
  scroll-margin-top: 96px;
}

.page-programs .program-card,
.page-programs .component-card,
.page-programs .approach-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.page-programs .program-card:hover,
.page-programs .component-card:hover,
.page-programs .approach-card:hover {
  transform: translateY(-3px);
}

@media (max-width: 720px) {
  .page-programs main > section:first-of-type {
    padding-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-programs .program-card,
  .page-programs .component-card,
  .page-programs .approach-card {
    transition: none;
  }
}

/* Sprint 5 — Lisans Programı sadeleştirme */
.page-lisans .lisans-intro {
  padding-top: clamp(30px, 3.5vw, 50px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.page-lisans .lisans-intro .page-hero__grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(28px, 4vw, 64px);
}

.page-lisans .lisans-intro .hero__lead {
  max-width: 760px;
}

.page-lisans .lisans-intro .hero-summary-stack {
  display: block;
}

.page-lisans .lisans-intro .program-fact-card {
  margin: 0;
}

@media (max-width: 900px) {
  .page-lisans .lisans-intro .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-lisans .lisans-intro .program-fact-card {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .page-lisans .lisans-intro {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}

/* Sprint 6 — İhtisas Programı sadeleştirme */
.page-ihtisas .ihtisas-intro {
  padding-top: clamp(30px, 3.5vw, 50px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.page-ihtisas .ihtisas-intro .page-hero__grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(28px, 4vw, 64px);
}

.page-ihtisas .ihtisas-intro .hero__lead {
  max-width: 760px;
}

.page-ihtisas .ihtisas-intro .hero-summary-stack {
  display: block;
}

.page-ihtisas .ihtisas-intro .program-fact-card {
  margin: 0;
}

.page-ihtisas main > section + section {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  .page-ihtisas .ihtisas-intro .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-ihtisas .ihtisas-intro .program-fact-card {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .page-ihtisas .ihtisas-intro {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}

/* Sprint 7 — Liseliler Programı sadeleştirme */
.page-liseliler .liseliler-intro {
  padding-top: clamp(30px, 3.5vw, 50px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.page-liseliler .liseliler-intro .page-hero__grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(28px, 4vw, 64px);
}

.page-liseliler .liseliler-intro .hero__lead {
  max-width: 760px;
}

.page-liseliler .liseliler-intro .hero-summary-stack {
  display: block;
}

.page-liseliler .liseliler-intro .program-fact-card {
  margin: 0;
}

.page-liseliler main > section + section {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  .page-liseliler .liseliler-intro .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-liseliler .liseliler-intro .program-fact-card {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .page-liseliler .liseliler-intro {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}

/* Sprint 8 — Kurum Akademi sadeleştirme */
.page-kurum-akademi .kurum-akademi-intro {
  padding-top: clamp(6px, 1vw, 14px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.page-kurum-akademi .kurum-akademi-intro .page-hero__grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(28px, 4vw, 64px);
}

.page-kurum-akademi .kurum-akademi-intro .hero__lead {
  max-width: 760px;
}

.page-kurum-akademi .kurum-akademi-intro .hero-summary-stack {
  display: block;
}

.page-kurum-akademi .kurum-akademi-intro .academy-map-card {
  margin: 0;
}

.page-kurum-akademi main > section + section {
  scroll-margin-top: 96px;
}

.page-kurum-akademi .triad-grid > article,
.page-kurum-akademi .academy-expansion-grid > article,
.page-kurum-akademi .academy-cards > article,
.page-kurum-akademi .production-grid > article,
.page-kurum-akademi .values-grid > article {
  height: 100%;
}

@media (max-width: 900px) {
  .page-kurum-akademi .kurum-akademi-intro .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-kurum-akademi .kurum-akademi-intro .academy-map-card {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .page-kurum-akademi .kurum-akademi-intro {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .page-kurum-akademi .kurum-akademi-intro .academy-map {
    grid-template-columns: 1fr;
  }
}

/* Sprint 9 — Kurum International */
.page-international .international-intro {
  padding-top: clamp(6px, 1vw, 14px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.page-international .international-intro .page-hero__grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(28px, 4vw, 64px);
}

.page-international .international-intro .hero__lead {
  max-width: 760px;
}

.page-international .international-intro .hero-summary-stack {
  display: block;
}

.page-international .international-intro .international-map-card {
  margin: 0;
}

.page-international main > section + section {
  scroll-margin-top: 96px;
}

.page-international .triad-grid > article,
.page-international .academy-expansion-grid > article,
.page-international .academy-cards > article,
.page-international .production-grid > article,
.page-international .values-grid > article {
  height: 100%;
}

@media (max-width: 900px) {
  .page-international .international-intro .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-international .international-intro .international-map-card {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .page-international .international-intro {
    padding-top: 8px;
    padding-bottom: 40px;
  }

  .page-international .international-intro .academy-map {
    grid-template-columns: 1fr;
  }
}

/* Sprint 10 — Faaliyetler */
.page-faaliyetler .activities-page--compact {
  padding-top: clamp(24px, 3vw, 42px);
}

.page-faaliyetler .activities-nav a.active,
.page-faaliyetler .activities-nav a[aria-current="true"] {
  color: var(--primary);
  font-weight: 700;
  border-left: 3px solid var(--primary);
  padding-left: 10px;
}

.page-faaliyetler .activities-section {
  scroll-margin-top: 120px;
}

@media (max-width: 720px) {
  .page-faaliyetler .activities-page--compact {
    padding-top: 18px;
  }
}

/* Sprint 11 — İletişim */
.page-iletisim .contact-intro {
  padding-top: clamp(26px, 3vw, 46px);
  padding-bottom: clamp(28px, 4vw, 58px);
}

.page-iletisim .contact-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.page-iletisim .contact-intro h1,
.page-iletisim .contact-intro h2 {
  margin-top: 0;
}

.page-iletisim .contact-intro__card {
  align-self: start;
}

.page-iletisim main > section:not(.contact-intro) {
  scroll-margin-top: 112px;
}

@media (max-width: 980px) {
  .page-iletisim .contact-intro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-iletisim .contact-intro__card {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .page-iletisim .contact-intro {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .page-iletisim .contact-intro__grid {
    gap: 18px;
  }
}

/* Sprint 12 — Ana Sayfa responsive polish */
.page-home main > section {
  padding-top: clamp(54px, 6vw, 92px);
  padding-bottom: clamp(54px, 6vw, 92px);
}

.page-home main > section:first-child {
  padding-top: clamp(28px, 3.5vw, 54px);
}

.page-home main > section:last-child {
  padding-bottom: clamp(62px, 7vw, 108px);
}

.page-home .section-header,
.page-home .section-heading {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.page-home .section-header p,
.page-home .section-heading p {
  margin-top: clamp(10px, 1.2vw, 16px);
}

.page-home .grid,
.page-home [class*="grid"] {
  row-gap: clamp(20px, 2.2vw, 32px);
  column-gap: clamp(20px, 2.2vw, 32px);
}

.page-home .hero,
.page-home .home-hero {
  padding-top: clamp(34px, 4vw, 64px);
  padding-bottom: clamp(42px, 5vw, 78px);
}

.page-home .hero__content,
.page-home .home-hero__content {
  gap: clamp(18px, 2vw, 30px);
}

.page-home .hero__actions,
.page-home .home-hero__actions {
  gap: 12px;
  margin-top: clamp(16px, 2vw, 26px);
}

.page-home .programs-grid,
.page-home .features-grid,
.page-home .activities-grid,
.page-home .news-grid {
  gap: clamp(20px, 2.4vw, 34px);
}

.page-home .cta,
.page-home .home-cta {
  margin-top: clamp(18px, 2vw, 30px);
}

@media (max-width: 980px) {
  .page-home main > section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-home main > section:first-child {
    padding-top: 24px;
  }

  .page-home .section-header,
  .page-home .section-heading {
    margin-bottom: 26px;
  }

  .page-home .grid,
  .page-home [class*="grid"] {
    row-gap: 20px;
    column-gap: 20px;
  }

  .page-home .hero,
  .page-home .home-hero {
    padding-top: 30px;
    padding-bottom: 48px;
  }
}

@media (max-width: 720px) {
  .page-home main > section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .page-home main > section:first-child {
    padding-top: 16px;
  }

  .page-home main > section:last-child {
    padding-bottom: 48px;
  }

  .page-home .section-header,
  .page-home .section-heading {
    margin-bottom: 20px;
  }

  .page-home .grid,
  .page-home [class*="grid"] {
    row-gap: 16px;
    column-gap: 16px;
  }

  .page-home .hero,
  .page-home .home-hero {
    padding-top: 20px;
    padding-bottom: 34px;
  }

  .page-home .hero__actions,
  .page-home .home-hero__actions {
    gap: 10px;
    margin-top: 16px;
  }
}

/* Sprint 13 — Kurumsal responsive polish */
.page-kurumsal main {
  padding-top: clamp(24px, 3vw, 44px);
}

.page-kurumsal main > section {
  padding-top: clamp(44px, 5vw, 76px);
  padding-bottom: clamp(44px, 5vw, 76px);
}

.page-kurumsal main > section:first-child {
  padding-top: 0;
}

.page-kurumsal main > section:last-child {
  padding-bottom: clamp(58px, 6vw, 96px);
}

.page-kurumsal .corporate-layout,
.page-kurumsal .kurumsal-layout,
.page-kurumsal .about-layout {
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}

.page-kurumsal .corporate-content > section,
.page-kurumsal .kurumsal-content > section,
.page-kurumsal .about-content > section {
  scroll-margin-top: 116px;
}

.page-kurumsal .corporate-content > section + section,
.page-kurumsal .kurumsal-content > section + section,
.page-kurumsal .about-content > section + section {
  margin-top: clamp(42px, 5vw, 72px);
}

.page-kurumsal .section-header,
.page-kurumsal .section-heading {
  margin-bottom: clamp(22px, 2.5vw, 36px);
}

.page-kurumsal .grid,
.page-kurumsal [class*="grid"] {
  row-gap: clamp(18px, 2vw, 28px);
  column-gap: clamp(18px, 2vw, 28px);
}

.page-kurumsal .card,
.page-kurumsal [class*="card"] {
  height: 100%;
}

.page-kurumsal .corporate-nav,
.page-kurumsal .kurumsal-nav,
.page-kurumsal .section-nav {
  top: 112px;
}

@media (max-width: 980px) {
  .page-kurumsal main {
    padding-top: 22px;
  }

  .page-kurumsal main > section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-kurumsal .corporate-layout,
  .page-kurumsal .kurumsal-layout,
  .page-kurumsal .about-layout {
    gap: 26px;
  }

  .page-kurumsal .corporate-content > section + section,
  .page-kurumsal .kurumsal-content > section + section,
  .page-kurumsal .about-content > section + section {
    margin-top: 42px;
  }

  .page-kurumsal .section-header,
  .page-kurumsal .section-heading {
    margin-bottom: 24px;
  }
}

@media (max-width: 720px) {
  .page-kurumsal main {
    padding-top: 16px;
  }

  .page-kurumsal main > section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-kurumsal main > section:last-child {
    padding-bottom: 46px;
  }

  .page-kurumsal .corporate-layout,
  .page-kurumsal .kurumsal-layout,
  .page-kurumsal .about-layout {
    gap: 20px;
  }

  .page-kurumsal .corporate-content > section,
  .page-kurumsal .kurumsal-content > section,
  .page-kurumsal .about-content > section {
    scroll-margin-top: 88px;
  }

  .page-kurumsal .corporate-content > section + section,
  .page-kurumsal .kurumsal-content > section + section,
  .page-kurumsal .about-content > section + section {
    margin-top: 32px;
  }

  .page-kurumsal .section-header,
  .page-kurumsal .section-heading {
    margin-bottom: 20px;
  }

  .page-kurumsal .grid,
  .page-kurumsal [class*="grid"] {
    row-gap: 16px;
    column-gap: 16px;
  }
}

/* Sprint 14 — Eğitim / Programlar responsive polish */
.page-programlar main {
  padding-top: clamp(24px, 3vw, 44px);
}

.page-programlar main > section {
  padding-top: clamp(46px, 5vw, 78px);
  padding-bottom: clamp(46px, 5vw, 78px);
}

.page-programlar main > section:first-child {
  padding-top: 0;
}

.page-programlar main > section:last-child {
  padding-bottom: clamp(60px, 6vw, 98px);
}

.page-programlar .section-header,
.page-programlar .section-heading,
.page-programlar .programs-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.page-programlar .section-header p,
.page-programlar .section-heading p,
.page-programlar .programs-heading p {
  margin-top: clamp(10px, 1.2vw, 16px);
}

.page-programlar .programs-grid,
.page-programlar .program-grid,
.page-programlar [class*="program"][class*="grid"],
.page-programlar .grid {
  gap: clamp(20px, 2.4vw, 34px);
}

.page-programlar .program-card,
.page-programlar [class*="program-card"] {
  height: 100%;
}

.page-programlar .program-card__content,
.page-programlar .program-card__body,
.page-programlar [class*="program-card"] > div {
  padding-top: clamp(20px, 2vw, 30px);
  padding-bottom: clamp(20px, 2vw, 30px);
}

.page-programlar .program-card .btn,
.page-programlar .program-card .button,
.page-programlar [class*="program-card"] [class*="btn"] {
  margin-top: clamp(14px, 1.6vw, 22px);
}

.page-programlar .cta,
.page-programlar .programs-cta {
  margin-top: clamp(22px, 2.5vw, 36px);
}

@media (max-width: 980px) {
  .page-programlar main {
    padding-top: 22px;
  }

  .page-programlar main > section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-programlar .section-header,
  .page-programlar .section-heading,
  .page-programlar .programs-heading {
    margin-bottom: 26px;
  }

  .page-programlar .programs-grid,
  .page-programlar .program-grid,
  .page-programlar [class*="program"][class*="grid"],
  .page-programlar .grid {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .page-programlar main {
    padding-top: 16px;
  }

  .page-programlar main > section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-programlar main > section:last-child {
    padding-bottom: 48px;
  }

  .page-programlar .section-header,
  .page-programlar .section-heading,
  .page-programlar .programs-heading {
    margin-bottom: 20px;
  }

  .page-programlar .programs-grid,
  .page-programlar .program-grid,
  .page-programlar [class*="program"][class*="grid"],
  .page-programlar .grid {
    gap: 16px;
  }

  .page-programlar .program-card__content,
  .page-programlar .program-card__body,
  .page-programlar [class*="program-card"] > div {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* Sprint 15 — Lisans Programı responsive polish */
.page-lisans main {
  padding-top: clamp(24px, 3vw, 44px);
}

.page-lisans main > section {
  padding-top: clamp(46px, 5vw, 78px);
  padding-bottom: clamp(46px, 5vw, 78px);
}

.page-lisans main > section:first-child {
  padding-top: 0;
}

.page-lisans main > section:last-child {
  padding-bottom: clamp(60px, 6vw, 98px);
}

.page-lisans .section-header,
.page-lisans .section-heading,
.page-lisans .program-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.page-lisans .section-header p,
.page-lisans .section-heading p,
.page-lisans .program-heading p {
  margin-top: clamp(10px, 1.2vw, 16px);
}

.page-lisans .program-layout,
.page-lisans .lisans-layout,
.page-lisans .content-grid {
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}

.page-lisans .grid,
.page-lisans [class*="grid"] {
  row-gap: clamp(20px, 2.2vw, 32px);
  column-gap: clamp(20px, 2.2vw, 32px);
}

.page-lisans .card,
.page-lisans [class*="card"] {
  height: 100%;
}

.page-lisans .card__body,
.page-lisans [class*="card"] > div {
  padding-top: clamp(20px, 2vw, 30px);
  padding-bottom: clamp(20px, 2vw, 30px);
}

.page-lisans .cta,
.page-lisans .program-cta {
  margin-top: clamp(22px, 2.5vw, 36px);
}

.page-lisans .program-content > section,
.page-lisans .lisans-content > section {
  scroll-margin-top: 116px;
}

.page-lisans .program-content > section + section,
.page-lisans .lisans-content > section + section {
  margin-top: clamp(42px, 5vw, 72px);
}

@media (max-width: 980px) {
  .page-lisans main {
    padding-top: 22px;
  }

  .page-lisans main > section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-lisans .program-layout,
  .page-lisans .lisans-layout,
  .page-lisans .content-grid {
    gap: 26px;
  }

  .page-lisans .section-header,
  .page-lisans .section-heading,
  .page-lisans .program-heading {
    margin-bottom: 26px;
  }

  .page-lisans .grid,
  .page-lisans [class*="grid"] {
    row-gap: 20px;
    column-gap: 20px;
  }

  .page-lisans .program-content > section + section,
  .page-lisans .lisans-content > section + section {
    margin-top: 42px;
  }
}

@media (max-width: 720px) {
  .page-lisans main {
    padding-top: 16px;
  }

  .page-lisans main > section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-lisans main > section:last-child {
    padding-bottom: 48px;
  }

  .page-lisans .program-layout,
  .page-lisans .lisans-layout,
  .page-lisans .content-grid {
    gap: 20px;
  }

  .page-lisans .section-header,
  .page-lisans .section-heading,
  .page-lisans .program-heading {
    margin-bottom: 20px;
  }

  .page-lisans .grid,
  .page-lisans [class*="grid"] {
    row-gap: 16px;
    column-gap: 16px;
  }

  .page-lisans .card__body,
  .page-lisans [class*="card"] > div {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .page-lisans .program-content > section,
  .page-lisans .lisans-content > section {
    scroll-margin-top: 88px;
  }

  .page-lisans .program-content > section + section,
  .page-lisans .lisans-content > section + section {
    margin-top: 32px;
  }
}

/* Sprint 16 — İhtisas Programı responsive polish */
.page-ihtisas main {
  padding-top: clamp(24px, 3vw, 44px);
}

.page-ihtisas main > section {
  padding-top: clamp(46px, 5vw, 78px);
  padding-bottom: clamp(46px, 5vw, 78px);
}

.page-ihtisas main > section:first-child {
  padding-top: 0;
}

.page-ihtisas main > section:last-child {
  padding-bottom: clamp(60px, 6vw, 98px);
}

.page-ihtisas .section-header,
.page-ihtisas .section-heading,
.page-ihtisas .program-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.page-ihtisas .section-header p,
.page-ihtisas .section-heading p,
.page-ihtisas .program-heading p {
  margin-top: clamp(10px, 1.2vw, 16px);
}

.page-ihtisas .program-layout,
.page-ihtisas .ihtisas-layout,
.page-ihtisas .content-grid {
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}

.page-ihtisas .grid,
.page-ihtisas [class*="grid"] {
  row-gap: clamp(20px, 2.2vw, 32px);
  column-gap: clamp(20px, 2.2vw, 32px);
}

.page-ihtisas .card,
.page-ihtisas [class*="card"] {
  height: 100%;
}

.page-ihtisas .card__body,
.page-ihtisas [class*="card"] > div {
  padding-top: clamp(20px, 2vw, 30px);
  padding-bottom: clamp(20px, 2vw, 30px);
}

.page-ihtisas .cta,
.page-ihtisas .program-cta {
  margin-top: clamp(22px, 2.5vw, 36px);
}

.page-ihtisas .program-content > section,
.page-ihtisas .ihtisas-content > section {
  scroll-margin-top: 116px;
}

.page-ihtisas .program-content > section + section,
.page-ihtisas .ihtisas-content > section + section {
  margin-top: clamp(42px, 5vw, 72px);
}

@media (max-width: 980px) {
  .page-ihtisas main {
    padding-top: 22px;
  }

  .page-ihtisas main > section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-ihtisas .program-layout,
  .page-ihtisas .ihtisas-layout,
  .page-ihtisas .content-grid {
    gap: 26px;
  }

  .page-ihtisas .section-header,
  .page-ihtisas .section-heading,
  .page-ihtisas .program-heading {
    margin-bottom: 26px;
  }

  .page-ihtisas .grid,
  .page-ihtisas [class*="grid"] {
    row-gap: 20px;
    column-gap: 20px;
  }

  .page-ihtisas .program-content > section + section,
  .page-ihtisas .ihtisas-content > section + section {
    margin-top: 42px;
  }
}

@media (max-width: 720px) {
  .page-ihtisas main {
    padding-top: 16px;
  }

  .page-ihtisas main > section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-ihtisas main > section:last-child {
    padding-bottom: 48px;
  }

  .page-ihtisas .program-layout,
  .page-ihtisas .ihtisas-layout,
  .page-ihtisas .content-grid {
    gap: 20px;
  }

  .page-ihtisas .section-header,
  .page-ihtisas .section-heading,
  .page-ihtisas .program-heading {
    margin-bottom: 20px;
  }

  .page-ihtisas .grid,
  .page-ihtisas [class*="grid"] {
    row-gap: 16px;
    column-gap: 16px;
  }

  .page-ihtisas .card__body,
  .page-ihtisas [class*="card"] > div {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .page-ihtisas .program-content > section,
  .page-ihtisas .ihtisas-content > section {
    scroll-margin-top: 88px;
  }

  .page-ihtisas .program-content > section + section,
  .page-ihtisas .ihtisas-content > section + section {
    margin-top: 32px;
  }
}

/* Sprint 17 — Akademik Hub */
.page-akademik .academic-hub{background:#fff}
.page-akademik .academic-intro{padding:clamp(42px,5vw,76px) 0 clamp(50px,6vw,88px)}
.page-akademik .academic-intro__inner{max-width:960px}
.page-akademik .academic-intro__copy{max-width:820px}
.page-akademik .academic-intro h1{max-width:760px;margin:12px 0 20px;font-size:clamp(2.15rem,5vw,4.4rem);line-height:1.04;letter-spacing:-.035em}
.page-akademik .academic-intro p{max-width:720px;margin:0;font-size:clamp(1.05rem,1.5vw,1.25rem);line-height:1.75;color:var(--muted,#5f6875)}
.page-akademik .academic-section{padding:clamp(64px,7vw,104px) 0}
.page-akademik .academic-section--soft{background:#f7f7fa}
.page-akademik .academic-section__head{max-width:720px;margin-bottom:clamp(30px,4vw,50px)}
.page-akademik .academic-section__head h2{margin:10px 0 14px}
.page-akademik .academic-section__head p{margin:0;color:var(--muted,#5f6875)}
.page-akademik .academic-grid{display:grid;gap:clamp(18px,2vw,28px)}
.page-akademik .academic-grid--three{grid-template-columns:repeat(3,minmax(0,1fr))}
.page-akademik .academic-grid--two{grid-template-columns:repeat(2,minmax(0,1fr))}
.page-akademik .academic-card,.page-akademik .academic-feature{color:inherit;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.page-akademik .academic-card{min-height:300px;display:flex;flex-direction:column;padding:clamp(24px,3vw,34px);border:1px solid rgba(20,31,48,.10);border-radius:18px;background:#fff}
.page-akademik .academic-card:hover,.page-akademik .academic-feature:hover{transform:translateY(-4px);box-shadow:0 18px 42px rgba(22,31,45,.10);border-color:rgba(124,61,158,.30)}
.page-akademik .academic-card__index{display:inline-block;margin-bottom:auto;font-size:.82rem;font-weight:700;letter-spacing:.08em;color:var(--primary,#7c3d9e)}
.page-akademik .academic-card h3{margin:42px 0 12px}
.page-akademik .academic-card p{margin:0 0 22px;color:var(--muted,#5f6875);line-height:1.7}
.page-akademik .academic-card__link{margin-top:auto;font-weight:700;color:var(--primary,#7c3d9e)}
.page-akademik .academic-feature{min-height:220px;display:flex;align-items:flex-end;justify-content:space-between;gap:22px;padding:clamp(24px,3vw,34px);border:1px solid rgba(20,31,48,.10);border-radius:18px;background:#fff}
.page-akademik .academic-feature__label{display:inline-block;margin-bottom:18px;font-size:.8rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--primary,#7c3d9e)}
.page-akademik .academic-feature h3{margin:0 0 10px}
.page-akademik .academic-feature p{max-width:520px;margin:0;color:var(--muted,#5f6875);line-height:1.7}
.page-akademik .academic-feature__arrow{flex:0 0 auto;font-size:1.65rem;color:var(--primary,#7c3d9e)}
.page-akademik .academic-cta{padding:clamp(56px,7vw,94px) 0;background:#111c2e;color:#fff}
.page-akademik .academic-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:32px}
.page-akademik .academic-cta h2{margin:10px 0 12px;color:#fff}
.page-akademik .academic-cta p{max-width:620px;margin:0;color:rgba(255,255,255,.72)}
@media(max-width:980px){.page-akademik .academic-grid--three{grid-template-columns:repeat(2,minmax(0,1fr))}.page-akademik .academic-cta__inner{align-items:flex-start;flex-direction:column}}
@media(max-width:720px){.page-akademik .academic-intro{padding:26px 0 42px}.page-akademik .academic-section{padding:48px 0}.page-akademik .academic-grid--three,.page-akademik .academic-grid--two{grid-template-columns:1fr}.page-akademik .academic-card{min-height:250px}.page-akademik .academic-feature{min-height:0}.page-akademik .academic-cta{padding:48px 0}}

/* Sprint 17.5 — Başvuru responsive polish */
.page-basvuru main {
  padding-top: clamp(24px, 3vw, 44px);
}

.page-basvuru main > section {
  padding-top: clamp(46px, 5vw, 78px);
  padding-bottom: clamp(46px, 5vw, 78px);
}

.page-basvuru main > section:first-child {
  padding-top: 0;
}

.page-basvuru main > section:last-child {
  padding-bottom: clamp(60px, 6vw, 98px);
}

.page-basvuru .section-header,
.page-basvuru .section-heading,
.page-basvuru .application-heading,
.page-basvuru .basvuru-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.page-basvuru .section-header p,
.page-basvuru .section-heading p,
.page-basvuru .application-heading p,
.page-basvuru .basvuru-heading p {
  margin-top: clamp(10px, 1.2vw, 16px);
}

.page-basvuru .application-layout,
.page-basvuru .basvuru-layout,
.page-basvuru .form-layout,
.page-basvuru .content-grid {
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.page-basvuru .application-form,
.page-basvuru .basvuru-form,
.page-basvuru form {
  row-gap: clamp(18px, 2vw, 26px);
}

.page-basvuru .form-group,
.page-basvuru .field-group,
.page-basvuru [class*="form-group"] {
  margin-bottom: clamp(16px, 1.8vw, 24px);
}

.page-basvuru .card,
.page-basvuru [class*="card"] {
  height: 100%;
}

.page-basvuru .card__body,
.page-basvuru [class*="card"] > div {
  padding-top: clamp(20px, 2vw, 30px);
  padding-bottom: clamp(20px, 2vw, 30px);
}

.page-basvuru main form .btn,
.page-basvuru main form button,
.page-basvuru main .application-form .btn,
.page-basvuru main .basvuru-form .btn,
.page-basvuru main .application-cta .btn,
.page-basvuru main .basvuru-cta .btn {
  margin-top: clamp(12px, 1.5vw, 20px);
}

@media (max-width: 980px) {
  .page-basvuru main {
    padding-top: 22px;
  }

  .page-basvuru main > section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-basvuru .application-layout,
  .page-basvuru .basvuru-layout,
  .page-basvuru .form-layout,
  .page-basvuru .content-grid {
    gap: 26px;
  }

  .page-basvuru .section-header,
  .page-basvuru .section-heading,
  .page-basvuru .application-heading,
  .page-basvuru .basvuru-heading {
    margin-bottom: 26px;
  }
}

@media (max-width: 720px) {
  .page-basvuru main {
    padding-top: 16px;
  }

  .page-basvuru main > section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-basvuru main > section:last-child {
    padding-bottom: 48px;
  }

  .page-basvuru .application-layout,
  .page-basvuru .basvuru-layout,
  .page-basvuru .form-layout,
  .page-basvuru .content-grid {
    gap: 20px;
  }

  .page-basvuru .section-header,
  .page-basvuru .section-heading,
  .page-basvuru .application-heading,
  .page-basvuru .basvuru-heading {
    margin-bottom: 20px;
  }

  .page-basvuru .application-form,
  .page-basvuru .basvuru-form,
  .page-basvuru form {
    row-gap: 16px;
  }

  .page-basvuru .form-group,
  .page-basvuru .field-group,
  .page-basvuru [class*="form-group"] {
    margin-bottom: 16px;
  }

  .page-basvuru .card__body,
  .page-basvuru [class*="card"] > div {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* Sprint 17.5 — Başvuru ana menü hizalama düzeltmesi */
.page-basvuru header .btn,
.page-basvuru header [class*="btn"],
.page-basvuru .site-header .btn,
.page-basvuru .site-header [class*="btn"] {
  margin-top: 0;
}

/* Sprint 18.1.2: Embedded institution video */
.institution-video {
  margin-top: 1.5rem;
}

.institution-video__preview,
.institution-video__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.institution-video__preview {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #123b49;
  box-shadow: 0 18px 40px rgba(16, 43, 55, .18);
  text-align: left;
}

.institution-video__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.institution-video__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 38, 55, .20), rgba(27, 89, 103, .08)),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .16), transparent 24%);
  pointer-events: none;
}

.institution-video__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  color: #163f4d;
  font-size: 1.6rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background-color .2s ease;
}

.institution-video__preview:hover .institution-video__play,
.institution-video__preview:focus-visible .institution-video__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}

.institution-video__preview:focus-visible {
  outline: 3px solid rgba(40, 126, 145, .45);
  outline-offset: 4px;
}

.institution-video__copy {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  color: #fff;
}

.institution-video__eyebrow,
.institution-video__title {
  display: block;
}

.institution-video__eyebrow {
  margin-bottom: .25rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}

.institution-video__title {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 700;
}

.institution-video__help {
  margin: .65rem 0 0;
  color: var(--text-muted, #66757d);
  font-size: .92rem;
}

@media (max-width: 640px) {
  .institution-video__preview,
  .institution-video__iframe {
    border-radius: 14px;
  }

  .institution-video__play {
    width: 62px;
    height: 62px;
    font-size: 1.3rem;
  }

  .institution-video__copy {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}
/* End Sprint 18.1.2 */

/* V1.0 legal content */
.prose{max-width:900px}.prose h2{margin-top:2rem}.prose p{line-height:1.75}
.notice-card{margin:1.25rem 0 2rem;padding:1rem 1.1rem;border:1px solid rgba(124,61,158,.18);border-radius:14px;background:rgba(124,61,158,.06);line-height:1.65}



/* Sprint 20 institutional footer */
.footer--institutional {
  padding: 0;
  color: rgba(255, 255, 255, .76);
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 61, 158, .16), transparent 34%),
    #15121a;
}

.footer--institutional .container {
  padding-top: 52px;
}

.footer__identity {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  text-align: center;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 84px;
}

.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer__logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.footer__logo--primary {
  max-width: 230px;
  max-height: 72px;
}

.footer__logo--parent {
  max-width: 180px;
  max-height: 58px;
}

.footer__logo-divider {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, .18);
}

.footer__affiliation {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .68);
}

.footer__affiliation strong {
  color: #fff;
  font-weight: 650;
}

.footer__grid--institutional {
  grid-template-columns: 1.25fr .75fr 1fr .75fr;
  gap: 44px;
  padding: 42px 0 38px;
}

.footer__column h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .02em;
}

.footer__column p {
  margin: 0;
  line-height: 1.75;
}

.footer__column a {
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease, transform .2s ease;
}

.footer__column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer__column--about p {
  max-width: 360px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: 13px;
  color: rgba(255, 255, 255, .52);
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

@media (max-width: 940px) {
  .footer__grid--institutional {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .footer--institutional .container {
    padding-top: 38px;
  }

  .footer__logos {
    flex-direction: column;
    gap: 18px;
  }

  .footer__logo-divider {
    width: 90px;
    height: 1px;
  }

  .footer__logo--primary {
    max-width: 210px;
    max-height: 66px;
  }

  .footer__logo--parent {
    max-width: 160px;
    max-height: 54px;
  }

  .footer__grid--institutional {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 0;
  }
}

/* ==========================================================
   BUTTON STATES
   ========================================================== */

.btn-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(20%);
    box-shadow: none;
}

/* ==========================================================
   APPLICATION ANNOUNCEMENT POPUP
   ========================================================== */

.application-popup[hidden] {
  display: none;
}

.application-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.application-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 28, .72);
  backdrop-filter: blur(5px);
}

.application-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(124, 61, 158, .18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(18, 12, 28, .32);
}


.application-popup__poster {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  background: #f5f2f6;
}

.application-popup__content {
  padding: 34px 38px 38px;
}

.application-popup__dialog h2 {
  margin: 8px 44px 14px 0;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
}

.application-popup__dialog > p:not(.eyebrow) {
  margin: 0;
  color: #5f5965;
  line-height: 1.75;
}

.application-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f2edf5;
  color: #372c3e;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.application-popup__close:hover,
.application-popup__close:focus-visible {
  background: #e7ddec;
}

.application-popup__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.application-popup__later {
  border: 0;
  background: transparent;
  color: #625a67;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.application-popup__later:hover,
.application-popup__later:focus-visible {
  color: #7c3d9e;
}

body.popup-is-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .application-popup {
    padding: 16px;
  }

  .application-popup__dialog {
    border-radius: 20px;
  }

  .application-popup__poster {
    max-height: 260px;
  }

  .application-popup__content {
    padding: 28px 22px 24px;
  }

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

  .application-popup__actions .btn,
  .application-popup__later {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================
   404 PAGE
   ========================================================== */

.page-404 main {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

.error-page {
  padding: 100px 0;
  text-align: center;
}

.error-page__code {
  display: block;
  margin-bottom: 18px;
  color: rgba(124, 61, 158, .14);
  font-size: clamp(100px, 22vw, 220px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.08em;
}

.error-page h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 58px);
}

.error-page p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #625a67;
  line-height: 1.75;
}

