:root {
  --primary-red: #D7263D;
  --primary-red-dark: #B81E33;
  --primary-blue: #123A72;
  --deep-blue: #1F2F6B;
  --dark-blue: #142347;
  --navy-900: #101828;
  --ink: #1F2937;
  --muted: #475467;
  --muted-2: #667085;
  --soft: #F8FAFC;
  --soft-2: #EEF2F7;
  --line: rgba(16, 24, 40, 0.10);
  --white: #FFFFFF;
  --success: #0F766E;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 24px rgba(16, 24, 40, 0.08);
  --shadow: 0 22px 50px rgba(16, 24, 40, 0.12);
  --shadow-lg: 0 32px 70px rgba(16, 24, 40, 0.16);
  --container-max: 1240px;

  --fs-h1: clamp(2rem, 1.45rem + 2.4vw, 3rem);
  --fs-h2: clamp(1.625rem, 1.35rem + 1.1vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
  --fs-body: 1rem;
  --fs-body-sm: 0.9375rem;
  --fs-small: 0.8125rem;
  --lh-heading: 1.15;
  --lh-body: 1.65;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: 1rem;
}
small, .small, .breadcrumb-text, .hero-mini-stats span, .program-meta, .footer-bottom p {
  font-size: var(--fs-small);
  line-height: 1.55;
}
h1, h2, h3, h4, h5, h6, .navbar-brand, .hero-display, .footer-logo {
  font-family: 'Inter', sans-serif;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-heading); font-weight: 800; }
h2 { font-size: var(--fs-h2); line-height: 1.2; font-weight: 800; }
h3 { font-size: var(--fs-h3); line-height: 1.25; font-weight: 700; }
h4 { font-size: 1.125rem; line-height: 1.35; font-weight: 700; }
h5 { font-size: 1rem; line-height: 1.4; font-weight: 700; }
h6 { font-size: 0.875rem; line-height: 1.45; font-weight: 700; }
.container { max-width: var(--container-max); }
.section-padding { padding: 104px 0; }
.bg-soft { background: var(--soft); }
.text-brand-red, .text-red { color: var(--primary-red) !important; }
.text-brand-blue, .text-blue { color: var(--primary-blue) !important; }
.text-accent { color: var(--primary-red); }
.text-muted-soft { color: rgba(255,255,255,.72) !important; }
.eyebrow,
.small-title,
.split-label,
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}
.eyebrow::before,
.small-title::before,
.split-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  opacity: .7;
}
.small-title,
.badge-soft {
  color: var(--primary-red);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 1.5rem + 1.9vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-title.h3 {
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2rem);
  line-height: 1.2;
}
.section-subtitle { max-width: 760px; }
.lead-copy {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  background: var(--primary-red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform .2s ease;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.btn-main,
.btn-outline-brand,
.btn-light-solid,
.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-main {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 18px 30px rgba(232,29,58,.24);
}
.btn-main:hover,
.btn-light-solid:hover,
.btn-outline-brand:hover,
.btn-outline-light-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
}
.btn-main:hover { background: linear-gradient(135deg, #bf1f33 0%, #9f172a 100%); color: #fff; }
.btn-outline-brand:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-outline-brand.dark:hover { background: var(--primary-blue); border-color: var(--primary-blue); color: #fff; }
.btn-light-solid:hover { color: var(--dark-blue); }
.btn-outline-brand {
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}
.btn-outline-brand.dark {
  color: var(--primary-blue);
  border-color: rgba(0,69,131,.18);
  background: #fff;
}
.btn-light-solid {
  color: var(--dark-blue);
  background: #fff;
  border: 1px solid #fff;
}
.btn-light-solid.small { min-height: 44px; padding: 0 18px; }
.btn-outline-light-custom {
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  background: transparent;
}
.btn-main:focus-visible,
.btn-outline-brand:focus-visible,
.btn-light-solid:focus-visible,
.btn-outline-light-custom:focus-visible,
.nav-link:focus-visible,
.social-links a:focus-visible,
.footer a:focus-visible,
.form-control:focus,
.form-select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232,29,58,.16) !important;
}

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(23, 29, 77, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.navbar-wrap.is-scrolled {
  background: rgba(17, 22, 47, 0.94);
  box-shadow: 0 12px 30px rgba(8, 13, 34, 0.18);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 800;
}
.logo-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--primary-red), #c7122d);
  clip-path: polygon(50% 0%, 92% 18%, 92% 75%, 50% 100%, 8% 75%, 8% 18%);
  box-shadow: 0 18px 30px rgba(232,29,58,.28);
}
.nav-link {
  color: rgba(255,255,255,.88);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 14px !important;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link.active,
.nav-link:hover { color: #fff !important; }
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 12px;
  padding: 8px 10px;
}
.navbar-toggler { filter: invert(1); }

.showcase-hero { background: var(--dark-blue); }
.hero-panel-left {
  background: linear-gradient(145deg, var(--deep-blue) 0%, #2b2a7a 45%, #2f318c 100%);
  color: #fff;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.hero-panel-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.1), transparent 42%);
}
.hero-panel-inner {
  max-width: 620px;
  padding: 124px 24px 86px 24px;
  position: relative;
  z-index: 2;
}
.hero-display {
  font-size: clamp(2.4rem, 1.6rem + 4vw, 4.5rem);
  line-height: .94;
  margin: 18px 0 20px;
  font-weight: 900;
  color: #fff;
}
.hero-display span { color: var(--primary-red); }
.hero-copy {
  color: rgba(255,255,255,.82);
  max-width: 520px;
  font-size: 1rem;
}
.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.hero-mini-stats > div {
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  min-width: 152px;
}
.hero-mini-stats strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 900;
}
.hero-mini-stats span { font-size: .88rem; color: rgba(255,255,255,.72); }
.hero-image-wrap { position: relative; min-height: 100vh; }
.hero-cover {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-video {
  background: #0b1535;
  object-position: center center;
  filter: saturate(1.02) contrast(1.02);
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 34, 0.08), rgba(8, 12, 34, 0.24));
}
.hero-angle {
  position: absolute; z-index: 2; background: var(--primary-red);
}
.hero-angle-top {
  width: 220px; height: 220px; right: -10px; bottom: -10px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.hero-angle-bottom {
  width: 260px; height: 70px; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--deep-blue) 0 10%, transparent 10% 16%, var(--primary-red) 16% 26%, transparent 26% 32%, var(--primary-red) 32% 42%, transparent 42% 48%, var(--primary-red) 48% 58%, transparent 58% 64%, var(--primary-red) 64% 74%, transparent 74% 80%, var(--primary-red) 80% 100%);
}

