/* ==========================================================================
   OPTIV SOLUTIONS — Master Stylesheet
   Extracted from Optiv Homepage design, converted to proper CSS classes
   ========================================================================== */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  --color-primary: #1B6DEA;
  --color-primary-dark: #0B3C8C;
  --color-primary-light: #6FB4FF;
  --color-bg-dark: #0A2540;
  --color-text-dark: #0A2540;
  --color-text-muted: #5A7391;
  --color-text-subtle: #8AA1BC;
  --color-text-body: #33506E;
  --color-border: #DDE6F2;
  --color-border-light: #E1EAF6;
  --color-bg-light: #F3F7FD;
  --color-bg-card-hover: #F3F7FD;
  --font-display: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Helvetica Light', 'Helvetica Neue Light', 'Helvetica', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1240px;
  --section-padding: 110px 48px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

::selection {
  background: rgba(27, 109, 234, 0.18);
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

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

/* ---------- Keyframe Animations ---------- */
@keyframes om-spin {
  to { transform: rotate(360deg); }
}

@keyframes om-spin-r {
  to { transform: rotate(-360deg); }
}

@keyframes om-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes om-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes om-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes om-bob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes om-grid {
  from { transform: translateY(0); }
  to { transform: translateY(64px); }
}

@keyframes om-scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(900%); }
}

@keyframes om-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

/* ---------- Progress Bar ---------- */
.om-progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}

.om-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0B3C8C, #1B6DEA 60%, #6FB4FF);
  box-shadow: 0 0 12px rgba(27, 109, 234, 0.6);
}

/* ---------- Header ---------- */
.om-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  transform: translateY(0);
}

.om-header.is-hidden {
  transform: translateY(-100%) !important;
}

.om-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -18px rgba(10, 37, 64, 0.25);
  padding: 12px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.om-header__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.om-header:not(.is-scrolled) .om-logo,
.om-header:not(.is-scrolled) .om-nav__item {
  color: #ffffff;
}
.om-header:not(.is-scrolled) .om-logo__circle {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}
.om-header:not(.is-scrolled) .om-nav__chevron {
  border-color: #ffffff;
}
.om-header:not(.is-scrolled) .om-nav__item:hover {
  color: var(--color-primary-light);
}

.om-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-dark);
}

.om-logo:hover {
  color: var(--color-text-dark);
}

.om-logo__circle {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(27, 109, 234, 0.14);
}

.om-form-group {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

.om-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.om-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  background-color: #f8fafc;
  color: var(--color-text-dark);
  transition: all 0.3s ease;
  font-family: inherit;
}

.om-form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(27, 109, 234, 0.1);
}

/* ---------- 16. Modal Styles ---------- */
.om-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.om-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.om-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(8px);
}

.om-modal__content {
  position: relative;
  background: #ffffff;
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1;
}

.om-modal.is-active .om-modal__content {
  transform: translateY(0);
}

.om-modal__close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-modal__close-btn:hover {
  background: #e2e8f0;
  color: var(--color-danger, #e63946);
}

.om-modal__header {
  text-align: center;
  margin-bottom: 30px;
}

.om-modal__title {
  font-size: 26px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.om-modal__subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.om-modal__form {
  margin-top: 20px;
}

.om-modal-course-badge {
  background: rgba(27, 109, 234, 0.05);
  border: 1px dashed rgba(27, 109, 234, 0.3);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
  color: var(--color-primary);
}

.om-modal__btn {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(27, 109, 234, 0.2);
}

.om-modal__btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(27, 109, 234, 0.3);
}

.om-logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.om-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 20px;
}

.om-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 8px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.25s ease;
}

.om-nav__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.om-header:not(.is-scrolled) .om-nav__item::after {
  background: #ffffff;
}

.om-nav__item:hover {
  color: var(--color-primary);
}

.om-nav__item:hover::after {
  width: 100%;
}

.om-nav__chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid var(--color-text-muted);
  border-bottom: 1.6px solid var(--color-text-muted);
  transform: rotate(45deg);
  margin-top: -4px;
}

.om-nav__dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: -20px 0;
}

.om-nav__dropdown-wrap--mega {
  position: static;
}

.om-nav__dropdown-wrap:hover .om-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.om-nav__dropdown-wrap:hover .om-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.om-nav__dropdown-wrap:hover .om-dropdown-menu--right {
  transform: translateX(0) translateY(0);
}
.om-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  min-width: 170px;
  background: #ffffff;
  padding: 8px 6px;
  border-radius: 14px;
  box-shadow: 0 16px 36px -4px rgba(10, 37, 64, 0.18), 0 0 0 1px rgba(10, 37, 64, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.22s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  pointer-events: none;
}

.om-dropdown-menu--right {
  left: auto;
  right: -20px;
  transform: translateX(0) translateY(10px);
}

.om-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.om-dropdown-item {
  display: block;
  padding: 9px 16px;
  color: #1e293b !important;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.om-dropdown-item:hover {
  background: #eff6ff;
  color: #1B6DEA !important;
}

.om-mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(10, 37, 64, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  pointer-events: none;
}

.om-mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.om-mega-menu--tabs {
  width: 1060px;
  max-width: 95vw;
  padding: 0;
  overflow: hidden;
}

.om-mega-menu__inner-container {
  display: flex;
  height: 420px;
  max-height: 60vh;
}

.om-mega-menu__sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #f8fafc;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
}

.om-mega-menu__sidebar::-webkit-scrollbar,
.om-mega-menu__content-area::-webkit-scrollbar {
  width: 6px;
}

.om-mega-menu__sidebar::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.om-mega-menu__content-area::-webkit-scrollbar-track {
  background: #ffffff;
}

.om-mega-menu__sidebar::-webkit-scrollbar-thumb,
.om-mega-menu__content-area::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.om-mega-menu__sidebar::-webkit-scrollbar-thumb:hover,
.om-mega-menu__content-area::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.om-mega-menu__tab {
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.om-mega-menu__tab:hover, .om-mega-menu__tab.active {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: inset 4px 0 0 var(--color-primary);
}

.om-mega-menu__tab-arrow {
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
}

.om-mega-menu__tab:hover .om-mega-menu__tab-arrow, 
.om-mega-menu__tab.active .om-mega-menu__tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

.om-mega-menu__content-area {
  flex: 1;
  padding: 28px 32px;
  background: #ffffff;
  position: relative;
  overflow-y: auto;
  height: 100%;
}

.om-mega-menu__pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.om-mega-menu__pane.active {
  display: block;
}

.om-mega-menu__pane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px 6px 12px 4px;
}

.om-mega-menu__pane-grid::-webkit-scrollbar {
  width: 5px;
}

.om-mega-menu__pane-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.om-mega-menu__pane-grid::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.om-mega-menu__course-link {
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}

.om-mega-menu__course-link:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 109, 234, 0.12);
}

.om-mega-menu__btn-all {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(27, 109, 234, 0.25);
  margin-top: 14px;
}

.om-mega-menu__btn-all:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 109, 234, 0.35);
}

/* ---------- Laptop & Monitor Responsive Tweaks ---------- */
@media (max-width: 1400px) {
  .om-mega-menu--tabs {
    width: 840px;
    max-width: 90vw;
  }
  .om-mega-menu__sidebar {
    width: 230px;
  }
  .om-mega-menu__content-area {
    padding: 24px 28px;
  }
}

