:root {
  --ink: #111318;
  --black: #05070d;
  --navy: #171b2a;
  --navy-deep: #071532;
  --blue: #17326d;
  --gray: #aeb6bd;
  --gray-soft: #eef1f4;
  --gold: #d9bd3b;
  --gold-bright: #efe24a;
  --brand-orange: #f36f21;
  --white: #ffffff;
  --muted: #6a7280;
  --line: #d9dee7;
  --green: #24b85a;
  --shadow: 0 18px 50px rgba(7, 21, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-orange);
  border-bottom: 1px solid rgba(5, 7, 13, 0.14);
  backdrop-filter: blur(14px);
}

.main-nav {
  position: relative;
  width: min(1760px, calc(100% - 24px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.64vw, 13px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.nav-zlearn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 42px;
}

.nav-zlearn img {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.nav-essel {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 38px;
  overflow: hidden;
  border-radius: 3px;
  background: #05070d;
}

.nav-essel img {
  width: 76px;
  height: 34px;
  object-fit: contain;
  transform: scale(1.14);
  transform-origin: center;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  padding: 7px clamp(4px, 0.4vw, 8px);
  border-radius: 4px;
  font-size: clamp(12px, 0.68vw, 14px);
  font-weight: 700;
  white-space: nowrap;
}

.nav-link.has-dropdown::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--white);
  background: rgba(5, 7, 13, 0.18);
  outline: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 70;
  min-width: 182px;
  padding: 10px 0;
  display: none;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  border-radius: 0 0 4px 4px;
  background: #000000;
  box-shadow: 0 18px 34px rgba(5, 7, 13, 0.24);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.dropdown-menu-wide {
  min-width: 252px;
}

.dropdown-menu-compact {
  min-width: 180px;
}

.dropdown-menu-events {
  min-width: 218px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--white);
  background: rgba(243, 111, 33, 0.88);
  outline: none;
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  padding: 10px 14px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

.nav-cta {
  flex: 0 0 auto;
  min-width: 118px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: clamp(16px, 0.98vw, 19px);
  text-align: center;
}

.nav-cta,
.button.primary {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(217, 189, 59, 0.24);
}

.site-header .nav-cta {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 12px 28px rgba(5, 7, 13, 0.2);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.nav-toggle strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero-slider {
  position: relative;
  min-height: 800px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(23, 27, 42, 0.92) 33%, rgba(23, 27, 42, 0.42) 68%, rgba(23, 27, 42, 0.1) 100%),
    radial-gradient(circle at 18% 28%, rgba(217, 189, 59, 0.16), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 800px;
  margin: 0 auto;
  padding: 58px 0 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 26px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  overflow-wrap: break-word;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges,
.hero-actions {
  display: none;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  width: min(1040px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
}

.slide-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--white);
  background: rgba(5, 7, 13, 0.72);
  font-size: 30px;
  cursor: pointer;
}

.slide-tabs {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(14px);
}

.slide-tab {
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  padding: 0 8px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  cursor: pointer;
}

.slide-tab.is-active {
  color: var(--black);
  background: var(--gold);
}

.intro-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong,
.intro-item span {
  display: block;
}

.intro-item strong {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.3;
}

.intro-item span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.admission-band h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.admission-band p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.course-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  scroll-margin-top: 96px;
}

.course-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.course-body {
  padding: 26px;
}

.course-type {
  display: inline-flex;
  margin: 0 0 12px;
  border-radius: 4px;
  padding: 7px 10px;
  color: var(--black);
  background: rgba(217, 189, 59, 0.24);
  font-size: 13px;
  font-weight: 900;
}

.course-body h3,
.feature-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.course-body p,
.feature-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.course-body ul {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--ink);
}

.course-body a {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.why-section {
  width: 100%;
  max-width: none;
  background: var(--gray-soft);
}

.why-section .section-heading,
.feature-grid {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

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

.feature-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.feature-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.admission-band {
  width: min(1180px, calc(100% - 32px));
  margin: 88px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 27, 42, 0.96), rgba(7, 21, 50, 0.98)),
    radial-gradient(circle at 84% 24%, rgba(217, 189, 59, 0.22), transparent 30%);
}

.admission-band h2,
.admission-band p {
  color: var(--white);
}

.admission-band p {
  max-width: 800px;
  margin-bottom: 0;
}

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

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

.faq-list summary {
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.zica-premium-faq {
  position: relative;
  width: 100%;
  padding: clamp(72px, 7vw, 112px) 0;
  overflow: hidden;
  scroll-margin-top: 90px;
  background:
    linear-gradient(135deg, rgba(238, 241, 244, 0.98) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(243, 111, 33, 0.09) 100%),
    var(--white);
}

.zica-premium-faq::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, var(--brand-orange), var(--gold), var(--blue));
}

.zica-premium-faq__container {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.zica-premium-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.zica-premium-faq__content {
  min-width: 0;
}

.zica-premium-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(243, 111, 33, 0.24);
  border-radius: 4px;
  color: var(--brand-orange);
  background: rgba(243, 111, 33, 0.1);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zica-premium-faq__content h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.zica-premium-faq__intro {
  max-width: 720px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.zica-premium-faq__accordion {
  display: grid;
  gap: 14px;
}

.zica-premium-faq__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 109, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(7, 21, 50, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.zica-premium-faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.zica-premium-faq__item:hover,
.zica-premium-faq__item--open {
  border-color: rgba(243, 111, 33, 0.36);
  box-shadow: 0 22px 54px rgba(7, 21, 50, 0.12);
}

.zica-premium-faq__item:hover {
  transform: translateY(-2px);
}

.zica-premium-faq__item--open::before {
  transform: scaleX(1);
}

.zica-premium-faq__question {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.zica-premium-faq__question:focus-visible {
  outline: 3px solid rgba(243, 111, 33, 0.28);
  outline-offset: -3px;
}

.zica-premium-faq__number,
.zica-premium-faq__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.zica-premium-faq__number {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.zica-premium-faq__question-text {
  min-width: 0;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.zica-premium-faq__toggle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 50, 109, 0.14);
  border-radius: 6px;
  color: var(--blue);
  background: var(--white);
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.zica-premium-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.zica-premium-faq__answer-inner {
  min-height: 0;
  overflow: hidden;
}

.zica-premium-faq__answer p {
  margin: 0;
  padding: 0 22px 24px 80px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.zica-premium-faq__item--open .zica-premium-faq__answer {
  grid-template-rows: 1fr;
}

.zica-premium-faq__item--open .zica-premium-faq__number {
  background: var(--brand-orange);
}

.zica-premium-faq__item--open .zica-premium-faq__toggle {
  color: var(--white);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  transform: rotate(45deg);
}

.zica-premium-faq__media {
  min-width: 0;
}

.zica-premium-faq__image {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: 0 28px 70px rgba(7, 21, 50, 0.24);
}

.zica-premium-faq__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.01);
}

.zica-premium-faq__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.03) 0%, rgba(7, 21, 50, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 21, 50, 0.34), rgba(243, 111, 33, 0.08));
}

.zica-premium-faq__image figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 12px;
  color: var(--white);
}

.zica-premium-faq__image figcaption span {
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--black);
  background: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
}

.zica-premium-faq__image figcaption strong {
  max-width: 420px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

.zica-premium-faq__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.zica-premium-faq__proof span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(23, 50, 109, 0.12);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.zica-premium-faq__proof i {
  color: var(--brand-orange);
  font-size: 18px;
}

.zica-apply-page {
  min-height: calc(100vh - 86px);
  padding: 60px 0 100px;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 111, 33, 0.04), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(21, 43, 99, 0.05), transparent 40%),
    #f8fafc;
  overflow-x: hidden;
}

.zica-apply-hero {
  padding: 0 16px 40px;
  text-align: center;
}

.zica-apply-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--brand-orange);
  background: rgba(243, 111, 33, 0.1);
  border: 1px solid rgba(243, 111, 33, 0.2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zica-apply-hero h1 {
  margin: 0 auto;
  max-width: 800px;
  color: var(--navy-deep);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.zica-apply-hero h1 span {
  color: var(--brand-orange);
}

.zica-apply-hero p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.zica-apply-wrap {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}

.zica-apply-form {
  min-width: 0;
  display: grid;
  gap: 28px;
  padding: 48px;
  border: 1px solid rgba(24, 32, 44, 0.06);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7, 21, 50, 0.04);
}

.zica-apply-form__head {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(24, 32, 44, 0.06);
}

.zica-apply-form__head h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.zica-apply-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.zica-apply-fieldset legend {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: var(--brand-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 0;
}

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

.zica-apply-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.zica-apply-field span {
  color: var(--navy-deep);
  font-size: 13.5px;
  font-weight: 850;
}

.zica-apply-field b {
  color: var(--brand-orange);
}

.zica-apply-field input,
.zica-apply-field select {
  min-width: 0;
  width: 100%;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--navy-deep);
  background: #f8fafc;
  font-size: 14.5px;
  outline: none;
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.zica-apply-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.zica-apply-field input:focus,
.zica-apply-field select:focus {
  border-color: var(--brand-orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.12);
}

.zica-apply-captcha {
  min-width: 0;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.zica-apply-captcha strong {
  min-width: 0;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--navy-deep);
  background: #f1f5f9;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.25em;
  font-family: monospace;
}

.zica-apply-captcha button {
  min-width: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: var(--navy-deep);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: all 200ms ease;
}

.zica-apply-captcha button:hover,
.zica-apply-captcha button:focus-visible {
  color: var(--white);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  outline: none;
}

.zica-apply-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  cursor: pointer;
}

.zica-apply-consent input {
  flex: 0 0 auto;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--brand-orange);
}

.zica-apply-submit {
  min-height: 52px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-orange);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(243, 111, 33, 0.25);
  transition: all 200ms ease;
}

.zica-apply-submit:hover,
.zica-apply-submit:focus-visible {
  background: #df5d16;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 111, 33, 0.35);
  outline: none;
}

.zica-apply-alert {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.5;
}

.zica-apply-alert p {
  margin: 0;
}

.zica-apply-alert--success {
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.25);
  background: #f0fdf4;
}

.zica-apply-alert--error {
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.2);
  background: #fef2f2;
}

@media (max-width: 991px) {
  .zica-premium-faq__layout {
    grid-template-columns: 1fr;
  }

  .zica-premium-faq__image,
  .zica-premium-faq__image img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .zica-premium-faq {
    padding: 64px 0;
  }

  .zica-premium-faq__container {
    width: min(390px, 100%);
    padding: 0 16px;
  }

  .zica-premium-faq__content h2 {
    font-size: 32px;
  }

  .zica-premium-faq__intro {
    font-size: 16px;
  }

  .zica-premium-faq__question {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 68px;
    padding: 16px 14px;
  }

  .zica-premium-faq__number,
  .zica-premium-faq__toggle {
    width: 32px;
    height: 32px;
  }

  .zica-premium-faq__question-text {
    font-size: 16px;
  }

  .zica-premium-faq__answer p {
    padding: 0 14px 20px 58px;
    font-size: 15px;
  }

  .zica-premium-faq__image,
  .zica-premium-faq__image img {
    min-height: 320px;
  }

  .zica-premium-faq__image figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .zica-premium-faq__image figcaption strong {
    font-size: 23px;
  }

  .zica-premium-faq__proof {
    grid-template-columns: 1fr;
  }

  .zica-apply-page {
    padding: 40px 0 60px;
  }

  .zica-apply-hero {
    padding: 0 16px 24px;
  }

  .zica-apply-hero h1 {
    font-size: 26px;
  }

  .zica-apply-wrap {
    width: min(100%, calc(100% - 32px));
    margin-top: 16px;
  }

  .zica-apply-form {
    gap: 20px;
    padding: 24px 20px;
  }

  .zica-apply-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zica-apply-captcha {
    grid-template-columns: 90px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .zica-apply-captcha strong,
  .zica-apply-captcha button {
    height: 42px;
  }

  .zica-apply-captcha button {
    width: 42px;
  }

  .zica-apply-consent span {
    min-width: 0;
    overflow-wrap: break-word;
  }
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 32px;
  padding: 42px;
  border-radius: 6px;
  background: var(--gray-soft);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--blue);
  background: var(--white);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.08);
}

.lead-form label,
.lead-form span {
  display: grid;
  gap: 6px;
}

.lead-form span {
  color: var(--navy);
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 50, 109, 0.12);
}

.quick-actions {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 45;
  display: grid;
  gap: 6px;
  transform: translateY(-50%);
}

.quick-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 21, 50, 0.22);
}

.admission-pill {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 16px 10px;
  background: var(--blue);
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-call {
  background: var(--black);
}

.quick-whatsapp {
  background: var(--green);
}

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

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 32px;
}

