:root {
  --content-max: 1140px;
  --header-max: 1680px;
  --theme-red: #ca141d;
  --theme-blue: #0673b7;
  --theme-navy: #052a65;
  --arcs-navy: #161357;
  --turquoise: #46aece;
  --turquoise-light: #76f3ff;
  --blue-light: #8fd2e7;
  --paper: #f8fdff;
  --pale: #ecf0f9;
  --line: #dce3f1;
  --ink: #101214;
  --muted: #525252;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(5, 42, 101, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 44px;
  line-height: 61px;
}

h2 {
  font-size: 38px;
  line-height: 57px;
}

h3 {
  font-size: 32px;
  line-height: 48px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--content-max), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-46px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(46px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(202, 20, 29, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(202, 20, 29, 0.12);
  }
}

@keyframes trustScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.reveal-ready {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1), transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.reveal-left {
  transform: translate3d(-46px, 0, 0);
}

.reveal-ready.reveal-right {
  transform: translate3d(46px, 0, 0);
}

.reveal-ready.reveal-zoom {
  transform: scale(0.96);
}

.reveal-ready.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-fade {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 18, 20, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 10px 28px rgba(5, 42, 101, 0.1);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(5, 42, 101, 0.12);
}

.topline {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--header-max), calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand img {
  width: 154px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: translateY(-2px) scale(1.03);
}

.header-info {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.info-pill strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.info-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--theme-blue);
  font-weight: 700;
  font-size: 13px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(5, 42, 101, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.info-icon svg {
  width: 17px;
  height: 17px;
}

.info-pill:hover {
  color: var(--theme-navy);
  transform: translateY(-2px);
}

.info-pill:hover .info-icon {
  background: var(--theme-red);
  transform: rotate(-4deg) scale(1.05);
}

.main-nav {
  border-top: 1px solid var(--line);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 max(20px, calc((100vw - var(--header-max)) / 2));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 68px;
  padding: 0 14px;
  color: #333840;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap !important;
  width: max-content;
  flex: 0 0 auto;
  transition: color 0.25s ease;
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 0;
  height: 2px;
  background: var(--theme-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--theme-red);
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 230px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--theme-red);
  box-shadow: 0 18px 38px rgba(5, 42, 101, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  min-height: 40px;
  width: 100%;
  padding: 0 18px;
  justify-content: flex-start;
  color: var(--theme-navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  white-space: nowrap !important;
  transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  color: var(--theme-red);
  background: var(--pale);
  padding-left: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: var(--theme-navy);
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle {
  background: var(--theme-red);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.36) 46%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  white-space: nowrap;
}

.btn-red {
  color: var(--white);
  background: var(--theme-red);
}

.btn-blue {
  color: var(--white);
  background: var(--theme-blue);
}

.btn-white {
  color: var(--theme-navy);
  background: var(--white);
}

.btn-outline {
  color: var(--theme-navy);
  background: transparent;
  border-color: rgba(5, 42, 101, 0.2);
}

.btn:hover {
  filter: brightness(0.96);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(5, 42, 101, 0.18);
}

.btn-red:hover {
  background: var(--theme-blue);
}

.btn-blue:hover {
  background: var(--theme-red);
}

.btn-white:hover {
  color: var(--white);
  background: var(--theme-blue);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--theme-red);
  border-color: var(--theme-red);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:focus-visible,
.nav-menu a:focus-visible,
.quick-panel:focus-visible,
.faculty-card:focus-visible,
.news-card a:focus-visible {
  outline: 3px solid var(--turquoise-light);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--theme-navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: top center;
  transform: scale(1.06);
  animation: heroZoom 1.25s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(5, 42, 101, 0.5) 44%, rgba(5, 42, 101, 0.08) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  max-width: 620px;
  padding: 76px 0 132px;
  animation: fadeInUp 0.85s ease 0.18s both;
}

.hero h1 {
  font-size: 48px;
  line-height: 67px;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero p {
  font-size: 19px;
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions {
  gap: 24px;
  margin-top: 38px;
}

.hero-actions .btn {
  min-width: 160px;
  min-height: 50px;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.eyebrow::after {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--white);
}

.tag {
  min-height: 28px;
  padding: 0 12px;
  color: var(--white);
  background: var(--theme-blue);
  border-radius: 2px;
}

.tag::after {
  display: none;
}

.quick-panels {
  width: 100%;
  margin: -82px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.08);
}

.quick-panel {
  min-height: 190px;
  padding: 38px 56px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.quick-panel:nth-child(2) {
  padding-left: 56px;
  padding-right: 56px;
}

.quick-panel h2 {
  color: var(--white);
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 12px;
}

.quick-panel p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 24px;
}

.quick-panel:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(5, 42, 101, 0.22);
  filter: saturate(1.08);
}

.quick-panel:hover .graduate-stack strong {
  animation: softPulse 1.3s ease infinite;
}

.quick-panel.blue {
  background: var(--theme-blue);
}

.quick-panel.navy {
  background: var(--theme-navy);
}

.quick-panel.red {
  background: var(--theme-red);
  min-height: 190px;
  margin-top: 0;
  padding-left: 56px;
  padding-right: 56px;
  justify-content: center;
}

.panel-number {
  display: none;
}

.graduate-stack {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.graduate-stack img,
.graduate-stack strong {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  background: var(--theme-blue);
}

.graduate-stack img + img,
.graduate-stack strong {
  margin-left: -9px;
}

.graduate-stack strong {
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
}

.section {
  padding: 96px 0;
}

.section.pale,
.pale {
  background: var(--pale);
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin-bottom: 44px;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
}

.section-head p {
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 62px;
}

.about-split {
  padding-top: 24px;
}

.rounded-media {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-intro {
  background: linear-gradient(180deg, var(--white) 0%, #f7fbff 100%);
}

.about-lead,
.about-proof-grid,
.about-quality,
.about-centres {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 56px;
}

.about-lead-copy h2,
.about-proof-grid h2,
.about-quality h2,
.about-centres h2 {
  max-width: 720px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.about-identity-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(145deg, var(--theme-navy), #0a4d82);
  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.16);
}

.about-identity-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 8px;
  background: var(--theme-red);
  opacity: 0.82;
}

.about-identity-card img {
  width: 180px;
  max-width: 70%;
  margin-bottom: 28px;
  padding: 10px 12px;
  background: var(--white);
  border-radius: 4px;
}

.about-identity-card div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-identity-card strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.about-identity-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 25px;
}

.about-proof-grid {
  align-items: start;
}

.about-stats {
  background: rgba(255, 255, 255, 0.54);
}

.about-poles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-pole-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--theme-blue);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(5, 42, 101, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about-pole-card:nth-child(2) {
  border-top-color: var(--theme-red);
}

.about-pole-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--theme-blue);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.about-pole-card:nth-child(2) span {
  background: var(--theme-red);
}

.about-pole-card h3 {
  color: var(--theme-navy);
  font-size: 24px;
  line-height: 32px;
  margin: 24px 0 12px;
}

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

.about-pole-card em {
  margin-top: auto;
  color: var(--theme-red);
  font-style: normal;
  font-weight: 800;
}

.about-pole-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 20, 29, 0.26);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.14);
}

