/* =========================================================
   Omega Media — Global Stylesheet
   Tokens extracted from Figma file: Web Omega Media — admin online
   Fonts: Red Rose (display), Inter (body)
   ========================================================= */

:root {
  /* Brand */
  --om-accent: #ef4e23;
  --om-accent-2: #fd622a;
  --om-accent-soft: #fff0eb;

  /* Neutrals */
  --om-ink: #171717;
  --om-ink-2: #261a28;
  --om-text: #2a2a2a;
  --om-muted: #6b6b6b;
  --om-line: #e9e6e2;
  --om-line-2: #d9d4cf;
  --om-bg: #ffffff;
  --om-bg-alt: #f8f8f8;
  --om-bg-dark: #0f0f0f;

  /* Typography */
  --om-font-display: "Red Rose", "Manrope", system-ui, sans-serif;
  --om-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --om-r-sm: 10px;
  --om-r-md: 16px;
  --om-r-lg: 24px;
  --om-r-xl: 62px;

  --om-shadow-sm: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .03);
  --om-shadow-md: 0 8px 24px rgba(17, 17, 17, .06), 0 2px 6px rgba(17, 17, 17, .04);
  --om-shadow-lg: 0 24px 60px rgba(17, 17, 17, .10), 0 4px 12px rgba(17, 17, 17, .05);

  /* Bootstrap overrides */
  --bs-body-font-family: var(--om-font-body);
  --bs-body-color: var(--om-text);
  --bs-body-bg: var(--om-bg);
  --bs-primary: var(--om-accent);
  --bs-link-color: var(--om-accent);
  --bs-link-hover-color: var(--om-accent-2);
  --bs-border-color: var(--om-line);
}

/* ----- Base ---------------------------------------------- */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--om-font-body);
  color: var(--om-text);
  background: var(--om-bg);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--om-font-display);
  color: var(--om-ink);
  letter-spacing: -.01em;
}

.h-display {
  font-family: var(--om-font-display);
  font-weight: 400;
  letter-spacing: -.015em;
}

.h-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--om-accent);
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

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

  .section-sm {
    padding: 40px 0;
  }
}

/* ----- Buttons ------------------------------------------- */
.btn {
  font-weight: 500;
  border-radius: 999px;
  padding: .65rem 1.4rem;
  transition: all .2s;
}

.btn-lg {
  padding: .85rem 1.8rem;
  font-size: 1rem;
}

.btn-accent {
  background: var(--om-accent);
  color: #fff;
  border: 1px solid var(--om-accent);
}

.btn-accent:hover {
  background: var(--om-accent-2);
  border-color: var(--om-accent-2);
  color: #fff;
}

.btn-outline-accent {
  background: #fff;
  color: var(--om-accent);
  border: 1px solid var(--om-accent);
}

.btn-outline-accent:hover {
  background: var(--om-accent);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.btn-dark-pill {
  background: var(--om-accent);
  color: #fff;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-dark-pill:hover,
.btn-dark-pill:focus,
.btn-dark-pill:active,
.btn-dark-pill:visited {
  color: #fff !important;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 78, 35, .35);
}

/* ----- Header -------------------------------------------- */
.om-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: top .35s ease, background .35s ease, box-shadow .35s ease, border-radius .35s ease;
}

.om-header>.container {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  padding-left: 24px;
  padding-right: 24px;
  transition: border-radius .35s ease, box-shadow .35s ease;
}

.om-header.is-stuck {
  top: 18px;
}

.om-header.is-stuck>.container {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

body {
  padding-top: 96px;
}

body:has(.hero--fullpage),
body:has(.news-hero),
body:has(.author-hero),
body:has(.solution-hero) {
  padding-top: 0;
}

@media (max-width: 991.98px) {
  .om-header {
    position: relative;
    top: 0;
  }

  .om-header.is-stuck {
    position: fixed;
    top: 0;
  }

  body {
    padding-top: 0;
  }
}

/* ----- Mobile drawer (header off-canvas) ---------------- */
.om-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.om-drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.om-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 1050;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
  display: flex;
  flex-direction: column;
}

.om-drawer.show {
  transform: translateX(0);
}

.om-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--om-line);
}

.om-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.om-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  color: var(--om-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 10px;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
}

.om-drawer__link svg {
  transition: transform .2s ease;
}

.om-drawer__link:hover,
.om-drawer__link:focus {
  background: var(--om-bg-alt);
}

.om-drawer__sub {
  display: flex;
  flex-direction: column;
  padding: 0 8px 8px 20px;
}

.om-drawer__sub a {
  padding: 10px 8px;
  color: var(--om-muted);
  text-decoration: none;
  font-size: .95rem;
  border-radius: 8px;
}

.om-drawer__sub a:hover {
  background: var(--om-bg-alt);
  color: var(--om-ink);
}

.om-drawer__foot {
  padding-top: 16px;
  border-top: 1px solid var(--om-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.om-drawer__lang {
  display: flex;
  gap: 8px;
}

.om-drawer__lang button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--om-line);
  background: #fff;
  font-size: .9rem;
  cursor: pointer;
}

.om-drawer__lang button.is-active {
  background: var(--om-accent-soft);
  color: var(--om-accent);
  border-color: var(--om-accent);
  font-weight: 600;
}

/* ----- Mobile global tweaks ----------------------------- */
@media (max-width: 991.98px) {
  body {
    padding-top: 80px;
  }

  .om-header {
    top: 10px;
  }

  .om-header.is-stuck {
    top: 10px;
  }

  .om-header>.container {
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-top: 0;
  }

  .om-header {
    top: 6px;
  }

  /* Hero mobile */
  .hero--fullpage,
  .hero--fullpage .hero-owl,
  .hero--fullpage .owl-stage-outer,
  .hero--fullpage .owl-stage,
  .hero--fullpage .owl-item,
  .hero-slide {
    min-height: calc(100svh - 64px);
    height: calc(100svh - 64px);
  }

  .hero-slide__inner {
    padding-top: 40px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - 64px);
  }

  /* Gradient dọc trên mobile — sáng từ trên xuống */
  .hero-slide__bg::after {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.80) 40%,
        rgba(255, 255, 255, 0.55) 70%,
        rgba(255, 255, 255, 0.20) 100%);
  }

  /* Fade bottom — chuyển tiếp mượt sang section kế */
  .hero--fullpage::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fff);
    z-index: 4;
    pointer-events: none;
  }

  .hero-title,
  .h-display {
    font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Solutions: tap-to-expand on mobile (no hover) — show full content stacked */
  .solutions-grid {
    grid-template-columns: 1fr !important;
  }

  .solutions-grid .solution-card {
    grid-column: span 1 !important;
    min-height: 360px;
  }

  .solutions-grid .solution-card .desc,
  .solutions-grid .solution-card .more-link {
    opacity: 1 !important;
    max-height: none !important;
  }

  /* Trust slider mobile: 1 center item */
  .trust-owl .owl-item {
    transform: scale(0.8);
    opacity: .8;
  }

  .trust-owl .owl-item.center {
    transform: scale(1);
    opacity: 1;
  }

  /* CTA form full-width stack */
  .cta-form {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .cta-form input,
  .cta-form select,
  .cta-form button {
    width: 100%;
  }

  .cta-form .divider {
    display: none;
  }

  .cta-band {
    padding: 48px 0;
  }

  /* Footer column stack */
  .om-footer .logo-xl {
    font-size: clamp(3rem, 18vw, 5rem);
    text-align: center;
  }

  .om-footer .logo-tag {
    border-left: 0;
    border-top: 0;
    padding: 0;
    text-align: center;
  }

  .om-footer .logo-tag::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--om-accent);
    margin: 16px auto 16px;
  }

  /* Đảo thứ tự: logo+slogan lên trước links trên mobile */
  .footer-body {
    display: flex;
    flex-direction: column;
  }

  .footer-links-row {
    order: 2;
    margin-bottom: 0 !important;
  }

  .footer-brand-row {
    order: 1;
    margin-bottom: 40px !important;
  }

  .om-footer-bot {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* News carousel ghost arrows smaller */
  .news-band .arrow-btn--ghost {
    width: 36px;
    height: 36px;
  }

  /* Section spacing */
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.om-header__legacy {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--om-line);
}

.om-header .navbar-brand {
  font-family: var(--om-font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--om-ink);
}

.om-header .navbar-brand img {
  height: 32px;
}

.om-header .nav-link {
  color: var(--om-ink);
  font-size: .95rem;
  padding: .35rem 1rem !important;
}

.om-header .nav-link:hover,
.om-header .nav-link.active {
  color: var(--om-accent);
}

.om-header .nav-item.has-mega .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.om-header .nav-item.has-mega .nav-link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%232a2a2a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
  margin-top: 2px;
}

.om-header .nav-item.has-mega:hover .nav-link::after,
.om-header .nav-item.has-mega .nav-link.active::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23ef4e23' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.om-header .nav-item.has-dropdown {
  position: relative;
}

.om-header .nav-item.has-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.om-header .nav-item.has-dropdown .nav-link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%232a2a2a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
  margin-top: 2px;
}

.om-header .nav-item.has-dropdown:hover .nav-link::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23ef4e23' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.om-header .nav-item.has-dropdown .nav-link.active::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23ef4e23' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: 12px;
  box-shadow: var(--om-shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.om-header .nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--om-ink);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--om-accent-soft);
  color: var(--om-accent);
}

.om-header .lang-switch {
  position: relative;
  font-size: .9rem;
  color: var(--om-ink);
}

.om-header .lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  border: 0;
  padding: .4rem .6rem;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: 8px;
}

.om-header .lang-switch__btn:hover {
  background: var(--om-bg-alt);
}

.om-header .lang-switch__btn svg:last-child {
  transition: transform .2s ease;
}

.om-header .lang-switch__btn.is-open svg:last-child {
  transform: rotate(180deg);
}

.om-header .lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
  list-style: none;
  margin: 0;
  z-index: 50;
}

.om-header .lang-switch__menu button,
.om-header .lang-switch__menu a {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  background: transparent;
  border: 0;
  padding: .55rem .7rem;
  border-radius: 7px;
  font-size: .9rem;
  color: var(--om-ink);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.om-header .lang-switch__menu button:hover,
.om-header .lang-switch__menu a:hover {
  background: var(--om-bg-alt);
}

.om-header .lang-switch__menu button.is-active,
.om-header .lang-switch__menu a.is-active {
  background: var(--om-accent-soft);
  color: var(--om-accent);
  font-weight: 600;
}

[x-cloak] {
  display: none !important;
}

.om-header .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--om-ink);
}

.om-header .icon-btn:hover {
  background: var(--om-bg-alt);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--om-line);
  box-shadow: var(--om-shadow-lg);
  padding: 32px 0;
  display: none;
  /* Bridge: phủ lên khoảng hở giữa nav-item và mega menu */
  margin-top: -4px;
  padding-top: 36px;
}