@media (max-height: 850px) {
  .om-mega-menu__inner-container {
    height: 360px;
    max-height: 52vh;
  }
  .om-mega-menu__sidebar {
    height: 100%;
  }
  .om-mega-menu__content-area {
    height: 100%;
    padding: 20px 24px;
  }
  .om-mega-menu__tab {
    padding: 11px 18px;
    font-size: 13px;
  }
  .om-mega-menu__course-link {
    font-size: 13px;
    padding: 6px 10px;
  }
  .om-mega-menu__pane-grid {
    gap: 10px 18px;
  }
}

@media (max-width: 1024px) {
  .om-mega-menu--tabs {
    width: 720px;
    max-width: 94vw;
  }
  .om-mega-menu__sidebar {
    width: 200px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.om-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 10px 24px -10px rgba(27, 109, 234, 0.8);
  transition: transform 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.om-header__cta:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Header Search Bar */
.om-header-search-form {
  display: flex;
  align-items: center;
  margin: 0;
  flex: none;
}
.om-header-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 14px;
  border-radius: 30px;
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}
/* Icon Mode Override */
.om-header-search-box.om-header-search-icon-mode {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.om-header-search-icon-mode .search-icon {
  margin-right: 0;
  transition: transform 0.3s ease;
}
.om-header-search-icon-mode .om-header-search-input {
  width: 0;
  opacity: 0;
  padding: 0;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}
.om-header-search-icon-mode:hover,
.om-header-search-icon-mode:focus-within {
  width: 260px;
  border-radius: 30px;
  padding: 7px 16px;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.om-header-search-icon-mode:hover .search-icon,
.om-header-search-icon-mode:focus-within .search-icon {
  transform: scale(0.95);
}
.om-header-search-icon-mode:hover .om-header-search-input,
.om-header-search-icon-mode:focus-within .om-header-search-input {
  width: 100%;
  opacity: 1;
  padding-left: 10px;
}
.om-header.is-scrolled .om-header-search-box {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
  color: #64748b;
}
.om-header-search-box:focus-within {
  background: #ffffff;
  border-color: #1B6DEA;
  color: #1B6DEA;
  box-shadow: 0 4px 16px rgba(27, 109, 234, 0.2);
}
.om-header-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: #ffffff;
  width: 100%;
  font-family: inherit;
}
.om-header.is-scrolled .om-header-search-input {
  color: #0f172a;
}
.om-header-search-box:focus-within .om-header-search-input {
  color: #0f172a;
}
.om-header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.om-header.is-scrolled .om-header-search-input::placeholder {
  color: #94a3b8;
}

/* Live Search Autocomplete Dropdown */
.om-live-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 340px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto;
}
.om-search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s;
}
.om-search-item:hover {
  background: #f0f7ff;
}
.om-search-category-header {
  padding: 7px 14px 4px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
.om-search-page-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s;
}
.om-search-page-item:hover {
  background: #eff6ff;
}
.om-search-page-item__title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.om-search-page-item__desc {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 1px;
}
.om-search-item__title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
  line-height: 1.3;
}
.om-search-item__meta {
  font-size: 11.5px;
  color: #64748b;
}
.om-search-item__badge {
  font-size: 11px;
  font-weight: 700;
  background: #eff6ff;
  color: #1B6DEA;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  margin-left: 10px;
}
.om-search-view-all {
  display: block;
  text-align: center;
  padding: 10px 14px;
  background: #1B6DEA;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.om-search-view-all:hover {
  background: #155bb5;
  color: #ffffff;
}

/* Mobile Navigation Toggle & Fullscreen Drawer */
.om-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.om-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.om-header.is-scrolled .om-mobile-toggle {
  background: rgba(11, 60, 140, 0.08);
  border-color: rgba(11, 60, 140, 0.15);
}

.om-header.is-scrolled .om-mobile-toggle span {
  background-color: var(--color-text-dark);
}

.om-mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.om-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.om-mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer (100% Solid Dark Opaque Background) */
.om-mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 999999 !important;
  background: #061838 !important;
  display: flex !important;
  flex-direction: column !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  transform: translateY(-15px) !important;
  overflow-y: auto !important;
}

.om-mobile-menu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

@media (min-width: 992px) {
  .om-mobile-menu,
  .om-mobile-menu.is-open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.om-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 22px 32px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.om-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.om-mobile-menu__close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}

.om-mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.om-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  flex: 1;
}

.om-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.22s ease;
  text-decoration: none;
}

.om-mobile-menu__link:hover,
.om-mobile-menu__link:active {
  background: rgba(27, 109, 234, 0.25);
  border-color: #40D0FF;
  transform: translateX(4px);
}

.om-mobile-menu__link--accent {
  background: linear-gradient(135deg, #1B6DEA 0%, #0093E9 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(27, 109, 234, 0.4);
}

.om-mobile-menu__icon {
  font-size: 17px;
}

.om-mobile-menu__footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.om-mobile-menu__contact-item {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

/* ---------- 17. How It Works ---------- */
.om-how-it-works {
  padding: 80px 0 90px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.om-how-it-works::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(135deg, #e6f4ff 0%, #cce7ff 100%);
  transform: skewY(-4deg);
  transform-origin: top left;
  z-index: 0;
}

.om-how-it-works::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(135deg, #cce7ff 0%, #e6f4ff 100%);
  transform: skewY(-4deg);
  transform-origin: bottom right;
  z-index: 0;
}

.om-how-it-works__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.om-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0, 180, 216, 0.1);
  color: #00b4d8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
}

.om-section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 16px;
}

