.rm26-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: var(--rm26-nav-height);
  padding: 0;
  color: var(--rm26-ink);
  background: rgba(244, 245, 239, .96);
  border-bottom: 1px solid var(--rm26-line);
  backdrop-filter: blur(18px);
  transition: height .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.rm26-nav.rm26-nav--home:not(.rm26-nav--scrolled) {
  color: var(--rm26-white);
  background: rgba(4, 20, 40, .72);
  border-color: rgba(255,255,255,.22);
}
.rm26-nav--scrolled { height: 76px; box-shadow: 0 14px 45px rgba(6,26,51,.1); }
.rm26-nav__inner {
  width: min(100%, var(--rm26-max)); height: 100%; margin: 0 auto; padding: 0 var(--rm26-gutter);
  display: grid; grid-template-columns: 152px minmax(0, 1fr) auto; align-items: center; gap: 26px;
}
.rm26-brand { width: 138px; height: 56px; display: flex; align-items: center; overflow: hidden; }
.rm26-brand img { width: 134px; height: auto; transition: filter .22s ease; }
.rm26-nav--home:not(.rm26-nav--scrolled) .rm26-brand img { filter: brightness(0) invert(1); }
.rm26-primary-nav { height: 100%; display: flex; justify-content: flex-end; align-items: center; gap: clamp(9px, .95vw, 17px); }
.rm26-nav-group { position: relative; height: 100%; display: flex; align-items: center; }
.rm26-nav-link {
  position: relative; padding: 11px 0; border: 0; color: inherit !important; background: none;
  text-decoration: none !important; white-space: nowrap; cursor: pointer;
  font-size: 15px; font-weight: 800; line-height: 1.2;
}
.rm26-nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px;
  background: var(--rm26-orange); transition: right .2s ease;
}
.rm26-nav-link:hover::after, .rm26-nav-link[aria-expanded="true"]::after { right: 0; }
.rm26-nav-link--toggle { padding-right: 13px; }
.rm26-nav-link--toggle::before {
  content: ""; position: absolute; right: 0; top: 50%; width: 5px; height: 5px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg); transition: transform .2s ease;
}
.rm26-nav-link--toggle[aria-expanded="true"]::before { transform: translateY(-25%) rotate(225deg); }
.rm26-nav-actions { display: flex; align-items: center; gap: 8px; }
.rm26-icon-button {
  width: 36px; height: 40px; padding: 0; display: grid; place-items: center;
  border: 0; color: inherit; background: transparent; cursor: pointer; list-style: none;
}
.rm26-user-menu { position: relative; }
.rm26-user-menu summary::-webkit-details-marker { display: none; }
.rm26-user-menu > div {
  position: absolute; right: 0; top: calc(100% + 15px); min-width: 128px; padding: 8px;
  border: 1px solid var(--rm26-line); color: var(--rm26-ink); background: var(--rm26-paper);
  box-shadow: 0 18px 45px rgba(6,26,51,.16);
}
.rm26-user-menu a { display: block; padding: 11px 13px; color: inherit; text-decoration: none; font-size: 15px; font-weight: 700; }
.rm26-user-menu a:hover { color: var(--rm26-white); background: var(--rm26-blue); }
.rm26-nav-cta {
  min-height: 42px; padding: 0 16px; display: inline-flex; align-items: center; gap: 12px;
  color: var(--rm26-white) !important; background: var(--rm26-orange); text-decoration: none !important;
  font-size: 15px; font-weight: 800; white-space: nowrap;
}
.rm26-nav-cta span { font-size: 17px; }
.rm26-nav-spacer { height: var(--rm26-nav-height); }
.rm26-nav-spacer--home { height: 0; }
.rm26-menu-toggle { display: none; }