.mega-menu.show {
  display: block;
}

.mega-menu__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--om-ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu__list a {
  color: var(--om-text);
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  padding-left: 0;
  border-left: 2px solid transparent;
  transition: color 0.2s, padding-left 0.2s, border-color 0.2s;
}

.mega-menu__list a:hover {
  color: var(--om-accent);
  padding-left: 8px;
  border-left-color: var(--om-accent);
}

.mega-case-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  display: block;
}

.mega-case-card__img {
  position: absolute;
  inset: 0;
}

.mega-case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .35) 50%, transparent 100%);
}

.mega-case-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mega-case-card__content .brand {
  margin-bottom: 12px;
}

.mega-case-card__content .brand img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mega-case-card__content .stat {
  margin-bottom: 8px;
}

.mega-case-card__content .num {
  font-family: "Inter", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.mega-case-card__content .lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .75);
  margin-top: 2px;
  line-height: 1.4;
}

.text-accent {
  color: var(--om-accent) !important;
}

/* ----- Hero ---------------------------------------------- */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero--fullpage {
  padding: 0;
  min-height: 100vh;
}

.hero--fullpage .hero-owl,
.hero--fullpage .owl-stage-outer,
.hero--fullpage .owl-stage,
.hero--fullpage .owl-item {
  height: 100vh;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-art);
  background-size: cover;
  background-position: center;
}

.hero-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .78) 35%, rgba(255, 255, 255, .25) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  width: 100%;
}

.hero--fullpage .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  text-align: center;
  z-index: 5;
}

.hero--fullpage .owl-dot span {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .25);
  margin: 0 4px;
  transition: all .25s;
  display: inline-block;
}

.hero--fullpage .owl-dot.active span {
  background: var(--om-accent);
  width: 48px;
}

.hero--fullpage~* .om-header,
body:has(.hero--fullpage) .om-header>.container {
  background: rgba(255, 255, 255, .96);
}

.hero-eyebrow {
  color: var(--om-accent);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--om-font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  line-height: 1.1;
  font-weight: 400;
}

.hero-sub {
  color: var(--om-muted);
  font-size: 1.0625rem;
  max-width: 540px;
}

.hero-art {
  background: linear-gradient(135deg, #ffd8b8, #ff7a4d 40%, #c93516);
  border-radius: 50%;
  filter: blur(0px);
  position: absolute;
  right: -120px;
  top: 40px;
  width: 720px;
  height: 720px;
  opacity: .85;
  z-index: -1;
  mask: radial-gradient(closest-side, #000 60%, transparent 100%);
}

/* ----- Image placeholders ------------------------------- */
.img-ph {
  background:
    repeating-linear-gradient(135deg, #ececec 0 14px, #f4f4f4 14px 28px);
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: #7a7a7a;
  font-size: .8125rem;
  text-align: center;
  padding: 16px;
  min-height: 180px;
}

.img-ph.dark {
  background: repeating-linear-gradient(135deg, #2a2a2a 0 14px, #1f1f1f 14px 28px);
  color: #aaa;
  border-color: #1a1a1a;
}

.img-ph.tall {
  aspect-ratio: 3 / 4;
}

.img-ph.wide {
  aspect-ratio: 16 / 9;
}

.img-ph.square {
  aspect-ratio: 1;
}

.img-ph.round {
  border-radius: 50%;
  aspect-ratio: 1;
}

/* ----- Trust slider (Home — center-active larger) ------- */
.trust-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.trust-section__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 50% 30%, rgba(252, 211, 77, .35), transparent 70%),
    radial-gradient(80% 60% at 90% 70%, rgba(255, 170, 60, .25), transparent 70%),
    linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  background-image:
    linear-gradient(180deg, rgba(255, 251, 235, .55), rgba(254, 243, 199, .7)),
    var(--trust-img, none);
  background-size: cover;
  background-position: center;
}

.trust-slider {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

.trust-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.trust-slider__nav.prev {
  left: -8px;
}

.trust-slider__nav.next {
  right: -8px;
}

.trust-owl .owl-stage {
  display: flex;
  align-items: center;
  padding: 24px 0;
}

.trust-owl .owl-item {
  transition: transform .45s ease, opacity .45s ease;
  opacity: .9;
}

.trust-owl .owl-item.center {
  transform: scale(1.2);
  opacity: 1;
  z-index: 2;
}

.trust-owl .cert-card {
  height: 100%;
  background: #fff;
}

.trust-slider__legacy {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 24px 0;
  scroll-padding: 0 calc(50% - (var(--trust-card, 320px) / 2));
}

.trust-slider__track::-webkit-scrollbar {
  display: none;
}

.trust-slide {
  flex: 0 0 var(--trust-card, 320px);
  scroll-snap-align: center;
  transition: transform .45s ease, opacity .35s ease;
  opacity: .85;
}

.trust-slide.is-center {
  transform: scale(1.08);
  opacity: 1;
}

.trust-slide .cert-card {
  height: 100%;
  background: #fff;
}

@media (max-width: 768px) {
  .trust-slider {
    --trust-card: 80%;
  }

  .trust-slide {
    transform: scale(.92);
  }
}

/* ----- Case slider (Home — 2.3 per row, snap) ----------- */
.case-slider,
.case-slider .owl-carousel,
.case-slider .owl-stage-outer {
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
}

.case-slider .case-swiper {
  padding-top: 5px;
}

.case-slider {
  position: relative;

}

.case-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 2.3);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.case-slider__track::-webkit-scrollbar {
  display: none;
}

.case-slide {
  scroll-snap-align: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-slide .case-card {
  height: 100%;
}

@media (max-width: 768px) {
  .case-slider__track {
    grid-auto-columns: 85%;
  }
}


.arrow-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* ----- Case tabs (desktop) ------------------------------ */
.case-tabs-wrap {
  display: flex;
  justify-content: center;
}

.case-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.case-tab {
  display: inline-flex;
  align-items: center;
  padding: 6px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--om-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}

.case-tab:last-child {
  border-right: none;
}

.case-tab:hover {
  color: var(--om-ink);
}

.case-tab.active {
  color: var(--om-accent);
  font-weight: 600;
}

.page-projects .section-sm {
  padding-bottom: 0;
}

.page-projects__hero-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-projects__title {
  font-size: clamp(1.875rem, 3.6vw, 2.5rem);
  text-transform: uppercase;
}

.case-card-desc {
  font-size: .875rem;
  color: var(--om-muted);
  line-height: 1.6;
  margin-top: 15px;
  flex: 1;
}

/* ----- Case filter mobile -------------------------------- */
.case-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--om-accent);
  background: #fff;
  color: var(--om-accent);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(239, 78, 35, .12);
  transition: background .15s, color .15s;
}

.case-filter-btn.is-open,
.case-filter-btn:hover {
  background: var(--om-accent);
  color: #fff;
}

.case-filter-chevron {
  margin-left: auto;
  transition: transform .2s;
}

.case-filter-chevron.is-open {
  transform: rotate(180deg);
}

.case-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--om-accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
}

.case-filter-btn.is-open .case-filter-badge,
.case-filter-btn:hover .case-filter-badge {
  background: #fff;
  color: var(--om-accent);
}

.case-filter-panel {
  margin-top: 8px;
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-md);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--om-shadow-md);
}

.case-filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--om-line);
  font-size: .9375rem;
  color: var(--om-ink);
  cursor: pointer;
  text-align: left;
  transition: background .12s;
}

.case-filter-option:last-child {
  border-bottom: none;
}

.case-filter-option:hover {
  background: #fafafa;
}

.case-filter-option.is-active {
  color: var(--om-accent);
  font-weight: 600;
}

/* ----- Logo marquee (full-bleed, auto-scroll) ----------- */
.logo-marquee {
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding: 28px 0;

}

.logo-marquee__track {
  display: flex;
  gap: 64px;
  /* animation removed — jquery.marquee handles scrolling */
}

.logo-marquee__item {
  flex: 0 0 auto;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-weight: 600;
  opacity: .85;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: opacity .25s ease, transform .25s ease, color .25s ease, filter .25s ease;
  filter: grayscale(1);
  padding: 0 30px;
}

.logo-marquee__item img {
  height: 100%;
  width: auto;
  display: block;
}

.logo-marquee__item .logo-text {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--om-ink);
  letter-spacing: -.01em;
  white-space: nowrap;
  padding: 0 8px;
}

.logo-marquee:hover .logo-marquee__item {
  opacity: .35;
  filter: grayscale(1);
}

.logo-marquee:hover .logo-marquee__item:hover {
  opacity: 1;
  color: var(--om-ink);
  filter: grayscale(0);
  transform: scale(1.12);
}

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

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
}

/* legacy grid (kept for other pages) */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--om-line);
  border-bottom: 1px solid var(--om-line);
}

.logo-strip .logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 600;
  opacity: .75;
  font-size: .9rem;
}

@media (max-width: 992px) {
  .logo-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Service cards (Home) — accordion hover ----------- */

.sc-tap-hint {
  display: none;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  transition: grid-template-columns .55s cubic-bezier(.4, 0, .2, 1);
}

.service-cards:hover {
  grid-template-columns: var(--cols, 1fr 1fr 1fr);
}

.service-cards:has(.service-card:nth-child(1):hover) {
  --cols: 2fr 1fr 1fr;
}

.service-cards:has(.service-card:nth-child(2):hover) {
  --cols: 1fr 2fr 1fr;
}

.service-cards:has(.service-card:nth-child(3):hover) {
  --cols: 1fr 1fr 2fr;
}

/* Default: 3 equal columns, only title shown */
.service-cards:not(:hover) {
  grid-template-columns: 1fr 1fr 1fr;
}

.service-card .service-card__body {
  z-index: 2;
}

@media (max-width: 992px) {

  .service-cards,
  .service-cards:not(:hover),
  .service-cards:hover {
    grid-template-columns: 1fr;
  }

  /* Mobile tap-to-expand */
  .service-card {
    min-height: 245px !important;
    height: 245px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-card.is-open {
    height: 90svh;
    padding-bottom: 40px;
  }

  .service-card__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    z-index: 2;
  }

  .service-card__head h3 {
    margin-bottom: 0;
    flex: 1;
  }

  /* Tap indicator — góc dưới phải */
  .sc-tap-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgb(225 96 21);
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.4s ease;
    animation: sc-pulse 2s ease-in-out infinite;
  }

  .service-card.is-open .sc-tap-hint {
    animation: none;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(180deg);
  }

  @keyframes sc-pulse {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
    }

    50% {
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
  }

  .service-card__body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease 0.05s;
    margin-top: 0;
  }

  .service-card.is-open::after {
    height: 100vh;
    background-color: #0000009c;
    background-image: none;
  }

  .service-card.is-open .service-card__body {
    max-height: 70vh;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 20%;
    z-index: 2;
  }

  /* Reset desktop hover CSS cho p và btn */
  .service-card p,
  .service-card .btn {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 0;
    transition: none !important;
  }
}