.feature-split .split-media,
.feature-split .split-content { min-height: 600px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  position: relative;
  overflow: hidden;
}
.split-content-red {
  background: linear-gradient(180deg, var(--primary-red) 0%, #d11734 100%);
  color: #fff;
}
.split-content-blue {
  background: linear-gradient(180deg, #2c2a84 0%, #20245f 100%);
  color: #fff;
}
.split-content-inner {
  max-width: 560px;
  padding: 76px 82px;
  position: relative;
  z-index: 2;
}
.split-content-inner.narrow { max-width: 520px; }
.split-content h2 {
  font-size: clamp(1.75rem, 1.15rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 12px 0 18px;
  color: #fff;
}
.split-content p { color: rgba(255,255,255,.86); }
.split-content .quote-meta { color: rgba(255,255,255,.66); text-transform: uppercase; font-size: .85rem; letter-spacing: .1em; }
.motif-right::after,
.motif-left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,.95) 38% 50%, transparent 50% 100%),
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,.95) 38% 50%, transparent 50% 100%),
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,.95) 38% 50%, transparent 50% 100%),
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,.95) 38% 50%, transparent 50% 100%),
    linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,.95) 38% 50%, transparent 50% 100%);
  background-size: 100% 140px;
  background-repeat: repeat-y;
  opacity: .9;
}
.motif-right::after { right: 22px; }
.motif-left::before { left: 22px; transform: scaleX(-1); }
.principal-showcase .portrait-media { min-height: 700px; }