.site-footer img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: #ffffff;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1199px) {
  .main-nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: grid;
    order: 4;
    position: relative;
    z-index: 100;
  }

  .nav-essel {
    order: 2;
  }

  .nav-zlearn {
    order: 3;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 90;
    width: min(330px, calc(100vw - 52px));
    height: 100vh;
    display: grid;
    align-content: start;
    gap: 2px;
    padding: 88px 16px 24px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: var(--black);
    box-shadow: -20px 0 44px rgba(5, 7, 13, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateX(105%);
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
    pointer-events: none;
  }

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

  .nav-item {
    display: grid;
  }

  .nav-link {
    width: 100%;
    padding: 13px;
    justify-content: flex-start;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    display: grid;
    max-height: 0;
    padding: 0 0 0 10px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-item.is-open > .nav-link {
    color: var(--white);
    background: rgba(243, 111, 33, 0.18);
  }

  .nav-item.is-open > .dropdown-menu {
    max-height: 680px;
    padding-bottom: 8px;
    pointer-events: auto;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    white-space: normal;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: rgba(243, 111, 33, 0.18);
  }

  .nav-cta {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 700px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 7, 13, 0.96), rgba(23, 27, 42, 0.76));
  }

  .intro-strip,
  .course-grid,
  .feature-grid,
  .contact-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .admission-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .main-nav {
    width: 100%;
    margin: 0;
    min-height: 72px;
    padding: 0 72px 0 16px;
    gap: 12px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .nav-zlearn {
    display: none;
  }

  .nav-essel {
    display: inline-flex;
    width: 74px;
    height: 34px;
  }

  .nav-essel img {
    width: 68px;
    height: 30px;
  }

  .nav-toggle {
    position: absolute;
    display: grid !important;
    top: 50%;
    right: 16px;
    z-index: 100;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 0;
    transform: translateY(-50%);
    border-color: rgba(255, 255, 255, 0.5);
    background: var(--black);
  }

  .hero-slider,
  .hero-content {
    min-height: 430px;
  }

  .hero-content {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: 0;
    padding: 38px 0 72px;
    justify-content: flex-start;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 13, 0.86) 0%, rgba(7, 21, 50, 0.68) 52%, rgba(7, 21, 50, 0.22) 100%),
      linear-gradient(180deg, rgba(5, 7, 13, 0.18) 0%, rgba(5, 7, 13, 0.46) 100%);
  }

  .hero-logo {
    width: 126px;
  }

  .hero-content h1 {
    max-width: 340px;
    font-size: 30px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 16px;
    margin-top: 14px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
  }

  .hero-badges span {
    width: 100%;
  }

  .slider-controls {
    left: 16px;
    right: auto;
    width: min(358px, calc(100% - 32px));
    transform: none;
    grid-template-columns: minmax(0, 1fr);
    bottom: 8px;
  }

  .slide-tabs {
    display: flex;
    flex-direction: row;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }

  .slide-tabs::-webkit-scrollbar {
    display: none;
  }

  .slide-arrow {
    display: none;
  }

  .slide-tab {
    flex: 0 0 68px;
    min-height: 36px;
    padding: 0 3px;
    font-size: 9px;
    line-height: 1.15;
    white-space: normal;
  }

  .section-heading h2,
  .admission-band h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .intro-strip {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    width: min(390px, 100%);
    border-radius: 0;
  }

  .section {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: 0;
    padding: 60px 0;
  }

  .course-body,
  .feature-grid article,
  .lead-form {
    padding: 20px;
  }

  .admission-band,
  .contact-section {
    width: min(390px, 100%);
    margin-left: 0;
    margin-right: 0;
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 0;
    padding: 28px 16px;
  }

  .quick-actions {
    top: auto;
    right: 10px;
    bottom: 10px;
    transform: none;
    grid-auto-flow: column;
  }

  .admission-pill {
    writing-mode: horizontal-tb;
    transform: none;
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

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

@media (max-width: 420px) {
  .hero-slider,
  .hero-content {
    min-height: 400px;
  }

  .hero-content {
    padding: 30px 0 64px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.45;
  }

  .slide-tab {
    flex-basis: 64px;
    min-height: 34px;
    font-size: 8px;
  }
}

.nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(24, 32, 44, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(5, 7, 13, 0.16);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1440px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 68px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 7, 13, 0.18);
}

.nav-brand img,
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent;
}

.nav-partner-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding-left: 2px;
}

.nav-essel,
.nav-zlearn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.95); */
  box-shadow: none;
}

.nav-essel {
  width: 76px;
  height: 66px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-essel img {
  width: 68px;
  height: 58px;
  object-fit: contain;
  transform: none;
}

.nav-zlearn {
  width: 76px;
  height: 66px;
  border-radius: 8px;
}

.nav-zlearn img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-width: 0;
}

.nav-drawer-head,
.nav-mobile-cta,
.nav-overlay {
  display: none;
}

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

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 11px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link.has-dropdown::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--white);
  background: rgba(243, 111, 33, 0.18);
  outline: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1200;
  min-width: 220px;
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #18202c;
  box-shadow: 0 24px 60px rgba(5, 7, 13, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.dropdown-menu-wide {
  min-width: 286px;
}

.dropdown-menu-compact {
  min-width: 190px;
}

.dropdown-menu-events {
  min-width: 232px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--white);
  background: rgba(243, 111, 33, 0.18);
  outline: none;
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cta,
.nav-mobile-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brand-orange);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(243, 111, 33, 0.22);
  white-space: nowrap;
}

.site-header .nav-cta {
  color: var(--white);
  background: var(--brand-orange);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-mobile-cta:hover,
.nav-mobile-cta:focus-visible {
  color: var(--white);
  background: #ff7f32;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1320px) {
  .nav-shell {
    width: min(100% - 32px, 1240px);
    gap: 10px;
  }

  .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
  }

  .nav-cta {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1199px) {
  .nav-shell {
    width: min(100% - 32px, 960px);
    min-height: 78px;
  }

  .nav-toggle {
    position: relative;
    z-index: 1301;
    display: grid;
    order: 5;
  }

  .nav-partner-logos {
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: block;
    background: rgba(5, 7, 13, 0.56);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    width: min(390px, calc(100vw - 34px));
    height: 100vh;
    display: grid;
    align-content: start;
    gap: 4px;
    margin: 0;
    padding: 24px 18px 28px;
    overflow-y: auto;
    background: #18202c;
    box-shadow: -26px 0 70px rgba(5, 7, 13, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateX(104%);
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease, visibility 240ms ease;
  }

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

  .nav-drawer-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 58px 20px 2px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-drawer-head img {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: var(--white);
    object-fit: contain;
  }

  .nav-drawer-head strong,
  .nav-drawer-head span {
    display: block;
  }

  .nav-drawer-head strong {
    color: var(--white);
    font-size: 18px;
    line-height: 1.1;
  }

  .nav-drawer-head span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.25;
  }

  .nav-item {
    display: grid;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    display: grid;
    gap: 2px;
    padding: 0 0 0 12px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.is-open > .nav-link {
    color: var(--white);
    background: rgba(243, 111, 33, 0.18);
  }

  .nav-item.is-open > .dropdown-menu {
    max-height: 800px;
    padding-top: 4px;
    padding-bottom: 8px;
    pointer-events: auto;
  }

  .dropdown-menu a {
    min-height: 36px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    white-space: normal;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: 100%;
    min-height: 70px;
    padding: 0 14px;
    gap: 10px;
  }

  .nav-brand {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 8px;
  }

  .nav-brand img,
  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-partner-logos {
    gap: 7px;
  }

  .nav-zlearn {
    display: none;
  }

  .nav-essel {
    width: 76px;
    height: 36px;
  }

  .nav-essel img {
    width: 68px;
    height: 30px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .nav-links {
    width: min(360px, calc(100vw - 24px));
    padding: 20px 14px 24px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 0;
    transform: none;
  }
}

.nav-mobile-cta {
  display: none;
}

.nav-link.has-dropdown::after {
  border-top: 0;
  border-left: 0;
}

@media (max-width: 1199px) {
  .nav-mobile-cta {
    display: inline-flex;
  }
}

.hero-slider {
  min-height: 645px;
  background: #18202c;
}

.hero-content {
  width: min(1240px, calc(100% - 48px));
  min-height: 645px;
  padding: 70px 0 128px;
  justify-content: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 32, 44, 0.96) 0%, rgba(24, 32, 44, 0.86) 38%, rgba(24, 32, 44, 0.3) 72%, rgba(24, 32, 44, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.38), rgba(5, 7, 13, 0.02));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(243, 111, 33, 0.38);
  border-radius: 999px;
  color: #ff9a58;
  background: rgba(243, 111, 33, 0.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.hero-content h1 {
  max-width: 800px;
  font-size: clamp(38px, 4.35vw, 62px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  font-weight: 600;
}

.hero-badges,
.hero-actions {
  display: flex;
}

.hero-badges {
  margin-top: 24px;
}

.hero-badges span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.hero-actions {
  margin-top: 26px;
}

.hero-actions .button {
  min-height: 46px;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 14px;
}

.hero-actions .button.primary {
  color: var(--white);
  background: var(--brand-orange);
  box-shadow: 0 14px 32px rgba(243, 111, 33, 0.26);
}

.hero-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.slider-controls {
  bottom: 34px;
  width: min(1080px, calc(100% - 48px));
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: stretch;
}

.slide-arrow {
  width: 46px;
  height: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: var(--white);
  background: rgba(24, 32, 44, 0.88);
  font-size: 32px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.slide-arrow:hover,
.slide-arrow:focus-visible {
  border-color: rgba(243, 111, 33, 0.72);
  color: var(--white);
  background: var(--brand-orange);
  outline: none;
}

.slide-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 6px;
  min-height: 56px;
  padding: 6px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(24, 32, 44, 0.88);
  box-shadow: 0 18px 46px rgba(5, 7, 13, 0.24);
}

.slide-tab {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.slide-tab:hover,
.slide-tab:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.slide-tab.is-active {
  color: var(--white);
  background: var(--brand-orange);
}

@media (max-width: 1199px) {
  .hero-slider,
  .hero-content {
    min-height: 595px;
  }

  .hero-content {
    width: min(960px, calc(100% - 40px));
    padding: 58px 0 118px;
  }

  .slider-controls {
    width: min(920px, calc(100% - 40px));
  }

  .slide-tab {
    font-size: 12px;
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 767px) {
  .hero-slider,
  .hero-content {
    min-height: 555px;
  }

  .hero-content {
    width: min(100% - 32px, 520px);
    margin-left: 16px;
    margin-right: 16px;
    padding: 38px 0 100px;
    justify-content: center;
  }

  .hero-bg {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 32, 44, 0.94) 0%, rgba(24, 32, 44, 0.72) 58%, rgba(24, 32, 44, 0.16) 100%),
      linear-gradient(0deg, rgba(5, 7, 13, 0.48), rgba(5, 7, 13, 0.04));
  }

  .eyebrow {
    min-height: 28px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .hero-content h1 {
    max-width: 390px;
    font-size: 32px;
    line-height: 1.06;
  }

  .hero-lead {
    max-width: 390px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-badges {
    display: none;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 11px 13px;
    border-radius: 9px;
    font-size: 13px;
  }

  .slider-controls {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    transform: none;
    grid-template-columns: minmax(0, 1fr);
  }

  .slide-arrow {
    display: none;
  }

  .slide-tabs {
    min-height: 48px;
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px;
    border-radius: 12px;
    scrollbar-width: none;
  }

  .slide-tabs::-webkit-scrollbar {
    display: none;
  }

  .slide-tab {
    flex: 0 0 92px;
    min-height: 38px;
    padding: 6px 7px;
    font-size: 10px;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hero-slider,
  .hero-content {
    min-height: 535px;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    max-width: 260px;
  }

  .hero-actions .button {
    width: 100%;
  }
}



@media (max-width: 640px) {
  .nav-header {
    background: rgba(24, 32, 44, 0.98);
  }

  .nav-shell {
    min-height: 62px;
    padding: 0 12px;
    gap: 8px;
  }

  .nav-brand {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(5, 7, 13, 0.16);
  }

  .nav-brand img,
  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-partner-logos {
    display: none;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    margin-left: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 1199px) {
  .nav-links {
    left: 0;
    right: auto;
    width: min(330px, calc(100vw - 28px));
    padding: 18px 16px 24px;
    transform: translateX(-104%);
    box-shadow: 26px 0 70px rgba(5, 7, 13, 0.38);
  }

  .nav-drawer-head {
    gap: 10px;
    padding: 0 0 16px;
    margin-bottom: 8px;
  }

  .nav-drawer-head img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
  }

  .nav-drawer-head strong {
    font-size: 16px;
  }

  .nav-drawer-head span {
    font-size: 12px;
  }

  .nav-link {
    min-height: 44px;
    justify-content: flex-start;
    gap: 10px;
    padding: 11px 12px;
    font-size: 14px;
    text-align: left;
  }

  .nav-link.has-dropdown::after {
    margin-left: auto;
  }

  .dropdown-menu {
    padding-left: 8px;
  }

  .dropdown-menu a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .nav-mobile-cta {
    min-height: 44px;
    margin-top: 10px;
    border-radius: 9px;
  }
}

.nav-toggle span {
  display: none;
}

.nav-toggle i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 24px;
  line-height: 1;
}

.nav-icon-close {
  display: none !important;
}

.nav-toggle[aria-expanded="true"] .nav-icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-icon-close {
  display: inline-flex !important;
}

@media (max-width: 1199px) {
  .nav-links {
    left: auto;
    right: 0;
    transform: translateX(104%);
    box-shadow: -26px 0 70px rgba(5, 7, 13, 0.38);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-link,
  .dropdown-menu a {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }

  .nav-toggle i {
    font-size: 23px;
  }
}

@media (max-width: 1199px) {
  .nav-links {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    align-items: stretch;
    justify-content: stretch;
  }

  .nav-drawer-head,
  .nav-item,
  .nav-link,
  .dropdown-menu,
  .dropdown-menu a,
  .nav-mobile-cta {
    width: 100%;
    justify-self: stretch;
  }

  .nav-link {
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-link span,
  .dropdown-menu span {
    display: inline-flex;
    text-align: left;
  }

  .nav-link.has-dropdown::after {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav-mobile-cta {
    text-align: center;
  }
}

html.nav-open,
body.nav-open {
  height: 100%;
  overflow: hidden;
}

body.nav-open {
  touch-action: none;
}

.nav-header {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
}

@media (max-width: 1199px) {
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 4990;
    height: 100vh;
    height: 100dvh;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 5001;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-toggle {
    z-index: 5002;
  }
}

body {
  padding-top: 84px;
}

.nav-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5000;
}

@media (max-width: 1199px) {
  body {
    padding-top: 78px;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 62px;
  }
}

.course-card {
  position: relative;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.course-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  border: 1px solid rgba(243, 111, 33, 0);
  pointer-events: none;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.course-card img {
  transition: transform 420ms ease, filter 420ms ease;
}

.course-card:hover,
.course-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(243, 111, 33, 0.32);
  box-shadow: 0 24px 58px rgba(24, 32, 44, 0.16);
}

.course-card:hover::after,
.course-card:focus-within::after {
  border-color: rgba(243, 111, 33, 0.42);
  box-shadow: inset 0 0 0 1px rgba(243, 111, 33, 0.1);
}

.course-card:hover img,
.course-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.course-card a {
  transition: color 180ms ease, transform 180ms ease;
}

.course-card:hover a,
.course-card:focus-within a {
  color: var(--brand-orange);
}

@media (prefers-reduced-motion: reduce) {
  .course-card,
  .course-card::after,
  .course-card img,
  .course-card a {
    transition: none;
  }

  .course-card:hover,
  .course-card:focus-within,
  .course-card:hover img,
  .course-card:focus-within img {
    transform: none;
  }
}

.intro-strip {
  width: min(1240px, calc(100% - 48px));
  margin: -46px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.intro-item {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(24, 32, 44, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 52px rgba(24, 32, 44, 0.12);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.intro-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), rgba(243, 111, 33, 0));
}

.intro-item::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(243, 111, 33, 0.08);
  pointer-events: none;
}

.intro-item:last-child {
  border-right: 1px solid rgba(24, 32, 44, 0.08);
}

.intro-item:hover,
.intro-item:focus-within {
  transform: translateY(-8px);
  border-color: rgba(243, 111, 33, 0.28);
  box-shadow: 0 28px 70px rgba(24, 32, 44, 0.16);
}

.intro-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: #18202c;
  box-shadow: 0 14px 28px rgba(24, 32, 44, 0.18);
}

.intro-icon i {
  font-size: 25px;
  line-height: 1;
}

.intro-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.intro-item strong,
.intro-item span {
  display: block;
}

.intro-item strong {
  color: #142d63;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
}

.intro-content > span {
  margin-top: 8px;
  color: #647084;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .intro-strip {
    width: min(720px, calc(100% - 32px));
    margin-top: -28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intro-item {
    min-height: 0;
    padding: 22px;
  }

  .intro-item {
    border-bottom: 1px solid rgba(24, 32, 44, 0.08);
  }
}

@media (max-width: 576px) {
  .intro-strip {
    width: calc(100% - 24px);
    margin-top: -18px;
  }

  .intro-item {
    gap: 13px;
    padding: 18px;
    border-radius: 12px;
  }

  .intro-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .intro-icon i {
    font-size: 22px;
  }

  .intro-item strong {
    font-size: 17px;
  }

  .intro-content > span {
    font-size: 14px;
    line-height: 1.45;
  }
}

.intro-strip {
  margin-top: 18px;
}

.intro-icon {
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), #ff9a58);
  box-shadow: 0 16px 30px rgba(243, 111, 33, 0.26);
}

.intro-icon i {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 991px) {
  .intro-strip {
    margin-top: 18px;
  }
}

@media (max-width: 576px) {
  .intro-strip {
    margin-top: 16px;
  }

  .intro-icon i {
    font-size: 23px;
  }
}

.intro-icon i,
.intro-icon i::before {
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.intro-icon i::before {
  transform: translateY(0);
}

.intro-icon {
  line-height: 0;
}

.intro-icon i {
  position: relative;
  top: 1px;
  width: auto;
  height: auto;
  display: inline-block;
  font-size: 25px;
  line-height: 1;
}

.intro-icon i::before {
  display: block;
  line-height: 1;
}

@media (max-width: 576px) {
  .intro-icon i {
    top: 1px;
    font-size: 22px;
  }
}

.intro-icon {
  position: relative;
  display: block;
}

.intro-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  display: block;
  transform: translate(-50%, -50%);
  font-size: 25px;
  line-height: 1;
}

.intro-icon i::before {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .intro-icon i {
    font-size: 22px;
  }
}

.course-section {
  padding: 76px 0 84px;
  background: #f6f8fb;
}

.course-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 2.15fr);
  gap: 34px;
  align-items: start;
}

.course-intro {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: 16px;
  color: var(--white);
  background: #18202c;
  box-shadow: 0 22px 56px rgba(24, 32, 44, 0.18);
}

.course-eyebrow,
.course-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.course-eyebrow {
  margin-bottom: 14px;
  padding: 8px 11px;
  color: #ff9a58;
  background: rgba(243, 111, 33, 0.14);
}

.course-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.course-intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.course-cta {
  min-height: 44px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--brand-orange);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(243, 111, 33, 0.24);
}

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

.course-feature-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(24, 32, 44, 0.08);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(24, 32, 44, 0.1);
}

.course-img {
  position: relative;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 176px;
  aspect-ratio: auto;
  object-fit: cover;
}

.course-icon {
  position: absolute;
  left: 18px;
  bottom: -24px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), #ff9a58);
  box-shadow: 0 14px 26px rgba(243, 111, 33, 0.22);
}