.about-quality {
  align-items: center;
}

.about-quality-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--theme-blue);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(5, 42, 101, 0.1);
}

.about-quality-card img {
  width: 100%;
  max-width: 360px;
  margin-bottom: 28px;
}

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

.about-quality-card strong {
  color: var(--theme-navy);
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}

.about-quality-card span {
  color: var(--muted);
  line-height: 27px;
}

.about-engagements {
  align-items: start;
}

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

.about-centre-list a {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 18px 20px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--theme-blue);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(5, 42, 101, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-centre-list a:nth-child(2) {
  border-left-color: var(--theme-red);
}

.about-centre-list strong {
  color: var(--theme-navy);
  font-size: 18px;
}

.about-centre-list a:hover {
  transform: translateX(8px);
  box-shadow: 0 16px 32px rgba(5, 42, 101, 0.12);
}

.stats-panel {
  background: var(--pale);
  border-left: 6px solid var(--theme-blue);
  padding: 22px;
  display: grid;
  gap: 10px;
}

.stats-panel div {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stats-panel div:hover {
  transform: translateX(8px);
  border-color: rgba(6, 115, 183, 0.3);
  box-shadow: 0 12px 24px rgba(5, 42, 101, 0.1);
}

.stats-panel strong {
  color: var(--theme-red);
  font-size: 25px;
  line-height: 31px;
  font-weight: 800;
}

.stats-panel span {
  color: var(--theme-navy);
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}

.formation-facts {
  background: var(--pale);
  border-left: 6px solid var(--theme-blue);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.formation-facts div {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px 18px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.formation-facts div:hover {
  transform: translateX(8px);
  border-color: rgba(6, 115, 183, 0.3);
  box-shadow: 0 12px 24px rgba(5, 42, 101, 0.1);
}

.formation-facts strong {
  color: var(--theme-red);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.formation-facts span {
  color: var(--theme-navy);
  font-weight: 800;
}

.program-raw {
  scroll-margin-top: 130px;
}

.program-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.program-block {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(5, 42, 101, 0.07);
}

.program-block h3 {
  margin-bottom: 14px;
  color: var(--theme-navy);
  font-size: 22px;
  line-height: 30px;
}

.program-block h3:not(:first-child) {
  margin-top: 26px;
}

.program-block p:last-child,
.program-block .check-list:last-child {
  margin-bottom: 0;
}

.program-note {
  margin-top: 16px;
  padding-left: 18px;
  border-left: 4px solid var(--theme-blue);
  color: var(--theme-navy);
  font-weight: 700;
}

.program-table {
  margin-top: 14px;
}

.program-table table {
  min-width: 860px;
}

.program-table th:first-child,
.program-table td:first-child {
  width: 180px;
  color: var(--theme-navy);
  font-weight: 800;
}

.assessment-section {
  background: linear-gradient(180deg, var(--white) 0%, #f2f8fd 100%);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: 34px;
}

.assessment-column,
.score-column {
  min-width: 0;
}

.assessment-title {
  margin-bottom: 20px;
}

.assessment-title .eyebrow {
  margin-bottom: 10px;
}

.assessment-title h3 {
  color: var(--theme-navy);
  font-size: 27px;
  line-height: 36px;
}

.assessment-flow {
  position: relative;
  display: grid;
  gap: 14px;
}

.assessment-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 2px;
  background: rgba(6, 115, 183, 0.18);
}

.assessment-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--theme-blue);
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(5, 42, 101, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.assessment-step:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 20, 29, 0.28);
  box-shadow: 0 18px 36px rgba(5, 42, 101, 0.13);
}

.assessment-step > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--theme-navy);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.assessment-step:nth-child(even) > span {
  background: var(--theme-blue);
}

.assessment-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--theme-navy);
  font-size: 18px;
  line-height: 26px;
}

.assessment-step p {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
}

.assessment-skills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.assessment-skills span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(6, 115, 183, 0.08);
  border: 1px solid rgba(6, 115, 183, 0.16);
  border-radius: 6px;
  color: var(--theme-navy);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.assessment-skills span::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--theme-red);
}

.assessment-skills span:hover {
  transform: translateY(-4px);
  background: rgba(6, 115, 183, 0.12);
  border-color: rgba(202, 20, 29, 0.24);
}

.score-column {
  display: grid;
  gap: 14px;
}

.score-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(5, 42, 101, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.score-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(5, 42, 101, 0.13);
}

.score-b2 {
  border-top-color: var(--theme-red);
}

.score-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.score-card-head strong {
  color: var(--theme-navy);
  font-size: 34px;
  line-height: 34px;
}

.score-card-head span {
  padding: 6px 10px;
  background: rgba(202, 20, 29, 0.08);
  border-radius: 4px;
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-align: right;
  text-transform: uppercase;
}

.score-meter {
  height: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #e8eef8;
  border-radius: 999px;
}

.score-meter span {
  display: block;
  height: 100%;
  background: var(--theme-blue);
  border-radius: inherit;
}

.score-a2 .score-meter span {
  width: 45%;
}

.score-b1 .score-meter span {
  width: 68%;
}

.score-b2 .score-meter span {
  width: 92%;
  background: var(--theme-red);
}

.score-lines {
  display: grid;
  margin: 0;
}

.score-lines div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.score-lines dt {
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
}

.score-lines dd {
  margin: 0;
  color: var(--theme-navy);
  font-weight: 700;
  line-height: 22px;
}

.finance-section {
  background: #eaf3fc;
}

.finance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  align-items: start;
  gap: 34px;
}

.pricing-panel {
  min-width: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 306px;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(5, 42, 101, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 22px solid rgba(6, 115, 183, 0.08);
  border-radius: 50%;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(202, 20, 29, 0.28);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.14);
}