.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--om-r-lg);
  background: var(--om-ink);
  color: #fff;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  isolation: isolate;
  cursor: pointer;
  transition: transform .4s ease;
}

.service-card .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, .1) 0%, rgba(10, 10, 10, .55) 60%, rgba(10, 10, 10, .9) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(255, 140, 80, .4), transparent 60%),
    linear-gradient(180deg, #1a1a1a, #0a0a0a);
  transition: transform .55s ease, filter .4s ease;
}

.service-card .bg.brand {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, .1) 0%, rgba(10, 10, 10, .55) 60%, rgba(10, 10, 10, .9) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(255, 180, 80, .5), transparent 60%),
    linear-gradient(180deg, #1a1a1a, #050505);
}

.service-card .bg.perf {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, .1) 0%, rgba(10, 10, 10, .55) 60%, rgba(10, 10, 10, .9) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(255, 90, 40, .55), transparent 60%),
    linear-gradient(180deg, #1a1a1a, #060606);
}

/* When an asset image is set via inline style, layer it under the gradient */
.service-card .bg[style*="--img"] {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, .15) 0%, rgba(10, 10, 10, .55) 60%, rgba(10, 10, 10, .92) 100%),
    var(--img);
}

.service-card:hover .bg {
  transform: scale(1.05);
}

.service-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  z-index: 2;
}

.service-card p {
  z-index: 2;
  color: #d8d4ce;
  font-size: .9375rem;
  margin-bottom: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .35s ease, margin .5s ease;
}

.service-card .btn {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
  pointer-events: none;
}

/* Expanded state: only hovered card */
.service-card:hover p {
  max-height: 240px;
  z-index: 2;
  opacity: 1;
  margin-bottom: 20px;
}

.service-card:hover .btn {
  opacity: 1;
  z-index: 2;
  transform: none;
  pointer-events: auto;
}

/* ----- Case study cards --------------------------------- */
.case-heading-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.case-heading-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 0;
}

.case-view-all {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--om-accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

.case-view-all:hover {
  color: var(--om-ink);
}

.case-card {
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-lg);
  height: 100%;
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 280px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

a:hover .case-card,
.case-slide:hover .case-card {
  box-shadow: var(--om-shadow-md);
  transform: translateY(-4px);
  border-color: var(--om-accent);
}

a:hover .case-card-art img,
.case-slide:hover .case-card-art img {
  transform: scale(1.04);
}

.case-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card-body .brand {
  height: 30px;
  margin-bottom: 30px;
}

.case-card-body .brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.case-card-body .brand span {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.case-card-stats {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.case-card-stats .num {
  font-family: var(--om-font-display);
  font-size: 1.875rem;
  line-height: 1;
  color: var(--om-ink);
}

.case-card-stats .lbl {
  font-size: .8125rem;
  color: var(--om-muted);
}

.case-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
  color: #171717;
  border-color: #171717;
}

.case-card-body .btn:hover {
  background: var(--om-accent);
  border-color: var(--om-accent);
  color: #fff;
}

.case-card-art-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a, #171717);
}

.case-card-art {
  display: flex;
  align-items: stretch;
  padding: 12px 12px 12px 0;
  border-radius: 0 var(--om-r-lg) var(--om-r-lg) 0;
}

.case-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--om-r-lg) - 6px);
  overflow: hidden;
  transition: transform .35s ease;
  max-height: 360px;
}

@media (max-width: 991px) {
  .case-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .case-card-art {
    min-height: 220px;
    order: -1;
    border-radius: var(--om-r-lg) var(--om-r-lg) 0 0;
    padding: 12px 12px 0 12px;
  }
}

/* ----- Case slider (Owl) ------------------------------- */
.case-owl {
  overflow: visible;
}

.case-owl .owl-stage-outer {
  overflow: visible;
}

.case-owl .case-slide {
  text-decoration: none;
  display: block;
  height: 100%;
}

.case-owl .case-card {
  height: 100%;
}

/* ----- Trust certifications ----------------------------- */
.cert-card {
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--om-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.cert-card .badge-art {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  /* background: var(--om-bg-alt);
  border: 1px solid var(--om-line); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-card .badge-art span {
  font-family: monospace;
  font-size: .8125rem;
  color: var(--om-muted);
  padding: 0 8px;
  line-height: 1.4;
}

.cert-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--om-ink-soft, #444);
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cert-card {
    min-height: 280px;
    padding: 28px 20px;
  }

  .cert-card .badge-art {
    width: 96px;
    height: 96px;
  }
}

/* ----- News dark band + Owl ----------------------------- */
.news-band {
  position: relative;
  background: linear-gradient(180deg, #171717 0%, #171717 100%);
  border-top-right-radius: var(--om-r-xl);
  padding: 64px 0 56px;
  margin-top: -80px;
}

.news-band+.cta-band {
  margin-top: 0;
  border-radius: 0;
}

.cta-band+.om-footer {
  margin-top: 0;
}

.news-band+.cta-band+.om-footer {
  margin-top: 0;
}

/* Single dark band on pages without news-band: cta-band keeps rounded top */
.cta-band:first-of-type,
body:not(:has(.news-band)) .cta-band {
  /* border-radius: var(--om-r-xl) var(--om-r-xl) 0 0; */
}

.news-band .arrow-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
}

.news-band .arrow-btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
}

.news-owl {
  overflow: visible;
}

.news-owl .owl-stage-outer {
  overflow: visible;
}

.news-owl .owl-stage {
  display: flex;
}

.news-owl .owl-item {
  display: flex;
}

.news-owl .owl-item>a {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news-card--dark {
  background: #fff;
  border: 0;
  border-radius: var(--om-r-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card--dark .body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card--dark .thumb {
  aspect-ratio: 16/10;
  padding: 8px 8px 0;
}

.news-card--dark .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--om-r-sm);
}

.news-card--dark .tag {
  font-size: .75rem;
  color: var(--om-muted);
  display: block;
  margin-bottom: 6px;
}

.news-card--dark h4 {
  font-size: .95rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--om-ink);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card--dark .read-more {
  font-size: .8125rem;
  color: var(--om-ink);
  margin-top: auto;
}

.news-swiper .swiper-wrapper {
  align-items: stretch;
}

.news-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.news-swiper .swiper-slide>.news-card--dark {
  flex: 1;
  height: auto !important;
}

.news-swiper .news-card--dark .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
  height: auto !important;
}

.news-swiper .news-card--dark .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-swiper .news-card--dark h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----- CTA band: when adjacent to news-band, drop top corners ----- */
.cta-band {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* ----- CTA / Newsletter --------------------------------- */
.cta-band {
  position: relative;
  background: url('../images/bg/dark-mountain.png');
  color: #fff;
  padding: 96px 0 80px;
  overflow: hidden;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  height: 500px;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.cta-band>* {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-band p {
  color: rgba(255, 255, 255, .7);
}

.cta-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: #4b4b4b;
  border: none;
  border-radius: 999px;
  padding: 6px 6px 6px 12px;
  max-width: 760px;
  margin: 0 auto;
}

.cta-form input,
.cta-form select {
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  flex: 1;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 999px;
}

.cta-form input:invalid:not(:placeholder-shown) {
  box-shadow: 0 0 0 2px #ef4444;
  outline: none;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, .6);
}

.cta-form select {
  color: rgba(255, 255, 255, .6);
  appearance: none;
  -webkit-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='rgba(255, 255, 255, 0.6)' 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 20px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.cta-form select option {
  background: #4b4b4b;
  color: #fff;
}

.cta-form .divider {
  margin: 0 4px;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cta-form {
    flex-direction: column;
    border-radius: var(--om-r-lg);
    padding: 8px;
    gap: 8px;
    background: transparent;
    border: none;
  }

  .cta-form input,
  .cta-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
  }

  .cta-form input:focus,
  .cta-form select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
  }

  .cta-form .divider {
    display: none;
  }

  .cta-form .btn {
    width: 100%;
    padding: 14px;
  }
}

/* ----- News cards --------------------------------------- */
.news-card {
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--om-shadow-md);
}

.news-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--om-r-lg);
  margin: 0;
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}

.news-card:hover .thumb img {
  transform: scale(1.06);
}