.course-icon i,
.course-icon i::before {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}

.course-icon i {
  font-size: 23px;
}

.course-content {
  padding: 38px 20px 22px;
}

.course-label {
  margin-bottom: 10px;
  padding: 7px 9px;
  color: #be4e12;
  background: rgba(243, 111, 33, 0.12);
  font-size: 10px;
}

.course-content h3 {
  margin: 0 0 10px;
  color: #142d63;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
}

.course-content p {
  margin: 0 0 16px;
  color: #647084;
  font-size: 14px;
  line-height: 1.58;
}

.course-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #18202c;
  font-size: 14px;
  font-weight: 850;
}

.course-content a i {
  font-size: 13px;
  transition: transform 180ms ease;
}

.course-feature-card:hover .course-content a i,
.course-feature-card:focus-within .course-content a i {
  transform: translateX(3px);
}

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

  .course-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .course-section {
    padding: 56px 0 64px;
  }

  .course-container {
    width: calc(100% - 28px);
    gap: 20px;
  }

  .course-intro {
    padding: 22px;
  }

  .course-intro h2 {
    font-size: 32px;
  }

  .course-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course-img img {
    height: 190px;
  }

  .course-content h3 {
    font-size: 21px;
  }
}

.placement-logos-section{padding:78px 20px 82px;background:radial-gradient(circle at 18% 22%,rgba(130,78,196,.34),transparent 30%),radial-gradient(circle at 82% 86%,rgba(246,124,61,.16),transparent 28%),linear-gradient(135deg,#21103c 0%,#2b1748 48%,#24133f 100%);color:#fff}.placement-logos-container{width:min(1524px,100%);margin:0 auto}.placement-logos-container h2{margin:0 0 42px;color:#fff;font-size:clamp(24px,2.2vw,34px);line-height:1.25;text-align:center;font-weight:800;letter-spacing:0}.placement-logo-wall{list-style:none;margin:0 auto;padding:30px 22px;border-radius:28px 28px 0 0;background:rgba(78,45,121,.78);display:flex;flex-wrap:wrap;justify-content:center;gap:16px 14px;box-shadow:0 28px 80px rgba(9,4,24,.24)}.placement-logo-item{flex:0 1 172px}.placement-logo-card{min-height:120px;height:100%;padding:16px 12px;border:1px solid rgba(255,255,255,.74);border-radius:12px;background:#fff;color:#191725;display:grid;place-items:center;align-content:center;gap:10px;text-align:center;box-shadow:0 16px 34px rgba(20,9,44,.16);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease}.placement-logo-card:hover{transform:translateY(-6px);border-color:#f7941d;box-shadow:0 22px 44px rgba(20,9,44,.26)}.placement-logo-mark{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;color:#fff;background:linear-gradient(135deg,#f7941d,#312783);font-size:20px;line-height:1;font-weight:900;text-transform:uppercase}.placement-logo-name{color:#161423;font-size:16px;line-height:1.15;font-weight:800}.placement-logo-card.bard-box .placement-logo-mark{background:#111}.placement-logo-card.bayport .placement-logo-mark{background:linear-gradient(135deg,#8267e7,#68d8ff)}.placement-logo-card.cocoma .placement-logo-mark{background:linear-gradient(135deg,#ff364f,#ff9c6b)}.placement-logo-card.comprint .placement-logo-mark{background:linear-gradient(135deg,#3467b7,#9fc8ff)}.placement-logo-card.ebikego .placement-logo-mark{background:linear-gradient(135deg,#36c6ff,#24d080)}.placement-logo-card.envision .placement-logo-mark{background:#242424}.placement-logo-card.infinity .placement-logo-mark{background:linear-gradient(135deg,#9e6a1f,#f2c46d)}.placement-logo-card.powerkids .placement-logo-mark{background:linear-gradient(135deg,#ffcf00,#e8232d)}.placement-logo-card.hogarth .placement-logo-mark{background:#22243a}.placement-logo-card.innowit .placement-logo-mark{background:linear-gradient(135deg,#ffcf24,#9d7cf2)}.placement-logo-card.kavaleer .placement-logo-mark{background:linear-gradient(135deg,#162a3d,#e39f3d)}.placement-logo-card.ndtv .placement-logo-mark{background:linear-gradient(135deg,#111,#df2630)}.placement-logo-card.phantomfx .placement-logo-mark{background:linear-gradient(135deg,#27a86a,#2f2f33)}.placement-logo-card.rabbit-turtle .placement-logo-mark{background:#13230d}.placement-logo-card.red-chillies .placement-logo-mark{background:linear-gradient(135deg,#d9151f,#6e1017)}.placement-logo-card.redefine .placement-logo-mark{background:#ffd500;color:#1e1b00}.placement-logo-card.visual-connections .placement-logo-mark{background:linear-gradient(135deg,#f52477,#9d4edd)}.placement-logo-card.yash-raj .placement-logo-mark{background:linear-gradient(135deg,#e60012,#ff8566)}.placement-logo-card.zynga .placement-logo-mark{background:#e20613}@media(max-width:991px){.placement-logos-section{padding:64px 16px 70px}.placement-logo-wall{border-radius:22px;padding:22px 16px}.placement-logo-item{flex-basis:150px}}@media(max-width:576px){.placement-logos-section{width:100vw;max-width:100vw;margin-left:0;margin-right:0;padding-left:14px;padding-right:14px;overflow:hidden}.placement-logos-container{width:100%;max-width:100%;overflow:hidden}.placement-logos-container h2{margin-bottom:24px;max-width:320px;margin-left:auto;margin-right:auto;font-size:20px;line-height:1.35;padding:0 8px;overflow-wrap:break-word}.placement-logo-wall{width:calc(100vw - 40px);max-width:100%;margin-left:auto;margin-right:auto;display:grid;grid-template-columns:repeat(2,1fr);gap:12px;padding:16px 10px}.placement-logo-item{min-width:0;flex:0 1 auto}.placement-logo-card{width:100%;max-width:100%;margin:0;min-width:0;min-height:104px;padding:13px 8px}.placement-logo-mark{width:46px;height:46px;border-radius:12px;font-size:17px}.placement-logo-name{font-size:13px;overflow-wrap:anywhere}}


.course-section {
  padding: 72px 0 84px;
  background: #f6f8fb;
  overflow: hidden;
}

.course-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: block;
}

.course-header {
  margin-bottom: 28px;
}

.course-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.course-header h2,
.course-intro h2 {
  margin: 0;
  color: #18202c;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.course-header p,
.course-intro p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #647084;
  font-size: 17px;
  line-height: 1.6;
}

.course-eyebrow {
  margin-bottom: 12px;
  color: #be4e12;
  background: rgba(243, 111, 33, 0.12);
}

.course-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.course-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 32, 44, 0.12);
  border-radius: 12px;
  color: #18202c;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(24, 32, 44, 0.08);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.course-arrow:hover,