.news-highlight-strip { background: var(--dark-blue); }
.side-tabs {
  background: var(--primary-red);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  min-height: 270px;
  padding: 24px;
}
.side-tabs div {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .12em;
  font-weight: 800;
}
.highlight-card-block { background: linear-gradient(135deg, #22286e, #323594); }
.highlight-card {
  min-height: 270px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    linear-gradient(45deg, transparent 0 55%, rgba(232,29,58,.3) 55% 80%, transparent 80% 100%);
}
.highlight-card h3,
.highlight-copy h3 { font-size: clamp(1.375rem, 1.05rem + 1.2vw, 2.125rem); font-weight: 800; line-height: 1.18; color: #fff; }
.highlight-card p,
.highlight-copy p { color: rgba(255,255,255,.72); }
.highlight-copy {
  background: var(--deep-blue);
  color: #fff;
  min-height: 270px;
  padding: 42px 52px;
}

.immersive-video-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.immersive-video-section > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.immersive-video-section .overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(125deg, rgba(45,42,131,.78) 0 18%, rgba(232,29,58,.35) 18% 42%, transparent 42% 100%),
    linear-gradient(125deg, transparent 0 52%, rgba(232,29,58,.32) 52% 76%, rgba(45,42,131,.62) 76% 100%);
}
.video-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.video-content h2 { max-width: 860px; font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem); font-weight: 800; margin-top: 26px; color: #fff; }
.video-content p { max-width: 760px; color: rgba(255,255,255,.78); }
.video-play-btn {
  width: 108px; height: 108px; border-radius: 50%; border: 6px solid rgba(255,255,255,.9);
  display: grid; place-items: center; color: #fff; font-size: 3rem;
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, background-color .25s ease;
}
.video-play-btn:hover { transform: scale(1.05); background: rgba(255,255,255,.16); }

.stats-band {
  background: var(--deep-blue);
  padding: 68px 0;
}
.band-stat {
  padding: 22px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.band-stat strong {
  display: block;
  color: var(--primary-red);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 900;
}
.band-stat span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: var(--fs-small);
  font-weight: 700;
}

.theme-card,
.feature-card,
.facility-card,
.contact-card,
.principal-card,
.faq-card,
.gallery-card,
.message-card,
.vision-card,
.timeline-card,
.value-card,
.testimonial-card,
.quick-contact-card,
.program-card {
  background: rgba(255,255,255,.98);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.theme-card:hover,
.feature-card:hover,
.facility-card:hover,
.contact-card:hover,
.principal-card:hover,
.gallery-card:hover,
.timeline-card:hover,
.value-card:hover,
.quick-contact-card:hover,
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232,29,58,.14);
}
.program-card,
.feature-card,
.facility-card,
.contact-card,
.principal-card,
.faq-card,
.gallery-card,
.message-card,
.vision-card,
.timeline-card,
.value-card,
.testimonial-card,
.quick-contact-card {
  padding: 32px;
  height: 100%;
}
.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--primary-red), #c7122d);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(232,29,58,.18);
}
.program-card h5,
.feature-card h5,
.facility-card h5,
.contact-card h5,
.timeline-card h5,
.value-card h5,
.gallery-card h5 {
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.program-card a { color: var(--primary-blue); font-weight: 700; text-transform: uppercase; font-size: 0.8125rem; letter-spacing: .05em; }
.program-card a:hover { color: var(--primary-red); }
.program-meta {
  display: flex; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(20,26,47,.08); padding-top: 15px; margin-top: 20px; margin-bottom: 18px;
  color: var(--primary-blue); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: .08em;
}

.testimonials-slab { background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 100%); }
.testimonial-intro,
.testimonial-dark,
.testimonial-light {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.testimonial-intro {
  background: var(--deep-blue);
  color: #fff;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-intro .section-title { color: #fff; }
.testimonial-intro p { color: rgba(255,255,255,.84); }
.testimonial-dark {
  background: linear-gradient(180deg, #2b2a7e, #1f2360);
  color: #fff;
}
.testimonial-dark p { color: rgba(255,255,255,.86); }
.testimonial-light { background: #fff; }
.testimonial-card h6 { margin-top: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--primary-red); }

.contact-cta {
  background: linear-gradient(135deg, #fff 0%, #f6f8fc 100%);
  border-left: 10px solid var(--primary-red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
}

.page-banner {
  background: linear-gradient(130deg, var(--deep-blue) 0 68%, var(--primary-red) 68% 100%);
  color: #fff;
  padding: 108px 0 74px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 36%);
}
.page-banner::after {
  content: "";
  position: absolute;
  right: 24px; top: 0; bottom: 0; width: 96px;
  background: linear-gradient(135deg, transparent 0 38%, rgba(255,255,255,.95) 38% 50%, transparent 50% 100%);
  background-size: 100% 130px;
  background-repeat: repeat-y;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: clamp(2rem, 1.35rem + 2vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.breadcrumb-text { color: rgba(255,255,255,.88); max-width: 760px; font-size: 0.9375rem; }
.split-image,
.principal-image,
.gallery-card img { overflow: hidden; border-radius: var(--radius-md); }
.split-image img,
.principal-image img,
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.split-image:hover img,
.principal-image:hover img,
.gallery-card:hover img { transform: scale(1.05); }
.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; }
.list-check i { color: var(--primary-red); margin-top: 2px; }
.badge-soft {
  background: rgba(232,29,58,.08);
  padding: 10px 14px;
  border-radius: 999px;
}
.signature-box {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(20,26,47,.12);
}
.faq-card .accordion-button {
  font-size: 1rem;
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 24px;
  border-radius: 18px !important;
}
.faq-card .accordion-item {
  border: 1px solid var(--line);
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 14px;
}
.accordion-button:not(.collapsed) {
  color: var(--navy-900);
  background: rgba(232,29,58,.04);
  box-shadow: none;
}
.accordion-body { color: var(--muted); font-size: 0.9375rem; line-height: 1.65; }
.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef2f8, #f8fafc);
  border: 1px dashed rgba(0,69,131,.24);
  border-radius: var(--radius-md);
}
.form-control, .form-select, textarea {
  min-height: 54px;
  border-radius: 16px !important;
  border: 1px solid rgba(20,26,47,.1) !important;
  box-shadow: none !important;
  padding: 0 16px;
}
textarea.form-control {
  min-height: 160px;
  padding-top: 16px;
}
.form-label {
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.form-control, .form-select, textarea {
  color: var(--ink);
  font-size: 0.95rem;
}
.form-control::placeholder, textarea::placeholder {
  color: var(--muted-2);
  opacity: 1;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}
.gallery-content {
  padding: 22px 24px 24px;
}
.gallery-content p { margin-bottom: 0; }

.footer {
  background: var(--deep-blue);
  color: #fff;
  padding: 78px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: "";
  position: absolute;
  right: 24px; top: 0; bottom: 0; width: 90px;
  background: linear-gradient(135deg, transparent 0 38%, rgba(232,29,58,.95) 38% 50%, transparent 50% 100%);
  background-size: 100% 130px;
  background-repeat: repeat-y;
  opacity: .9;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer p, .footer span, .footer a { color: rgba(255,255,255,.86); }
.footer p { font-size: 0.9375rem; line-height: 1.7; }
.footer a { font-size: 0.9375rem; }
.footer a:hover { color: #fff; }
.footer h6 { font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; color: #fff; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  border-radius: 999px;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.26);
}
.footer-bottom {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
}

#scrollTop {
  position: fixed; right: 24px; bottom: 24px; z-index: 1100;
  width: 52px; height: 52px; border: 0; display: grid; place-items: center;
  background: var(--primary-red); color: #fff; box-shadow: 0 16px 28px rgba(232,29,58,.24);
  opacity: 0; visibility: hidden; transition: .25s ease;
  border-radius: 50%;
}
#scrollTop.show { opacity: 1; visibility: visible; }
.fixed-admission-rail {
  position: fixed;
  right: 0; top: 50%; transform: translateY(-50%);
  z-index: 1040;
  background: linear-gradient(180deg, var(--primary-red), #c7122d);
  color: #fff;
  padding: 16px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 16px 0 0 16px;
  box-shadow: var(--shadow-sm);
}

.quick-contact-section .quick-contact-card,
.contact-card,
.faq-card,
.message-card,
.vision-card,
.timeline-card,
.value-card { border-radius: var(--radius-md); }

@media (max-width: 1199px) {
  .hero-panel-left { clip-path: none; }
  .split-content-inner { padding: 58px 50px; }
  .section-padding { padding: 92px 0; }
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(17, 22, 47, 0.98);
    margin-top: 16px;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
  }
  .hero-image-wrap, .hero-panel-left { min-height: auto; }
  .hero-panel-inner { padding: 104px 24px 56px; }
  .hero-cover { position: relative; min-height: 460px; }
  .hero-angle-bottom, .hero-angle-top { display: none; }
  .feature-split .split-media, .feature-split .split-content { min-height: auto; }
  .side-tabs {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .side-tabs div { writing-mode: initial; transform: none; }
  .page-banner::after, .footer::after, .motif-left::before, .motif-right::after { display: none; }
  .contact-cta .btn-main,
  .contact-cta .btn-outline-brand { width: 100%; justify-content: center; margin-top: 10px; }
}
@media (max-width: 767px) {
  .section-padding { padding: 74px 0; }
  .hero-display { font-size: 2.25rem; line-height: 1.02; }
  .hero-mini-stats { gap: 12px; }
  .hero-mini-stats > div { min-width: calc(50% - 6px); }
  .split-content-inner { padding: 44px 24px; }
  .highlight-card, .highlight-copy, .testimonial-intro, .contact-cta, .program-card, .contact-card, .faq-card, .timeline-card, .value-card { padding: 24px; }
  .page-banner { padding: 92px 0 58px; }
  .page-banner h1 { font-size: 2rem; line-height: 1.1; }
  .fixed-admission-rail { display: none; }
  #scrollTop { right: 16px; bottom: 16px; }
}
@media (max-width: 575px) {
  .hero-panel-inner { padding: 92px 20px 44px; }
  .hero-mini-stats > div { min-width: 100%; }
  .video-play-btn { width: 88px; height: 88px; font-size: 2.4rem; }
  .btn-main,
  .btn-outline-brand,
  .btn-light-solid,
  .btn-outline-light-custom { width: 100%; }
}

@media (max-width: 575px) {
  p, .lead-copy { font-size: 0.9375rem; line-height: 1.6; }
  .nav-link { font-size: 1rem; }
  .section-title { font-size: 1.75rem; }
  h3, .section-title.h3 { font-size: 1.375rem; }
  .btn-main,
  .btn-outline-brand,
  .btn-light-solid,
  .btn-outline-light-custom { font-size: 0.8125rem; }
}

.quick-links-strip { margin-top: -40px; position: relative; z-index: 3; }
.quick-links-strip .quick-contact-card { padding: 18px 20px; }
.quick-links-strip strong { color: var(--navy-900); font-weight: 800; }
.quick-links-strip span { color: var(--muted); font-size: .94rem; }

.text-on-dark, .split-content-red p, .split-content-blue p, .video-content p, .hero-copy { color: rgba(255,255,255,.86); }
.bg-brand-blue { background: var(--primary-blue) !important; }
.bg-brand-red { background: var(--primary-red) !important; }
.link-accent { color: var(--primary-blue); }
.link-accent:hover { color: var(--primary-red); }


.nav-dropdown-wide .dropdown-menu {
  min-width: 340px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(17, 22, 47, 0.98);
  box-shadow: 0 24px 60px rgba(8, 13, 34, 0.24);
}
.nav-dropdown-wide .dropdown-header {
  color: rgba(255,255,255,.58);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  padding: 8px 12px 10px;
}
.nav-dropdown-wide .dropdown-divider {
  border-color: rgba(255,255,255,.08);
  margin: 8px 0;
}
.nav-dropdown-wide .dropdown-item {
  color: rgba(255,255,255,.88);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  white-space: normal;
}
.nav-dropdown-wide .dropdown-item:hover,
.nav-dropdown-wide .dropdown-item:focus,
.nav-dropdown-wide .dropdown-item.active {
  background: linear-gradient(135deg, rgba(215,38,61,.18), rgba(18,58,114,.32));
  color: #fff;
}
.nav-dropdown-wide .dropdown-toggle::after { margin-left: 8px; }
.inter-tech-intro {
  border-radius: var(--radius-lg);
  padding: 38px;
  background: linear-gradient(135deg, rgba(18,58,114,.05), rgba(215,38,61,.05));
  border: 1px solid rgba(18,58,114,.08);
}
.track-card-grid .program-card {
  display: flex;
  flex-direction: column;
}
.track-card-grid .program-card .card-icon {
  width: 58px;
  height: 58px;
  font-size: 1.2rem;
}
.track-card-grid .program-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.track-card-grid .program-card .btn-outline-brand.dark {
  background: transparent;
}
.track-card-grid .program-card .btn-outline-brand.dark:hover {
  background: var(--primary-blue);
}
.program-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.program-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.overview-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.info-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 30px;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(18,58,114,.06);
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 700;
}
.curriculum-card {
  height: 100%;
  padding: 26px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.curriculum-card .step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.career-pill {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--navy-900);
}
.cta-banner .btn-main,
.cta-banner .btn-outline-brand,
.overview-panel .btn-main,
.overview-panel .btn-outline-brand {
  width: auto;
}
@media (max-width: 991px) {
  .nav-dropdown-wide .dropdown-menu {
    min-width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .inter-tech-intro,
  .overview-panel { padding: 24px; }
  .program-hero-meta span,
  .info-chip { width: 100%; justify-content: center; }
}


@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero-image-wrap {
    background: url('https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  }
}

/* Drawer menu navigation */
body.drawer-open {
  overflow: hidden;
}

.drawer-topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.drawer-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.top-apply-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}

.menu-toggle-btn,
.drawer-close-btn {
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.menu-toggle-btn {
  width: 54px;
  height: 54px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 18px;
}

.menu-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-toggle-btn:hover,
.drawer-close-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1180;
  background: rgba(6, 10, 24, .46);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

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

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 94vw);
  height: 100vh;
  z-index: 1190;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(20,35,71,.985) 0%, rgba(14,25,54,.99) 100%);
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -24px 0 50px rgba(7, 12, 29, .35);
  transform: translateX(104%);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}

.site-drawer.is-open {
  transform: translateX(0);
}

.drawer-header,
.drawer-footer {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.drawer-close-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px 24px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link,
.drawer-sublink,
.drawer-deep-link {
  display: block;
  color: rgba(255,255,255,.9);
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.drawer-link {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  font-size: 1rem;
  font-weight: 700;
}

.drawer-link:hover,
.drawer-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(215,38,61,.18), rgba(18,58,114,.24));
  border-color: rgba(255,255,255,.14);
}

.drawer-group {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  overflow: hidden;
}

.drawer-group.is-current {
  border-color: rgba(215,38,61,.34);
  box-shadow: inset 0 0 0 1px rgba(215,38,61,.12);
}
.drawer-group.is-open {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.drawer-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  min-height: 68px;
}

.drawer-row .drawer-link,
.drawer-row .drawer-sublink {
  flex: 1;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
}
.drawer-group-trigger {
  cursor: pointer;
}
.drawer-group-trigger.is-open {
  color: #fff;
}

.drawer-expander {
  width: 52px;
  min-width: 52px;
  height: 52px;
  margin-right: 10px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.drawer-expander:hover,
.drawer-expander.is-open {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

.drawer-expander.is-open i {
  transform: rotate(180deg);
}

.drawer-expander i {
  transition: transform .25s ease;
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding-bottom .3s ease;
  padding-bottom: 0;
}

.drawer-submenu.is-open {
  padding-bottom: 12px;
}

.drawer-submenu .drawer-sublink,
.drawer-submenu .drawer-group {
  margin: 0 12px;
}

.drawer-sublink {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 0.9375rem;
  font-weight: 600;
}

.drawer-sublink:hover,
.drawer-sublink.active {
  color: #fff;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
}

.drawer-row-nested {
  margin: 0 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.drawer-row-nested .drawer-sublink {
  margin: 0;
  border: 0;
}

.drawer-expander-sub {
  width: 46px;
  min-width: 46px;
  height: 46px;
  margin-right: 8px;
  border-radius: 14px;
}

.drawer-submenu-deep {
  margin: 0 12px 12px;
  padding: 4px 0 0 12px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.drawer-deep-link {
  position: relative;
  padding: 11px 14px 11px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.76);
}

.drawer-deep-link::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transform: translateY(-50%);
}

.drawer-deep-link:hover,
.drawer-deep-link.active {
  color: #fff;
}

.drawer-deep-link.active::before,
.drawer-deep-link:hover::before {
  background: var(--primary-red);
}

.drawer-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
  margin-top: auto;
}

.drawer-footer .btn-main {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .drawer-topbar {
    min-height: 78px;
  }

  .top-apply-btn {
    display: none;
  }

  .site-drawer {
    width: min(420px, 100vw);
  }

  .drawer-header,
  .drawer-footer {
    padding: 18px 16px;
  }

  .drawer-body {
    padding: 14px 14px 22px;
  }

  .drawer-link {
    font-size: 0.9375rem;
  }
}


/* HOME REFERENCE REDESIGN */
body[data-page="home"] .navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
body[data-page="home"] .navbar-wrap.is-scrolled {
  background: rgba(17, 22, 47, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
body[data-page="home"] .menu-toggle-btn {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
body[data-page="home"] .menu-toggle-btn:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.12);
}
.site-brand-image {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: auto;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
}
.brand-logo-drawer { height: 72px; }
.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
}
.topbar-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-social-icons a,
.drawer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  transition: .25s ease;
}
.topbar-social-icons a:hover,
.drawer-social a:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
  transform: translateY(-2px);
}
.drawer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.reference-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #41140f 0%, #1e244f 100%);
}
.hero-media-bg,
.hero-media-bg img,
.hero-media-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media-bg img,
.hero-media-bg video {
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
}
.hero-media-bg video {
  background: #120f16;
}
.hero-media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,16,41,.08) 0%, rgba(10,16,41,.08) 45%, rgba(10,16,41,.22) 100%);
}
.hero-red-panel {
  position: absolute;
  inset: 0 34% 36% 0;
  background: linear-gradient(180deg, rgba(231, 47, 35, .96) 0%, rgba(228, 52, 35, .95) 100%);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}