.rm26-mega, .rm26-popover {
  position: fixed; top: var(--rm26-nav-height); left: 50%; width: min(calc(100vw - 44px), 1320px);
  transform: translate(-50%, -10px); visibility: hidden; opacity: 0; pointer-events: none;
  color: var(--rm26-ink); background: var(--rm26-paper); border: 1px solid var(--rm26-ink);
  box-shadow: 0 24px 70px rgba(6,26,51,.2); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.rm26-nav-group.rm26-open > .rm26-mega, .rm26-nav-group.rm26-open > .rm26-popover {
  visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%, 0);
}
.rm26-nav--scrolled .rm26-mega { top: 76px; }
.rm26-mega { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
.rm26-mega__intro, .rm26-mega__column { min-height: 300px; padding: 30px; border-right: 1px solid var(--rm26-line); }
.rm26-mega__intro {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--rm26-white); background: var(--rm26-blue-deep);
}
.rm26-mega--personal .rm26-mega__intro { background: var(--rm26-blue); }
.rm26-mega--courses .rm26-mega__intro { background: var(--rm26-blue); }
.rm26-mega--cases .rm26-mega__intro { background: #08345f; }
.rm26-mega--insights .rm26-mega__intro { background: var(--rm26-ink-soft); }
.rm26-mega--about .rm26-mega__intro { background: var(--rm26-ink); }
.rm26-mega__intro::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(3,18,37,.94) 8%, rgba(3,18,37,.7) 58%, rgba(3,18,37,.84));
}
.rm26-mega__intro-video {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.03);
  transition: opacity .45s ease, transform 6s ease;
}
.rm26-mega__intro-video.rm26-mega__intro-video--loaded { opacity: 1; transform: scale(1); }
.rm26-mega__intro-content { position: relative; z-index: 2; }
.rm26-mega__intro > span, .rm26-mega__intro-content > span, .rm26-mega__column > span {
  display: block; margin-bottom: 35px; color: var(--rm26-orange); font-family: var(--rm26-display);
  font-size: 16px; font-weight: 800; letter-spacing: .12em;
}
.rm26-mega__intro h2 { margin: 0; font-family: var(--rm26-display); font-size: 32px; line-height: 1.25; letter-spacing: -.04em; }
.rm26-mega__intro p { margin: 18px 0 28px; color: #c6d7e5; font-size: 16px; line-height: 1.8; }
.rm26-mega__intro a { color: var(--rm26-white); text-decoration: none; font-size: 15px; font-weight: 800; }
.rm26-mega__column:last-child { border-right: 0; }
.rm26-mega__column a { display: block; padding: 15px 0; border-bottom: 1px solid var(--rm26-line); color: inherit; text-decoration: none; font-size: 17px; line-height: 1.5; font-weight: 700; }
.rm26-mega__column a:hover { padding-left: 8px; color: var(--rm26-blue); }
.rm26-mega__described-link { display: grid !important; gap: 5px; }
.rm26-mega__described-link strong { font: inherit; }
.rm26-mega__described-link small { color: var(--rm26-muted); font-size: 14px; line-height: 1.6; font-weight: 500; }
.rm26-mega__described-link:hover small { color: #49657c; }
.rm26-popover {
  position: absolute; top: 100%; right: 0; left: auto;
  width: min(300px, calc(100vw - 32px)); max-height: calc(100vh - 90px); padding: 8px;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateY(-8px);
}
.rm26-nav-group.rm26-open > .rm26-popover { transform: translateY(0); }
.rm26-popover a { display: grid; gap: 3px; padding: 12px; color: inherit; text-decoration: none; border-bottom: 1px solid var(--rm26-line); }
.rm26-popover a:last-child { border: 0; }
.rm26-popover a:hover { color: var(--rm26-white); background: var(--rm26-blue); }
.rm26-popover span { font-size: 15px; font-weight: 800; }
.rm26-popover small { color: var(--rm26-muted); font-size: 13px; line-height: 1.55; }
.rm26-popover a:hover small { color: #d5e8f7; }

.rm26-search[hidden] { display: none; }
.rm26-search { position: fixed; inset: 0; z-index: 1400; display: grid; place-items: start center; padding-top: 10vh; }
.rm26-search__backdrop { position: absolute; inset: 0; border: 0; background: rgba(3,18,37,.82); backdrop-filter: blur(8px); }
.rm26-search__panel { position: relative; width: min(760px, calc(100vw - 36px)); padding: 32px; color: var(--rm26-ink); background: var(--rm26-paper); }
.rm26-search__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--rm26-ink); }
.rm26-search__head h2 { margin: 0; font-family: var(--rm26-display); font-size: 26px; }
.rm26-search__head button { border: 0; background: transparent; cursor: pointer; font-weight: 700; }
.rm26-search form { margin-top: 28px; }
.rm26-search label { display: block; margin-bottom: 9px; font-size: 14px; font-weight: 700; }
.rm26-search form > div { display: grid; grid-template-columns: 1fr auto; }
.rm26-search input { min-width: 0; height: 54px; padding: 0 16px; border: 1px solid var(--rm26-ink); background: var(--rm26-white); }
.rm26-search form button { padding: 0 22px; border: 0; color: var(--rm26-white); background: var(--rm26-orange); font-weight: 800; }
.rm26-search__quick { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.rm26-search__quick span { width: 100%; color: var(--rm26-muted); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.rm26-search__quick a { padding: 9px 12px; border: 1px solid var(--rm26-line); color: inherit; text-decoration: none; font-size: 14px; }

.rm26-footer { position: relative; z-index: 2; margin: 0; padding: 0; color: var(--rm26-white); background: #031225; opacity: 1 !important; animation: none !important; }
.rm26-footer__top { width: min(100%, var(--rm26-max)); margin: auto; padding: 80px var(--rm26-gutter); display: grid; grid-template-columns: 1.15fr 1.85fr; gap: 7vw; }
.rm26-footer__brand { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.rm26-footer__brand > img { width: 200px; height: auto; filter: none; }
.rm26-footer__tagline {
  margin: 32px 0 0; color: #c8d4de; font-family: var(--rm26-display);
  font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; font-weight: 700;
  letter-spacing: -.02em; white-space: nowrap;
}
.rm26-footer__social {
  position: relative; width: max-content; margin-top: 28px;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 14px;
}
.rm26-social { position: relative; flex: 0 0 auto; }
.rm26-social > button {
  width: 56px; height: 56px; padding: 0; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  color: var(--rm26-blue); background: var(--rm26-paper); cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.rm26-social > button:hover, .rm26-social > button:focus-visible, .rm26-social--open > button {
  transform: translateY(-3px); border-color: var(--rm26-orange);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.rm26-social > button img { width: 31px; height: 31px; object-fit: contain; }
.rm26-social > button i { font-size: 27px; }
.rm26-social__qr {
  position: absolute; right: auto; bottom: calc(100% + 16px); left: 50%; z-index: 10;
  width: 176px; padding: 10px 10px 9px; display: grid; gap: 8px;
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: translate(-50%, 8px);
  color: var(--rm26-ink); background: var(--rm26-white);
  border: 1px solid rgba(255,255,255,.55); box-shadow: 0 22px 55px rgba(0,0,0,.3);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.rm26-social__qr::after {
  content: ""; position: absolute; right: auto; bottom: -6px; left: 50%;
  width: 12px; height: 12px; display: block;
  background: var(--rm26-white); transform: translateX(-50%) rotate(45deg);
}
.rm26-social__qr img { width: 154px; height: 154px; object-fit: cover; }
.rm26-social__qr span { position: relative; z-index: 1; font-size: 14px; line-height: 1.4; font-weight: 800; text-align: center; }
.rm26-social:hover .rm26-social__qr,
.rm26-social:focus-within .rm26-social__qr,
.rm26-social--open .rm26-social__qr {
  visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%, 0);
}
.rm26-footer__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.rm26-footer__links > div { display: flex; flex-direction: column; }
.rm26-footer__links span { margin-bottom: 25px; color: var(--rm26-orange); font-family: var(--rm26-display); font-size: 16px; font-weight: 800; letter-spacing: .1em; }
.rm26-footer__links a { padding: 9px 0; color: #c6d2dc; text-decoration: none; font-size: 16px; line-height: 1.55; }
.rm26-footer__links a:hover { color: var(--rm26-white); }
.rm26-footer__bottom { width: min(100%, var(--rm26-max)); min-height: 84px; margin: auto; padding: 22px var(--rm26-gutter); display: flex; justify-content: space-between; align-items: center; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); color: #91a4b5; font-size: 14px; line-height: 1.6; }
.rm26-footer__bottom div { display: flex; gap: 22px; }
.rm26-footer__bottom a { color: inherit; text-decoration: none; }

@media (max-width: 1180px) {
  .rm26-nav__inner { grid-template-columns: 130px minmax(0,1fr) auto; gap: 14px; }
  .rm26-primary-nav { gap: 10px; }
  .rm26-nav-link { font-size: 14px; }
  .rm26-icon-button { display: none; }
  .rm26-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  :root { --rm26-nav-height: 72px; }
  .rm26-nav, .rm26-nav.rm26-nav--home:not(.rm26-nav--scrolled) { color: var(--rm26-ink); background: rgba(244,245,239,.98); border-color: var(--rm26-line); }
  .rm26-nav__inner { padding: 0 20px; grid-template-columns: 1fr auto; }
  .rm26-brand { width: 124px; }
  .rm26-brand img, .rm26-nav--home:not(.rm26-nav--scrolled) .rm26-brand img { width: 120px; filter: none; }
  .rm26-menu-toggle { width: 76px; height: 42px; padding: 0 10px; display: grid; grid-template-columns: 1fr 18px; align-content: center; gap: 3px 7px; border: 1px solid var(--rm26-ink); color: var(--rm26-ink); background: transparent; font-size: 13px; font-weight: 800; }
  .rm26-menu-toggle span { grid-row: 1 / 3; align-self: center; }
  .rm26-menu-toggle i { width: 18px; height: 1px; background: var(--rm26-ink); transition: transform .2s ease; }
  .rm26-menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(2px) rotate(45deg); }
  .rm26-menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-2px) rotate(-45deg); }
  .rm26-primary-nav { position: absolute; top: 100%; right: 0; left: 0; width: 100vw; height: calc(100vh - var(--rm26-nav-height)); height: calc(100dvh - var(--rm26-nav-height)); padding: 20px; display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; overflow: auto; color: var(--rm26-white); background: var(--rm26-ink); box-sizing: border-box; }
  .rm26-primary-nav.rm26-primary-nav--open { display: flex; }
  .rm26-nav-group { height: auto; display: block; }
  .rm26-nav-link { width: 100%; padding: 20px 0; display: block; border-bottom: 1px solid rgba(255,255,255,.18); color: var(--rm26-white) !important; text-align: left; font-size: 20px; }
  .rm26-nav-link--toggle { padding-right: 28px; }
  .rm26-nav-link--toggle::before { right: 8px; }
  .rm26-nav-actions { display: none; }
  .rm26-mega, .rm26-nav--scrolled .rm26-mega, .rm26-popover { position: static; width: 100%; transform: none !important; display: none; visibility: visible; opacity: 1; pointer-events: auto; border: 0; box-shadow: none; color: var(--rm26-white); background: rgba(255,255,255,.04); }
  .rm26-nav-group.rm26-open > .rm26-mega, .rm26-nav-group.rm26-open > .rm26-popover { display: block; }
  .rm26-mega__intro { display: none; }
  .rm26-mega__column { min-height: 0; padding: 13px 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .rm26-mega__column > span { margin: 9px 0; color: var(--rm26-orange); font-size: 16px; }
  .rm26-mega__column a { padding: 14px 0; border-color: rgba(255,255,255,.12); color: #d7e2eb; font-size: 17px; }
  .rm26-mega__described-link small, .rm26-mega__described-link:hover small { color: #93a9bc; font-size: 14px; }
  .rm26-popover a { border-color: rgba(255,255,255,.12); }
  .rm26-popover small { color: #93a9bc; }
  .rm26-nav-spacer--home { height: var(--rm26-nav-height); }
  .rm26-footer__top { padding-block: 64px; }
  .rm26-footer__links { grid-template-columns: repeat(2, 1fr); }
  .rm26-footer__bottom { align-items: flex-start; flex-direction: column; }
  .rm26-footer__bottom div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .rm26-mega__intro-video { display: none; }
}

@media (max-width: 560px) {
  .rm26-footer__links { grid-template-columns: 1fr; }
  .rm26-footer__brand > img { width: 176px; }
  .rm26-footer__tagline { margin-top: 24px; font-size: 16px; white-space: normal; }
  .rm26-footer__social { margin-top: 24px; gap: 10px; }
  .rm26-social > button { width: 54px; height: 54px; }
  .rm26-social__qr { width: 150px; }
  .rm26-social__qr img { width: 128px; height: 128px; }
  .rm26-search__panel { padding: 24px; }
  .rm26-search form > div { grid-template-columns: 1fr; }
  .rm26-search form button { height: 48px; }
}