.course-arrow:focus-visible {
  color: var(--white);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  transform: translateY(-2px);
  outline: none;
}

.course-arrow i {
  font-size: 18px;
  line-height: 1;
}

.course-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px 2px 28px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.course-slider::-webkit-scrollbar {
  display: none;
}

.course-feature-card {
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 16px;
}

.course-img img {
  height: 168px;
}

.course-content {
  padding: 36px 18px 20px;
}

.course-content h3 {
  font-size: 21px;
}

.course-content p {
  font-size: 14px;
}

@media (max-width: 1199px) {
  .course-slider {
    grid-auto-columns: calc((100% - 36px) / 3);
  }
}

@media (max-width: 900px) {
  .course-slider {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 767px) {
  .course-section {
    padding: 56px 0 66px;
  }

  .course-container {
    width: calc(100% - 28px);
  }

  .course-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .course-controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .course-slider {
    grid-auto-columns: minmax(260px, 84%);
    gap: 14px;
    padding-bottom: 20px;
  }

  .course-img img {
    height: 176px;
  }
}

.course-img {
  overflow: visible;
}

.course-feature-card {
  overflow: visible;
}

.course-feature-card .course-img img {
  display: block;
  border-radius: 16px 16px 0 0;
}

.course-feature-card .course-content {
  position: relative;
  z-index: 2;
  border-radius: 0 0 16px 16px;
  background: var(--white);
}

.course-feature-card .course-icon {
  z-index: 6;
}

.course-feature-card .course-content {
  z-index: 1;
}

.course-feature-card::after {
  z-index: 0;
}

.why-section {
  padding: 82px 0 88px;
  background: var(--white);
}

.why-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.why-header {
  max-width: 780px;
  margin-bottom: 34px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 8px 11px;
  color: #be4e12;
  background: rgba(243, 111, 33, 0.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.why-header h2 {
  margin: 0;
  color: #18202c;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.why-header p {
  margin: 14px 0 0;
  color: #647084;
  font-size: 17px;
  line-height: 1.62;
}

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

.why-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(24, 32, 44, 0.08);
  border-radius: 16px;
  background: #f8fafc;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(243, 111, 33, 0.08);
  pointer-events: none;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(243, 111, 33, 0.28);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(24, 32, 44, 0.12);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), #ff9a58);
  box-shadow: 0 14px 28px rgba(243, 111, 33, 0.22);
}

.why-icon i,
.why-icon i::before {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}

.why-icon i {
  font-size: 24px;
}

.why-card h3 {
  margin: 22px 0 10px;
  color: #142d63;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 850;
}

.why-card p {
  margin: 0;
  color: #647084;
  font-size: 15px;
  line-height: 1.62;
}

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

@media (max-width: 640px) {
  .why-section {
    padding: 58px 0 64px;
  }

  .why-container {
    width: calc(100% - 28px);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    min-height: 0;
    padding: 20px;
  }
}

.placement-logos-section {
  padding: 84px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 111, 33, 0.18), transparent 30%),
    linear-gradient(135deg, #18202c 0%, #111827 100%);
  overflow: hidden;
}

.placement-logos-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.placement-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 12px;
  border-radius: 999px;
  padding: 8px 11px;
  color: #ff9a58;
  background: rgba(243, 111, 33, 0.14);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.placement-logos-container h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.08;
  text-align: center;
  font-weight: 900;
}

.placement-subtitle {
  max-width: 760px;
  margin: 14px auto 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.62;
  text-align: center;
}

.placement-logo-wall {
  list-style: none;
  margin: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(5, 7, 13, 0.22);
}

.placement-logo-item {
  min-width: 0;
}

.placement-logo-card {
  min-height: 126px;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #18202c;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 16px 34px rgba(5, 7, 13, 0.14);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.placement-logo-card:hover,
.placement-logo-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(243, 111, 33, 0.62);
  box-shadow: 0 22px 44px rgba(5, 7, 13, 0.22);
}

.placement-logo-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-orange), #ff9a58);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.placement-logo-name {
  color: #18202c;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .placement-logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .placement-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .placement-logos-section {
    padding: 62px 0 70px;
  }

  .placement-logos-container {
    width: calc(100% - 28px);
  }

  .placement-subtitle {
    font-size: 15px;
  }

  .placement-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
  }

  .placement-logo-card {
    min-height: 108px;
    padding: 14px 8px;
    border-radius: 12px;
  }

  .placement-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 15px;
  }

  .placement-logo-name {
    font-size: 13px;
  }
}

.course-feature-card {
  overflow: hidden;
}

.course-feature-card .course-img {
  overflow: hidden;
}

.course-feature-card .course-icon {
  bottom: 14px;
  z-index: 4;
  border-width: 4px;
}

.course-feature-card .course-content {
  padding-top: 22px;
}

.quick-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 4200;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.quick-link,
.back-top {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: #18202c;
  box-shadow: 0 16px 34px rgba(5, 7, 13, 0.22);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.quick-link:hover,
.quick-link:focus-visible,
.back-top:hover,
.back-top:focus-visible {
  color: var(--white);
  background: var(--brand-orange);
  transform: translateY(-2px);
  outline: none;
}

.quick-link i,
.back-top i {
  font-size: 19px;
  line-height: 1;
}

.quick-whatsapp {
  background: #20b15a;
}

.quick-admission {
  background: var(--brand-orange);
}

.quick-link::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  min-width: max-content;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--white);
  background: #18202c;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translate(8px, -50%);
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.quick-link:hover::before,
.quick-link:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 4300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 111, 33, 0.14), transparent 30%),
    linear-gradient(135deg, #18202c 0%, #0b1018 100%);
}

.footer-grid {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 42px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr 1.15fr;
  gap: 34px;
}

.footer-brand img {
  width: 118px;
  height: 118px;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 0;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p,
.footer-contact p,
.footer-address,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links span,
.footer-contact span {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-links a,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
  outline: none;
}

.footer-contact i,
.footer-address i {
  color: #ff9a58;
  flex: 0 0 auto;
}

.footer-address {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-address address {
  margin: 0;
  font-style: normal;
}

.footer-cta {
  min-height: 42px;
  margin-top: 18px !important;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 16px;
  color: var(--white) !important;
  background: var(--brand-orange);
  font-weight: 850 !important;
}

.footer-bottom {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

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

@media (max-width: 640px) {
  .quick-actions {
    right: 10px;
    top: auto;
    bottom: 14px;
    gap: 8px;
    transform: none;
  }

  .quick-link,
  .back-top {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .quick-link::before {
    display: none;
  }

  .back-top {
    right: 12px;
    bottom: 24px;
  }

  .footer-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 54px 0 34px;
    gap: 28px;
  }

  .footer-bottom {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 26px;
  }
}

.quick-admission {
  position: relative;
  min-width: 52px;
  min-height: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 16px 10px;
  color: var(--white);
  background: var(--brand-orange);
  box-shadow: 0 18px 38px rgba(243, 111, 33, 0.26);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.quick-admission i {
  font-size: 18px;
  line-height: 1;
}

.quick-admission:hover,
.quick-admission:focus-visible {
  color: var(--white);
  background: #ff7f32;
  box-shadow: 0 22px 44px rgba(243, 111, 33, 0.34);
  outline: none;
}

@media (max-width: 640px) {
  .quick-admission {
    min-width: 0;
    min-height: 40px;
    width: 40px;
    writing-mode: horizontal-tb;
    transform: none;
    padding: 0;
    border-radius: 12px;
    font-size: 10px;
  }

  .quick-admission span {
    display: none;
  }
}

.quote-modal {
  z-index: 6000 !important;
}

.modal-backdrop {
  z-index: 5990 !important;
}

.quote-modal .modal-dialog {
  max-width: 600px;
}

.quote-content {
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 34px 90px rgba(5, 7, 13, 0.34);
}

.quote-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px 34px;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #18202c 0%, #101722 100%);
}

.quote-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  border-radius: 999px;
  padding: 4px 8px;
  color: #ff9a58;
  background: rgba(243, 111, 33, 0.16);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.quote-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.12;
  font-weight: 900;
}

.quote-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.quote-head img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
}

.quote-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.quote-close:hover,
.quote-close:focus-visible {
  background: var(--brand-orange);
  outline: none;
}

.quote-info {
  display: grid;
  gap: 6px;
  padding: 14px 20px 0;
}

.quote-info p {
  margin: 0;
  color: #4d5a6d;
  font-size: 13px;
  line-height: 1.45;
}

.quote-info strong {
  color: #18202c;
}

.quote-info a {
  color: #be4e12;
  font-weight: 800;
}

.quote-form {
  padding: 14px 20px 20px;
}

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

.quote-field {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.quote-field span,
.quote-check span {
  color: #18202c;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.quote-field input,
.quote-field select {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(24, 32, 44, 0.12);
  border-radius: 8px;
  padding: 6px 10px;
  color: #18202c;
  background: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-field select {
  appearance: auto;
}

.quote-field input:focus,
.quote-field select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.13);
}

.quote-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 0;
  padding: 10px;
  border: 1px solid rgba(24, 32, 44, 0.1);
  border-radius: 10px;
  background: var(--white);
}

.quote-check input {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  accent-color: var(--brand-orange);
}

.quote-result {
  margin-top: 10px;
}

.quote-wait,
.quote-success,
.quote-result .alert {
  margin: 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 750;
}

.quote-wait {
  color: #be4e12;
  background: rgba(243, 111, 33, 0.12);
}

.quote-success {
  color: #0f6b39;
  background: rgba(32, 177, 90, 0.12);
}

.quote-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.quote-submit,
.quote-clear {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
}

.quote-submit {
  color: var(--white);
  background: var(--brand-orange);
  box-shadow: 0 14px 28px rgba(243, 111, 33, 0.22);
}

.quote-clear {
  color: #4d5a6d;
  background: var(--white);
  border: 1px solid rgba(24, 32, 44, 0.1);
}

.quote-submit:hover,
.quote-submit:focus-visible {
  background: #ff7f32;
  outline: none;
}

.quote-clear:hover,
.quote-clear:focus-visible {
  color: #18202c;
  outline: none;
}

@media (max-width: 640px) {
  .quote-modal .modal-dialog {
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
  }

  .quote-head {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 14px 16px;
  }

  .quote-head img {
    display: none;
  }

  .quote-info,
  .quote-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .quote-submit,
  .quote-clear {
    width: 100%;
  }
}

.zee-family-section {
  padding: 44px 0;
  background: #ffffff;
  overflow: hidden;
}

.zee-family-wrap {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
}

.zee-family-logo {
  min-height: 162px;
  display: grid;
  place-items: center;
  padding-left: 18px;
  border-radius: 0 120px 120px 0;
  background: #c7edff;
  isolation: isolate;
}

.zee-family-logo strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  z-index: 1;
}

.zee-family-logo strong::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  z-index: -1;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #22b8df;
  transform: translateY(-50%);
}

.zee-family-logo span {
  color: #22aee2;
  font-weight: 500;
}

.zee-family-content {
  padding-right: 44px;
}

.zee-family-content h2 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 32, 44, 0.22);
  color: #0b8ce8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.zee-family-brands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.zee-brand {
  min-height: 84px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 8px 14px;
  border-left: 1px solid rgba(24, 32, 44, 0.22);
  text-align: center;
}

.zee-brand:first-child {
  border-left: 0;
}

.zee-brand strong {
  display: block;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.zee-brand span {
  display: block;
  color: #38465a;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.zee-brand-kidzee strong {
  color: #e52334;
  font-size: 26px;
  text-shadow: 1px 1px 0 #174f9a;
}

.zee-brand-mount strong,
.zee-brand-school strong,
.zee-brand-international strong {
  color: #263a89;
  font-size: 18px;
}

.zee-brand-school {
  color: #ffffff;
}

.zee-brand-school strong {
  width: 104px;
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: #ffffff;
  background: #182f7a;
  font-size: 13px;
}

.zee-brand-international::before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #f6d267 0 34%, #233b86 36% 100%);
}

.zee-brand-zima strong {
  color: #0c91d8;
  font-size: 32px;
}

.zee-brand-zima em {
  color: #f36f21;
  font-style: normal;
}