.news-card .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-card .tag {
  font-size: .75rem;
  color: var(--om-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.news-card h4 {
  font-family: var(--om-font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--om-ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.news-card .read-more {
  margin-top: auto;
  font-size: .8125rem;
  color: var(--om-ink);
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.news-card .read-more svg {
  flex-shrink: 0;
}

.news-card .read-more:hover {
  color: var(--om-accent);
}

@media (max-width: 768px) {
  .cta-band {
    height: auto;
    padding: 10px 5px;
  }
}

/* ----- Footer ------------------------------------------- */
.om-footer {
  background: linear-gradient(180deg, #171717 0%, #171717 100%);
  color: #c8c5c0;
  border-radius: 0;
  padding: 80px 0 32px;
  margin-top: -1px;
}

.om-footer h5 {
  color: #fff;
  font-family: var(--om-font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 20px;
}

.om-footer a {
  color: #c8c5c0;
  text-decoration: none;
}

.om-footer a:hover {
  color: #fff;
}

.om-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.om-footer .footer-logo {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.om-footer .logo-tag {
  border-left: 2px solid var(--om-accent);
  font-family: var(--om-font-display);
  padding-left: 30px;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .om-footer {
    padding: 30px 15px;
  }

  .om-footer .footer-logo {
    max-height: 60px;
  }

  .om-footer .logo-tag {
    font-size: 1.5rem;
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .footer-brand-row .col-md-7 {
    text-align: center;
  }
}

.om-footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8125rem;
  color: #888;
}

.om-footer-bot a {
  color: #888;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c8c5c0;
}

.social-row a:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

/* ----- Stat blocks -------------------------------------- */
.stat-block {
  text-align: center;
  padding: 20px 0;
}

.stat-block .num {
  font-family: var(--om-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--om-ink);
}

.stat-block .lbl {
  color: var(--om-muted);
  margin-top: 8px;
  font-size: .9375rem;
}

/* ----- Hero dark card (Careers, Job detail) ------------- */
.hero-darkcard {
  position: relative;
  border-radius: var(--om-r-lg);
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-darkcard__bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 45%;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
}

/* gradient chéo: đen đặc bên trái → cam mờ giữa → transparent bên phải */
.hero-darkcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #171717 54%, rgba(239, 78, 35, 0.4) 72%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-darkcard__body {
  position: relative;
  z-index: 2;
  padding: 56px 52px;
  max-width: 52%;
}

.hero-darkcard h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  margin-bottom: 16px;
}

.hero-darkcard p {
  color: rgba(255, 255, 255, .75);
  margin: 0;
}

/* detail variant — tiêu đề vị trí + meta row */
.hero-darkcard--detail .hero-darkcard__body {
  max-width: 65%;
}

.hero-darkcard__breadcrumb {
  position: absolute;
  top: calc(56px - 15px);
  left: 52px;
  z-index: 2;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumb-list li+li::before {
  content: '/';
  margin-right: 4px;
  color: rgba(255, 255, 255, .3);
}

.breadcrumb-list a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: #fff;
}

.breadcrumb-list li:last-child {
  color: rgba(255, 255, 255, .85);
}

.hero-darkcard--detail h1 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 20px;
}

.hero-darkcard__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 4px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  color: rgba(255, 255, 255, .9);
}

.hero-meta-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: .7;
}

@media (max-width: 768px) {
  .hero-darkcard--detail .hero-darkcard__body {
    max-width: 100%;
  }

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

  .hero-darkcard__breadcrumb {
    top: calc(28px - 15px);
    left: 24px;
  }
}

.page-recruitment .box-content-recruiment {
  padding: 0 100px;
}

@media (max-width: 991px) {
  .page-recruitment .box-content-recruiment {
    padding: 0 15px;
  }
}

@media (max-width: 575.98px) {
  .page-recruitment .box-content-recruiment {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .hero-darkcard {
    flex-direction: column;
    min-height: unset;
    align-items: stretch;
  }

  /* ảnh full width, chiều cao cố định, position lại về normal flow */
  .hero-darkcard__bg {
    position: relative;
    display: block;
    width: 100%;
    left: 0;
    height: 200px;
    object-fit: cover;
    object-position: center;
  }

  /* tắt gradient desktop */
  .hero-darkcard::after {
    display: none;
  }

  /* text dưới, nền đen */
  .hero-darkcard__body {
    max-width: 100%;
    padding: 28px 24px 32px;
    background: #171717;
  }
}

/* ----- Job listing -------------------------------------- */
.filter-group {
  margin-bottom: 32px;
}

.filter-group h6 {
  font-weight: 700;
  margin-bottom: 12px;
}

.filter-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
}

.filter-group__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-count {
  font-size: .72rem;
  font-weight: 500;
  color: var(--om-accent);
  background: rgba(239, 78, 35, .08);
  padding: 2px 8px;
  border-radius: 999px;
}

.filter-arrow {
  display: none;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.filter-arrow.is-open {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .filter-group__head {
    cursor: pointer;
    padding: 14px 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--om-line);
  }

  .filter-arrow {
    display: block;
  }

  .filter-group {
    margin-bottom: 0;
  }

  .filter-group>div {
    padding: 12px 0 4px;
  }
}

.form-check-input:checked {
  background-color: var(--om-accent);
  border-color: var(--om-accent);
}

.form-check-input:focus {
  box-shadow: 0 0 0 .2rem rgba(239, 78, 35, .2);
  border-color: var(--om-accent);
}

.job-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  margin-bottom: 25px;
  text-decoration: none;
  color: inherit;
}

.job-card:hover {
  border-color: var(--om-accent);
  box-shadow: var(--om-shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.job-card__main {
  flex: 1;
  min-width: 0;
}

.job-card h3 {
  font-family: var(--om-font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--om-ink);
}

.job-card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--om-muted);
  font-size: .8125rem;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.job-card .meta .sep {
  color: var(--om-line-2);
}

.job-card__dates {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.job-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: #94a3b8;
}

.job-date--deadline {
  color: #16a34a;
}

.job-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.job-card .salary {
  font-size: .875rem;
  font-weight: 600;
  color: var(--om-ink);
  white-space: nowrap;
  text-align: right;
}

.job-card .salary::before {
  content: 'Mức lương';
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: var(--om-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}

/* ---- expired ---- */
.job-card--expired {
  background: #fafafa;
}

.job-card--expired:hover {
  border-color: var(--om-line);
  box-shadow: none;
  transform: none;
}

.job-card--expired h3,
.job-card--expired .salary {
  color: #9ca3af;
}

.job-card--expired .meta,
.job-card--expired .job-date {
  color: #c4cdd6;
}

/* badge Hot */
.job-card__hot {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--om-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.6;
  z-index: 1;
}

@media (max-width: 768px) {
  .job-card__hot {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }
}

/* ribbon chéo góc trên phải */
.job-card--expired::before {
  content: 'Hết hạn';
  position: absolute;
  top: 14px;
  right: -28px;
  width: 110px;
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: #9ca3af;
  padding: 4px 0;
  transform: rotate(45deg);
  transform-origin: center;
  pointer-events: none;
}

/* ---- mobile ---- */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
    gap: 0;
  }

  .job-card__main {
    margin-bottom: 12px;
  }

  .job-card__action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--om-line);
  }

  .job-card .salary {
    text-align: left;
  }

  .job-card .salary::before {
    text-align: left;
  }

  .job-card h3 {
    font-size: .9375rem;
  }

  .job-card .meta {
    font-size: .75rem;
    gap: 6px;
  }

  .job-card__dates {
    gap: 12px;
  }

  .job-card .btn {
    font-size: .8125rem;
    padding: 7px 14px;
  }
}

/* ----- Section heading with accent underline ----------- */
.section-heading-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-heading-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--om-accent, #f97316);
}

/* ----- Case detail hero --------------------------------- */
.case-detail-hero {
  padding: 32px 0 48px;
}

.detail-project {
  padding: 0 50px;
}

.case-detail-hero .case-detail-info {
  background: #F8F8F8;
  border-radius: var(--om-r-lg);
  padding: 30px 60px;
}

.case-detail-hero .breadcrumb-list {
  margin-bottom: 20px;
}

.case-detail-hero .breadcrumb-list li {
  color: var(--om-muted);
}

.case-detail-hero .breadcrumb-list a {
  color: var(--om-muted);
}

.case-detail-hero .breadcrumb-list a:hover {
  color: var(--om-accent);
}

.case-detail-hero .breadcrumb-list li:last-child {
  color: var(--om-ink);
}

.case-detail-hero .breadcrumb-list li+li::before {
  content: '›';
  color: var(--om-muted);
  margin-right: 4px;
}

.case-detail-hero__title {
  font-family: var(--om-font-body);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--om-ink);
  margin-bottom: 32px;
}

.case-detail-hero__metrics {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.case-detail-hero__metric-num {
  font-family: var(--om-font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--om-ink);
  margin-bottom: 6px;
}

.case-detail-hero__metric-lbl {
  font-size: .8125rem;
  color: var(--om-muted);
}

.case-detail-hero__img {
  border-radius: var(--om-r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.case-detail-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 380px;
}

@media (min-width: 992px) {
  .case-detail-hero__img {
    aspect-ratio: unset;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .case-detail-hero {
    padding: 24px 0 36px;
  }

  .case-detail-hero .case-detail-info {
    padding: 28px 24px 36px;
  }

  .case-detail-hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .case-detail-hero__metric-num {
    font-size: 1.5rem;
  }


  .detail-project {
    padding: 0 15px;
  }

}

/* ----- Case detail / Job detail body -------------------- */
.detail-body h2 {
  font-family: var(--om-font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--om-ink);
}

.detail-body h2:first-child {
  margin-top: 0;
}

.detail-body ul {
  padding-left: 20px;
}

.detail-body li {
  line-height: 1.7;
  margin-bottom: 8px;
}

.detail-body p {
  line-height: 1.7;
}

/* Sidebar */
.detail-sidebar {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 575.98px) {
  .detail-sidebar {
    padding: 10px 5px;
    border-radius: var(--om-r-sm);
  }
}

.detail-sidebar-col {
  align-self: flex-start;
}

.detail-sidebar--expired::before {
  content: 'Hết hạn';
  position: absolute;
  top: 18px;
  right: -30px;
  width: 120px;
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: #9ca3af;
  padding: 4px 0;
  transform: rotate(45deg);
  pointer-events: none;
}

.detail-sidebar .meta-row {
  margin-bottom: 20px;
}

.detail-sidebar .meta-row strong {
  display: block;
  font-size: .9375rem;
  color: var(--om-ink);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.detail-sidebar .meta-row p {
  margin: 0;
  font-size: .9375rem;
  color: var(--om-ink);
}

/* Apply section (job detail) — prominent card */
.apply-section {
  margin-top: 3rem;
  background: var(--om-bg-dark);
  border-radius: var(--om-r-lg);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .apply-section {
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: var(--om-r-md);
    margin-top: 2rem;
  }
}

.apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 10%, rgba(239, 78, 35, .18) 0%, transparent 70%);
  pointer-events: none;
}

.apply-section__head {
  margin-bottom: 1.75rem;
}

.apply-section__title {
  font-family: var(--om-font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .4rem;
}

@media (max-width: 575.98px) {
  .apply-section__title {
    font-size: 1.2rem;
  }
}

.apply-section__sub {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  margin: 0;
}

.apply-form .form-label {
  font-weight: 500;
  font-size: .875rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: .375rem;
}

.apply-form .form-label .text-danger {
  color: var(--om-accent) !important;
}

.apply-form .form-control {
  font-size: .9375rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 8px;
}

.apply-form .form-control::placeholder {
  color: rgba(255, 255, 255, .3);
}

.apply-form .form-control:focus {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(239, 78, 35, .6);
  box-shadow: 0 0 0 3px rgba(239, 78, 35, .15);
  color: #fff;
}

.apply-form .form-control.is-invalid {
  border-color: #f87171;
  background: rgba(248, 113, 113, .08);
}

.apply-form .invalid-feedback {
  color: #fca5a5;
  font-size: .8125rem;
}

.apply-form__file {
  cursor: pointer;
}

.apply-form__btn-submit {
  background: #1f2937;
  border-color: #374151;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding-left: 2rem;
  padding-right: 2rem;
}

.apply-form__btn-submit:hover,
.apply-form__btn-submit:focus {
  background: #111827;
  border-color: #1f2937;
  color: #fff;
}

@media (max-width: 575.98px) {
  .apply-form__btn-submit {
    width: 100%;
  }
}

/* Apply success state */
.apply-success {
  text-align: center;
  padding: 2rem 1rem;
}

.apply-success__icon {
  width: 72px;
  height: 72px;
  background: rgba(34, 197, 94, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #4ade80;
}

.apply-success h3 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.apply-success p {
  color: rgba(255, 255, 255, .65);
  font-size: .9375rem;
  margin: 0;
}

/* Expired job notice */
.apply-section--expired {
  background: rgba(15, 15, 15, .85);
  border: 1px solid rgba(255, 255, 255, .08);
}

.apply-expired {
  text-align: center;
  padding: 1rem .5rem;
}

.apply-expired__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, .45);
}

.apply-expired h3 {
  color: rgba(255, 255, 255, .85);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.apply-expired p {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  margin: 0;
}

/* Ensure card height chain: col > a > .case-card > .case-card-body */
#projectsGrid>.col-md-6,
#relatedProjectsRow>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

#projectsGrid>.col-md-6>a,
#relatedProjectsRow>[class*="col-"]>a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Project detail page */
.page-project-detail__related-title {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  text-align: center;
  margin-bottom: 2rem;
}

.case-detail-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--om-bg-alt), var(--om-line));
  border-radius: var(--om-r-lg);
}