.pricing-main {
  border-top-color: var(--theme-red);
}

.pricing-main::after {
  border-color: rgba(202, 20, 29, 0.08);
}

.pricing-special {
  border-top-color: var(--theme-navy);
}

.pricing-special::after {
  border-color: rgba(5, 42, 101, 0.08);
}

.pricing-tag {
  width: max-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: rgba(6, 115, 183, 0.08);
  border-radius: 4px;
  color: var(--theme-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.pricing-main .pricing-tag {
  background: rgba(202, 20, 29, 0.08);
  color: var(--theme-red);
}

.pricing-special .pricing-tag {
  background: rgba(5, 42, 101, 0.08);
  color: var(--theme-navy);
}

.pricing-card h3 {
  margin-bottom: 18px;
  color: var(--theme-navy);
  font-size: 21px;
  line-height: 29px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 48px;
  margin: 0 0 18px;
  color: var(--theme-navy);
}

.price-line strong {
  color: var(--theme-navy);
  font-size: 34px;
  line-height: 42px;
}

.price-line span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--theme-red);
}

.finance-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 115, 183, 0.16);
  border-left: 4px solid var(--theme-blue);
  border-radius: 6px;
  color: var(--theme-navy);
  font-weight: 700;
}

.access-panel {
  background: var(--theme-navy);
  border-radius: 6px;
  padding: 30px;
  color: var(--white);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.18);
}

.access-panel .eyebrow {
  color: var(--white);
}

.access-panel h3 {
  margin: 10px 0 14px;
  color: var(--white);
  font-size: 28px;
  line-height: 37px;
}

.access-panel > p {
  color: rgba(255, 255, 255, 0.78);
}

.access-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.access-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--theme-blue);
  border-radius: 6px;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.access-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--theme-red);
}

.access-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--theme-blue);
  border-radius: 6px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.access-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.access-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 23px;
}

.level-program-section {
  background: linear-gradient(180deg, #f5fbff 0%, #eaf3fc 100%);
}

.cecrl-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 30px;
  background: var(--theme-navy);
  border-radius: 6px;
  color: var(--white);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.16);
}

.cecrl-summary .eyebrow,
.cecrl-summary h3 {
  color: var(--white);
}

.cecrl-summary h3 {
  margin: 10px 0 12px;
  font-size: 28px;
  line-height: 37px;
}

.cecrl-summary p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cecrl-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.cecrl-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.cecrl-steps span {
  position: relative;
  z-index: 1;
  min-height: 54px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.cecrl-steps span:hover {
  transform: translateY(-4px);
  background: var(--theme-blue);
  border-color: var(--theme-blue);
}

.level-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.level-program-card {
  display: grid;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(5, 42, 101, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.level-program-card:nth-child(3n + 1) {
  border-top-color: var(--theme-red);
}

.level-program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(202, 20, 29, 0.28);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.14);
}

.level-card-head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
}

.level-card-head > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--theme-navy);
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.level-program-card:nth-child(even) .level-card-head > span {
  background: var(--theme-blue);
}

.level-card-head strong {
  display: block;
  color: var(--theme-navy);
  font-size: 21px;
  line-height: 29px;
}

.level-card-head small {
  display: block;
  margin-top: 2px;
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.level-program-card h3 {
  color: var(--theme-navy);
  font-size: 23px;
  line-height: 31px;
}

.level-detail {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.level-detail span {
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.level-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 25px;
}

.activity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.activity-pills span {
  padding: 7px 10px;
  background: rgba(6, 115, 183, 0.08);
  border: 1px solid rgba(6, 115, 183, 0.14);
  border-radius: 4px;
  color: var(--theme-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
}

.dfp-variant-section {
  background: linear-gradient(180deg, var(--white) 0%, #f2f8fd 100%);
}

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

.dfp-variant-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--theme-blue);
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 14px 32px rgba(5, 42, 101, 0.09);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.dfp-variant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(202, 20, 29, 0.28);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.15);
}

.dfp-health {
  border-top-color: var(--theme-red);
}

.dfp-business {
  border-top-color: var(--theme-navy);
}

.dfp-hospitality {
  border-top-color: var(--theme-blue);
}

.dfp-card-head {
  display: grid;
  gap: 12px;
}

.dfp-card-head > span {
  width: max-content;
  padding: 7px 11px;
  background: rgba(202, 20, 29, 0.08);
  border-radius: 4px;
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.dfp-international .dfp-card-head > span {
  background: rgba(6, 115, 183, 0.08);
  color: var(--theme-blue);
}

.dfp-business .dfp-card-head > span {
  background: rgba(5, 42, 101, 0.08);
  color: var(--theme-navy);
}

.dfp-hospitality .dfp-card-head > span {
  background: rgba(6, 115, 183, 0.08);
  color: var(--theme-blue);
}

.dfp-card-head h3 {
  color: var(--theme-navy);
  font-size: 27px;
  line-height: 36px;
}

.dfp-card-head p {
  margin: 0;
}

.dfp-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 10px;
}

.dfp-meta-grid div {
  min-width: 0;
  padding: 14px;
  background: #f4f8fd;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.dfp-meta-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--theme-red);
  font-size: 11px;
  line-height: 17px;
  text-transform: uppercase;
}

.dfp-meta-grid span {
  color: var(--theme-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
}

.dfp-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dfp-levels div {
  min-width: 0;
  padding: 14px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
  border: 1px solid rgba(6, 115, 183, 0.18);
  border-radius: 6px;
}

.dfp-levels strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  margin-bottom: 9px;
  background: var(--theme-blue);
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
}

.dfp-levels span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 21px;
}

.dfp-module-list {
  display: grid;
  gap: 10px;
}

.dfp-module-list div {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.dfp-module-list strong {
  color: var(--theme-navy);
  font-size: 17px;
  line-height: 25px;
}

.dfp-module-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}

.dfp-variant-card .btn {
  width: max-content;
  margin-top: auto;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource-list a {
  display: grid;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  padding: 22px;
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(5, 42, 101, 0.07);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.resource-list a:hover {
  transform: translateY(-6px);
  border-color: rgba(202, 20, 29, 0.28);
  box-shadow: 0 18px 38px rgba(5, 42, 101, 0.14);
}

.resource-list strong {
  color: var(--theme-navy);
  font-size: 18px;
  line-height: 26px;
}

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

.trust-band {
  background: var(--theme-navy);
  padding: 0;
  overflow: hidden;
}

.trust-photo {
  min-height: 360px;
  background: url("assets/images/universite-admission.jpg") center 48% / cover no-repeat;
}

.trust-panel {
  position: relative;
  color: var(--white);
  background: var(--theme-navy);
  padding: 46px 0 0;
}

.trust-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--theme-blue);
}