.zee-brand-zica img {
  width: 86px;
  max-height: 68px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .zee-family-wrap {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .zee-family-logo {
    min-height: 116px;
    padding-left: 0;
    border-radius: 18px;
  }

  .zee-family-content {
    padding-right: 0;
  }

  .zee-family-content h2 {
    font-size: 26px;
  }

  .zee-family-brands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(24, 32, 44, 0.16);
    border-left: 1px solid rgba(24, 32, 44, 0.16);
  }

  .zee-brand,
  .zee-brand:first-child {
    border-left: 0;
    border-right: 1px solid rgba(24, 32, 44, 0.16);
    border-bottom: 1px solid rgba(24, 32, 44, 0.16);
  }
}

@media (max-width: 576px) {
  .zee-family-section {
    padding: 34px 0;
  }

  .zee-family-content h2 {
    font-size: 22px;
  }

  .zee-family-brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.course-landing {
  --course-accent: #f36f21;
  --course-dark: #111827;
  --course-soft: #fff4ec;
  color: #172033;
  background: #ffffff;
}

.course-theme--cinema {
  --course-accent: #f36f21;
  --course-dark: #111827;
  --course-soft: #fff4ec;
}

.course-theme--degree-vfx {
  --course-accent: #1d4ed8;
  --course-dark: #0f172a;
  --course-soft: #edf4ff;
}

.course-theme--interior {
  --course-accent: #0f766e;
  --course-dark: #10201f;
  --course-soft: #e9fbf7;
}

.course-theme--blueprint {
  --course-accent: #2563eb;
  --course-dark: #101d35;
  --course-soft: #eef5ff;
}

.course-theme--poster {
  --course-accent: #db2777;
  --course-dark: #24111d;
  --course-soft: #fff0f7;
}

.course-theme--product {
  --course-accent: #7c3aed;
  --course-dark: #1d1531;
  --course-soft: #f4efff;
}

.course-theme--arcade {
  --course-accent: #16a34a;
  --course-dark: #0f1d16;
  --course-soft: #edfff4;
}

.course-theme--growth {
  --course-accent: #ea580c;
  --course-dark: #24170f;
  --course-soft: #fff5ec;
}

.course-theme--lens {
  --course-accent: #0891b2;
  --course-dark: #0d1d23;
  --course-soft: #eafeff;
}

.course-theme--film {
  --course-accent: #dc2626;
  --course-dark: #241111;
  --course-soft: #fff1f1;
}

.course-landing,
.course-landing *,
.course-landing *::before,
.course-landing *::after {
  box-sizing: border-box;
}

.course-page-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.course-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  background-color: var(--course-dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 132px 0 78px;
}

.course-hero--animation-vfx {
  background-image: linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.68) 48%, rgba(8, 13, 22, 0.22)), url('../images/slider/animation-vfx-banner.png');
}

.course-hero--graphic-design {
  background-image: linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.68) 48%, rgba(8, 13, 22, 0.22)), url('../images/slider/graphic-design-banner.png');
}

.course-hero--ui-ux-design {
  background-image: linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.68) 48%, rgba(8, 13, 22, 0.22)), url('../images/slider/ui-ux-design-banner.png');
}

.course-hero--game-design {
  background-image: linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.68) 48%, rgba(8, 13, 22, 0.22)), url('../images/slider/game-design-banner.png');
}

.course-hero--photography-film,
.course-hero--default {
  background-image: linear-gradient(90deg, rgba(8, 13, 22, 0.9), rgba(8, 13, 22, 0.68) 48%, rgba(8, 13, 22, 0.22)), url('../images/slider/photography-film-banner.png');
}

.course-hero--position-left {
  background-position: left center;
}

.course-hero--position-right {
  background-position: right center;
}

.course-hero--position-center {
  background-position: center center;
}

.course-breadcrumb {
  margin-bottom: 30px;
}

.course-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.course-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.course-breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.48);
}

.course-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.course-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 10px 13px;
  color: #ffffff;
  background: var(--course-accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.course-kicker i {
  font-size: 18px;
}

.course-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  line-height: 1.03;
  font-weight: 950;
  white-space: normal;
  overflow-wrap: break-word;
}

.course-hero h1 span {
  display: inline-block;
  color: #ffffff;
  box-shadow: inset 0 -0.28em rgba(243, 111, 33, 0.6);
}

.course-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.course-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.course-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.course-btn--primary {
  color: #ffffff;
  background: var(--course-accent);
}

.course-btn--ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.course-page-section {
  padding: 76px 0;
}

.course-overview {
  background: linear-gradient(180deg, #ffffff 0%, var(--course-soft) 100%);
}

.course-depth {
  background: #ffffff;
}

.course-overview__grid,
.course-two-column,
.course-depth__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 38px;
  align-items: start;
}

.course-overview__grid > *,
.course-two-column > *,
.course-depth__grid > *,
.course-story,
.course-section-head {
  min-width: 0;
  max-width: 100%;
}

.course-story span,
.course-section-head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--course-accent);
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.course-story h2,
.course-section-head h2 {
  margin: 0;
  color: var(--course-dark);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 950;
  overflow-wrap: break-word;
}

.course-story p {
  margin: 18px 0 0;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.75;
  max-width: 100%;
  overflow-wrap: break-word;
}

.course-depth-copy p {
  margin: 16px 0 0;
  color: #455164;
  font-size: 17px;
  line-height: 1.78;
  overflow-wrap: break-word;
}

.course-focus-panel {
  display: grid;
  gap: 14px;
}

.course-focus-panel article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--course-soft) 100%);
}

.course-focus-panel article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--course-accent);
}

.course-focus-panel strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--course-accent);
  font-size: 13px;
  font-weight: 950;
}

.course-focus-panel h3 {
  margin: 0;
  color: var(--course-dark);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
}

.course-focus-panel p {
  margin: 10px 0 0;
  color: #596678;
  font-size: 15px;
  line-height: 1.65;
}

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

.course-facts div,
.course-module-card,
.course-faq-list details,
.course-related-grid a {
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.course-facts div {
  min-height: 116px;
  padding: 18px;
}

.course-facts dt {
  margin-bottom: 9px;
  color: #687386;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.course-facts dd {
  margin: 0;
  color: var(--course-dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

.course-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.course-module-card {
  min-height: 132px;
  padding: 20px;
  border-top: 4px solid var(--course-accent);
}

.course-module-card strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--course-dark);
  font-size: 13px;
}

.course-module-card h3 {
  margin: 0;
  color: var(--course-dark);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.course-skill-band,
.course-outcomes,
.course-related {
  background: #f8fafc;
}

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

.course-check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #2e3a4c;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 750;
}

.course-check-list i {
  color: var(--course-accent);
  font-size: 20px;
}

.course-project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-project-list span,
.course-career-tags span {
  display: inline-flex;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--course-dark);
  background: var(--course-soft);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.course-careers {
  background: #ffffff;
}

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

.course-outcome-grid article {
  min-height: 168px;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.course-outcome-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--course-accent);
  font-size: 21px;
}

.course-outcome-grid p {
  margin: 0;
  color: var(--course-dark);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.course-career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.course-faq-list details {
  padding: 18px 20px;
}

.course-faq-list summary {
  cursor: pointer;
  color: var(--course-dark);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.course-faq-list p {
  margin: 12px 0 0;
  color: #617083;
  font-size: 15px;
  line-height: 1.65;
}

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

.course-related-grid a {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 20px;
  color: var(--course-dark);
}

.course-related-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--course-accent);
  font-size: 21px;
}

.course-related-grid span {
  color: #687386;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.course-related-grid strong {
  color: var(--course-dark);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
}

.service-link.active {
  color: var(--brand-orange);
}