.detail-sidebar__logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.detail-sidebar__divider {
  border: none;
  border-top: 1px solid var(--om-line);
  margin: 24px 0;
}

.detail-sidebar__label {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--om-ink);
  margin-bottom: 12px;
}

.detail-sidebar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* Sidebar extras */
.detail-sidebar__title {
  font-family: var(--om-font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.job-days-left {
  display: inline-block;
  font-size: .75rem;
  background: rgba(239, 78, 35, .1);
  color: var(--om-accent);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
  font-weight: 600;
}

/* Result chips (case detail) */
.result-chip {
  background: linear-gradient(135deg, var(--om-accent) 0%, var(--om-accent-2) 100%);
  color: #fff;
  border-radius: var(--om-r-md);
  padding: 24px;
  text-align: left;
}

.result-chip .num {
  font-family: var(--om-font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.result-chip .lbl {
  font-size: .875rem;
  opacity: .9;
  margin-top: 6px;
}

/* Breadcrumb */
.crumb {
  font-size: .875rem;
  color: var(--om-muted);
  margin-bottom: 12px;
}

.crumb a {
  color: var(--om-muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--om-accent);
}

/* News tabs */
.news-tabs-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.news-tabs-arrow {
  display: none;
}

.news-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.news-tabs .chip {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .news-tabs-wrap {
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
  }

  .news-tabs-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--om-line);
    background: #fff;
    color: var(--om-ink);
    cursor: pointer;
    transition: border-color .15s, color .15s;
  }

  .news-tabs-arrow:hover {
    border-color: var(--om-accent);
    color: var(--om-accent);
  }

  .news-tabs {
    flex: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    justify-content: flex-start;
  }

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

/* Topics section */
.topics-label {
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--om-muted);
  text-align: center;
  margin-bottom: 40px;
}

.topics-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.topics-wrap .chip {
  margin: 0;
}

/* Tag chips */
.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .875rem;
  background: #fff;
  border: 1px solid var(--om-line);
  color: var(--om-ink);
  text-decoration: none;
  margin: 4px;
}

.chip:hover,
.chip.active {
  border-color: var(--om-accent);
  color: var(--om-accent);
}

/* ----- Forms -------------------------------------------- */
.form-control,
.form-select {
  border-radius: var(--om-r-sm);
  border-color: var(--om-line);
  padding: .7rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--om-accent);
  box-shadow: 0 0 0 .25rem rgba(239, 78, 35, .12);
}

.form-label {
  font-weight: 500;
  font-size: .9375rem;
}

/* ----- About: values, team, gallery --------------------- */
.value-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--om-r-md);
  aspect-ratio: 1;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.value-tile .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--om-ink);
}

.value-tile span {
  position: relative;
  font-weight: 600;
  color: #fff;
  font-size: 1.0625rem;
}

.value-tile.t1 .bg {
  background: linear-gradient(135deg, #0c4a6e, #0369a1);
}

.value-tile.t2 .bg {
  background: linear-gradient(135deg, #1f2937, #374151);
}

.value-tile.t3 .bg {
  background: linear-gradient(135deg, #0e7490, #0891b2);
}

.value-tile.t4 .bg {
  background: linear-gradient(135deg, #7c2d12, #9a3412);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--om-bg-alt);
  border: 1px solid var(--om-line);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.team-name {
  text-align: center;
  font-weight: 600;
  font-size: .9375rem;
}

.team-role {
  text-align: center;
  font-size: .8125rem;
  color: var(--om-muted);
}

/* ----- About: hero video -------------------------------- */
.about-hero {
  padding-top: 56px;
}

.about-hero__head {
  margin-bottom: 36px;
}

.about-hero__title {
  font-family: var(--om-font-display, var(--om-font, inherit));
  font-weight: 700;
  font-size: clamp(1.625rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--om-ink);
}

.about-hero__lead {
  color: var(--om-muted);
  font-size: .9375rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

.about-video {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #d9d9d9 var(--vid, none) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(90deg, #ff7a3d, #f04e23);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(240, 78, 35, .35);
  transition: transform .2s;
}

.about-video__play:hover {
  transform: scale(1.06);
}

.about-video__play svg {
  margin-left: 3px;
}

/* ----- About: section headings -------------------------- */
.about-section__title {
  font-family: var(--om-font-display, var(--om-font, inherit));
  font-weight: 700;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--om-ink);
}

.about-section__lead {
  color: var(--om-muted);
  font-size: .9375rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

.about-story__title {
  font-family: var(--om-font-display, var(--om-font, inherit));
  font-weight: 700;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  margin-bottom: 22px;
}

.about-story__p {
  color: var(--om-muted);
  font-size: .9375rem;
  line-height: 1.75;
  margin: 0;
}

/* ----- Values band (dark) ------------------------------- */
.values-band {
  background: #0a0a0a;
  color: #fff;
  padding: 64px 0 72px;
}

.values-band__title {
  font-family: var(--om-font-display, var(--om-font, inherit));
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  margin-bottom: 32px;
}

.values-band__grid {
  justify-content: center;
}

.value-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .55) 100%),
    var(--img, linear-gradient(135deg, #1a1a1a, #3a3a3a)) center/cover no-repeat;
  transition: transform .35s ease;
}

.value-tile:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .value-tile {
    min-height: 150px;
  }
}

/* ----- Team grid (3×3 with center feature) -------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 56px;
  max-width: 820px;
  margin: 0 auto;
}

.team-cell {
  text-align: center;
}

.team-cell .team-avatar {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
  background-color: #e6e6e6;
}

.team-cell--feature .team-avatar {
  max-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

@media (max-width: 576px) {
  .team-grid {
    gap: 18px 16px;
  }

  .team-cell .team-avatar {
    max-width: 100px;
  }
}

/* ----- Community grid (4×2 mosaic) ---------------------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.community-tile {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .0) 60%, rgba(0, 0, 0, .1) 100%),
    var(--img, linear-gradient(135deg, #e8d9c7, #c9b08c)) center/cover no-repeat;
}

.community-tile:nth-child(2),
.community-tile:nth-child(5) {
  aspect-ratio: 4/3;
}

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

/* ----- Trust section (about variant) -------------------- */
.trust-section {
  position: relative;
  padding: 64px 0;
}

.trust-section__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(255, 205, 140, .45), transparent 70%),
    linear-gradient(180deg, #fffaf0, #fff7e6);
}

.trust-section__title {
  font-family: var(--om-font-display, var(--om-font, inherit));
  font-weight: 700;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  margin-bottom: 8px;
}

/* ----- Office cards ------------------------------------- */
.office-card {
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.office-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(217, 119, 87, .55), rgba(217, 119, 87, .25)),
    var(--img, linear-gradient(135deg, #3a2a22, #1c1410)) center/cover no-repeat;
  margin-bottom: 18px;
  overflow: hidden;
}

.office-card__img .img-ph-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-family: var(--om-mono, ui-monospace, monospace);
  font-size: .8125rem;
  letter-spacing: .04em;
  pointer-events: none;
}

.office-card__img:has(> img) .img-ph-text,
.office-card__img[style*="url("] .img-ph-text {
  display: none;
}

.office-card__name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--om-ink);
}

.office-card__addr {
  font-size: .9375rem;
  color: var(--om-muted);
  margin-bottom: 8px;
  line-height: 1.55;
}

.office-card__email {
  display: block;
  font-size: .9375rem;
  color: var(--om-ink);
  text-decoration: none;
  margin-bottom: 4px;
}

.office-card__email:hover {
  color: var(--om-accent);
}

.office-card__hotline {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--om-accent);
  text-decoration: none;
}

.office-card__hotline:hover {
  text-decoration: underline;
}

.offices__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 6px;
}

.offices__lead {
  color: var(--om-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ----- Contact page top --------------------------------- */
.contact-top {
  padding-top: 64px;
}

.contact-top__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--om-ink);
}

.contact-top__lead {
  font-size: 1rem;
  color: var(--om-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-eco {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.contact-eco__item {
  display: inline-flex;
  align-items: center;
  height: 44px;
  transition: transform .25s ease;
}

.contact-eco__item:hover {
  transform: translateY(-2px);
}

.contact-eco__item img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* fallback text: ẩn khi ảnh load OK, hiện khi ảnh lỗi */
.contact-eco__item .logo-fallback {
  display: none;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--om-ink);
  letter-spacing: -.01em;
}

.contact-eco__item img.eco-img--error {
  display: none;
}

.contact-eco__item img.eco-img--error~.logo-fallback {
  display: inline;
}

/* màu riêng từng brand */
.contact-eco__item--fantastic .logo-fallback {
  color: #22b573;
}

.contact-eco__item--caduvia .logo-fallback {
  color: #1dc6c2;
}

.contact-eco__divider {
  width: 1px;
  height: 28px;
  background: var(--om-line);
}

.contact-divider {
  border: 0;
  border-top: 1px solid var(--om-line);
  margin: 28px 0 22px;
}

.contact-trust {
  font-size: .9375rem;
  color: var(--om-ink);
  margin-bottom: 18px;
}

.contact-trust strong {
  color: var(--om-accent);
  font-weight: 700;
}

.contact-brands {
  overflow: hidden;
  height: 48px;
}

.contact-brands .swiper-wrapper {
  align-items: center;
}

.contact-brands__row {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 48px;
}

.contact-brands img {
  height: 35px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
  transition: filter .2s, opacity .2s, transform .2s;
}

.contact-brands img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ----- Contact form card -------------------------------- */
.contact-form {
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(20, 20, 40, .04), 0 8px 28px rgba(20, 20, 40, .06);
}

.contact-form__title {
  font-family: var(--om-font-display, var(--om-font, inherit));
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--om-ink);
}

.contact-input {
  border: 1.5px solid #e2e6ea;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .9375rem;
  background: #fff;
  color: var(--om-ink);
  box-shadow: none !important;
  transition: border-color .18s, box-shadow .18s;
}

.contact-input:focus {
  outline: 0;
  border-color: var(--om-accent);
  background: #fff;
}

.contact-input--error {
  border-color: #f04e23 !important;
  background: #fff8f6;
}

.contact-input::placeholder {
  color: #98a0ab;
}

.contact-input--area {
  resize: vertical;
  min-height: 120px;
}

.contact-form__error {
  color: var(--om-accent);
  font-size: .8125rem;
  margin: -4px 0 0;
}

.contact-form__success {
  background: #edfaf3;
  border: 1px solid #6dcf9e;
  color: #1a7a4a;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8125rem;
  color: var(--om-muted);
  line-height: 1.55;
  cursor: pointer;
}

.contact-check input {
  margin-top: 3px;
  accent-color: var(--om-accent);
}

.contact-form__privacy {
  font-size: .75rem;
  color: var(--om-muted);
  line-height: 1.55;
  margin: 0;
}

.contact-form__privacy a {
  color: var(--om-muted);
  text-decoration: underline;
}

.contact-form__submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #ff7a3d 0%, #f04e23 100%);
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, filter .2s;
  box-shadow: 0 8px 24px rgba(240, 78, 35, .28);
}