.hero-white-slice {
  position: absolute;
  top: 0;
  right: 0;
  width: 24%;
  height: 34%;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-bottom-angle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 24%;
  background: linear-gradient(180deg, rgba(231, 47, 35, .98), rgba(226, 46, 36, .95));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-content-box {
  max-width: 520px;
  padding: 150px 0 100px;
}
.hero-content-box .eyebrow {
  color: rgba(255,255,255,.82) !important;
}
.hero-content-box .eyebrow::before { background: rgba(255,255,255,.8); }
.hero-display {
  font-size: clamp(2.8rem, 2rem + 3vw, 4.8rem);
  letter-spacing: -0.04em;
}
.hero-display span { color: var(--primary-blue); }
.hero-copy {
  max-width: 430px;
  color: rgba(255,255,255,.88);
}
.hero-mini-stats.minimal > div {
  background: rgba(22, 24, 34, .18);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.hero-dot-nav {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.hero-dot-nav span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.74);
}
.hero-dot-nav span:first-child { background: #fff; }
.about-home-section .split-media img { object-position: center; }
.cis-stats-band .band-stat strong {
  color: #ff6d56;
}
.cis-stats-band .band-stat span {
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-hero {
  background: linear-gradient(135deg, #2d2b84 0%, #1c1d5a 100%);
}
.home-hero .hero-media-bg::after {
  background: linear-gradient(90deg, rgba(10, 13, 38, .12) 0%, rgba(10, 13, 38, .12) 42%, rgba(10, 13, 38, .46) 100%);
}
.home-hero-video {
  object-position: center center;
  transform: scale(1.08);
  filter: saturate(.96) contrast(1.02) brightness(.76);
}
.home-hero-panel,
.home-hero-ribbon,
.home-hero-corner {
  position: absolute;
  z-index: 1;
}
.home-hero-panel {
  inset: 0 50% 0 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(51, 53, 144, .98) 0%, rgba(39, 40, 113, .98) 100%);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.home-hero-ribbon {
  right: 0;
  bottom: -1px;
  width: 18%;
  height: 12%;
  background: linear-gradient(140deg, rgba(48,51,138,.98) 0%, rgba(31,33,100,.98) 100%);
  clip-path: polygon(22% 0, 100% 0, 74% 100%, 0 100%);
}
.home-hero-corner {
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(180deg, #ec312f 0%, #cf2234 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.home-hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.home-hero-content-box {
  width: min(100%, 500px);
  padding: 154px 0 96px;
}
.home-hero-title {
  margin: 18px 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.7rem, 1.9rem + 3vw, 4.55rem);
  line-height: .92;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}
.home-hero-title span {
  color: #ec342b;
}
.home-hero-copy {
  max-width: 520px;
  color: rgba(255,255,255,.88);
  font-size: 1.02rem;
  line-height: 1.6;
}
.home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.home-hero-stat {
  min-width: 154px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.home-hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
  font-weight: 900;
}
.home-hero-stat span {
  display: block;
  color: rgba(255,255,255,.74);
  font-size: .95rem;
  line-height: 1.35;
}
.home-hero-outline {
  background: transparent;
  border-color: rgba(255,255,255,.34);
  color: #fff;
}
@media (max-width: 1199px) {
  .hero-red-panel { inset: 0 26% 40% 0; }
  .hero-bottom-angle { width: 62%; }
  .home-hero-panel { inset: 0 44% 0 0; }
  .home-hero-ribbon { width: 20%; }
}
@media (max-width: 991px) {
  .brand-logo { height: 74px; }
  .reference-hero,
  .hero-content-wrap { min-height: 880px; }
  .hero-red-panel { inset: 0 0 38% 0; clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%); }
  .hero-white-slice { width: 32%; height: 22%; }
  .hero-bottom-angle { width: 100%; height: 18%; clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%); }
  .hero-content-box { padding: 140px 0 120px; }
  .home-hero-content-wrap { min-height: 880px; }
  .home-hero-panel {
    inset: 0 0 38% 0;
    clip-path: polygon(0 0, 100% 0, 92% 76%, 0 100%);
  }
  .home-hero-ribbon {
    width: 44%;
    height: 16%;
    right: 0;
    clip-path: polygon(24% 0, 100% 0, 72% 100%, 0 100%);
  }
  .home-hero-video { object-position: 66% center; }
  .home-hero-content-box {
    width: min(100%, 520px);
    padding: 136px 0 112px;
  }
}
@media (max-width: 767px) {
  .brand-logo { height: 64px; }
  .topbar-social-icons { display: none !important; }
  .reference-hero,
  .hero-content-wrap { min-height: 760px; }
  .hero-red-panel { inset: 0 0 42% 0; clip-path: polygon(0 0, 100% 0, 92% 68%, 0 100%); }
  .hero-white-slice { width: 35%; height: 16%; }
  .hero-bottom-angle { height: 16%; }
  .hero-content-box { max-width: 100%; padding: 132px 0 104px; }
  .hero-mini-stats { gap: 10px; }
  .hero-mini-stats > div { min-width: 132px; }
  .hero-display { font-size: clamp(2.45rem, 1.9rem + 4vw, 3.6rem); }
  .home-hero-content-wrap { min-height: 760px; }
  .home-hero-panel {
    inset: 0 0 40% 0;
    clip-path: polygon(0 0, 100% 0, 100% 56%, 0 100%);
  }
  .home-hero-ribbon {
    width: 52%;
    height: 12%;
  }
  .home-hero-corner {
    width: 54px;
    height: 54px;
  }
  .home-hero-content-box {
    width: 100%;
    padding: 120px 0 88px;
  }
  .home-hero-title {
    font-size: clamp(2.3rem, 1.8rem + 4.2vw, 3.7rem);
  }
  .home-hero-copy {
    max-width: 100%;
  }
  .home-hero-stats {
    gap: 10px;
  }
  .home-hero-stat {
    min-width: calc(50% - 5px);
    padding: 16px 14px 14px;
  }
  .home-hero-stat strong {
    font-size: 1.55rem;
  }
  .home-hero-stat span {
    font-size: .82rem;
  }
}


.site-drawer { overflow-y: auto; }
.drawer-body { overflow-y: auto; }
.drawer-submenu .drawer-submenu { margin-left: 10px; }
.drawer-link.level-0, .drawer-sublink, .drawer-deep-link { word-break: break-word; }
.page-banner .small-title.text-white { color: rgba(255,255,255,.92) !important; }
.page-banner .small-title.text-white::before { background: rgba(255,255,255,.92) !important; }


.hero-slider-wrapper,
.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  min-height: 100vh;
}
.hero-slider .carousel-item {
  position: relative;
}
.hero-slider .carousel-item > .hero-red-panel,
.hero-slider .carousel-item > .hero-white-slice,
.hero-slider .carousel-item > .hero-bottom-angle,
.hero-slider .carousel-item > .hero-media-bg,
.hero-slider .carousel-item > .container {
  position: absolute;
}
.hero-slider .carousel-item > .hero-media-bg,
.hero-slider .carousel-item > .container {
  inset: 0;
}
.hero-slider .carousel-item > .hero-red-panel {
  inset: 0 34% 36% 0;
}
.hero-slider .carousel-item > .hero-white-slice {
  top: 0;
  right: 0;
}
.hero-slider .carousel-item > .hero-bottom-angle {
  right: 0;
  bottom: 0;
}
.hero-slider .hero-media-bg img,
.hero-slider .hero-media-bg video {
  animation: heroZoom 6.5s ease forwards;
}
.hero-slider .carousel-item.active .hero-content-box {
  animation: heroTextIn .7s ease both;
}
.hero-slider .carousel-indicators {
  z-index: 4;
  justify-content: flex-start;
  margin: 0;
  left: 0;
  right: 0;
  bottom: 38px;
  padding-left: max(12px, calc((100% - var(--container-max)) / 2));
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  margin: 0 8px 0 0;
  background: rgba(255,255,255,.62);
  opacity: 1;
}
.hero-slider .carousel-indicators .active {
  background: #fff;
  transform: scale(1.2);
}
.hero-slider .hero-dot-nav {
  display: flex;
  gap: 0;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@media (max-width: 1199px) {
  .hero-slider .carousel-item > .hero-red-panel { inset: 0 26% 40% 0; }
}
@media (max-width: 991px) {
  .hero-slider-wrapper,
  .hero-slider,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 880px;
  }
  .hero-slider .carousel-item > .hero-red-panel { inset: 0 0 38% 0; clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%); }
  .hero-slider .carousel-item > .hero-white-slice { width: 32%; height: 22%; }
  .hero-slider .carousel-item > .hero-bottom-angle { width: 100%; height: 18%; clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%); }
}
@media (max-width: 767px) {
  .hero-slider-wrapper,
  .hero-slider,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 760px;
  }
  .hero-slider .carousel-item > .hero-red-panel { inset: 0 0 42% 0; clip-path: polygon(0 0, 100% 0, 92% 68%, 0 100%); }
  .hero-slider .carousel-item > .hero-white-slice { width: 35%; height: 16%; }
  .hero-slider .carousel-item > .hero-bottom-angle { height: 16%; }
  .hero-slider .carousel-indicators {
    bottom: 24px;
    padding-left: 12px;
  }
}