.trust-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 24px;
}

.trust-panel-head h2 {
  max-width: 620px;
  color: var(--white);
  font-size: 34px;
  line-height: 44px;
  margin: 0;
}

.trust-panel-head p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trustScroll 30s linear infinite;
  will-change: transform;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

.trust-group {
  min-width: 100vw;
  min-height: 104px;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 42px;
  color: var(--white);
}

.trust-label {
  flex: 0 0 auto;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.trust-logo {
  width: 130px;
  max-height: 54px;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.trust-logo.logo-cisco {
  width: 142px;
  max-height: 64px;
}

.trust-logo.logo-leveltel {
  width: 118px;
  max-height: 48px;
}

.trust-logo.logo-slc {
  width: 168px;
  max-height: 56px;
  border-radius: 2px;
  object-fit: contain;
}

.trust-logo.logo-cci {
  width: 210px;
  max-height: 58px;
}

.trust-logo.logo-cloe,
.trust-logo.logo-tef,
.trust-logo.logo-dfp,
.trust-logo.logo-toeic {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.trust-logo.logo-cloe {
  width: 142px;
  max-height: 48px;
}

.trust-logo.logo-tef {
  width: 124px;
  max-height: 48px;
}

.trust-logo.logo-dfp {
  width: 178px;
  max-height: 50px;
}

.trust-logo.logo-toeic {
  width: 176px;
  max-height: 48px;
}

.trust-item {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.trust-item.logo-cloe {
  min-width: 82px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.trust-item:hover,
.trust-logo:hover {
  transform: translateY(-3px);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pathways-section {
  background: var(--white);
}

.pathways-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
  gap: 74px;
  align-items: start;
}

.pathways-copy {
  max-width: 560px;
  padding-top: 48px;
}

.pathways-copy h2 {
  max-width: 520px;
  color: var(--black);
  font-size: 43px;
  line-height: 54px;
  margin-bottom: 22px;
}

.pathways-copy p {
  margin-bottom: 34px;
}

.pathways-stack {
  display: grid;
  gap: 18px;
}

.pathway-card {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(100%, 470px);
  min-height: 118px;
  padding: 26px 72px 24px 28px;
  color: var(--white);
  background: var(--theme-navy);
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.pathway-card:nth-child(2),
.pathway-card:nth-child(4) {
  margin-left: -110px;
  background: var(--theme-blue);
}

.pathway-card:nth-child(3) {
  margin-left: 0;
}

.pathway-card strong {
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
}

.pathway-card span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 25px;
}

.pathway-card em {
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--white);
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.pathway-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(5, 42, 101, 0.18);
}

.pathway-card:hover em {
  transform: translateX(6px);
}

.audience-card,
.info-card,
.exam-card,
.cta-panel,
.map-placeholder,
.legal-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(5, 42, 101, 0.06);
}

.audience-card {
  min-height: 150px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--theme-blue);
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.audience-card::before,
.info-card::before,
.exam-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 115, 183, 0.08), rgba(202, 20, 29, 0.08));
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-red);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.14);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card strong {
  color: var(--theme-navy);
  font-size: 21px;
}

.audience-card span {
  color: var(--muted);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.faculty-card {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--theme-navy);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faculty-card img {
  width: 100%;
  height: 100%;
  min-height: 278px;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.faculty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 42, 101, 0.02), rgba(5, 42, 101, 0.32));
  transition: background 0.35s ease;
}

.faculty-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-height: 78px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(5, 42, 101, 0.92);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.35s ease, background 0.35s ease;
}

.faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(5, 42, 101, 0.2);
}

.faculty-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(0.9);
}

.faculty-card:hover::after {
  background: linear-gradient(180deg, rgba(202, 20, 29, 0.08), rgba(5, 42, 101, 0.48));
}

.faculty-card:hover span {
  background: var(--theme-red);
  transform: translateY(-8px);
}

.faculty-card.accent {
  border-top: 5px solid var(--theme-red);
  padding: 28px;
  background: linear-gradient(135deg, #08366f, var(--theme-navy));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.faculty-card.accent:hover {
  background: linear-gradient(135deg, var(--theme-blue), var(--theme-navy));
}

.faculty-card.accent::after {
  display: none;
}

.faculty-card.accent em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  margin-top: 12px;
}

.faculty-card.accent em::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 18px;
  background: var(--theme-red);
}

.faculty-card.accent span {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.faculty-card.accent:hover span {
  background: transparent;
  transform: none;
}

.activity-band {
  padding: 80px 0;
  background: var(--white);
}

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

.activity-card {
  min-height: 250px;
  padding: 36px;
  color: var(--white);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.activity-card > * {
  position: relative;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.2);
  filter: saturate(1.08);
}

.activity-card:hover::before {
  transform: translateX(120%);
}

.activity-card h2,
.activity-card p {
  color: var(--white);
}

.activity-card p {
  color: rgba(255, 255, 255, 0.88);
}

.activity-card.red {
  background: linear-gradient(rgba(202, 20, 29, 0.86), rgba(202, 20, 29, 0.92)), url("assets/images/brochure-cover.jpg") center / cover;
}

.activity-card.blue {
  background: linear-gradient(rgba(6, 115, 183, 0.84), rgba(5, 42, 101, 0.94)), url("assets/images/atelier.jpg") center / cover;
}

.campus-programs {
  background: var(--white);
}

.campus-programs-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 58px;
  margin-bottom: 40px;
}

.campus-programs-head p {
  margin: 0;
  color: var(--muted);
}

.campus-program-list {
  display: grid;
  gap: 26px;
}

.campus-program-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  min-height: 292px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--theme-blue);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.campus-program-card.accent {
  border-left-color: var(--theme-red);
}

.campus-program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 20, 29, 0.24);
  box-shadow: 0 24px 48px rgba(5, 42, 101, 0.17);
}

.campus-program-media {
  position: relative;
  min-height: 292px;
  background: var(--theme-navy);
  overflow: hidden;
}

.campus-program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 42, 101, 0.04), rgba(5, 42, 101, 0.72));
}