.course-landing--degree-vfx .course-overview__grid,
.course-landing--blueprint .course-two-column,
.course-landing--product .course-overview__grid,
.course-landing--film .course-two-column {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.course-landing--cinema .course-depth {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.course-landing--degree-vfx .course-focus-panel article,
.course-landing--blueprint .course-focus-panel article {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.course-landing--poster .course-module-card:nth-child(2n),
.course-landing--arcade .course-module-card:nth-child(2n),
.course-landing--growth .course-module-card:nth-child(2n) {
  background: var(--course-soft);
}

.course-landing--interior .course-story,
.course-landing--lens .course-story {
  border-left: 6px solid var(--course-accent);
  padding-left: 24px;
}

@media (max-width: 991px) {
  .course-hero {
    min-height: 520px;
    padding: 120px 0 64px;
  }

  .course-hero h1 {
    font-size: 44px;
  }

  .course-overview__grid,
  .course-two-column,
  .course-depth__grid,
  .course-landing--degree-vfx .course-overview__grid,
  .course-landing--blueprint .course-two-column,
  .course-landing--product .course-overview__grid,
  .course-landing--film .course-two-column {
    grid-template-columns: 1fr;
  }

  .course-module-grid,
  .course-outcome-grid,
  .course-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .course-page-container {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .course-hero {
    min-height: 500px;
    padding: 104px 0 52px;
  }

  .course-hero h1,
  .course-hero p,
  .course-hero__actions,
  .course-story,
  .course-depth-copy,
  .course-facts,
  .course-focus-panel,
  .course-module-grid,
  .course-check-list,
  .course-project-list,
  .course-outcome-grid,
  .course-career-tags,
  .course-faq-list,
  .course-related-grid {
    max-width: 362px;
  }

  .course-hero h1 {
    max-width: 362px;
    font-size: 30px;
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .course-hero h1 span {
    display: block;
    width: fit-content;
  }

  .course-hero p {
    max-width: 362px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .course-page-section {
    padding: 54px 0;
  }

  .course-story h2,
  .course-section-head h2 {
    font-size: 25px;
  }

  .course-module-card h3 {
    font-size: 18px;
  }

  .course-facts,
  .course-module-grid,
  .course-outcome-grid,
  .course-related-grid {
    grid-template-columns: 1fr;
  }

  .course-btn {
    width: 100%;
  }
}

/* About Page */
.zica-about-page {
    --about-ink: #151824;
    --about-muted: #5f6878;
    --about-soft: #f5f7fb;
    --about-line: #dfe5ee;
    --about-navy: #162f68;
    --about-deep: #08142d;
    --about-orange: #f36f21;
    --about-teal: #0f8f8c;
    --about-gold: #d8b645;
    --about-white: #ffffff;
    color: var(--about-ink);
    background: var(--about-white);
    overflow: hidden;
  }

  .zica-about-page h1,
  .zica-about-page h2,
  .zica-about-page h3,
  .zica-about-page p {
    letter-spacing: 0;
  }

  .zica-about-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
  }

  .zica-about-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: var(--about-white);
    background:
      linear-gradient(90deg, rgba(8, 20, 45, 0.94) 0%, rgba(8, 20, 45, 0.78) 47%, rgba(8, 20, 45, 0.36) 100%),
      url('../images/slider/animation-vfx-banner.png') center / cover no-repeat;
  }

  .zica-about-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(8, 20, 45, 0), rgba(8, 20, 45, 0.56));
    pointer-events: none;
  }

  .zica-about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 72px 0 92px;
  }

  .zica-about-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
  }

  .zica-about-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--about-white);
  }

  .zica-about-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.54);
  }

  .zica-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    color: #ffe1cb;
    background: rgba(243, 111, 33, 0.16);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
  }

  .zica-about-hero h1 {
    margin: 0;
    max-width: 720px;
    color: var(--about-white);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 900;
  }

  .zica-about-hero h1 span {
    color: #ffd48d;
  }

  .zica-about-hero__lead {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.75;
  }

  .zica-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .zica-about-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
    text-align: center;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .zica-about-btn:hover,
  .zica-about-btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
  }

  .zica-about-btn--primary {
    color: var(--about-white);
    background: var(--about-orange);
    box-shadow: 0 18px 38px rgba(243, 111, 33, 0.28);
  }

  .zica-about-btn--ghost {
    color: var(--about-white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
  }

  .zica-about-proof {
    position: relative;
    z-index: 4;
    margin-top: -48px;
  }

  .zica-about-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: var(--about-white);
    box-shadow: 0 24px 54px rgba(8, 20, 45, 0.16);
  }

  .zica-about-proof__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 24px;
    border-right: 1px solid var(--about-line);
  }

  .zica-about-proof__item:last-child {
    border-right: 0;
  }

  .zica-about-proof__icon,
  .zica-about-feature__icon,
  .zica-about-track__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--about-white);
    background: linear-gradient(135deg, var(--about-orange), #ff9b5a);
    box-shadow: 0 14px 26px rgba(243, 111, 33, 0.2);
  }

  .zica-about-proof strong {
    display: block;
    color: var(--about-navy);
    font-size: 18px;
    line-height: 1.25;
  }

  .zica-about-proof span:not(.zica-about-proof__icon) {
    display: block;
    margin-top: 5px;
    color: var(--about-muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .zica-about-section {
    padding: 92px 0;
  }

  .zica-about-section--soft {
    background: var(--about-soft);
  }

  .zica-about-section__head {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .zica-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--about-orange);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
  }

  .zica-about-section h2 {
    margin: 0;
    color: var(--about-deep);
    font-size: 42px;
    line-height: 1.12;
    font-weight: 900;
  }

  .zica-about-section__head p,
  .zica-about-copy p {
    margin: 16px 0 0;
    color: var(--about-muted);
    font-size: 17px;
    line-height: 1.76;
  }

  .zica-about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 52px;
    align-items: center;
  }

  .zica-about-copy h2 {
    max-width: 620px;
  }

  .zica-about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
  }

  .zica-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #273247;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 750;
  }

  .zica-about-list i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--about-teal);
  }

  .zica-about-media {
    position: relative;
    margin: 0;
  }

  .zica-about-media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(8, 20, 45, 0.17);
  }

  .zica-about-media figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    color: var(--about-white);
    background: rgba(8, 20, 45, 0.86);
    backdrop-filter: blur(12px);
  }

  .zica-about-media-badge {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--about-deep);
    background: var(--about-gold);
    font-size: 26px;
  }

  .zica-about-media strong {
    display: block;
    font-size: 17px;
    line-height: 1.3;
  }

  .zica-about-media span:not(.zica-about-media-badge) {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.35;
  }

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

  .zica-about-feature {
    min-height: 242px;
    padding: 24px;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: var(--about-white);
    box-shadow: 0 16px 38px rgba(8, 20, 45, 0.08);
  }

  .zica-about-feature h3 {
    margin: 18px 0 10px;
    color: var(--about-navy);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
  }

  .zica-about-feature p {
    margin: 0;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.66;
  }

  .zica-about-method {
    position: relative;
    color: var(--about-white);
    background:
      linear-gradient(90deg, rgba(8, 20, 45, 0.96), rgba(22, 47, 104, 0.86)),
      url('../images/slider/photography-film-banner.png') center / cover no-repeat;
  }

  .zica-about-method h2,
  .zica-about-method .zica-about-section__head p {
    color: var(--about-white);
  }

  .zica-about-method .zica-about-section__head p {
    color: rgba(255, 255, 255, 0.76);
  }

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

  .zica-about-step {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }

  .zica-about-step__number {
    display: inline-flex;
    margin-bottom: 28px;
    color: #ffd48d;
    font-size: 15px;
    font-weight: 900;
  }

  .zica-about-step h3 {
    margin: 0 0 10px;
    color: var(--about-white);
    font-size: 23px;
    line-height: 1.18;
    font-weight: 900;
  }

  .zica-about-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.66;
  }

  .zica-about-brand {
    display: grid;
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
    gap: 36px;
    align-items: center;
  }

  .zica-about-brand__logos {
    display: grid;
    gap: 16px;
  }

  .zica-about-logo-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 28px;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: var(--about-white);
  }

  .zica-about-logo-panel img {
    max-height: 112px;
    width: auto;
    object-fit: contain;
  }

  .zica-about-brand__copy {
    padding: 34px;
    border-radius: 8px;
    color: var(--about-white);
    background: linear-gradient(135deg, var(--about-deep), #1f3e82);
  }

  .zica-about-brand__copy h2 {
    color: var(--about-white);
  }

  .zica-about-brand__copy p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.75;
  }

  .zica-about-brand-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .zica-about-brand-point {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 800;
  }

  .zica-about-brand-point i {
    color: #ffd48d;
  }

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

  .zica-about-track {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: var(--about-white);
    box-shadow: 0 16px 38px rgba(8, 20, 45, 0.08);
  }

  .zica-about-track__image {
    position: relative;
    min-height: 172px;
    overflow: hidden;
  }

  .zica-about-track__image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 220ms ease;
  }

  .zica-about-track:hover .zica-about-track__image img,
  .zica-about-track:focus-within .zica-about-track__image img {
    transform: scale(1.04);
  }

  .zica-about-track__icon {
    position: absolute;
    left: 16px;
    bottom: -23px;
    border: 4px solid var(--about-white);
  }

  .zica-about-track__body {
    padding: 40px 20px 22px;
  }

  .zica-about-track h3 {
    margin: 0 0 10px;
    color: var(--about-navy);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
  }

  .zica-about-track p {
    margin: 0 0 16px;
    color: var(--about-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .zica-about-track a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--about-deep);
    font-size: 14px;
    font-weight: 900;
  }

  .zica-about-track a i {
    font-size: 13px;
    transition: transform 180ms ease;
  }

  .zica-about-track a:hover i,
  .zica-about-track a:focus-visible i {
    transform: translateX(3px);
  }

  .zica-about-cta {
    padding: 78px 0;
    color: var(--about-white);
    background:
      linear-gradient(90deg, rgba(243, 111, 33, 0.93), rgba(22, 47, 104, 0.92)),
      url('../images/slider/graphic-design-banner.png') center / cover no-repeat;
  }

  .zica-about-cta__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
  }

  .zica-about-cta h2 {
    margin: 0;
    color: var(--about-white);
    font-size: 38px;
    line-height: 1.14;
    font-weight: 900;
  }

  .zica-about-cta p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.72;
  }

  .zica-about-cta .zica-about-btn--primary {
    color: var(--about-deep);
    background: var(--about-white);
    box-shadow: 0 18px 38px rgba(8, 20, 45, 0.2);
  }

  @media (max-width: 1100px) {
    .zica-about-hero h1 {
      font-size: 48px;
    }

    .zica-about-story,
    .zica-about-brand {
      grid-template-columns: 1fr;
    }

    .zica-about-feature-grid,
    .zica-about-track-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

  @media (max-width: 767px) {
    .zica-about-wrap {
      width: calc(100% - 28px);
    }

    .zica-about-hero {
      min-height: 520px;
      background-position: 62% center;
    }

    .zica-about-hero__content {
      padding: 54px 0 84px;
    }

    .zica-about-hero h1 {
      font-size: 36px;
      line-height: 1.08;
      overflow-wrap: break-word;
    }

    .zica-about-hero__lead {
      font-size: 16px;
      line-height: 1.68;
    }

    .zica-about-proof {
      margin-top: 0;
    }

    .zica-about-proof__grid,
    .zica-about-feature-grid,
    .zica-about-steps,
    .zica-about-brand-points,
    .zica-about-track-grid,
    .zica-about-cta__layout,
    .zica-about-list {
      grid-template-columns: 1fr;
    }

    .zica-about-proof__grid {
      border-radius: 0;
      border-left: 0;
      border-right: 0;
      box-shadow: none;
    }

    .zica-about-proof__item {
      border-right: 0;
      border-bottom: 1px solid var(--about-line);
      padding: 20px 14px;
    }

    .zica-about-proof__item:last-child {
      border-bottom: 0;
    }

    .zica-about-section {
      padding: 64px 0;
    }

    .zica-about-section h2,
    .zica-about-cta h2 {
      font-size: 30px;
      line-height: 1.16;
      overflow-wrap: break-word;
    }

    .zica-about-section__head p,
    .zica-about-copy p,
    .zica-about-cta p {
      font-size: 16px;
    }

    .zica-about-story {
      gap: 30px;
    }

    .zica-about-media img {
      min-height: 320px;
    }

    .zica-about-media figcaption {
      position: static;
      margin-top: 10px;
      background: var(--about-deep);
    }

    .zica-about-feature {
      min-height: 0;
    }

    .zica-about-cta__layout {
      gap: 24px;
    }

    .zica-about-cta .zica-about-actions {
      margin-top: 0;
    }

    .zica-about-actions {
      width: 100%;
      flex-direction: column;
    }

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

  @media (max-width: 420px) {
    .zica-about-actions,
    .zica-about-btn {
      width: 100%;
    }

    .zica-about-btn {
      padding-left: 14px;
      padding-right: 14px;
    }
  }

/* Why Choose Page */
.why-choose-page {
  --choose-ink: #151824;
  --choose-muted: #626d7c;
  --choose-soft: #f5f8fc;
  --choose-line: #dfe6ef;
  --choose-deep: #08142d;
  --choose-navy: #162f68;
  --choose-orange: #f36f21;
  --choose-teal: #0f8f8c;
  --choose-gold: #d8b645;
  --choose-white: #ffffff;
  color: var(--choose-ink);
  background: var(--choose-white);
  overflow: hidden;
}

.why-choose-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.why-choose-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--choose-white);
  background:
    linear-gradient(90deg, rgba(8, 20, 45, 0.95), rgba(8, 20, 45, 0.78) 52%, rgba(8, 20, 45, 0.38)),
    url('../images/slider/ui-ux-design-banner.png') center / cover no-repeat;
}

.why-choose-hero__content {
  max-width: 780px;
  padding: 80px 0 108px;
}

.why-choose-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.why-choose-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--choose-white);
}

.why-choose-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.48);
}

.why-choose-eyebrow,
.why-choose-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--choose-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.why-choose-eyebrow {
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: #ffe1cb;
  background: rgba(243, 111, 33, 0.18);
}

.why-choose-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--choose-white);
  font-size: 56px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.why-choose-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.78;
}

.why-choose-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.why-choose-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.why-choose-btn:hover,
.why-choose-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.why-choose-btn--primary {
  color: var(--choose-white);
  background: var(--choose-orange);
  box-shadow: 0 18px 38px rgba(243, 111, 33, 0.28);
}

.why-choose-btn--secondary {
  color: var(--choose-white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.why-choose-btn--light {
  color: var(--choose-deep);
  background: var(--choose-white);
  box-shadow: 0 18px 38px rgba(8, 20, 45, 0.2);
}

.why-choose-proof {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.why-choose-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--choose-line);
  border-radius: 8px;
  background: var(--choose-white);
  box-shadow: 0 24px 54px rgba(8, 20, 45, 0.16);
}

.why-choose-proof article {
  min-height: 132px;
  padding: 26px;
  border-right: 1px solid var(--choose-line);
}

.why-choose-proof article:last-child {
  border-right: 0;
}

.why-choose-proof strong {
  display: block;
  color: var(--choose-navy);
  font-size: 20px;
  line-height: 1.24;
  font-weight: 900;
}

.why-choose-proof span {
  display: block;
  margin-top: 8px;
  color: var(--choose-muted);
  font-size: 15px;
  line-height: 1.58;
}

.why-choose-section {
  padding: 92px 0;
}

.why-choose-section--story,
.why-choose-section--courses {
  background: var(--choose-soft);
}

.why-choose-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.why-choose-kicker {
  margin-bottom: 12px;
}

.why-choose-section h2,
.why-choose-copy h2,
.why-choose-cta h2 {
  margin: 0;
  color: var(--choose-deep);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.why-choose-section__head p,
.why-choose-copy p,
.why-choose-cta p {
  margin: 16px 0 0;
  color: var(--choose-muted);
  font-size: 17px;
  line-height: 1.76;
}

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

.why-choose-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--choose-line);
  border-radius: 8px;
  background: var(--choose-white);
  box-shadow: 0 16px 38px rgba(8, 20, 45, 0.08);
}

.why-choose-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--choose-white);
  background: linear-gradient(135deg, var(--choose-orange), #ff9b5a);
  box-shadow: 0 14px 26px rgba(243, 111, 33, 0.2);
}

.why-choose-card h3 {
  margin: 18px 0 10px;
  color: var(--choose-navy);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.why-choose-card p {
  margin: 0;
  color: var(--choose-muted);
  font-size: 15px;
  line-height: 1.66;
}

.why-choose-split {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.why-choose-image {
  margin: 0;
}

.why-choose-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(8, 20, 45, 0.17);
}

.why-choose-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.why-choose-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #273247;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.why-choose-check-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--choose-teal);
}

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

.why-choose-process article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--choose-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.why-choose-process span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--choose-orange);
  font-size: 15px;
  font-weight: 900;
}

.why-choose-process h3 {
  margin: 0 0 10px;
  color: var(--choose-navy);
  font-size: 23px;
  line-height: 1.18;
  font-weight: 900;
}

.why-choose-process p {
  margin: 0;
  color: var(--choose-muted);
  font-size: 15px;
  line-height: 1.66;
}

.why-choose-course-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-choose-course-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--choose-line);
  border-radius: 8px;
  color: var(--choose-deep);
  background: var(--choose-white);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 20, 45, 0.06);
}

.why-choose-course-links i {
  color: var(--choose-orange);
  font-size: 22px;
}

.why-choose-faq__list {
  display: grid;
  gap: 12px;
}

.why-choose-faq details {
  border: 1px solid var(--choose-line);
  border-radius: 8px;
  background: var(--choose-white);
  box-shadow: 0 12px 28px rgba(8, 20, 45, 0.06);
}

.why-choose-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--choose-navy);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.why-choose-faq details[open] summary {
  border-bottom: 1px solid var(--choose-line);
}

.why-choose-faq details p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--choose-muted);
  font-size: 16px;
  line-height: 1.72;
}

.why-choose-cta {
  padding: 78px 0;
  color: var(--choose-white);
  background:
    linear-gradient(90deg, rgba(243, 111, 33, 0.93), rgba(22, 47, 104, 0.92)),
    url('../images/slider/animation-vfx-banner.png') center / cover no-repeat;
}