/* Cards Grid with Stepper */
.om-how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.om-hiw-card {
  background: #ffffff;
  border: 1px solid rgba(27,109,234,0.1);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.om-hiw-card:hover {
  background: linear-gradient(104deg, #0A2540 0%, #0B3C8C 50%, #1B6DEA 100%);
  box-shadow: 0 25px 60px rgba(27, 109, 234, 0.25);
  transform: translateY(-8px);
  border-color: transparent;
}

/* Stepper inside Card */
.om-hiw-card__stepper {
  position: relative;
  padding: 30px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.om-hiw-card__line-left,
.om-hiw-card__line-right {
  position: absolute;
  top: 58px;
  height: 2px;
  border-top: 2px dashed rgba(27,109,234,0.35);
  z-index: 1;
  transition: border-color 0.4s ease;
}

.om-hiw-card:hover .om-hiw-card__line-left,
.om-hiw-card:hover .om-hiw-card__line-right {
  border-color: rgba(255,255,255,0.4);
}

.om-hiw-card__line-left {
  left: -12px;
  width: calc(50% + 12px);
}

.om-hiw-card__line-right {
  left: 50%;
  width: calc(50% + 12px);
}

.om-hiw-card:first-child .om-hiw-card__line-left {
  display: none;
}

.om-hiw-card:last-child .om-hiw-card__line-right {
  display: none;
}

.om-hiw-card__icon {
  width: 56px;
  height: 56px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: inset 0 0 0 2px rgba(27,109,234,0.1), 0 8px 16px rgba(27,109,234,0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.om-hiw-card:hover .om-hiw-card__icon {
  background: #ffffff;
  color: var(--color-primary);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.om-hiw-card__num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--color-primary), #00b4d8);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Card Content */
.om-hiw-card__content {
  padding: 0 20px 30px;
}

.om-hiw-card__step {
  font-size: 12px;
  font-weight: 800;
  color: #00b4d8;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  transition: color 0.4s ease;
}

.om-hiw-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.om-hiw-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.om-hiw-card:hover .om-hiw-card__step {
  color: #cce7ff;
}

.om-hiw-card:hover .om-hiw-card__title,
.om-hiw-card:hover .om-hiw-card__desc {
  color: #ffffff;
}

.om-hiw-card__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.om-hiw-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.3s ease;
}

.om-hiw-card:hover .om-hiw-card__dots span {
  background: rgba(255,255,255,0.3);
}

.om-hiw-card__dots span.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.om-hiw-card:hover .om-hiw-card__dots span.active {
  background: #ffffff;
}

/* Actions */
.om-how-it-works__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.om-how-it-works__actions a.om-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(27, 109, 234, 0.25);
}

.om-how-it-works__actions a.om-btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(27, 109, 234, 0.35);
}

.om-how-it-works__actions a.om-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.om-how-it-works__actions a.om-btn-outline:hover {
  background: rgba(27, 109, 234, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 109, 234, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .om-how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .om-hiw-card:nth-child(2) .om-hiw-card__line-right,
  .om-hiw-card:nth-child(3) .om-hiw-card__line-left {
    display: none;
  }
  .om-hiw-card__desc {
    font-size: 13.5px;
    line-height: 1.55;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
}

@media (max-width: 640px) {
  .om-how-it-works {
    padding: 50px 0 60px;
  }
  .om-how-it-works__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 480px;
  }
  .om-hiw-card {
    padding: 24px 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(27, 109, 234, 0.12);
    box-shadow: 0 4px 20px -2px rgba(10, 37, 64, 0.06);
    background: #ffffff;
  }
  .om-hiw-card__stepper {
    padding: 0 0 14px;
    margin: 0;
  }
  .om-hiw-card__step {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0284c7;
    margin-bottom: 6px;
  }
  .om-hiw-card__icon {
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 20px rgba(27, 109, 234, 0.12);
  }
  .om-hiw-card__icon svg {
    width: 24px;
    height: 24px;
  }
  .om-hiw-card__num {
    width: 22px;
    height: 22px;
    font-size: 11px;
    top: -3px;
    right: -3px;
  }
  .om-hiw-card__content {
    padding: 0;
  }
  .om-hiw-card__title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
  }
  .om-hiw-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
  .om-hiw-card__dots span {
    width: 7px;
    height: 7px;
    margin: 0 3px;
  }
  .om-hiw-card__line-left,
  .om-hiw-card__line-right {
    display: none !important;
  }
  .om-how-it-works__actions {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }
  .om-how-it-works__actions a.om-btn-primary {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
  }
}



/* ==========================================================================
   TRUSTED SECTION (PREMIUM)
   ========================================================================== */
.om-trusted {
  padding: 80px 0 60px;
  position: relative;
  z-index: 5;
  background: transparent;
}

.om-trusted__bg-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, #F0F7FD 0%, #ffffff 100%);
  z-index: -1;
}

.om-trusted__top-line,
.om-trusted__bottom-line {
  display: none;
}

.om-trusted__header {
  text-align: center;
  margin-bottom: 40px;
}

.om-trusted__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin: 0;
}

.om-trusted__highlight {
  color: var(--color-primary-dark);
}

.om-trusted__logos {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 10px 0;
  width: 100%;
  position: relative;
}

.om-trusted__logos::before,
.om-trusted__logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.om-trusted__logos::before {
  left: 0;
  background: linear-gradient(to right, #f6fafd, rgba(246, 250, 253, 0));
}

.om-trusted__logos::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.om-trusted__logos-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: trustedMarquee 35s linear infinite;
}

.om-trusted__logos-track:hover {
  animation-play-state: paused;
}

.om-trusted__logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: none;
}

@keyframes trustedMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.om-trusted__logo-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.om-trusted__logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.om-trusted__stats-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 16px 32px -8px rgba(0, 70, 150, 0.08);
  border: 1px solid rgba(0, 100, 255, 0.06);
}

.om-trusted__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
}

.om-trusted__stat-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #00A2FF 0%, #0077D6 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 12px rgba(0, 119, 214, 0.25);
}

.om-trusted__stat-icon svg {
  width: 18px;
  height: 18px;
}

.om-trusted__stat-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
  background: linear-gradient(135deg, #0F172A 0%, #0056D6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.om-trusted__stat-suffix {
  font-size: 22px;
  color: #00A2FF;
  -webkit-text-fill-color: #00A2FF;
  margin-left: 2px;
}

.om-trusted__stat-label {
  font-size: 12.5px;
  color: #64748B;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.om-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(104deg, #0A2540 0%, #0B3C8C 50%, #1B6DEA 100%);
  display: flex;
  align-items: center;
}

.om-hero__circle-1 {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(27, 109, 234, 0.14);
  border-radius: 50%;
}

.om-hero__circle-2 {
  position: absolute;
  bottom: -260px;
  left: -60px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(27, 109, 234, 0.1);
  border-radius: 50%;
}

.om-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.om-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 40px;
}

.om-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.om-hero-line {
  display: block;
}

.om-hero-line--light {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.om-hero-line--accent {
  color: var(--color-primary-light);
}

.om-hero__rule {
  height: 2px;
  width: 56px;
  background: var(--color-primary-light);
  margin: 28px 0;
}

.om-hero__subtitle {
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  max-width: 400px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.om-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.om-hero__btn-primary {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 17px 30px;
  border-radius: 40px;
  box-shadow: 0 16px 34px -14px rgba(11, 60, 140, 0.85);
  transition: transform 0.25s ease, background 0.25s ease;
}

.om-hero__btn-primary:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-3px);
}

.om-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.om-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.om-hero__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 8px;
  color: #ffffff;
  padding-left: 2px;
}

/* Hero Globe / Ring */
.om-ring {
  position: relative;
  justify-self: center;
  width: min(46vw, 580px);
  aspect-ratio: 1;
  animation: om-float 8s ease-in-out infinite;
  user-select: none;
  -webkit-user-select: none;
  caret-color: transparent;
}

.om-ring__glow-outer {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(200, 235, 255, 0.12) 0%, rgba(40, 110, 220, 0.05) 45%, transparent 70%);
}

.om-ring__orbit-1 {
  position: absolute;
  inset: -10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: om-spin 45s linear infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.om-ring__orbit-2 {
  position: absolute;
  inset: -2%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: om-spin-r 28s linear infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.om-ring__sphere {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(100, 180, 255, 0.25), rgba(12, 50, 110, 0.55) 60%, rgba(5, 20, 50, 0.85) 100%);
  box-shadow: 0 0 70px rgba(80, 160, 255, 0.35), inset 0 0 60px rgba(200, 235, 255, 0.25);
}

.om-ring__reflection {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -4%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 235, 255, 0.4), rgba(40, 110, 200, 0.15) 50%, transparent 75%);
}

.om-ring-glow {
  opacity: 1;
}

/* Hero Scroll Indicator */
.om-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono, monospace);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-indent: 0.24em; /* Compensate for letter-spacing to ensure absolute center alignment */
  text-transform: uppercase;
  animation: om-bob 2.4s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

.om-hero__scroll-line {
  width: 1.5px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  margin: 0 auto;
}

/* ---------- Vendor Marquee ---------- */
.om-vendors {
  background: #081120;
  color: #fff;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 10;
}

.om-vendors__inner {
  display: flex;
  align-items: stretch;
  position: relative;
  height: 48px;
}

.om-vendors__badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  height: 100%;
  background: #1B6DEA;
  color: #ffffff;
  font-family: var(--font-mono, monospace);
  font-size: 15.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.4);
}

.om-vendors__bullet {
  font-size: 10px;
  line-height: 1;
  color: #ffffff;
  display: inline-block;
  transform: translateY(-0.5px);
}