.campus-program-media img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.campus-program-card:hover .campus-program-media img {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(0.92);
}

.campus-program-media span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 26px;
}

.campus-program-content {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campus-program-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.campus-program-top span,
.campus-program-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.campus-program-top span {
  color: var(--white);
  background: var(--theme-blue);
}

.campus-program-card.accent .campus-program-top span {
  background: var(--theme-red);
}

.campus-program-top strong {
  color: var(--theme-navy);
  background: var(--pale);
}

.campus-program-content h3 {
  color: var(--theme-navy);
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 12px;
}

.campus-program-content p {
  max-width: 720px;
  margin-bottom: 22px;
}

.campus-program-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.campus-program-facts div {
  min-height: 78px;
  padding: 15px 16px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-top: 3px solid var(--theme-blue);
}

.campus-program-card.accent .campus-program-facts div {
  border-top-color: var(--theme-red);
}

.campus-program-facts strong {
  display: block;
  color: var(--theme-navy);
  font-size: 22px;
  line-height: 28px;
}

.campus-program-facts span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
}

.campus-program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--theme-red);
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 0 0 28px;
}

.timeline span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--theme-red);
  font-weight: 700;
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.timeline div:hover span {
  transform: scale(1.12);
  background: var(--theme-blue);
}

.timeline strong {
  color: var(--theme-navy);
  font-size: 18px;
}

.timeline p {
  grid-column: 2;
  margin: -18px 0 0;
}

.cta-banner {
  background: linear-gradient(90deg, rgba(6, 115, 183, 0.96), rgba(5, 42, 101, 0.98)), url("assets/images/universite-admission.jpg") center / cover;
  padding: 58px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: var(--white);
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.86);
  margin: 14px 0 0;
}

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

.news-grid.large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(5, 42, 101, 0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 20, 29, 0.24);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.15);
}

.news-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.news-card span,
.course-card span,
.exam-card span {
  display: inline-flex;
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card span,
.news-card h3,
.news-card h2,
.news-card p,
.news-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.news-card span {
  margin-top: 22px;
}

.news-card h3,
.news-card h2 {
  margin-top: 10px;
  font-size: 20px;
}

.news-card p {
  margin-top: 12px;
}

.news-card a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--theme-blue);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.news-card:hover a {
  color: var(--theme-red);
  transform: translateX(4px);
}

.subhero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  background: url("assets/images/universite-hero.jpg") center / cover;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 42, 101, 0.7);
}

.subhero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.subhero h1,
.subhero p {
  color: var(--white);
}

.subhero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-block .card-grid.two,
.program-block .card-grid.three,
.program-block .card-grid.four,
.program-block .card-grid.five {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-top: 4px solid var(--theme-blue);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.info-card h3 {
  margin-bottom: 12px;
  color: var(--theme-navy);
  font-size: 20px;
  line-height: 30px;
}

.info-card p {
  margin-bottom: 12px;
}

.info-card a {
  color: var(--theme-red);
  font-weight: 700;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-red);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.14);
}

.info-card:hover::before {
  opacity: 1;
}

.check-list {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  background: var(--theme-red);
}

.number-list {
  margin: 24px 0 0;
  padding-left: 24px;
  color: var(--muted);
  display: grid;
  gap: 14px;
}

.story-steps {
  display: grid;
  gap: 14px;
}

.story-steps div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--pale);
  border-left: 4px solid var(--theme-red);
}

.story-steps strong {
  color: var(--theme-red);
  font-size: 28px;
}

.story-steps span {
  color: var(--theme-navy);
  font-weight: 700;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.filter-panel label,
.form-panel label,
.newsletter label {
  display: grid;
  gap: 8px;
  color: var(--theme-navy);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel select,
.form-panel input,
.form-panel select,
.form-panel textarea,
.newsletter input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.filter-panel select:focus,
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus,
.newsletter input:focus {
  outline: 0;
  border-color: var(--theme-blue);
  box-shadow: 0 0 0 4px rgba(6, 115, 183, 0.12);
}

.form-panel textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.result-count {
  grid-column: 1 / -1;
  color: var(--theme-blue);
  font-weight: 700;
  padding: 4px 0 0;
}

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

.course-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(5, 42, 101, 0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.course-card[hidden] {
  display: none;
}

.course-card img {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.course-card div {
  padding: 24px;
}

.course-card h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 8px 0 12px;
  color: var(--theme-navy);
}

.course-card a {
  color: var(--theme-blue);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 20, 29, 0.24);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.14);
}

.course-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.course-card:hover a {
  color: var(--theme-red);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--theme-navy);
  background: var(--pale);
}

td a {
  color: var(--theme-red);
  font-weight: 700;
}

.formation-orientation .section-head {
  max-width: 820px;
}

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

.formation-route-card {
  position: relative;
  min-height: 430px;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(5, 42, 101, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.formation-route-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(6, 115, 183, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.formation-route-card > span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(6, 115, 183, 0.1);
  color: var(--theme-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.formation-route-card h3 {
  margin: 18px 0 12px;
  color: var(--theme-navy);
  font-size: 23px;
  line-height: 31px;
}

.formation-route-card p {
  margin: 0 0 18px;
  color: var(--text);
}

.formation-route-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
}

.formation-route-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 25px;
}

.formation-route-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--theme-red);
}

.formation-route-card .route-link {
  margin-top: auto;
  color: var(--theme-blue);
  font-weight: 800;
  transition: color 0.25s ease, transform 0.25s ease;
}

.formation-route-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 115, 183, 0.28);
  box-shadow: 0 22px 46px rgba(5, 42, 101, 0.15);
}

.formation-route-card:hover .route-link {
  color: var(--theme-red);
  transform: translateX(4px);
}

.formation-route-card.route-red {
  border-top-color: var(--theme-red);
}

.formation-route-card.route-red > span {
  background: rgba(202, 20, 29, 0.08);
  color: var(--theme-red);
}

.formation-route-card.route-dark {
  background: var(--theme-navy);
  border-color: var(--theme-navy);
  border-top-color: var(--theme-blue);
}

.formation-route-card.route-dark::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.formation-route-card.route-dark > span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.formation-route-card.route-dark h3,
.formation-route-card.route-dark p,
.formation-route-card.route-dark li,
.formation-route-card.route-dark .route-link {
  color: var(--white);
}

.formation-route-card.route-dark p,
.formation-route-card.route-dark li {
  opacity: 0.84;
}

.formation-route-card.route-dark:hover .route-link {
  color: var(--white);
}