.contact-form__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.contact-form__submit:disabled {
  opacity: .8;
  cursor: default;
  transform: none;
}

@media (prefers-color-scheme: dark) {
  .contact-input {
    background: #1e2028;
    border-color: #3a3d4a;
    color: #e8eaf0;
  }

  .contact-input:focus {
    background: #1e2028;
    border-color: var(--om-accent);
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .contact-eco {
    gap: 18px;
  }

  .contact-brands {
    height: 40px;
  }

  .contact-brands__row {
    height: 40px !important;
    gap: 22px;
  }

  .contact-brands img {
    height: 22px;
  }
}

/* ----- Solution detail layout --------------------------- */
.solution-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 var(--om-r-xl) var(--om-r-xl);
  isolation: isolate;
}

.solution-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 120, 40, .25), transparent 55%),
    linear-gradient(180deg, #0d0d0f 0%, #1a1110 70%, #2a1410 100%);
}

.solution-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/bg/dark-mountain.png') center/cover no-repeat;
  opacity: .18;
  mix-blend-mode: screen;
}

.solution-hero__inner {
  padding: 140px 0 64px;
}

.solution-hero__crumb {
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 14px;
}

.solution-hero__crumb a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
}

.solution-hero__crumb a:hover {
  color: var(--om-accent);
}

.solution-hero__crumb span {
  margin: 0 6px;
}

.solution-hero__title {
  font-family: "Red Rose", serif;
  font-weight: 600;
  line-height: 1.18;
  font-size: clamp(1.65rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.solution-hero__lead {
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
  margin-bottom: 28px;
}

.solution-hero__partners-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}

.solution-hero__partners {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.solution-hero__partners .logo-text {
  color: #fff;
  opacity: .85;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .9rem;
}

.solution-hero__art {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
  background:
    var(--img, none) center/cover no-repeat,
    radial-gradient(circle at 50% 50%, rgba(255, 140, 50, .55), rgba(40, 15, 5, .95));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.solution-hero__art .img-ph-text {
  color: rgba(255, 255, 255, .5);
  font: 500 .8rem ui-monospace, monospace;
  padding: 12px;
}

@media (max-width: 991.98px) {
  .solution-hero__inner {
    padding: 40px 0 44px;
  }
}

/* Section heading */
.sol-section__title {
  font-family: "Red Rose", serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

.sol-section__lead {
  color: var(--om-fg-muted);
  line-height: 1.6;
}

/* Challenge cards */
.challenge-card {
  position: relative;
  background: #0e0e10;
  color: #fff;
  border-radius: 18px;
  padding: 28px 28px;
  min-height: 170px;
  overflow: hidden;
}

.challenge-card::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 120, 40, .18), transparent 65%);
  pointer-events: none;
}

.challenge-card__title {
  color: var(--om-accent);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.challenge-card p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

/* Process diagram */
.process-diagram {
  margin-top: 28px;
}

.process-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 18px;
}

.process-row:nth-child(2) {
  grid-template-columns: 1fr 2fr;
}

.process-group {
  background: #faf3ee;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #f1dcc7;
}

.process-group__title {
  font-weight: 600;
  font-size: .92rem;
  color: #2a1a10;
  margin-bottom: 12px;
}

.process-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.process-tile {
  background: #fff;
  border: 1px solid #eadbcc;
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: #6b4a32;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.process-list--two {
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}

.process-list li {
  background: #fff;
  border: 1px solid #eadbcc;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .8rem;
  color: #2a1a10;
}

@media (max-width: 768px) {

  .process-row,
  .process-row:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .process-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Results dark band */
.results-band {
  background: #0d0d0f;
  color: #fff;
  padding: 64px 0;
  position: relative;
}

.results-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/bg/dark-mountain.png') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}

.results-band>.container {
  position: relative;
}

.results-band__title {
  color: var(--om-accent);
  font-family: "Red Rose", serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 30px;
}

.result-card {
  background: #18181c;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-card__icon {
  font-size: 1.6rem;
  opacity: .85;
}

.result-card__num {
  font-family: "Red Rose", serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.1;
}

.result-card__lbl {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  line-height: 1.5;
}

/* ----- Solution detail: missing variants ---------------- */

/* Section header (centered block) */
.sol-section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}

/* Partner logos in hero */
.sol-hero-partner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: .8;
  filter: brightness(0) invert(1);
  transition: opacity .25s;
}

.sol-hero-partner-logo:hover {
  opacity: 1;
}

/* Process list icon variant (bullet dot style) */
.process-list--icons li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-list--icons li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--om-accent);
  flex-shrink: 0;
}

/* Wide process group spanning two columns on large screens */
.process-group--wide {
  grid-column: span 1;
}

/* Rich CKEditor content on solution pages */
.sol-rich-content {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.75;
  color: var(--om-ink);
}

.sol-rich-content h2,
.sol-rich-content h3 {
  font-family: "Red Rose", serif;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.sol-rich-content p {
  margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
  .sol-hero-partner-logo {
    height: 22px;
  }
}

/* ----- Tags / utilities --------------------------------- */
.text-accent {
  color: var(--om-accent) !important;
}

.bg-accent {
  background: var(--om-accent) !important;
  color: #fff;
}

.bg-soft {
  background: var(--om-bg-alt) !important;
}

.rounded-xl {
  border-radius: var(--om-r-xl) !important;
}

.rounded-lg {
  border-radius: var(--om-r-lg) !important;
}

.divider {
  height: 1px;
  background: var(--om-line);
  margin: 24px 0;
}

/* ----- Carousel arrow buttons --------------------------- */
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--om-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--om-ink);
}

.arrow-btn:hover {
  border-color: var(--om-accent);
  color: var(--om-accent);
}

/* ----- Anchored alpine x-cloak -------------------------- */
[x-cloak] {
  display: none !important;
}

/* =========================================================
   MOBILE HAMBURGER TOGGLE
   ========================================================= */
.mob-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mob-toggle__bar {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--om-ink);
  border-radius: 2px;
  transition: background 0.2s;
}

.mob-toggle__bar::before,
.mob-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--om-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s;
}

.mob-toggle__bar::before {
  top: -7px;
}

.mob-toggle__bar::after {
  top: 7px;
}

.mob-toggle__bar.open {
  background: transparent;
}

.mob-toggle__bar.open::before {
  top: 0;
  transform: rotate(45deg);
}

.mob-toggle__bar.open::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.mob-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 32px rgba(0, 0, 0, .12);
}

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

.mob-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1049;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mob-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.mob-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--om-line);
  flex-shrink: 0;
}

.mob-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
}

.mob-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--om-ink);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s, background 0.15s;
  border-bottom: 1px solid var(--om-line);
}

.mob-nav__link:last-child {
  border-bottom: none;
}

.mob-nav__link:hover,
.mob-nav__link:focus {
  color: var(--om-accent);
  background: #fafafa;
}

.mob-nav__link.active {
  color: var(--om-accent);
}

.mob-nav__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--om-text);
}

.mob-nav__chevron.rotated {
  transform: rotate(180deg);
}

/* Accordion sub-menu */
.mob-nav__group {
  border-bottom: 1px solid var(--om-line);
}

.mob-nav__group .mob-nav__link--toggle {
  border-bottom: none;
}

.mob-nav__sub {
  background: #f8f8f7;
  overflow: hidden;
}

.mob-nav__sub-section {
  padding: 8px 0;
  border-bottom: 1px solid var(--om-line);
}

.mob-nav__sub-section:last-child {
  border-bottom: none;
}

.mob-nav__sub-heading {
  display: block;
  padding: 8px 24px 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--om-text);
}

.mob-nav__sub a {
  display: block;
  padding: 10px 24px;
  font-size: 0.9375rem;
  color: var(--om-ink);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.mob-nav__sub a:hover {
  color: var(--om-accent);
  background: #f0f0ee;
}

.mob-nav__sub a.active {
  color: var(--om-accent);
  background: #f0f0ee;
}

/* Alpine transition helpers */
.mob-sub-enter {
  transition: max-height 0.3s ease, opacity 0.25s ease;
  overflow: hidden;
}

.mob-sub-enter-start {
  max-height: 0;
  opacity: 0;
}

.mob-sub-enter-end {
  max-height: 600px;
  opacity: 1;
}

/* Footer CTA inside drawer */
.mob-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--om-line);
  margin-top: auto;
}

/* ---- Scroll to top button ---- */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  color: var(--om-accent);
  border: 1.5px solid rgba(249, 115, 22, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  background: var(--om-accent);
  color: #fff;
  border-color: var(--om-accent);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}


.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  height: 200px;
  background: linear-gradient(180deg,
      rgba(23, 23, 23, 1) 0%,
      rgba(23, 23, 23, 0) 100%);

}

.cta-band::after {
  z-index: 0;
  inset: 0;
  pointer-events: none;
  bottom: 0;
  right: 0;
  border: 0;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 100px;
  background-image: linear-gradient(rgba(23, 23, 23, 0) 0%, rgb(23, 23, 23) 100%);
}

.service-card::after {
  height: 90px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  inset: 0;
  z-index: 0;
  /* background: #000; */
  content: "";
  background-image: linear-gradient(rgba(23, 23, 23, 0) 0%, rgb(23, 23, 23) 50%);
  top: auto;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
}

/* ----- Logo Marquee (Left to Right) ----- */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 10px 0;
  box-sizing: border-box;
}

.logo-marquee__track {}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.logo-marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.logo-marquee__item img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-marquee__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Pause on hover */
.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.section-partner {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  ;
}

.section-partner::after {
  height: 140%;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      #F8F8F8 30%);
  top: auto;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  pointer-events: none;
}

.section-partner .section-title-partner {
  font-family: "Red Rose", serif;
}