.om-vendors__pulse {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: om-pulse 1.6s ease-in-out infinite;
}

.om-vendors__track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  background: #081120;
}

.om-vendors__track::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(90deg, transparent, #081120);
  pointer-events: none;
  z-index: 2;
}

.om-vendors__scroll {
  display: flex;
  width: max-content;
  animation: om-marquee 32s linear infinite;
  align-items: center;
}

.om-vendors__scroll:hover {
  animation-play-state: paused;
}

.om-vendors__list {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px 0 32px;
  font-family: var(--font-mono, monospace);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  height: 48px;
  font-weight: 600;
}

.om-vendors__item {
  transition: color 0.2s ease;
}

.om-vendors__item:hover {
  color: #40D0FF;
}

.om-vendors__sep {
  color: #40D0FF;
  opacity: 0.5;
  font-weight: 300;
  margin: 0 4px;
  user-select: none;
}

@media (max-width: 768px) {
  .om-vendors__inner {
    height: 42px;
  }
  .om-vendors__badge {
    padding: 0 14px;
    font-size: 14px;
    letter-spacing: 0.1em;
    gap: 7px;
  }
  .om-vendors__bullet {
    font-size: 9px;
  }
  .om-vendors__list {
    font-size: 12px;
    gap: 20px;
    padding: 0 20px 0 20px;
    height: 42px;
  }
}

/* ---------- Section Common ---------- */
.om-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.om-section-label--light {
  color: var(--color-primary-light);
}

.om-section-label--faded {
  color: rgba(255, 255, 255, 0.65);
}

.om-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.25;
  margin: 0;
  font-weight: 800;
  color: #0f172a;
}

.om-section-title--large {
  font-size: clamp(34px, 3.6vw, 54px);
}

.om-section-title--xl {
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.04;
}

.om-section-title .accent {
  color: var(--color-primary);
}

.om-section-title .accent-light {
  color: var(--color-primary-light);
}

.om-section-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.om-section-desc--light {
  color: rgba(255, 255, 255, 0.68);
}

.om-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Stats Section ---------- */
.om-stats-section {
  position: relative;
  background: linear-gradient(135deg, #F0F7FD 0%, #E0EFFF 100%);
  padding: var(--section-padding);
  overflow: hidden;
}

.om-stats-section__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(27, 109, 234, 0.07) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(27, 109, 234, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask: linear-gradient(180deg, #000, transparent 85%);
  -webkit-mask: linear-gradient(180deg, #000, transparent 85%);
}

.om-stats__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.om-stats__header h2 {
  flex: 0 0 50%;
  margin: 0;
}

.om-stats__header p {
  flex: 1;
  font-size: 15px;
  color: var(--color-text-body);
  margin: 0;
  line-height: 1.6;
}

.om-stats__grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.om-stats__card-new {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 10px 40px rgba(10, 37, 64, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(27, 109, 234, 0.05);
}

.om-stats__card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(10, 37, 64, 0.1);
}

.om-stats__desc-new {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.om-stats__number-new {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  background: linear-gradient(90deg, var(--color-primary), #00AEEF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.om-stats__suffix-new {
  background: linear-gradient(90deg, var(--color-primary), #00AEEF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Catalogue Section ---------- */
.om-catalogue {
  background: #fff;
  padding: var(--section-padding);
}

.om-catalogue__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.om-catalogue__header--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.om-catalogue__all-link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 5px;
}

.om-catalogue__all-link:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.om-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 24px;
}

/* Featured card (Cloud) */
.om-catalogue__featured {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  background: linear-gradient(135deg, #1B6DEA 0%, #00C6FF 100%);
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(27, 109, 234, 0.3);
  border: none;
}
.om-catalogue__featured::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.om-catalogue__featured-grid-bg {
  display: none;
}

.om-catalogue__featured-glow {
  display: none;
}

.om-catalogue__featured-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.om-catalogue__featured-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.2;
  font-weight: 700;
  max-width: 380px;
  letter-spacing: -0.01em;
}

.om-catalogue__featured-desc {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 380px;
}

.om-catalogue__featured-footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.om-catalogue__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}

.om-catalogue__tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  border-radius: 8px;
}

.om-catalogue__featured-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  background: #fff;
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.om-catalogue__featured-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-dark);
}

/* Standard course card */
.om-catalogue__card {
  background: #ffffff;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 50, 150, 0.04);
  border: 1px solid rgba(0, 100, 255, 0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.om-catalogue__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #EAF4FF 0%, #ffffff 100%);
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: clip-path 0.5s ease-in-out;
  z-index: 0;
}

.om-catalogue__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 70, 180, 0.1);
  border-color: rgba(0, 162, 255, 0.3);
}

.om-catalogue__card:hover::before {
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

.om-catalogue__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.om-catalogue__card-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: #F3F7FD;
  border-radius: 12px;
  object-fit: contain;
  transition: background 0.4s ease, transform 0.4s ease;
}

.om-catalogue__card:hover .om-catalogue__card-icon {
  background: #E1EAF6;
  transform: scale(1.1);
}

.om-catalogue__card-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(27, 109, 234, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

.om-catalogue__card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.om-catalogue__card-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-subtle);
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

/* Custom track CTA card */
.om-catalogue__cta {
  grid-column: span 2;
  background: linear-gradient(270deg, #1B6DEA, #8E2DE2, #00C6FF, #1B6DEA);
  background-size: 800% 800%;
  animation: om-gradient-move 8s ease infinite;
  color: #fff;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 160px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(142, 45, 226, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.om-catalogue__cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(142, 45, 226, 0.4);
}

@keyframes om-gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.om-catalogue__section-footer {
  text-align: center;
  margin-top: 50px;
}

.om-catalogue__explore-btn {
  display: inline-block;
  background: linear-gradient(90deg, #1B6DEA 0%, #00C6FF 100%);
  color: #fff;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(27, 109, 234, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.om-catalogue__explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(27, 109, 234, 0.5);
  color: #fff;
}

@media (max-width: 1200px) {
  .om-catalogue__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .om-catalogue__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .om-catalogue__featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
  }
  .om-catalogue__cta {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
  }
  .om-catalogue__header--centered h2 {
    font-size: 32px;
  }
}

.om-catalogue__cta-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.om-catalogue__cta-title {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 320px;
}

.om-catalogue__cta-btn {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 22px;
  transition: transform 0.25s ease;
}

.om-catalogue__cta-btn:hover {
  transform: translateX(4px);
  color: var(--color-primary-dark);
}

/* ---------- Pipeline Section ---------- */
.om-pipeline {
  position: relative;
  background: #F8FAFC;
  color: var(--color-text-dark);
  padding: 100px 0;
  overflow: hidden;
}

.om-pipeline__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: om-grid 14s linear infinite;
}

.om-pipeline__glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 760px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(27, 109, 234, 0.45), rgba(10, 37, 64, 0) 70%);
}

.om-pipeline__header {
  max-width: 800px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.om-pipeline__header .om-section-title {
  color: var(--color-text-dark);
}

.om-pipeline__header .om-section-desc {
  color: var(--color-text-light);
}

.om-pipeline__header .om-section-label {
  justify-content: center;
}

.accent-cyan {
  color: var(--color-primary);
}

.om-why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.om-why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 24px 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 30, 80, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
  cursor: pointer;
}