.formation-route-card.route-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

@media (max-width: 1180px) {
  .formation-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formation-route-card {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .formation-route-grid {
    grid-template-columns: 1fr;
  }

  .formation-route-card {
    min-height: 0;
    padding: 26px;
  }

  .formation-route-card h3 {
    font-size: 21px;
    line-height: 29px;
  }
}

.form-panel {
  padding: 28px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 14px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.form-panel h3 {
  color: var(--theme-navy);
  font-size: 24px;
  line-height: 36px;
}

.form-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 115, 183, 0.28);
  box-shadow: 0 18px 36px rgba(5, 42, 101, 0.11);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.exam-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-top: 5px solid var(--theme-blue);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.exam-card h3 {
  color: var(--theme-navy);
  font-size: 22px;
  line-height: 33px;
  margin: 8px 0 12px;
}

.exam-card a {
  color: var(--theme-red);
  font-weight: 700;
}

.exam-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-red);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.14);
}

.exam-card:hover::before {
  opacity: 1;
}

.exam-card.accent {
  color: var(--white);
  background: var(--theme-navy);
  border-color: var(--theme-red);
}

.exam-card.accent h3,
.exam-card.accent p,
.exam-card.accent a {
  color: var(--white);
}

.exams-showcase {
  background: linear-gradient(180deg, var(--white) 0%, var(--pale) 100%);
  scroll-margin-top: 150px;
}

.exams-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}

.exams-head h2 {
  margin-bottom: 0;
}

.exams-head p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 29px;
}

.exam-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.34fr);
  gap: 24px;
}

.exam-feature-card,
.exam-mini-card,
.exam-advice-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(5, 42, 101, 0.08);
}

.exam-feature-card,
.exam-mini-card {
  scroll-margin-top: 150px;
}

.exam-feature-card {
  min-height: 520px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: linear-gradient(145deg, var(--theme-navy), #0a4d82);
}

.exam-feature-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.exam-feature-card > * {
  position: relative;
  z-index: 1;
}

.exam-feature-card span,
.exam-mini-card span,
.exam-advice-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--theme-red);
  background: rgba(202, 20, 29, 0.08);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.exam-feature-card span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.exam-feature-card h3 {
  max-width: 440px;
  color: var(--white);
  font-size: 38px;
  line-height: 48px;
  margin: 22px 0 16px;
}

.exam-feature-card p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 29px;
}

.exam-feature-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.exam-feature-meta div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}

.exam-feature-meta strong,
.exam-feature-meta em {
  display: block;
}

.exam-feature-meta strong {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.exam-feature-meta em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  line-height: 24px;
}

.exam-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.exam-mini-card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.exam-mini-card:nth-child(even) {
  border-top-color: var(--theme-red);
}

.exam-mini-card h3 {
  color: var(--theme-navy);
  font-size: 22px;
  line-height: 31px;
  margin: 18px 0 10px;
}

.exam-mini-card p {
  color: var(--muted);
  line-height: 26px;
}

.exam-mini-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--theme-red);
  font-weight: 800;
}

.exam-mini-card:hover {
  transform: translateY(-7px);
  border-color: rgba(202, 20, 29, 0.24);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.14);
}

.exam-advice-card {
  grid-column: 1 / -1;
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--theme-red);
}

.exam-advice-card h3 {
  color: var(--theme-navy);
  font-size: 24px;
  line-height: 32px;
  margin: 12px 0 8px;
}

.exam-advice-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  padding: 36px;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.cta-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.14);
}

.cta-panel.compact {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.level-grid div {
  min-height: 140px;
  padding: 28px;
  background: var(--theme-navy);
  color: var(--white);
  border-radius: 4px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.level-grid div:hover {
  transform: translateY(-8px);
  background: var(--theme-blue);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.16);
}

.level-grid strong {
  display: block;
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--turquoise-light);
}

.level-grid span {
  color: rgba(255, 255, 255, 0.84);
}

.centers-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.centers-intro h2 {
  font-size: 40px;
  line-height: 50px;
  color: var(--black);
  margin-bottom: 18px;
}

.centers-intro p {
  max-width: 680px;
}

.centers-action-panel {
  position: relative;
  background: linear-gradient(135deg, var(--theme-navy), #09477f);
  color: var(--white);
  padding: 34px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(5, 42, 101, 0.18);
}

.centers-action-panel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--theme-red);
}

.center-action-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.center-action-row:first-child {
  padding-top: 0;
}

.center-action-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.center-action-row span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--theme-blue);
  font-weight: 800;
}

.center-action-row strong {
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 6px;
}

.center-action-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.center-grid {
  display: grid;
  gap: 30px;
}

.center-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--theme-blue);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.center-card:nth-child(2) {
  border-top-color: var(--theme-red);
}

.center-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.center-card > div {
  padding: 42px;
}

.center-card h2 {
  font-size: 30px;
  color: var(--theme-navy);
  margin-bottom: 18px;
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.center-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(5, 42, 101, 0.18);
}

.center-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.centers-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.center-service-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.center-service-card:nth-child(even) {
  border-top-color: var(--theme-red);
}

.center-service-card span {
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.center-service-card strong {
  color: var(--theme-navy);
  font-size: 22px;
  line-height: 30px;
}

.center-service-card em {
  color: var(--text);
  font-style: normal;
}

.center-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 115, 183, 0.35);
  box-shadow: 0 22px 45px rgba(5, 42, 101, 0.16);
}

.centers-map-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: center;
}

.centers-map-section.centers-map-only {
  grid-template-columns: 1fr;
}

.centers-map-section h2 {
  font-size: 42px;
  line-height: 52px;
  color: var(--black);
  margin-bottom: 16px;
}

.centers-map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 24px 52px rgba(5, 42, 101, 0.16);
}

.centers-map-only .centers-map-card {
  min-height: 560px;
}

.centers-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(rgba(248, 253, 255, 0.92), rgba(248, 253, 255, 0.92)), url("assets/images/universite-news.jpg") center / cover;
}

.map-placeholder p {
  max-width: 620px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-visual {
  position: relative;
  min-height: 540px;
  background: var(--theme-red);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.92;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.visual-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 290px;
  padding: 18px 20px;
  color: var(--theme-navy);
  background: var(--white);
  border-left: 5px solid var(--theme-red);
  font-weight: 700;
  transition: transform 0.32s ease;
}

.contact-visual:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(5, 42, 101, 0.15);
}