.page-recruitment .hero-darkcard {
  position: relative;
}

/* =========================================================
   News Detail — show page
   ========================================================= */

/* ----- Hero band ---------------------------------------- */
.news-hero {
  position: relative;
  background: var(--om-bg-dark);
  color: #fff;
  padding: 140px 0 56px;
  overflow: hidden;
}

.news-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/news-hero-bg.jpg') center/cover no-repeat;
  opacity: .58;
  pointer-events: none;
}

.news-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

.news-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 24px;
}

.news-hero__crumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.news-hero__crumb a:hover {
  color: #fff;
}

.news-hero__crumb span {
  opacity: .4;
}

.news-hero__title {
  font-family: var(--om-font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.015em;
  margin-bottom: 28px;
}

.news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}

.news-hero__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
  object-fit: cover;
}

.news-hero__author-name {
  font-size: .875rem;
  color: rgba(255, 255, 255, .8);
}

.news-hero__date {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .5);
  margin-left: auto;
}

/* ----- Article layout ----------------------------------- */
.news-article {
  background: var(--om-bg);
  padding: 48px 0 64px;
}

/* ----- Sidebar ------------------------------------------ */
.news-side {
  position: sticky;
  top: 96px;
}

.news-side__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--om-muted);
  margin: 0 0 12px;
}

.news-side__divider {
  border: none;
  border-top: 1px solid var(--om-line);
  margin: 20px 0;
}

/* TOC mobile band — between hero and article */
.news-toc-mobile-band {
  background: var(--om-bg-alt);
  border-bottom: 1px solid var(--om-line);
  padding: 20px 0;
}

/* TOC */
.news-toc__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-toc__link {
  display: block;
  font-size: .8125rem;
  line-height: 1.45;
  color: var(--om-muted);
  text-decoration: none;
  padding: 5px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color .15s, border-color .15s, background .15s;
}

.news-toc__link:hover {
  color: var(--om-text);
  background: var(--om-bg-alt);
}

.news-toc__link.is-active {
  color: var(--om-accent);
  border-left-color: var(--om-accent);
  background: var(--om-accent-soft);
  font-weight: 500;
}

/* Tags in sidebar */
.news-side__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Share buttons */
.news-share {
  display: flex;
  gap: 10px;
}

.news-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--om-r-sm);
  border: 1px solid var(--om-line);
  color: var(--om-muted);
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
}

.news-share__btn:hover {
  color: var(--om-accent);
  border-color: var(--om-accent);
  background: var(--om-accent-soft);
}

.news-share__btn.is-copied {
  color: #16a34a;
  border-color: #16a34a;
  background: #f0fdf4;
}

/* ----- Article body ------------------------------------- */
.news-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--om-text);
}

.news-body h2,
.news-body__h2 {
  font-family: var(--om-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--om-ink);
  margin: 2.25rem 0 .85rem;
  scroll-margin-top: 88px;
}

.news-body>*:first-child {
  margin-top: 0;
}

.news-body h3 {
  font-family: var(--om-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--om-ink);
  margin: 1.75rem 0 .65rem;
  scroll-margin-top: 88px;
}

.news-body p {
  margin-bottom: 1.1rem;
}

.news-body img,
.news-body__figure img {
  max-width: 100%;
  border-radius: var(--om-r-md);
  display: block;
  margin: 1.5rem auto;
}

.news-body__figure {
  margin: 1.5rem 0;
}

.news-body__figure figcaption {
  text-align: center;
  font-size: .8125rem;
  color: var(--om-muted);
  margin-top: 8px;
}

.news-body__quote,
.news-body blockquote {
  border-left: 3px solid var(--om-accent);
  margin: 2rem 0;
  padding: 16px 20px;
  background: var(--om-accent-soft);
  border-radius: 0 var(--om-r-sm) var(--om-r-sm) 0;
  font-style: italic;
  color: var(--om-ink-2);
}

.news-body__quote cite,
.news-body blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: .8125rem;
  color: var(--om-muted);
}

.news-body__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--om-line);
}

.news-body__tags-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--om-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
}

/* ----- Author band -------------------------------------- */
.news-author {
  position: relative;
  background: var(--om-bg-dark);
  color: #fff;
  padding: 56px 0;
  overflow: hidden;
}

.news-author__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(239, 78, 35, .12) 0%, transparent 70%);
  pointer-events: none;
}

.news-author__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  align-items: center;
}

.news-author__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  object-fit: cover;
}

.news-author__body {
  flex: 1;
}

@media (max-width: 767px) {
  .news-author__inner {
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }

  .news-author__avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    margin-right: 14px;
    margin-bottom: 0;
  }

  .news-author__name {
    font-size: 1rem;
    margin-bottom: 0;
    flex: 1;
  }

  .news-author__body {
    flex-basis: 100%;
    margin-top: 16px;
  }
}

.news-author__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.news-author__desc {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 14px;
}

.news-author__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--om-accent);
  text-decoration: none;
  transition: opacity .15s;
}

.news-author__more:hover {
  opacity: .8;
}

/* ----- Related ------------------------------------------ */
.news-related {
  background: var(--om-bg-alt);
}

.news-related__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--om-ink);
  margin-bottom: 32px;
}

.news-related__frame {
  margin-bottom: 8px;
}

.news-related__frame a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Scroll container — mobile: horizontal snap, desktop: 3-col grid */
.news-related__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  /* hide scrollbar but keep scroll */
  scrollbar-width: none;
}

.news-related__scroll::-webkit-scrollbar {
  display: none;
}

.news-related__item {
  flex: 0 0 78vw;
  max-width: 300px;
  scroll-snap-align: start;
  display: flex;
}

@media (min-width: 768px) {
  .news-related__scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .news-related__item {
    flex: none;
    max-width: none;
  }
}

.news-related__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--om-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--om-ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.news-related__more:hover {
  color: var(--om-accent);
  border-color: var(--om-accent);
}

/* ----- Pagination --------------------------------------- */
.pagination {
  gap: 4px;
  margin: 0;
}

.page-item .page-link {
  border: 1px solid var(--om-line);
  color: var(--om-ink);
  border-radius: 8px !important;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background .15s, border-color .15s, color .15s;
}

.page-item .page-link:hover {
  background: var(--om-bg-alt);
  border-color: var(--om-line-2);
  color: var(--om-accent);
}

.page-item.active .page-link {
  background: var(--om-accent);
  border-color: var(--om-accent);
  color: #fff;
}

.page-item.disabled .page-link {
  background: transparent;
  color: var(--om-line-2);
  border-color: var(--om-line);
}

/* ----- Related jobs section ----------------------------- */
.jobs-related {
  background: var(--om-bg-alt);
}

.jobs-related__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--om-ink);
  margin-bottom: 1.75rem;
  text-align: center;
}

.jobs-related__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.jobs-related__scroll::-webkit-scrollbar {
  display: none;
}

.jobs-related__item {
  flex: 0 0 80vw;
  max-width: 320px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .jobs-related__scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .jobs-related__item {
    flex: none;
    max-width: none;
  }
}

/* job card inside related — remove absolute positioning issues */
.jobs-related__item .job-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.jobs-related__item .job-card__action {
  margin-top: auto;
  padding-top: 12px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.jobs-related__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--om-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--om-ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.jobs-related__more:hover {
  color: var(--om-accent);
  border-color: var(--om-accent);
}

/* ----- Sidebar newsletter box --------------------------- */
.news-nl {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--om-line);
}

.news-nl__heading {
  font-family: var(--om-font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--om-ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-nl__sub {
  display: none;
}

.news-nl__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-nl__input {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--om-line);
  border-radius: var(--om-r-sm);
  color: var(--om-ink);
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}

.news-nl__input::placeholder {
  color: var(--om-muted);
}

.news-nl__input:focus {
  border-color: var(--om-accent);
}

.news-nl__btn {
  width: 100%;
  padding: 10px;
  background: var(--om-accent);
  color: #fff;
  border: none;
  border-radius: var(--om-r-sm);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}

.news-nl__btn:hover {
  opacity: .88;
}

.news-nl__btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.news-nl__msg {
  font-size: .8rem;
  min-height: 1.2em;
}

.news-nl__msg.is-success {
  color: #16a34a;
}

.news-nl__msg.is-error {
  color: #dc2626;
}

.news-nl__privacy {
  font-size: .75rem;
  color: var(--om-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.news-nl__privacy-link {
  color: var(--om-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-nl__privacy-link:hover {
  color: var(--om-accent);
}

/* ============================================================
   AUTHOR PAGE
   ============================================================ */

/* ----- Hero ------------------------------------------------ */
.author-hero {
  position: relative;
  padding: 140px 0 0;
  background: var(--om-bg-dark);
  overflow: hidden;
}

.author-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/news-hero-bg.jpg') top center/cover no-repeat;
  opacity: .6;
  pointer-events: none;
}

.author-hero__card {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.author-hero__avatar-wrap {
  flex-shrink: 0;
}

.author-hero__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .2);
}

.author-hero__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--om-accent);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--om-font-display);
}

.author-hero__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--om-accent);
  border: 1px solid var(--om-accent);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}

.author-hero__name {
  font-family: var(--om-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.author-hero__title {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 16px;
}

.author-hero__bio {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 600px;
}

.author-hero__stats {
  display: flex;
  gap: 24px;
}

.author-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .5);
}

.author-hero__stat svg {
  flex-shrink: 0;
  color: var(--om-accent);
}

/* ----- Posts section --------------------------------------- */
.author-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.author-posts__heading {
  font-family: var(--om-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--om-ink);
  margin: 0;
}

.author-posts__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  color: var(--om-muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.author-posts__back:hover {
  color: var(--om-accent);
}

.author-posts__empty {
  text-align: center;
  padding: 64px 0;
  color: var(--om-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ----- Card meta ------------------------------------------- */
.author-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.author-card__date {
  font-size: .7rem;
  color: var(--om-muted);
  white-space: nowrap;
}

/* ----- Responsive ------------------------------------------ */
@media (max-width: 767px) {
  .author-hero {
    padding: 100px 0 0;
  }

  .author-hero__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 36px;
  }

  .author-hero__name {
    font-size: 1.35rem;
  }

  .author-hero__bio {
    font-size: .85rem;
  }

  .author-hero__stats {
    justify-content: center;
  }

  .author-posts__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Search Overlay ──────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}

.search-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease;
}

.search-overlay.is-open .search-overlay__backdrop {
  opacity: 1;
}

.search-overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 1rem;
  margin-top: clamp(80px, 12vh, 160px);
  transform: translateY(-24px);
  opacity: 0;
  transition: transform .28s ease, opacity .25s ease;
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
  opacity: 1;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  padding: 6px 8px 6px 20px;
  gap: 8px;
}