.om-why-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: linear-gradient(104deg, #0A2540 0%, #0B3C8C 50%, #1B6DEA 100%);
  border-radius: 50%;
  z-index: -2;
  transform: scale(0);
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-why-card.is-tapped {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 30, 80, 0.15);
}

.om-why-card.is-tapped::before {
  transform: scale(7);
}

.om-why-card--blue,
.om-why-card--purple,
.om-why-card--green,
.om-why-card--orange { 
  --w-color: #1B6DEA; 
  --w-color-light: #E5F0FF; 
}

.om-why-card__top {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: linear-gradient(104deg, #0A2540 0%, #0B3C8C 50%, #1B6DEA 100%);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,0 H0 C0,40 40,100 100,100 V0 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,0 H0 C0,40 40,100 100,100 V0 Z'/%3E%3C/svg%3E");
  mask-size: cover;
  z-index: -1;
}

.om-why-card__number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.om-why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--w-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w-color);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px var(--w-color-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.om-why-card.is-tapped .om-why-card__icon {
  background: #ffffff;
  color: var(--w-color);
  border-color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.om-why-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0;
  transition: color 0.4s ease;
}

.om-why-card__divider {
  width: 32px;
  height: 3px;
  background: var(--w-color-light);
  margin: 16px 0;
  border-radius: 2px;
  transition: background 0.4s ease;
}

.om-why-card__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 40px;
  flex: 1;
  transition: color 0.4s ease;
}

.om-why-card.is-tapped .om-why-card__title,
.om-why-card.is-tapped .om-why-card__desc {
  color: #ffffff;
}

.om-why-card.is-tapped .om-why-card__divider {
  background: rgba(255, 255, 255, 0.3);
}

.om-why-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.om-why-card__dots {
  width: 60px;
  height: 40px;
  background-image: radial-gradient(var(--w-color-light) 2.5px, transparent 2.5px);
  background-size: 12px 12px;
  transition: background-image 0.4s ease;
}

.om-why-card.is-tapped .om-why-card__dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2.5px, transparent 2.5px);
}

.om-why-card__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w-color);
  box-shadow: 0 6px 16px var(--w-color-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.om-why-card.is-tapped .om-why-card__arrow {
  transform: translateX(6px) scale(1.05);
  background: #ffffff;
  color: var(--w-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.om-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--w-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C50,20 150,60 200,10 V60 H0 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C50,20 150,60 200,10 V60 H0 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  opacity: 0.12;
  z-index: -1;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}

.om-why-card.is-tapped::after {
  background-color: #ffffff;
  opacity: 0.15;
}

/* ---------- Skills Section ---------- */
.om-skills {
  position: relative;
  background: #fff;
  padding: var(--section-padding);
  overflow: hidden;
}

.om-skills__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(27, 109, 234, 0.06) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(27, 109, 234, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask: radial-gradient(ellipse at 70% 40%, #000, transparent 72%);
  -webkit-mask: radial-gradient(ellipse at 70% 40%, #000, transparent 72%);
}

.om-skills__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.om-skills__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.om-skills__word-wrap {
  margin: 22px 0 26px;
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
}

.om-skills__word {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  white-space: pre-wrap;
  word-break: break-word;
}

.om-skills__cursor {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--color-primary);
  animation: om-blink 1.05s step-end infinite;
}

.om-skills__desc {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 470px;
}

.om-skills__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.om-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.35s ease;
  background: transparent;
}

.om-chip.is-active {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* Terminal */
.om-terminal {
  position: relative;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-bg-dark);
  box-shadow: 0 40px 80px -40px rgba(10, 37, 64, 0.55);
}

.om-terminal__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.om-terminal__dots {
  display: flex;
  gap: 7px;
}

.om-terminal__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.om-terminal__dot--active {
  background: var(--color-primary);
}

.om-terminal__dot--inactive {
  background: rgba(255, 255, 255, 0.22);
}

.om-terminal__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}

.om-terminal__body {
  padding: 26px 22px 30px;
  min-height: 296px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
}

.om-terminal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.om-terminal__sla {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

.om-terminal__build-link {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

.om-terminal__build-link:hover {
  color: #ffffff;
}

/* ---------- Why Optiv Section ---------- */
.om-why-section-new {
  background: var(--color-bg-light);
  padding: 100px 24px;
}

.om-choice-grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 40px;
  margin-bottom: -40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.om-choice-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.om-why-nav-group {
  display: flex;
  gap: 12px;
}

.om-why-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.om-why-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.om-choice-card {
  flex: 0 0 calc((100% - 64px) / 3);
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.om-choice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.15);
}

.om-choice-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.om-choice-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.om-choice-card:hover .om-choice-card__img {
  transform: scale(1.1);
}

.om-choice-card__content {
  padding: 32px 24px;
}

.om-choice-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.om-choice-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.6;
}

.om-why__rows {
  border-top: 2px solid var(--color-bg-dark);
}

.om-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 4px;
  border-bottom: 1px solid var(--color-border);
  transition: padding-left 0.35s ease, background 0.35s ease;
}

.om-row:last-child {
  border-bottom: 2px solid var(--color-bg-dark);
}

.om-row:hover {
  background: var(--color-bg-card-hover);
}

.om-row__number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-primary);
}

.om-row__title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}

.om-row__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 520px;
}

.om-row__arrow {
  font-size: 20px;
  color: var(--color-primary);
}

/* ---------- Learning Modes Section ---------- */
.om-modes {
  position: relative;
  background: var(--color-bg-light);
  padding: var(--section-padding);
  overflow: hidden;
}

.om-modes__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.om-modes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.om-mode {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease, border-color 0.3s ease;
}

.om-mode:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -30px rgba(10, 37, 64, 0.45);
  border-color: var(--color-primary);
}

.om-mode__image-wrap {
  position: relative;
  height: 230px;
  background: #EAF1FB;
}

.om-mode__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.om-mode__content {
  padding: 24px 24px 28px;
}

.om-mode__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.om-mode__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.om-mode__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ---------- Advantages Section ---------- */
.om-advantages {
  background: #fff;
  padding: var(--section-padding);
}

.om-advantages__header {
  max-width: 660px;
  margin-bottom: 44px;
}

.om-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.om-advantage {
  background: #fff;
  padding: 34px 28px 30px;
  transition: background 0.35s ease, color 0.35s ease;
}

.om-advantage:hover {
  background: var(--color-bg-dark);
  color: #ffffff;
}

.om-advantage:hover .om-advantage__desc {
  color: rgba(255, 255, 255, 0.7);
}

.om-advantage__number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.om-advantage__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.om-advantage__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  transition: color 0.35s ease;
}

/* ---------- Testimonials Section ---------- */
.om-testimonials {
  background: linear-gradient(135deg, #e6f4ff 0%, #cce7ff 100%);
  padding: 140px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.om-testimonials::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 55%;
  background: #ffffff;
  transform: skewY(-4deg);
  transform-origin: top left;
  z-index: -1;
}

.om-testimonials::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 40%;
  background: #ffffff;
  transform: skewY(-4deg);
  transform-origin: bottom right;
  z-index: -1;
}

.om-testimonials__header {
  max-width: var(--max-width);
  margin: 0 auto 50px;
  padding: 0 48px;
  text-align: center;
}

.om-testimonials__carousel-wrapper {
  position: relative;
  width: 100%;
}

.om-testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.om-testimonials__nav {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(27,109,234,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  z-index: 10;
}

.om-testimonials__nav:hover {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(27, 109, 234, 0.3);
  transform: translateY(-2px);
}

.om-testimonials__nav:active {
  transform: translateY(0);
}

.om-testimonials__carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 64px 8px 40px;
  scroll-behavior: smooth;
  flex-grow: 1;
}