.contact-visual:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.contact-visual:hover .visual-label {
  transform: translateY(-8px);
}

.contact-form {
  background: var(--pale);
  padding: 36px;
}

#orientation {
  scroll-margin-top: 150px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 52px;
}

.contact-info-grid > div:first-child {
  position: sticky;
  top: 150px;
}

.contact-info-grid > div:first-child p {
  max-width: 470px;
  margin: 16px 0 28px;
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-lines a {
  position: relative;
  min-height: 196px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--theme-blue);
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(5, 42, 101, 0.07);
  scroll-margin-top: 150px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.contact-lines a::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 36px;
  width: 44px;
  height: 3px;
  background: rgba(6, 115, 183, 0.22);
  transition: width 0.32s ease, background 0.32s ease;
}

.contact-lines a:nth-child(even) {
  border-top-color: var(--theme-red);
}

.contact-lines a.contact-accessibility {
  grid-column: 1 / -1;
  min-height: 156px;
}

.contact-lines a.contact-accessibility em {
  max-width: 620px;
}

.contact-lines a:nth-child(even)::after {
  background: rgba(202, 20, 29, 0.24);
}

.contact-lines a:hover {
  transform: translateY(-8px);
  border-color: rgba(202, 20, 29, 0.24);
  box-shadow: 0 22px 44px rgba(5, 42, 101, 0.14);
}

.contact-lines a:focus {
  outline: 0;
}

.contact-lines a:focus-visible {
  border-color: rgba(6, 115, 183, 0.34);
  box-shadow: 0 0 0 3px rgba(6, 115, 183, 0.14), 0 18px 38px rgba(5, 42, 101, 0.12);
}

.contact-lines a:target:focus-visible {
  border-color: var(--line);
  border-top-color: var(--theme-blue);
  box-shadow: 0 10px 26px rgba(5, 42, 101, 0.07);
}

.contact-lines a:nth-child(even):target:focus-visible {
  border-top-color: var(--theme-red);
}

.contact-lines a:hover::after {
  width: 66px;
  background: rgba(202, 20, 29, 0.38);
}

.contact-lines span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--theme-blue);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.contact-lines a:nth-child(even) span {
  background: var(--theme-red);
}

.contact-lines strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--theme-navy);
  max-width: 260px;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}