.why-choose-cta__content {
  max-width: 820px;
}

.why-choose-cta h2 {
  color: var(--choose-white);
}

.why-choose-cta p {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1100px) {
  .why-choose-hero h1 {
    font-size: 46px;
  }

  .why-choose-card-grid,
  .why-choose-course-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-split {
    grid-template-columns: 1fr;
  }

  .why-choose-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .why-choose-container {
    width: calc(100% - 28px);
  }

  .why-choose-hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .why-choose-hero__content {
    padding: 54px 0 84px;
  }

  .why-choose-hero h1,
  .why-choose-section h2,
  .why-choose-copy h2,
  .why-choose-cta h2 {
    font-size: 30px;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .why-choose-hero p,
  .why-choose-section__head p,
  .why-choose-copy p,
  .why-choose-cta p {
    font-size: 16px;
  }

  .why-choose-actions {
    width: 100%;
    flex-direction: column;
  }

  .why-choose-btn {
    width: 100%;
  }

  .why-choose-proof {
    margin-top: 0;
  }

  .why-choose-proof__grid,
  .why-choose-card-grid,
  .why-choose-check-list,
  .why-choose-process,
  .why-choose-course-links {
    grid-template-columns: 1fr;
  }

  .why-choose-proof__grid {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .why-choose-proof article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--choose-line);
    padding: 22px 14px;
  }

  .why-choose-proof article:last-child {
    border-bottom: 0;
  }

  .why-choose-section {
    padding: 64px 0;
  }

  .why-choose-card,
  .why-choose-process article {
    min-height: 0;
  }

  .why-choose-split {
    gap: 30px;
  }

  .why-choose-image img {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .why-choose-hero__content,
  .why-choose-section__head,
  .why-choose-copy,
  .why-choose-card,
  .why-choose-process article,
  .why-choose-course-links,
  .why-choose-faq__list,
  .why-choose-cta__content,
  .why-choose-proof__grid {
    max-width: 362px;
  }

  .why-choose-hero h1,
  .why-choose-hero p,
  .why-choose-section h2,
  .why-choose-section__head p,
  .why-choose-card h3,
  .why-choose-card p,
  .why-choose-copy h2,
  .why-choose-copy p,
  .why-choose-process h3,
  .why-choose-process p,
  .why-choose-proof strong,
  .why-choose-proof span,
  .why-choose-faq summary,
  .why-choose-faq details p {
    overflow-wrap: anywhere;
  }
}

/* Knowledge Series Page */
.knowledge-page {
  --knowledge-ink: #151824;
  --knowledge-muted: #5f6b7c;
  --knowledge-soft: #f5f7fb;
  --knowledge-line: #dfe6ef;
  --knowledge-deep: #08142d;
  --knowledge-navy: #162f68;
  --knowledge-orange: #f36f21;
  --knowledge-teal: #0f8f8c;
  --knowledge-gold: #d8b645;
  --knowledge-white: #ffffff;
  color: var(--knowledge-ink);
  background: var(--knowledge-white);
  overflow: hidden;
}

.knowledge-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.knowledge-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  color: var(--knowledge-white);
  background:
    linear-gradient(90deg, rgba(8, 20, 45, 0.96), rgba(8, 20, 45, 0.78) 54%, rgba(8, 20, 45, 0.36)),
    url('../images/slider/photography-film-banner.png') center / cover no-repeat;
}

.knowledge-hero__content {
  max-width: 800px;
  padding: 76px 0 108px;
}

.knowledge-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.knowledge-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--knowledge-white);
}

.knowledge-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.knowledge-eyebrow,
.knowledge-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.knowledge-eyebrow {
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: #ffe1cb;
  background: rgba(243, 111, 33, 0.18);
}

.knowledge-kicker {
  margin-bottom: 12px;
  color: var(--knowledge-orange);
}

.knowledge-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--knowledge-white);
  font-size: 56px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.knowledge-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.78;
}

.knowledge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.knowledge-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.knowledge-btn:hover,
.knowledge-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.knowledge-btn--primary {
  color: var(--knowledge-white);
  background: var(--knowledge-orange);
  box-shadow: 0 18px 38px rgba(243, 111, 33, 0.28);
}

.knowledge-btn--ghost {
  color: var(--knowledge-white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.knowledge-btn--light {
  color: var(--knowledge-deep);
  background: var(--knowledge-white);
  box-shadow: 0 18px 38px rgba(8, 20, 45, 0.2);
}

.knowledge-proof {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.knowledge-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--knowledge-line);
  border-radius: 8px;
  background: var(--knowledge-white);
  box-shadow: 0 24px 54px rgba(8, 20, 45, 0.16);
}

.knowledge-proof__item {
  min-height: 138px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border-right: 1px solid var(--knowledge-line);
}

.knowledge-proof__item:last-child {
  border-right: 0;
}

.knowledge-proof__icon,
.knowledge-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--knowledge-white);
  background: linear-gradient(135deg, var(--knowledge-orange), #ff9b5a);
  box-shadow: 0 14px 26px rgba(243, 111, 33, 0.2);
}

.knowledge-proof strong {
  display: block;
  color: var(--knowledge-navy);
  font-size: 20px;
  line-height: 1.24;
  font-weight: 900;
}

.knowledge-proof__item div > span {
  display: block;
  margin-top: 8px;
  color: var(--knowledge-muted);
  font-size: 15px;
  line-height: 1.58;
}

.knowledge-section {
  padding: 92px 0;
}

.knowledge-section--soft {
  background: var(--knowledge-soft);
}

.knowledge-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.knowledge-copy h2,
.knowledge-section__head h2,
.knowledge-cta h2 {
  margin: 0;
  color: var(--knowledge-deep);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.knowledge-copy p,
.knowledge-section__head p,
.knowledge-cta p {
  margin: 16px 0 0;
  color: var(--knowledge-muted);
  font-size: 17px;
  line-height: 1.76;
}

.knowledge-media {
  position: relative;
  margin: 0;
}

.knowledge-media img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(8, 20, 45, 0.17);
}

.knowledge-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  color: var(--knowledge-white);
  background: rgba(8, 20, 45, 0.9);
  backdrop-filter: blur(10px);
}

.knowledge-media figcaption > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--knowledge-white);
  background: var(--knowledge-orange);
}

.knowledge-media strong,
.knowledge-media em {
  display: block;
}

.knowledge-media em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.knowledge-section__head {
  max-width: 790px;
  margin-bottom: 34px;
}

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

.knowledge-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--knowledge-line);
  border-radius: 8px;
  background: var(--knowledge-white);
  box-shadow: 0 16px 38px rgba(8, 20, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.knowledge-card:hover,
.knowledge-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(243, 111, 33, 0.34);
  box-shadow: 0 22px 46px rgba(8, 20, 45, 0.12);
}

.knowledge-card h3 {
  margin: 18px 0 10px;
  color: var(--knowledge-navy);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.knowledge-card p {
  margin: 0;
  color: var(--knowledge-muted);
  font-size: 15px;
  line-height: 1.66;
}

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

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

.knowledge-process article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--knowledge-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.knowledge-process span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--knowledge-orange);
  font-size: 15px;
  font-weight: 900;
}

.knowledge-process h3 {
  margin: 0 0 10px;
  color: var(--knowledge-navy);
  font-size: 23px;
  line-height: 1.18;
  font-weight: 900;
}

.knowledge-process p {
  margin: 0;
  color: var(--knowledge-muted);
  font-size: 15px;
  line-height: 1.66;
}

.knowledge-cta {
  padding: 78px 0;
  color: var(--knowledge-white);
  background:
    linear-gradient(90deg, rgba(243, 111, 33, 0.93), rgba(22, 47, 104, 0.92)),
    url('../images/slider/animation-vfx-banner.png') center / cover no-repeat;
}

.knowledge-cta__content {
  max-width: 840px;
}

.knowledge-cta .knowledge-kicker,
.knowledge-cta h2 {
  color: var(--knowledge-white);
}

.knowledge-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.knowledge-cta .knowledge-btn {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .knowledge-hero h1 {
    font-size: 46px;
  }

  .knowledge-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .knowledge-wrap {
    width: calc(100% - 28px);
  }

  .knowledge-hero {
    min-height: 540px;
    background-position: 58% center;
  }

  .knowledge-hero__content {
    padding: 54px 0 84px;
  }

  .knowledge-hero h1,
  .knowledge-copy h2,
  .knowledge-section__head h2,
  .knowledge-cta h2 {
    font-size: 30px;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .knowledge-hero p,
  .knowledge-copy p,
  .knowledge-section__head p,
  .knowledge-cta p {
    font-size: 16px;
  }

  .knowledge-actions {
    width: 100%;
    flex-direction: column;
  }

  .knowledge-btn {
    width: 100%;
  }

  .knowledge-proof {
    margin-top: 0;
  }

  .knowledge-proof__grid,
  .knowledge-card-grid,
  .knowledge-process {
    grid-template-columns: 1fr;
  }

  .knowledge-proof__grid {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .knowledge-proof__item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--knowledge-line);
    padding: 22px 14px;
  }

  .knowledge-proof__item:last-child {
    border-bottom: 0;
  }

  .knowledge-section {
    padding: 64px 0;
  }

  .knowledge-split {
    gap: 30px;
  }

  .knowledge-media img {
    min-height: 320px;
  }

  .knowledge-media figcaption {
    position: static;
    margin-top: 10px;
  }

  .knowledge-card,
  .knowledge-process article {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .knowledge-hero__content,
  .knowledge-section__head,
  .knowledge-copy,
  .knowledge-card,
  .knowledge-process article,
  .knowledge-cta__content,
  .knowledge-proof__grid {
    max-width: 362px;
  }

  .knowledge-hero h1,
  .knowledge-hero p,
  .knowledge-copy h2,
  .knowledge-copy p,
  .knowledge-section__head h2,
  .knowledge-section__head p,
  .knowledge-card h3,
  .knowledge-card p,
  .knowledge-process h3,
  .knowledge-process p,
  .knowledge-proof strong,
  .knowledge-proof span,
  .knowledge-cta h2,
  .knowledge-cta p {
    overflow-wrap: anywhere;
  }
}

/* Careers Zone Pages */
.career-zone-page {
  --career-ink: #151924;
  --career-muted: #5d6878;
  --career-soft: #f3f7f8;
  --career-line: #dce5ea;
  --career-deep: #08142d;
  --career-navy: #142d63;
  --career-orange: #f36f21;
  --career-teal: #0e8f85;
  --career-gold: #d8b645;
  --career-white: #ffffff;
  color: var(--career-ink);
  background: var(--career-white);
  overflow: hidden;
}

.career-zone-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.career-zone-hero {
  min-height: 590px;
  display: flex;
  align-items: center;
  color: var(--career-white);
  background:
    linear-gradient(90deg, rgba(8, 20, 45, 0.96) 0%, rgba(8, 20, 45, 0.82) 46%, rgba(8, 20, 45, 0.34) 100%),
    var(--career-deep);
  background-size: cover;
  background-position: center;
}

.career-zone-page--hire .career-zone-hero {
  background-image:
    linear-gradient(90deg, rgba(8, 20, 45, 0.96) 0%, rgba(8, 20, 45, 0.82) 46%, rgba(8, 20, 45, 0.34) 100%),
    url('../images/slider/animation-vfx-banner.png');
}

.career-zone-page--work .career-zone-hero {
  background-image:
    linear-gradient(90deg, rgba(8, 20, 45, 0.95) 0%, rgba(14, 72, 83, 0.82) 48%, rgba(8, 20, 45, 0.34) 100%),
    url('../images/slider/graphic-design-banner.png');
}

.career-zone-hero__content {
  max-width: 790px;
  padding: 78px 0 116px;
}

.career-zone-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.career-zone-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--career-white);
}

.career-zone-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.52);
}

.career-zone-eyebrow,
.career-zone-kicker,
.career-zone-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.career-zone-eyebrow {
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: #ffe1cb;
  background: rgba(243, 111, 33, 0.2);
}

.career-zone-kicker,
.career-zone-panel__label {
  color: var(--career-orange);
}

.career-zone-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--career-white);
  font-size: 56px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.career-zone-hero p {
  max-width: 750px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.78;
}

.career-zone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.career-zone-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.career-zone-btn:hover,
.career-zone-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.career-zone-btn--primary {
  color: var(--career-white);
  background: var(--career-orange);
  box-shadow: 0 18px 38px rgba(243, 111, 33, 0.28);
}

.career-zone-btn--ghost {
  color: var(--career-white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.career-zone-btn--light {
  color: var(--career-deep);
  background: var(--career-white);
  box-shadow: 0 18px 38px rgba(8, 20, 45, 0.2);
}

.career-zone-snapshot {
  position: relative;
  z-index: 2;
  margin-top: -56px;
}

.career-zone-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--career-line);
  border-radius: 8px;
  background: var(--career-white);
  box-shadow: 0 26px 58px rgba(8, 20, 45, 0.16);
}