.om-testimonials__carousel::-webkit-scrollbar {
  display: none;
}

.om-testimonial {
  flex: 0 0 calc(33.333% - 22px);
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  position: relative;
  transition: all 0.4s ease;
  border-left: 4px solid var(--color-primary);
}

  @media (max-width: 1024px) {
    .om-testimonial { flex: 0 0 calc(50% - 16px); }
  }
  @media (max-width: 640px) {
    .om-testimonials__carousel { padding: 64px 20px 40px; gap: 16px; }
    .om-testimonial { flex: 0 0 90%; }
  }

.om-testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(27, 109, 234, 0.35);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0047a5 100%);
  border-left-color: #00b4d8;
}

.om-testimonial::before {
  content: '"';
  position: absolute;
  top: 40px;
  right: 30px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(27, 109, 234, 0.04);
  line-height: 1;
  font-weight: bold;
  pointer-events: none;
  transition: color 0.4s ease;
  z-index: 0;
}

.om-testimonial:hover::before {
  color: rgba(255, 255, 255, 0.05);
}

.om-testimonial__avatar-wrapper {
  position: absolute;
  top: -32px;
  left: 32px;
  z-index: 2;
}

.om-testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540 0%, #0B3C8C 50%, #1B6DEA 100%);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(11, 60, 140, 0.35);
  transition: all 0.4s ease;
}

.om-testimonial:hover .om-testimonial__avatar {
  background: linear-gradient(135deg, #1B6DEA 0%, #0B3C8C 50%, #0A2540 100%);
  color: #40D0FF;
  border-color: #ffffff;
  box-shadow: 0 10px 26px rgba(64, 208, 255, 0.35);
  transform: scale(1.06);
}

.om-testimonial__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.om-testimonial:hover .om-testimonial__text {
  color: rgba(255, 255, 255, 0.95);
}

.om-testimonial__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
  position: relative;
  z-index: 2;
  transition: border-color 0.4s ease;
}

.om-testimonial:hover .om-testimonial__footer {
  border-top-color: rgba(255,255,255,0.1);
}

.om-testimonial__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.om-testimonial__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-dark);
  transition: color 0.4s ease;
}

.om-testimonial:hover .om-testimonial__name {
  color: #ffffff;
}

.om-testimonial__category {
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.4;
  transition: color 0.4s ease;
}

.om-testimonial:hover .om-testimonial__category {
  color: #cce7ff;
}

.om-testimonial__stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ---------- Quote Section (Clean White Background) ---------- */
.om-quote {
  position: relative;
  background: linear-gradient(135deg, #0B3C8C 0%, #061838 100%);
  color: #ffffff;
  padding: 100px 48px;
  overflow: hidden;
}

.om-quote__circle-1 {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 109, 234, 0.08) 0%, rgba(27, 109, 234, 0) 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  animation: om-float 20s ease-in-out infinite alternate;
}

.om-quote__circle-2 {
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(64, 208, 255, 0.08) 0%, rgba(64, 208, 255, 0) 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  animation: om-float 15s ease-in-out infinite alternate-reverse;
}

.om-quote__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.om-quote__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.25;
  margin: 16px 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.om-quote__desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
}

.om-quote__contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 44px;
}

.om-quote__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.om-quote__contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #40D0FF;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.om-quote__contact-item:hover .om-quote__contact-icon {
  background: #1B6DEA;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(27, 109, 234, 0.35);
}

.om-quote__contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
  font-weight: 600;
}

.om-quote__contact-value {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.om-quote__contact-value:hover {
  color: #40D0FF;
}

/* Quote Form Card */
.om-quote-form {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 32px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.om-quote-form__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.om-quote-form__cursor {
  animation: om-blink 1.1s step-end infinite;
}

.om-quote-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.om-quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.om-quote-form__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.om-quote-form__field-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.om-quote-form__field-label .required {
  color: #e53e3e;
}

.om-quote-form__input {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  width: 100%;
  color: var(--color-text-dark);
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.om-quote-form__input:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.01), 0 0 0 4px rgba(27, 109, 234, 0.1);
}

.om-quote-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' 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;
  padding-right: 40px;
}

.om-quote-form__textarea {
  resize: vertical;
  min-height: 60px;
}

.om-quote-form__recaptcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 8px 12px;
  margin: 2px 0 6px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.08);
}

.om-quote-form__recaptcha-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.om-quote-form__recaptcha-checkbox input {
  display: none;
}

.om-quote-form__recaptcha-box {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-quote-form__recaptcha-checkbox input:checked + .om-quote-form__recaptcha-box {
  border-color: #4285f4;
}

.om-quote-form__recaptcha-checkbox input:checked + .om-quote-form__recaptcha-box::after {
  content: '';
  width: 6px;
  height: 12px;
  border: solid #4285f4;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.om-quote-form__recaptcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.om-quote-form__recaptcha-logo span {
  font-family: var(--font-body);
  font-size: 10px;
  color: #555;
}

.om-quote-form__submit {
  margin-top: 8px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(27,109,234,0.3);
  width: 100%;
}

.om-quote-form__submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(27,109,234,0.4);
}

.om-quote-form__note {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.om-footer {
  background: linear-gradient(180deg, #ffffff 0%, #e6f2ff 100%);
  color: var(--color-text-dark);
  padding: 120px 0 40px;
}

.om-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1.35fr 1.15fr 1.3fr 1.8fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d2e3f5;
}

.om-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.om-footer__logo-circle {
  display: block;
  width: 26px;
  height: 26px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
}

.om-footer__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
}

.om-footer__about {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-body);
  max-width: 320px;
}

.om-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.om-footer__col-title {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.om-footer__link,
.om-footer__text {
  font-size: 15px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1.5;
  white-space: nowrap;
}

.om-footer__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.om-footer__link:hover {
  color: var(--color-primary);
}

.om-footer__link:hover::after {
  width: 100%;
}

.om-footer__link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* Newsletter */
.om-footer__newsletter {
  display: flex;
  background: #f8fafc;
  border: 1px solid #ebf0f6;
  border-radius: 6px;
  overflow: hidden;
}

.om-footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
}

.om-footer__newsletter-input::placeholder {
  color: #a0aec0;
}

.om-footer__newsletter-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.om-footer__newsletter-btn:hover {
  background: var(--color-primary-dark);
}

.om-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.om-footer__social {
  width: 34px;
  height: 34px;
  border: 1px solid #ebf0f6;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.om-footer__social:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.om-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.om-footer__bottom-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.om-footer__bottom-link:hover {
  color: var(--color-primary);
}

.om-footer__social:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.om-footer__bottom {
  max-width: var(--max-width);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-text-muted);
}