.contact-lines em {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.legal-grid > div {
  padding: 24px;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.legal-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(5, 42, 101, 0.11);
}

.site-footer {
  color: var(--white);
  background: var(--theme-navy);
}

.footer-map {
  padding: 56px 0;
  background: linear-gradient(rgba(6, 115, 183, 0.86), rgba(6, 115, 183, 0.9)), url("assets/images/universite-news.jpg") center / cover;
}

.footer-grid {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h3,
.footer-main h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-main a,
.footer-bottom a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-grid a:hover,
.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-qualiopi img {
  width: 180px;
  max-height: 92px;
  object-fit: contain;
  margin: 2px 0 14px;
  padding: 10px 12px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(5, 42, 101, 0.12);
}

.footer-download {
  display: inline-flex !important;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--theme-navy) !important;
  background: var(--white);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
}

.footer-download:hover {
  color: var(--white) !important;
  background: var(--theme-red);
  transform: translateY(-3px) !important;
}

.footer-main {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 4px;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact p {
  margin: 0 0 12px;
  line-height: 24px;
}

.footer-contact-links {
  display: grid;
  gap: 5px;
}

.footer-contact-links a {
  width: fit-content;
  margin: 0;
  line-height: 22px;
}

.newsletter {
  display: grid;
  gap: 12px;
  align-self: start;
}

.newsletter label {
  color: var(--white);
}

.newsletter input {
  border: 0;
}

.footer-bottom {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-bottom span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  margin: 0;
}

@media (min-width: 1121px) and (max-width: 1360px) {
  .main-nav {
    gap: 14px;
  }

  .nav-menu {
    gap: 2px;
  }

  .nav-menu a {
    padding: 0 8px;
    font-size: 12px;
  }

  .nav-actions .btn-small {
    padding: 0 12px;
    font-size: 11px;
  }
}

@media (max-width: 1120px) {
  .header-info {
    gap: 10px;
  }

  .info-pill {
    min-width: 160px;
  }

  .nav-menu a {
    padding: 0 8px;
    font-size: 12px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .card-grid.five,
  .card-grid.four,
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  @keyframes menuDrop {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h2 {
    font-size: 31px;
    line-height: 40px;
  }

  .topline {
    min-height: 74px;
  }

  .header-info {
    display: none;
  }

  .main-nav {
    justify-content: space-between;
    min-height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 134px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .nav-item {
    display: block;
  }

  .nav-open .nav-menu {
    display: flex;
    animation: menuDrop 0.24s ease both;
  }

  .nav-menu a {
    min-height: 54px;
    padding: 0 28px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-caret {
    display: none;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f3f7fd;
  }

  .dropdown a {
    min-height: 46px;
    padding-left: 44px;
    font-size: 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    background: rgba(5, 42, 101, 0.76);
  }

  .hero-content {
    padding: 74px 0 110px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .quick-panels,
  .split,
  .about-lead,
  .about-proof-grid,
  .about-quality,
  .about-centres,
  .centers-intro,
  .centers-map-section,
  .trust-panel-head,
  .pathways-layout,
  .exams-head,
  .exam-showcase-grid,
  .campus-programs-head,
  .campus-program-card,
  .assessment-layout,
  .finance-layout,
  .cecrl-summary,
  .activity-grid,
  .contact-layout,
  .contact-info-grid,
  .form-grid,
  .footer-main,
  .footer-grid,
  .center-card {
    grid-template-columns: 1fr;
  }

  .centers-intro h2,
  .centers-map-section h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .centers-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .centers-map-card {
    min-height: 420px;
  }

  .pathways-layout {
    gap: 38px;
  }

  .pathways-copy {
    max-width: none;
    padding-top: 0;
  }

  .pathway-card,
  .pathway-card:nth-child(2),
  .pathway-card:nth-child(4) {
    width: 100%;
    margin-left: 0;
  }

  .quick-panels {
    margin-top: 0;
    width: 100%;
  }

  .campus-program-card {
    min-height: 0;
  }

  .campus-program-media,
  .campus-program-media img {
    min-height: 240px;
  }

  .trust-group {
    min-height: 82px;
    padding: 0 28px;
    gap: 30px;
  }

  .trust-photo {
    min-height: 280px;
  }

  .trust-panel {
    padding-top: 36px;
  }

  .trust-panel-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .trust-panel-head h2 {
    font-size: 30px;
    line-height: 39px;
  }

  .trust-track {
    animation-duration: 24s;
  }

  .trust-logo {
    width: 112px;
  }

  .trust-logo.logo-cisco {
    width: 126px;
  }

  .trust-logo.logo-leveltel {
    width: 104px;
  }

  .trust-logo.logo-slc {
    width: 140px;
  }

  .trust-logo.logo-cci {
    width: 172px;
  }

  .trust-logo.logo-cloe {
    width: 128px;
  }

  .trust-logo.logo-tef {
    width: 112px;
  }

  .trust-logo.logo-dfp {
    width: 148px;
  }

  .trust-logo.logo-toeic {
    width: 146px;
  }

  .quick-panel,
  .quick-panel:nth-child(2),
  .quick-panel.red {
    min-height: 210px;
    margin-top: 0;
    padding: 36px 28px;
  }

  .quick-panel.red {
    top: 0;
  }

  .quick-panel h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 14px;
  }

  .quick-panel p {
    font-size: 15px;
    line-height: 25px;
  }

  .level-program-grid {
    grid-template-columns: 1fr;
  }

  .about-poles {
    grid-template-columns: 1fr;
  }

  .about-pole-card {
    min-height: 0;
  }

  .dfp-variant-grid {
    grid-template-columns: 1fr;
  }

  .cecrl-summary {
    padding: 26px;
  }

  .cecrl-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cecrl-steps::before {
    display: none;
  }

  .graduate-stack {
    margin-bottom: 20px;
  }

  .faculty-grid,
  .news-grid,
  .news-grid.large,
  .course-grid,
  .exam-grid,
  .legal-grid,
  .level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .campus-programs-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .exams-head {
    gap: 16px;
  }

  .exam-feature-card {
    min-height: 420px;
  }

  .contact-info-grid > div:first-child {
    position: static;
  }

  .contact-lines a {
    min-height: 176px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container,
  .topline,
  .footer-main,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1140px);
  }

  h1 {
    font-size: 34px;
    line-height: 43px;
  }

  h2 {
    font-size: 27px;
    line-height: 36px;
  }

  .brand img {
    width: 142px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-red {
    max-width: 178px;
    white-space: normal;
  }

  .hero p,
  .subhero p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 43px;
  }

  .section {
    padding: 68px 0;
  }

  .trust-photo {
    min-height: 220px;
  }

  .trust-panel-head h2 {
    font-size: 27px;
    line-height: 36px;
  }

  .pathways-copy h2 {
    font-size: 31px;
    line-height: 40px;
  }

  .pathway-card {
    min-height: 112px;
    padding: 22px 58px 22px 24px;
  }

  .pathway-card em {
    right: 22px;
    font-size: 26px;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn {
    width: 100%;
  }

  .about-identity-card,
  .about-quality-card {
    padding: 26px;
  }

  .about-identity-card div,
  .about-centre-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-pole-card {
    padding: 24px;
  }

  .centers-action-panel {
    padding: 26px;
  }

  .center-action-row {
    grid-template-columns: 1fr;
  }

  .center-actions {
    flex-direction: column;
  }

  .center-actions .btn,
  .center-service-card {
    width: 100%;
  }

  .centers-service-strip {
    grid-template-columns: 1fr;
  }

  .centers-map-card {
    min-height: 520px;
  }

  .reveal-ready.reveal-left,
  .reveal-ready.reveal-right {
    transform: translate3d(0, 24px, 0);
  }

  .faculty-grid,
  .news-grid,
  .news-grid.large,
  .course-grid,
  .exam-grid,
  .legal-grid,
  .level-grid,
  .audience-grid,
  .contact-lines,
  .card-grid.five,
  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .card-grid.six {
    grid-template-columns: 1fr;
  }

  .course-card {
    grid-template-columns: 1fr;
  }

  .course-card img {
    min-height: 220px;
  }

  .exam-list,
  .exam-feature-meta {
    grid-template-columns: 1fr;
  }

  .exam-feature-card {
    min-height: 0;
    padding: 28px;
  }

  .exam-feature-card h3 {
    font-size: 30px;
    line-height: 39px;
  }

  .exam-mini-card {
    min-height: 0;
    padding: 24px;
  }

  .exam-advice-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .exam-advice-card .btn,
  .exam-feature-card .btn {
    width: 100%;
  }

  .campus-program-content {
    padding: 26px;
  }

  .campus-program-facts {
    grid-template-columns: 1fr;
  }

  .campus-program-actions .btn {
    width: 100%;
  }

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

  .assessment-flow::before {
    display: none;
  }

  .assessment-step {
    grid-template-columns: 1fr;
  }

  .assessment-step > span {
    width: 48px;
    height: 48px;
  }

  .assessment-skills {
    grid-template-columns: 1fr;
  }

  .score-card-head {
    flex-direction: column;
  }

  .score-card-head span {
    text-align: left;
  }

  .score-lines div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pricing-card,
  .access-panel {
    padding: 22px;
  }

  .pricing-card {
    min-height: auto;
  }

  .price-line strong {
    font-size: 30px;
    line-height: 38px;
  }

  .access-item {
    grid-template-columns: 1fr;
  }

  .level-program-card {
    padding: 22px;
  }

  .dfp-variant-card {
    padding: 22px;
  }

  .dfp-meta-grid {
    grid-template-columns: 1fr;
  }

  .dfp-levels {
    grid-template-columns: 1fr;
  }

  .dfp-card-head h3 {
    font-size: 24px;
    line-height: 33px;
  }

  .dfp-variant-card .btn {
    width: 100%;
  }

  .level-card-head {
    grid-template-columns: 1fr;
  }

  .level-card-head > span {
    width: 54px;
    height: 54px;
  }

  .cecrl-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-block {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    padding: 16px;
  }

  .stats-panel div,
  .formation-facts div {
    grid-template-columns: 1fr;
  }

  .formation-facts {
    padding: 16px;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-visual {
    min-height: 360px;
  }

  .contact-lines a {
    min-height: 0;
    padding: 24px;
  }

  .contact-lines a::after {
    right: 24px;
    top: 34px;
  }

  .contact-lines strong {
    max-width: none;
    font-size: 19px;
    line-height: 27px;
  }

  .center-card > div {
    padding: 28px;
  }
}

@media (max-width: 430px) {
  .nav-actions {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