.career-zone-snapshot article {
  min-height: 142px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border-right: 1px solid var(--career-line);
}

.career-zone-snapshot article:last-child {
  border-right: 0;
}

.career-zone-snapshot article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--career-white);
  background: linear-gradient(135deg, var(--career-orange), #ff9b5a);
  box-shadow: 0 14px 26px rgba(243, 111, 33, 0.2);
}

.career-zone-page--work .career-zone-snapshot article > span {
  background: linear-gradient(135deg, var(--career-teal), #35b8aa);
  box-shadow: 0 14px 26px rgba(14, 143, 133, 0.2);
}

.career-zone-snapshot strong {
  display: block;
  color: var(--career-navy);
  font-size: 20px;
  line-height: 1.24;
  font-weight: 900;
}

.career-zone-snapshot p {
  margin: 8px 0 0;
  color: var(--career-muted);
  font-size: 15px;
  line-height: 1.58;
}

.career-zone-section {
  padding: 92px 0;
}

.career-zone-section--tint {
  background:
    linear-gradient(180deg, rgba(243, 247, 248, 0.96), rgba(255, 255, 255, 0.96)),
    var(--career-soft);
}

.career-zone-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: start;
}

.career-zone-editorial--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.career-zone-copy h2,
.career-zone-section__head h2,
.career-zone-cta h2 {
  margin: 0;
  color: var(--career-deep);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.career-zone-copy p,
.career-zone-section__head p,
.career-zone-cta p {
  margin: 16px 0 0;
  color: var(--career-muted);
  font-size: 17px;
  line-height: 1.76;
}

.career-zone-panel {
  position: sticky;
  top: 108px;
  padding: 30px;
  border: 1px solid rgba(20, 45, 99, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbfb);
  box-shadow: 0 20px 46px rgba(8, 20, 45, 0.1);
}

.career-zone-panel--accent {
  border-color: rgba(14, 143, 133, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 248, 0.98));
}

.career-zone-panel h3 {
  margin: 12px 0 20px;
  color: var(--career-navy);
  font-size: 30px;
  line-height: 1.14;
  font-weight: 900;
}

.career-zone-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-zone-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--career-line);
  border-radius: 999px;
  color: #273247;
  background: var(--career-white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.career-zone-section__head {
  max-width: 790px;
  margin-bottom: 34px;
}

.career-zone-steps,
.career-zone-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.career-zone-steps article,
.career-zone-cards article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--career-line);
  border-radius: 8px;
  background: var(--career-white);
  box-shadow: 0 16px 34px rgba(8, 20, 45, 0.07);
}

.career-zone-steps article {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.career-zone-steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--career-orange);
  font-size: 15px;
  font-weight: 900;
}

.career-zone-page--work .career-zone-steps span {
  color: var(--career-teal);
}

.career-zone-steps h3,
.career-zone-cards h3 {
  margin: 0 0 10px;
  color: var(--career-navy);
  font-size: 23px;
  line-height: 1.18;
  font-weight: 900;
}

.career-zone-steps p,
.career-zone-cards p {
  margin: 0;
  color: var(--career-muted);
  font-size: 15px;
  line-height: 1.66;
}

.career-zone-cards article {
  position: relative;
  overflow: hidden;
}

.career-zone-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--career-teal), var(--career-gold));
}

.career-zone-cta {
  padding: 78px 0;
  color: var(--career-white);
  background:
    linear-gradient(90deg, rgba(8, 20, 45, 0.94), rgba(14, 143, 133, 0.82)),
    url('../images/slider/ui-ux-design-banner.png') center / cover no-repeat;
}

.career-zone-page--hire .career-zone-cta {
  background:
    linear-gradient(90deg, rgba(243, 111, 33, 0.92), rgba(20, 45, 99, 0.9)),
    url('../images/slider/game-design-banner.png') center / cover no-repeat;
}

.career-zone-cta__inner {
  max-width: 850px;
}

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

.career-zone-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.career-zone-cta .career-zone-btn {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .career-zone-hero h1 {
    font-size: 46px;
  }

  .career-zone-editorial,
  .career-zone-editorial--reverse {
    grid-template-columns: 1fr;
  }

  .career-zone-panel {
    position: relative;
    top: auto;
  }

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

@media (max-width: 767px) {
  .career-zone-wrap {
    width: calc(100% - 28px);
  }

  .career-zone-hero {
    min-height: 540px;
    background-position: 58% center;
  }

  .career-zone-hero__content {
    padding: 54px 0 84px;
  }

  .career-zone-hero h1,
  .career-zone-copy h2,
  .career-zone-section__head h2,
  .career-zone-cta h2 {
    font-size: 30px;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .career-zone-hero p,
  .career-zone-copy p,
  .career-zone-section__head p,
  .career-zone-cta p {
    font-size: 16px;
  }

  .career-zone-actions {
    width: 100%;
    flex-direction: column;
  }

  .career-zone-btn {
    width: 100%;
  }

  .career-zone-snapshot {
    margin-top: 0;
  }

  .career-zone-snapshot__grid,
  .career-zone-steps,
  .career-zone-cards {
    grid-template-columns: 1fr;
  }

  .career-zone-snapshot__grid {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .career-zone-snapshot article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--career-line);
    padding: 22px 14px;
  }

  .career-zone-snapshot article:last-child {
    border-bottom: 0;
  }

  .career-zone-section {
    padding: 64px 0;
  }

  .career-zone-editorial,
  .career-zone-editorial--reverse {
    gap: 30px;
  }

  .career-zone-editorial--reverse .career-zone-copy {
    order: -1;
  }

  .career-zone-panel {
    padding: 24px;
  }

  .career-zone-steps article,
  .career-zone-cards article {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .career-zone-hero__content,
  .career-zone-section__head,
  .career-zone-copy,
  .career-zone-panel,
  .career-zone-steps article,
  .career-zone-cards article,
  .career-zone-cta__inner,
  .career-zone-snapshot__grid {
    max-width: 362px;
  }

  .career-zone-hero h1,
  .career-zone-hero p,
  .career-zone-copy h2,
  .career-zone-copy p,
  .career-zone-section__head h2,
  .career-zone-section__head p,
  .career-zone-panel h3,
  .career-zone-chip-list span,
  .career-zone-steps h3,
  .career-zone-steps p,
  .career-zone-cards h3,
  .career-zone-cards p,
  .career-zone-snapshot strong,
  .career-zone-snapshot p,
  .career-zone-cta h2,
  .career-zone-cta p {
    overflow-wrap: anywhere;
  }
}

/* Home About ZICA Section */
.home-zica-about {
  --home-about-ink: #121826;
  --home-about-muted: #5e6878;
  --home-about-line: #dce5ed;
  --home-about-soft: #f3f7fb;
  --home-about-deep: #08142d;
  --home-about-navy: #142d63;
  --home-about-orange: #f36f21;
  --home-about-teal: #0f8f8c;
  --home-about-white: #ffffff;
  position: relative;
  padding: 55px 0 56px;
  color: var(--home-about-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(243, 247, 251, 0.92) 100%),
    var(--home-about-soft);
  overflow: hidden;
}
.home-zica-about::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  /* background: linear-gradient(90deg, var(--home-about-orange), var(--home-about-teal), var(--home-about-navy)); */
}

.home-zica-about__wrap {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 52px;
  align-items: center;
}

.home-zica-about__content,
.home-zica-about__media {
  min-width: 0;
}

.home-zica-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(243, 111, 33, 0.24);
  border-radius: 999px;
  color: var(--home-about-orange);
  background: rgba(243, 111, 33, 0.1);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.home-zica-about__content h2 {
  max-width: 820px;
  margin: 0;
  color: var(--home-about-deep);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.home-zica-about__content p {
  margin: 18px 0 0;
  color: var(--home-about-muted);
  font-size: 16px;
  line-height: 1.78;
}

.home-zica-about__content p strong {
  color: var(--home-about-navy);
  font-weight: 900;
}

.home-zica-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-zica-about__btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-zica-about__btn:hover,
.home-zica-about__btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.home-zica-about__btn--primary {
  color: var(--home-about-white);
  background: var(--home-about-orange);
  box-shadow: 0 16px 34px rgba(243, 111, 33, 0.22);
}

.home-zica-about__media {
  display: grid;
  gap: 14px;
}

.home-zica-about__figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--home-about-deep);
  box-shadow: 0 28px 70px rgba(8, 20, 45, 0.18);
}

.home-zica-about__figure img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.home-zica-about__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 45, 0.02), rgba(8, 20, 45, 0.78)),
    linear-gradient(90deg, rgba(15, 143, 140, 0.22), rgba(243, 111, 33, 0.08));
}

.home-zica-about__figure figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 20px;
  border-radius: 8px;
  color: var(--home-about-white);
  background: rgba(8, 20, 45, 0.88);
  backdrop-filter: blur(10px);
}

.home-zica-about__figure figcaption strong,
.home-zica-about__figure figcaption span {
  display: block;
}

.home-zica-about__figure figcaption strong {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
}

.home-zica-about__figure figcaption span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.56;
}

@media (max-width: 1100px) {
  .home-zica-about__wrap {
    grid-template-columns: 1fr;
  }

  .home-zica-about__figure {
    min-height: 420px;
  }

  .home-zica-about__figure img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .home-zica-about {
    padding: 64px 0 70px;
  }

  .home-zica-about__wrap {
    width: calc(100% - 28px);
    gap: 30px;
  }

  .home-zica-about__content h2 {
    font-size: 30px;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .home-zica-about__content p {
    font-size: 16px;
  }

  .home-zica-about__actions {
    flex-direction: column;
  }

  .home-zica-about__btn {
    width: 100%;
  }

  .home-zica-about__figure,
  .home-zica-about__figure img {
    min-height: 320px;
  }

  .home-zica-about__figure figcaption {
    position: static;
    border-radius: 0;
  }

  .home-zica-about__figure::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-zica-about__content,
  .home-zica-about__media,
  .home-zica-about__figure {
    max-width: 362px;
  }

  .home-zica-about__content h2,
  .home-zica-about__content p,
  .home-zica-about__figure figcaption strong,
  .home-zica-about__figure figcaption span {
    overflow-wrap: anywhere;
  }
}

.quote-captcha {
  min-width: 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 36px;
  gap: 8px;
  align-items: center;
}

.quote-captcha strong {
  min-width: 0;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 32, 44, 0.12);
  border-radius: 8px;
  color: #18202c;
  background: #f1f5f9;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: monospace;
}

.quote-captcha button {
  min-width: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 32, 44, 0.12);
  border-radius: 8px;
  color: var(--navy-deep);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: all 200ms ease;
}

.quote-captcha button:hover,
.quote-captcha button:focus-visible {
  color: var(--white);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  outline: none;
}

.contact-page-container {
  width: min(1200px, calc(100% - 48px));
  margin: -40px auto 80px;
  position: relative;
  z-index: 5;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-details-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(24, 32, 44, 0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(7, 21, 50, 0.03);
}

.contact-info-card .info-icon {
  width: 52px;
  height: 52px;
  background: rgba(243, 111, 33, 0.1);
  color: var(--brand-orange);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-info-card .info-text h3 {
  font-size: 16px;
  font-weight: 850;
  color: var(--navy-deep);
  margin: 0 0 6px;
}

.contact-info-card .info-text p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.contact-info-card .info-text a {
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 700;
}

.contact-info-card .info-text a:hover {
  color: var(--brand-orange);
}

.contact-info-card .info-text .small-note {
  font-size: 12.5px;
  color: #94a3b8;
  margin-top: 4px;
}

.contact-map-card {
  border: 1px solid rgba(24, 32, 44, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 21, 50, 0.03);
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid rgba(24, 32, 44, 0.06);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(7, 21, 50, 0.04);
}

.contact-page-form h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy-deep);
  margin: 0 0 8px;
}

.contact-page-form p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 28px;
}

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

.form-field-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field-label span {
  color: var(--navy-deep);
  font-size: 13.5px;
  font-weight: 850;
}

.form-field-label b {
  color: var(--brand-orange);
}

.form-field-label input,
.form-field-label select,
.form-field-label textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--navy-deep);
  background: #f8fafc;
  font-size: 14.5px;
  outline: none;
  transition: all 200ms ease;
}

.form-field-label textarea {
  resize: vertical;
}

.form-field-label input:focus,
.form-field-label select:focus,
.form-field-label textarea:focus {
  border-color: var(--brand-orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.12);
}

.form-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
  margin: 10px 0 24px;
  cursor: pointer;
}

.form-consent-check input {
  margin-top: 4px;
  accent-color: var(--brand-orange);
}

.contact-page-submit-btn {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-orange);
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(243, 111, 33, 0.25);
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-page-submit-btn:hover {
  background: #df5d16;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(243, 111, 33, 0.35);
}

@media (max-width: 991px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-panel {
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