/* ---------- Tilt Effect (JS applied) ---------- */
.om-tilt {
  transition: transform 0.4s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .om-mobile-toggle {
    display: flex !important;
  }
  .om-nav {
    display: none !important;
  }
  .om-header-search-form {
    display: none !important;
  }
  .om-header__cta {
    display: none !important;
  }

  .om-hero__content {
    grid-template-columns: 1fr;
    padding: 130px 32px 90px;
    gap: 36px;
  }

  .om-ring {
    display: block;
    width: min(60vw, 320px);
    margin: 45px auto 25px;
  }

  .om-stats__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .om-stats__grid, .om-stats__grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .om-stats__card:nth-child(2) {
    border-right: none;
  }

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

  .om-catalogue__featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }

  .om-catalogue__cta {
    grid-column: span 2;
  }

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

  .om-why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .om-choice-card {
    flex: 0 0 calc((100% - 32px) / 2); /* show 2 cards on tablet */
  }

  .om-skills__layout {
    grid-template-columns: 1fr;
  }

  .om-why__layout {
    grid-template-columns: 1fr;
  }

  .om-why__sidebar {
    position: static;
  }

  .om-modes__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .om-quote__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .om-quote-form__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .om-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .om-mega-menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 70px 20px;
  }

  .om-header {
    padding: 12px 16px;
  }

  .om-header.is-scrolled {
    padding: 10px 16px;
  }

  .om-header__inner {
    padding: 0 4px;
  }

  .om-header__cta {
    display: none !important;
  }

  .om-logo__text {
    font-size: 18px;
  }

  .om-logo__circle {
    width: 24px;
    height: 24px;
  }

  .om-nav {
    display: none;
  }

  .om-hero__title {
    font-size: clamp(28px, 7.8vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .om-hero__rule {
    margin: 16px 0;
    width: 40px;
  }

  .om-hero__subtitle {
    font-size: 13px;
    line-height: 1.65;
    max-width: 100%;
    margin: 0 0 24px;
  }

  .om-hero__content {
    padding: 100px 16px 95px;
    gap: 28px;
  }

  .om-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
  }

  .om-hero__btn-primary {
    padding: 12px 20px;
    font-size: 13.5px;
    border-radius: 30px;
  }

  .om-hero__btn-secondary {
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
    border-radius: 22px;
  }

  .om-ring {
    display: block;
    width: min(68vw, 220px);
    margin: 55px auto 30px;
    position: relative;
    z-index: 1;
  }

  .om-stats__grid {
    grid-template-columns: 1fr;
  }

  .om-stats__card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .om-stats__card:last-child {
    border-bottom: none;
  }

  .om-catalogue__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .om-catalogue__featured {
    grid-column: span 2;
  }

  .om-catalogue__cta {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
  }

  .om-catalogue__card {
    padding: 16px 14px;
    min-height: 120px;
  }
  .om-catalogue__card-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
  .om-catalogue__card-count {
    font-size: 9px;
    padding: 4px 8px;
  }
  .om-catalogue__card-title {
    font-size: 13px;
    margin-top: 16px;
  }
  .om-catalogue__card-sub {
    font-size: 8.5px;
    margin-top: 6px;
  }

  .om-pipeline__grid {
    grid-template-columns: 1fr;
  }

  .om-pipeline__svg {
    display: none;
  }

  .om-why-nav-group {
    display: none;
  }

  .om-why-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .om-choice-card {
    flex: 0 0 100%; /* show 1 full card on mobile */
  }

  .om-choice-card__img-wrap {
    aspect-ratio: 4 / 3; /* taller image on mobile */
  }

  .om-stats__grid-new {
    grid-template-columns: 1fr;
  }

  .om-stats__header {
    flex-direction: column !important;
    text-align: center;
  }

  .om-modes__grid {
    grid-template-columns: 1fr;
  }

  .om-advantages__grid {
    grid-template-columns: 1fr;
  }

  .om-quote {
    padding: 60px 0;
  }

  .om-quote__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .om-quote-form {
    padding: 24px 16px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  }

  .om-quote-form__fields {
    gap: 10px;
  }

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

  .om-quote-form__group {
    gap: 4px;
  }

  .om-quote-form__field-label {
    font-size: 13px;
  }

  .om-quote-form__input {
    padding: 10px 14px;
    font-size: 14px;
  }

  .om-quote-form__textarea {
    min-height: 60px;
  }

  .om-quote-form__submit {
    padding: 12px 20px;
    margin-top: 4px;
  }

  .om-quote-form__recaptcha {
    padding: 10px 12px;
  }

  .om-quote__contact-wrap {
    margin-top: 36px;
    gap: 18px;
  }

  .om-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .om-mega-menu {
    padding: 20px;
  }

  .om-mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   LEARNING FORMATS SECTION
   ========================================================================== */
.om-formats {
  background: linear-gradient(104deg, #0A2540 0%, #0B3C8C 50%, #1B6DEA 100%);
  padding: 100px 0;
  position: relative;
  z-index: 5;
  color: #ffffff;
  overflow: hidden;
}

.om-formats .om-section-title {
  color: #ffffff;
}

.om-formats__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.om-formats__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2400px;
  height: 2400px;
  transform: translate(-50%, -50%);
  background: repeating-radial-gradient(
    circle at center,
    transparent 0,
    transparent 150px,
    rgba(0, 0, 0, 0.03) 151px,
    transparent 152px
  );
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.om-formats__bg-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 162, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.om-formats__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.om-formats__badge-top {
  display: inline-block;
  background: rgba(0, 162, 255, 0.15);
  color: #00A2FF;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.om-formats__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.om-formats__title .accent-cyan {
  color: #1B6DEA;
}

.om-formats__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.om-formats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.om-formats__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.om-formats__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.om-formats__card.is-tapped {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 100%);
}

.om-formats__card.is-tapped .om-formats__card-btn {
  border-color: rgba(0, 162, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 162, 255, 0.15);
}

.om-formats__card.is-tapped .om-formats__card-btn .om-formats__card-btn-icon {
  background: linear-gradient(135deg, #1AB0FF 0%, #0088F0 100%);
  transform: scale(1.05);
}

.om-formats__card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.om-formats__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.om-formats__card.is-tapped .om-formats__card-img {
  transform: scale(1.05);
}

.om-formats__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.om-formats__card-content {
  padding: 18px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.om-formats__card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.om-formats__card-desc {
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.om-formats__card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 20px;
  background: #ffffff;
  border: 1px solid rgba(27, 109, 234, 0.15);
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 40, 120, 0.05);
  transition: all 0.3s ease;
}

.om-formats__card-btn-text {
  flex: 1;
  text-align: left;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-primary);
  background: transparent;
  transition: color 0.3s ease;
}

.om-formats__card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1B6DEA 0%, #0A377A 100%);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.om-formats__card-btn:hover {
  box-shadow: 0 8px 25px rgba(27, 109, 234, 0.15);
  transform: translateY(-2px);
  border-color: rgba(27, 109, 234, 0.3);
}

.om-formats__card-btn:hover .om-formats__card-btn-icon {
  background: linear-gradient(135deg, #1AB0FF 0%, #0088F0 100%);
  transform: scale(1.05);
}

.om-formats__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.om-formats__page-btn {
  background: #ffffff;
  border: 1px solid rgba(27, 109, 234, 0.2);
  color: var(--color-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 40, 120, 0.05);
  transition: all 0.3s ease;
}

.om-formats__page-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 109, 234, 0.25);
}