.search-overlay__icon {
  flex-shrink: 0;
  color: var(--om-muted, #888);
}

.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--om-ink, #171717);
  background: transparent;
  padding: 10px 0;
  min-width: 0;
}

.search-overlay__input::placeholder {
  color: #bbb;
  font-weight: 400;
}

.search-overlay__close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: var(--om-bg-alt, #f5f5f5);
  color: var(--om-ink, #171717);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.search-overlay__close:hover {
  background: #e8e8e8;
}

.search-overlay__hint {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  margin: 12px 0 0;
  letter-spacing: .01em;
}

/* ── Search Results Page ─────────────────────────────────── */
.search-results-page {
  padding-top: 80px;
  min-height: 60vh;
}

.search-page__form {
  margin-bottom: 2.5rem;
}

.search-page__input-wrap {
  display: flex;
  align-items: center;
  background: var(--om-bg-alt, #f5f5f5);
  border: 2px solid var(--om-line, #e8e8e8);
  border-radius: 12px;
  padding: 5px 6px 5px 14px;
  gap: 8px;
  transition: border-color .2s;
  min-width: 0;
}

.search-page__input-wrap:focus-within {
  border-color: var(--om-accent, #FD622A);
}

.search-page__icon {
  color: var(--om-muted, #888);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.search-page__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  color: var(--om-ink, #171717);
  padding: 7px 0;
}

.search-page__submit {
  flex-shrink: 0;
  background: var(--om-accent, #FD622A);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}

.search-page__submit:hover {
  opacity: .88;
}

@media (max-width: 480px) {
  .search-results-page {
    padding-top: 70px;
  }

  .search-page__submit {
    padding: 9px 12px;
    font-size: .8rem;
  }

  .search-page__input {
    font-size: .95rem;
  }
}

.search-results__count {
  font-size: .95rem;
  color: var(--om-muted, #888);
  margin-bottom: 2rem;
}

.search-results__empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--om-muted, #888);
}

.search-group {
  margin-bottom: 3rem;
}

.search-group__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--om-muted, #888);
  border-bottom: 1px solid var(--om-line, #e8e8e8);
  padding-bottom: .6rem;
  margin-bottom: 1.5rem;
}

.search-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--om-line, #e8e8e8);
  color: var(--om-ink, #171717);
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}

.search-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  transform: translateY(-2px);
  color: var(--om-ink, #171717);
}

.search-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--om-bg-alt, #f5f5f5);
}

.search-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.search-card:hover .search-card__img img {
  transform: scale(1.04);
}

.search-card__img--sm {
  width: 88px;
  flex-shrink: 0;
  aspect-ratio: 1;
}

.search-card__body {
  padding: 16px;
  flex: 1;
}

.search-card__cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--om-accent, #FD622A);
  margin-bottom: 6px;
}

.search-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
}

.search-card__excerpt {
  font-size: .85rem;
  color: var(--om-muted, #888);
  margin: 0;
  line-height: 1.5;
}

.search-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.search-card--job {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  border-radius: 10px;
}

.search-card--job .search-card__body {
  padding: 0;
}

.search-card--job .search-card__title {
  font-size: .95rem;
  margin-bottom: 3px;
}

.search-card__meta {
  font-size: .8rem;
  color: var(--om-muted, #888);
}

.search-card__arrow {
  flex-shrink: 0;
  color: var(--om-muted, #aaa);
  margin-left: auto;
  transition: transform .2s, color .2s;
}

.search-card--job:hover .search-card__arrow {
  transform: translateX(3px);
  color: var(--om-accent, #FD622A);
}

/* ── Pages: prose-content (rich text typography) ─────────── */
.prose-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--om-ink, #171717);
  word-break: break-word;
}

.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4 {
  font-family: 'Red Rose', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.2rem;
  margin-bottom: .8rem;
  scroll-margin-top: 90px;
}

.prose-content h2 {
  font-size: 1.5rem;
}

.prose-content h3 {
  font-size: 1.2rem;
}

.prose-content h4 {
  font-size: 1.05rem;
}

.prose-content p {
  margin-bottom: 1.2rem;
}

.prose-content ul,
.prose-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.prose-content li {
  margin-bottom: .4rem;
}

.prose-content a {
  color: var(--om-accent, #FD622A);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-content a:hover {
  opacity: .8;
}

.prose-content blockquote {
  border-left: 4px solid var(--om-accent, #FD622A);
  margin: 1.5rem 0;
  padding: .8rem 1.25rem;
  background: var(--om-bg-alt, #f5f5f5);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.prose-content blockquote p {
  margin-bottom: 0;
}

.prose-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.prose-content th,
.prose-content td {
  border: 1px solid var(--om-line, #e8e8e8);
  padding: 10px 14px;
  text-align: left;
}

.prose-content th {
  background: var(--om-bg-alt, #f5f5f5);
  font-weight: 700;
}

.prose-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.prose-content hr {
  border: none;
  border-top: 1px solid var(--om-line, #e8e8e8);
  margin: 2rem 0;
}

.prose-content--narrow {
  font-size: 1.0625rem;
}

.prose-content--wide {
  max-width: none;
}

/* ── Page: default template ──────────────────────────────── */
.page-hero {
  padding: 80px 0 48px;
  background: var(--om-bg-alt, #f9f9f9);
  border-bottom: 1px solid var(--om-line, #e8e8e8);
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.page-hero__meta {
  margin-top: .75rem;
}

.page-hero__date {
  font-size: .85rem;
  color: var(--om-muted, #888);
}

.page-body {
  padding-top: 2.5rem;
}

/* TOC Sidebar */
.page-toc {
  position: sticky;
  top: 90px;
  background: var(--om-bg-alt, #f9f9f9);
  border: 1px solid var(--om-line, #e8e8e8);
  border-radius: 12px;
  padding: 20px 22px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.page-toc__heading {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--om-muted, #888);
  margin: 0 0 12px;
}

.page-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-toc__item {
  margin-bottom: 2px;
}

.page-toc__item--sub {
  padding-left: 14px;
}

.page-toc__link {
  display: block;
  font-size: .85rem;
  color: var(--om-ink, #333);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1.4;
  transition: background .15s, color .15s;
}

.page-toc__link:hover,
.page-toc__link.is-active {
  background: rgba(253, 98, 42, .08);
  color: var(--om-accent, #FD622A);
}

/* ── Page: narrow template ───────────────────────────────── */
.page-narrow {
  padding-top: 80px;
}

.page-narrow__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--om-line, #e8e8e8);
}

.page-narrow__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 .5rem;
}

.page-narrow__date {
  font-size: .82rem;
  color: var(--om-muted, #888);
  margin: 0;
}

/* ── Page: full-width template ───────────────────────────── */
.page-fullwidth {
  padding-top: 0;
}

.page-fullwidth__hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: var(--om-dark, #171717);
  overflow: hidden;
}

.page-fullwidth__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-art);
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.page-fullwidth__hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 23, 23, .85) 0%, transparent 60%);
}

.page-fullwidth__hero-inner {
  position: relative;
  z-index: 1;
}

.page-fullwidth__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

.page-fullwidth__title--plain {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  padding: 80px 0 2rem;
  margin: 0;
}

/* ── Lazy loading ─────────────────────────────────────────── */
.lazyload,
.lazyloading {
  opacity: 0;
  transition: opacity .3s;
}

.lazyloaded {
  opacity: 1;
}

.omg_border_right {
  border-top-right-radius: var(--om-r-xl);
}

/* =========================================================
   Page: About (ve-chung-toi)
   ========================================================= */

/* HERO */
.ab-hero {
  padding: 56px 0 32px;
}

.ab-hero__head {
  text-align: center;
  margin-bottom: 36px;
}

.ab-hero__title {
  font-family: var(--om-font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  color: var(--om-ink);
  line-height: 1.2;
  margin: 0 0 14px;
}

.ab-hero__lead {
  color: var(--om-muted);
  font-size: .9375rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

.ab-video {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #d9d9d9 center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-video__play {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, #ff5a3d, #e63b1a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(230, 59, 26, .35);
  transition: transform .15s;
}

.ab-video__play:hover {
  transform: scale(1.06);
}

.ab-video__play svg {
  margin-left: 3px;
}

/* STATS */
.ab-stats {
  padding: 32px 0 56px;
}

.ab-stat {
  text-align: center;
}

.ab-stat__num {
  font-family: var(--om-font-display);
  font-weight: 500;
  color: var(--om-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.ab-stat__lbl {
  color: var(--om-text);
  font-size: .9375rem;
  margin-top: 8px;
}

/* STORY */
.ab-story {
  padding: 24px 0 72px;
}

.ab-story__title {
  font-family: var(--om-font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  color: var(--om-ink);
  text-align: center;
  margin: 0 0 24px;
}

.ab-story__p {
  color: var(--om-text);
  font-size: .9375rem;
  line-height: 1.85;
  margin: 0;
  text-align: justify;
  text-wrap: pretty;
}

/* VALUES */
.ab-values {
  background: #0a0808;
  color: #fff;
  padding: 72px 0;
}

.ab-values__title {
  font-family: var(--om-font-display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  text-align: center;
  margin: 0 0 36px;
}

.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.ab-value-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .65) 100%), var(--img, linear-gradient(135deg, #1a1a1a, #3a3a3a)) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: transform .3s ease;
}

.ab-value-tile:hover {
  transform: translateY(-3px);
}

.ab-value-tile span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .ab-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* LEADERSHIP */
.ab-leadership {
  padding: 96px 0 64px;
}

.ab-section__title {
  font-family: var(--om-font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  color: var(--om-ink);
  text-align: center;
  margin: 0 0 36px;
  line-height: 1.3;
}

.ab-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 60px;
  max-width: 760px;
  margin: 0 auto;
}

.ab-team__cell {
  text-align: center;
}

.ab-team__avatar {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: #e8e6e2 var(--img, none) center/cover no-repeat;
  border: 1px solid var(--om-line);
}

.ab-team__cell--feature .ab-team__avatar {
  max-width: 160px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.ab-team__name {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--om-ink);
  margin-bottom: 2px;
}

.ab-team__role {
  font-size: .8125rem;
  color: var(--om-muted);
}

@media (max-width: 576px) {
  .ab-team {
    gap: 20px 16px;
  }

  .ab-team__avatar {
    max-width: 100px;
  }
}

/* COMMUNITY */
.ab-community {
  padding: 0 0 96px;
}

.ab-community__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 32px;
}

.ab-community__lead {
  color: var(--om-muted);
  font-size: .9375rem;
  line-height: 1.7;
  margin: 0;
}

.ab-community__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ab-community__tile {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9c5af, #b8956b);
}

.ab-community__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ab-community__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn-contact-header:hover {
  background-color: #fa664b !important;
}