.om-formats__page-info {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
  .om-formats__grid, .om-why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .om-formats__grid, .om-why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .om-why-card {
    padding: 24px 16px 20px;
  }
  .om-why-card__top {
    width: 60px;
    height: 60px;
  }
  .om-why-card__number {
    top: 10px;
    right: 14px;
    font-size: 13px;
  }
  .om-why-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .om-why-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .om-why-card__title {
    font-size: 15px;
  }
  .om-why-card__divider {
    margin: 12px 0;
  }
  .om-why-card__desc {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .om-why-card__arrow {
    width: 32px;
    height: 32px;
  }
  .om-why-card__arrow svg {
    width: 16px;
    height: 16px;
  }
  .om-formats__title {
  }
  .om-formats__card-content {
    padding: 12px;
  }
  .om-formats__card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .om-formats__card-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .om-formats__card-img-wrap {
    height: 110px;
  }
  .om-formats__card-badge {
    font-size: 10px;
    padding: 4px 8px;
    top: 8px;
    left: 8px;
  }
  .om-formats__card-btn {
    padding: 4px 4px 4px 12px;
  }
  .om-formats__card-btn-text {
    font-size: 11px;
  }
  .om-formats__card-btn-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

/* ---------- Explore Course Section ---------- */
.om-courses {
  background: linear-gradient(135deg, #f2f7fc 0%, #e1edf9 40%, #1b6dea 100%);
  padding: 120px 0 140px;
  color: var(--color-text-dark);
  position: relative;
  width: 100%;
}

.om-shape-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.om-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.om-shape-divider-top .shape-fill {
    fill: #ffffff;
}

.om-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.om-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.om-shape-divider-bottom .shape-fill {
    fill: #ffffff;
}

.om-courses__header {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 50px;
}

.om-courses__badge {
  display: inline-block;
  background: rgba(27, 109, 234, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(27, 109, 234, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.om-courses .om-section-title {
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.om-courses .om-section-title .accent-cyan {
  color: var(--color-primary);
}

.om-courses .om-section-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.om-courses__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border-light);
}

.om-courses__tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.om-courses__tab.active, .om-courses__tab:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.om-courses__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.om-courses__grid::-webkit-scrollbar {
  display: none;
}

.om-courses__slider-container {
  position: relative;
  max-width: 100%;
}

.om-courses__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0,30,80,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.om-courses__nav:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.om-courses__bottom {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.om-courses__nav-group {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.om-courses__link-all {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.om-courses__link-all:hover {
  color: var(--color-primary-dark);
}

.om-course-card {
  background: #ffffff;
  border: 1px solid rgba(27, 109, 234, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: calc((100% - 72px) / 4);
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
  box-shadow: 0 10px 30px rgba(0, 30, 80, 0.04);
  z-index: 1;
}

.om-course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #00b4d8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.om-course-card.is-tapped::before {
  transform: scaleX(1);
}

.om-course-card.is-tapped {
  border-color: rgba(27, 109, 234, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 109, 234, 0.12);
}

.om-course-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.om-course-card__level {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
}

.om-course-card__level.has-popular {
  background: rgba(27, 109, 234, 0.1);
  color: var(--color-primary);
}

.om-course-card__popular {
  background: #FF9F00;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.om-course-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.om-course-card.is-tapped .om-course-card__title {
  color: var(--color-primary);
}

.om-course-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.om-course-card__meta span, .om-course-card__meta a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.om-course-card__link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.om-course-card__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.om-course-card__divider {
  height: 1px;
  background: var(--color-border-light);
  margin: 16px 0;
}

.om-course-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.om-course-card__stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.om-course-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.om-course-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.om-course-card__actions .om-btn-outline {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.om-course-card__actions .om-btn-outline:hover {
  background: rgba(27, 109, 234, 0.05);
}

.om-course-card__actions .om-btn-primary {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.om-course-card__actions .om-btn-primary:hover {
  background: var(--color-primary-dark);
}

.om-courses__bottom {
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .om-course-card {
    min-width: calc((100% - 48px) / 3);
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

@media (max-width: 768px) {
  .om-course-card {
    min-width: calc((100% - 24px) / 2);
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 480px) {
  .om-course-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
}


/* ---------- All Courses Page ---------- */
.courses-page-header {
    background: linear-gradient(to right, #f8fafc, #ffffff);
    padding: 60px 0 30px;
    border-bottom: 1px solid #e2e8f0;
}

.courses-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.courses-page-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-bg-dark);
    margin: 0 0 10px 0;
}

.courses-page-subtitle {
    font-size: 16px;
    color: var(--color-text-body);
    margin: 0;
}

.courses-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
}

.courses-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 16px;
    transition: all 0.2s;
}

.courses-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.1);
    background: #fff;
}

.courses-search .search-icon {
    color: #94a3b8;
    margin-right: 12px;
}

.courses-search input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: #334155;
    outline: none;
    font-family: var(--font-body);
}

.courses-search input::placeholder {
    color: #94a3b8;
}

.courses-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.courses-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.courses-sort select {
    padding: 8px 36px 8px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    background-color: #fff;
    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='currentColor' 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 12px center;
    background-size: 16px;
    outline: none;
}

.courses-sort select:focus {
    border-color: var(--color-primary);
}

.courses-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-body);
    padding-left: 20px;
    border-left: 1px solid #e2e8f0;
}

.courses-page-body {
    background: var(--bg-surface);
    padding: 60px 0 100px;
}

/* Pagination */
.courses-pagination .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.courses-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.courses-pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.courses-pagination .page-item:not(.active) .page-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.courses-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
    background: #f8fafc;
}

@media (max-width: 992px) {
    .courses-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .courses-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .courses-search {
        max-width: 100%;
    }
    
    .courses-sort-wrapper {
        justify-content: space-between;
    }
}
@media (max-width: 576px) {
    .courses-page-title {
        font-size: 32px;
    }
    .courses-sort-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .courses-count {
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        border-top: 1px solid #e2e8f0;
        width: 100%;
    }
}

/* Global Typography for Headings (Post-Hero) */
.om-heading-section {
    font-size: clamp(28px, 3.5vw, 40px) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    margin-bottom: 16px;
}

.om-heading-subsection {
    font-size: clamp(22px, 2.5vw, 28px) !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    margin-bottom: 12px;
}

.om-heading-subtitle {
    font-size: clamp(15px, 2vw, 17px) !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* Floating Action Buttons */
.om-floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.om-fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}
.om-fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #ffffff;
}
.om-fab-whatsapp {
    background: #25D366;
}
.om-fab-whatsapp:hover {
    background: #1ebd5a;
}
.om-fab-top {
    background: #0B3C8C;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.om-fab-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.om-fab-top.visible:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .om-floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .om-fab {
        width: 50px;
        height: 50px;
    }
}

/* Course Overview Content Justification */
.content-text-wrapper,
#overview-text {
    text-align: justify;
    text-justify: inter-word;
}

/* ==========================================================================
   Modern Optive Pagination Component
   ========================================================================== */
.om-pagination-nav {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

.om-pagination-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    gap: 16px;
    flex-wrap: wrap;
}

.om-pagination-info {
    font-size: 13.5px;
    color: #64748b;
    font-weight: 500;
}

.om-pagination-info .om-pagination-count {
    color: #0f172a;
    font-weight: 700;
}

.om-pagination-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-wrap: wrap;
}

.om-pagination-item {
    display: inline-flex;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.om-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none !important;
    gap: 6px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    user-select: none;
}

.om-pagination-link:hover {
    color: #1B6DEA;
    background: #eff6ff;
    border-color: #93c5fd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(27, 109, 234, 0.12);
}

.om-pagination-link.is-active {
    color: #ffffff !important;
    background: #1B6DEA !important;
    border-color: #1B6DEA !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(27, 109, 234, 0.28);
    cursor: default;
    transform: none !important;
}

.om-pagination-link.is-disabled {
    color: #94a3b8 !important;
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
    box-shadow: none !important;
    transform: none !important;
}

.om-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 38px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}

.om-pagination-icon {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .om-pagination-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 14px;
        gap: 12px;
    }

    .om-pagination-controls {
        justify-content: center;
        gap: 4px;
    }

    .om-pagination-text {
        display: none;
    }

    .om-pagination-link {
        padding: 0 8px;
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}