:root {
  --khoibds-red: #ec1c25;
  --khoibds-red-dark: #b0151c;
  --khoibds-black: #1f2937;
  --khoibds-gray: #6b7280;
  --khoibds-bg: #ffffff;
  --khoibds-soft: #fdf2f2;
  --khoibds-content-max: 1240px;
  --khoibds-page-gutter: max(16px, calc((100vw - var(--khoibds-content-max)) / 2));
  --khoibds-sticky-top: 106px;
  --khoibds-header-admin-offset: 0px;
  --khoibds-header-offset: 84px;
}

/* Force Astra blog container to full-width while keeping KhoiBDS content constrained */
.khoibds-blog-template .site-content > .ast-container,
.khoibds-blog-template.ast-narrow-container .site-content > .ast-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.site-content > .ast-container:has(.khoibds-blog-page),
.site-content > .ast-container:has(.khoibds-blog-single) {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.khoibds-blog-template #primary.site-main {
  width: 100%;
  margin: 0;
}
.khoibds-blog-template .site-content,
.khoibds-blog-template #primary.site-main,
.khoibds-blog-page,
.khoibds-blog-page__content,
.khoibds-blog-single,
.khoibds-blog-single__layout {
  overflow: visible !important;
}

.khoibds-header,
.khoibds-section,
.khoibds-hero,
.khoibds-footer {
  font-family: 'Inter', sans-serif;
}

.khoibds-header {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  position: fixed;
  top: var(--khoibds-header-admin-offset);
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px #00000012;
  transition: box-shadow .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}
body.khoibds-has-fixed-header {
  padding-top: var(--khoibds-header-offset);
}
.khoibds-header__inner {
  max-width: var(--khoibds-content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 16px;
  padding: 14px 0;
  box-sizing: border-box;
  transition: padding .22s ease;
}
.khoibds-header.is-scrolled {
  background: #fffffff7;
  border-bottom-color: #fecaca;
  box-shadow: 0 12px 28px #0000001f;
  transform: translateY(0);
}
.khoibds-header.is-scrolled .khoibds-header__inner {
  padding-top: 12px;
  padding-bottom: 12px;
}
.khoibds-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
}
.khoibds-logo__icon { width: 42px; height: 42px; background: var(--khoibds-red); border-radius: 8px; display: inline-block; }
.khoibds-logo__image { max-height: 52px; width: auto; max-width: 320px; display: block; object-fit: contain; }
.khoibds-logo__text { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; color: var(--khoibds-black); }
.khoibds-header__nav {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
.khoibds-header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  background: #fff1f2;
  color: #ec1c25;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.khoibds-header__menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.khoibds-header__menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px #ec1c2526;
}
.khoibds-header.is-mobile-open .khoibds-header__menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.khoibds-header.is-mobile-open .khoibds-header__menu-toggle span:nth-child(2) { opacity: 0; }
.khoibds-header.is-mobile-open .khoibds-header__menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.khoibds-nav__item {
  position: relative;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.khoibds-nav__item::after {
  display: none;
}
.khoibds-nav__item:hover,
.khoibds-nav__item.is-active,
.khoibds-nav__item[aria-current="page"] {
  color: #ec1c25;
  background: #fff1f2;
  border-color: #fecdd3;
}
.khoibds-nav__item.is-active,
.khoibds-nav__item[aria-current="page"] {
  color: #ffffff;
  background: #ec1c25;
  border-color: #ec1c25;
  box-shadow: 0 8px 18px #ec1c2533;
}
.khoibds-nav__item:focus,
.khoibds-nav__item:focus-visible {
  outline: 2px solid #ec1c25;
  outline-offset: 1px;
  border-color: #ec1c25;
}

.khoibds-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px; }
.khoibds-btn--primary { background: var(--khoibds-red); color: #fff; }
.khoibds-btn--light { background: #fff; color: var(--khoibds-red); box-shadow: 0 6px 20px #00000030; padding: 18px 40px; border-radius: 12px; }
.khoibds-btn--ghost { background: transparent; color: #fff; border: 1px solid #ffffff80; }
.khoibds-btn--outline { background: #fff; color: var(--khoibds-red); border: 1px solid var(--khoibds-red); }
.khoibds-btn--primary,
.khoibds-btn--primary:link,
.khoibds-btn--primary:visited,
.khoibds-btn--primary:hover,
.khoibds-btn--primary:focus,
.khoibds-btn--primary:active {
  color: #ffffff !important;
  text-decoration: none;
}
.khoibds-btn--light,
.khoibds-btn--light:link,
.khoibds-btn--light:visited,
.khoibds-btn--light:hover,
.khoibds-btn--light:focus,
.khoibds-btn--light:active,
.khoibds-btn--outline,
.khoibds-btn--outline:link,
.khoibds-btn--outline:visited,
.khoibds-btn--outline:hover,
.khoibds-btn--outline:focus,
.khoibds-btn--outline:active {
  color: var(--khoibds-red) !important;
  text-decoration: none;
}
.khoibds-btn--ghost,
.khoibds-btn--ghost:link,
.khoibds-btn--ghost:visited,
.khoibds-btn--ghost:hover,
.khoibds-btn--ghost:focus,
.khoibds-btn--ghost:active {
  color: #ffffff !important;
  text-decoration: none;
}
.khoibds-btn:focus {
  outline: none;
}
.khoibds-btn:focus-visible {
  outline: 2px solid #ec1c25;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #ec1c2522;
}
.khoibds-btn--primary:hover {
  background: #d9161f;
  box-shadow: 0 10px 24px #ec1c2538;
}
.khoibds-blog-page__apply,
.khoibds-blog-page__apply:link,
.khoibds-blog-page__apply:visited,
.khoibds-blog-page__apply:hover,
.khoibds-blog-single__apply,
.khoibds-blog-single__apply:link,
.khoibds-blog-single__apply:visited,
.khoibds-blog-single__apply:hover {
  color: #ffffff !important;
}
.khoibds-btn__icon { display: inline-flex; margin-left: 8px; }
.khoibds-btn__icon i, .khoibds-btn__icon svg { width: 16px; height: 16px; }

/* Force Astra scroll-to-top button to brand red */
#ast-scroll-top {
  background: #ec1c25 !important;
  border-color: #ec1c25 !important;
}
#ast-scroll-top .ast-icon.icon-arrow svg,
#ast-scroll-top svg,
#ast-scroll-top i {
  fill: #ffffff !important;
  color: #ffffff !important;
}
#ast-scroll-top:hover,
#ast-scroll-top:focus {
  background: #d9161f !important;
  border-color: #d9161f !important;
}

.khoibds-lead-toast {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1000010;
  width: min(92vw, 420px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: 0 14px 34px #11182736;
  padding: 12px 12px 12px 14px;
  animation: khoibds-toast-in .2s ease;
}
.khoibds-lead-toast.is-success { border-color: #86efac; box-shadow: 0 14px 34px #16a34a2b; }
.khoibds-lead-toast.is-error { border-color: #fca5a5; box-shadow: 0 14px 34px #dc26262b; }
.khoibds-lead-toast__body { display: grid; gap: 4px; min-width: 0; }
.khoibds-lead-toast__body strong {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.2;
}
.khoibds-lead-toast__body span {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}
.khoibds-lead-toast__close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.khoibds-lead-toast.is-out {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
@keyframes khoibds-toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.khoibds-hero__actions .khoibds-btn,
.khoibds-section__cta .khoibds-btn,
.khoibds-cta-banner .khoibds-btn {
  animation: khoibds-cta-breathe 3.6s ease-in-out infinite;
}
.khoibds-hero__actions .khoibds-btn:nth-child(2),
.khoibds-section__cta .khoibds-btn:nth-child(2),
.khoibds-cta-banner .khoibds-btn:nth-child(2) {
  animation-delay: .9s;
}
@keyframes khoibds-cta-breathe {
  0%, 100% {
    box-shadow: 0 8px 20px #00000014, 0 0 0 0 #ec1c2500;
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 12px 24px #00000020, 0 0 0 6px #ec1c2520;
    filter: brightness(1.03);
  }
}
@media (prefers-reduced-motion: reduce) {
  .khoibds-hero__actions .khoibds-btn,
  .khoibds-section__cta .khoibds-btn,
  .khoibds-cta-banner .khoibds-btn { animation: none !important; }
  .khoibds-cta-banner .khoibds-btn::after { animation: none !important; }
  .khoibds-hero__actions .khoibds-btn--light .khoibds-btn__icon { animation: none !important; }
}

.khoibds-header__cta {
  margin-left: 8px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 #ec1c2545;
  animation: khoibds-header-cta-pulse 1.8s ease-in-out infinite;
}
.khoibds-header__cta::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -70%;
  width: 42%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffff70 50%, #ffffff00 100%);
  animation: khoibds-header-cta-shine 2.2s linear infinite;
}
.khoibds-header__cta:hover { animation-duration: 1.2s; }
@keyframes khoibds-header-cta-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 #ec1c2545; }
  50% { transform: translateY(-1px); box-shadow: 0 0 0 10px #ec1c2500; }
}
@keyframes khoibds-header-cta-shine {
  0% { left: -70%; }
  100% { left: 145%; }
}
@media (prefers-reduced-motion: reduce) {
  .khoibds-header__cta,
  .khoibds-header__cta::after { animation: none; }
}

.khoibds-hero {
  width: 100%;
  padding: 80px var(--khoibds-page-gutter);
  background: linear-gradient(180deg, #ec1c25 0%, #8b1015 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.khoibds-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--khoibds-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.khoibds-hero > * { position: relative; }
.khoibds-hero__content { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.khoibds-badge { padding: 8px 16px; background: #ffffff33; border-radius: 999px; font-size: 12px; }
.khoibds-hero__title { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; margin: 0; }
.khoibds-hero__title--typing {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
.khoibds-hero__typing-line {
  display: block;
  width: 100%;
  min-height: 1.1em;
  text-align: left;
  white-space: nowrap;
}
.khoibds-hero__typing-line:last-child::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 6px;
  vertical-align: -0.12em;
  background: currentColor;
  animation: khoibds-typing-caret .7s step-end infinite;
}
@keyframes khoibds-typing-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.khoibds-hero__subtitle { font-size: 18px; max-width: 720px; margin: 0 auto; color: #ffffffe6; }
.khoibds-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.khoibds-hero__actions .khoibds-btn {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.khoibds-hero__actions .khoibds-btn::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -45%;
  width: 38%;
  height: 360%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffff80 45%, #ffffff00 100%);
  transition: left .45s ease;
  pointer-events: none;
}
.khoibds-hero__actions .khoibds-btn:hover::before { left: 130%; }
.khoibds-hero__actions .khoibds-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px #00000026;
}
.khoibds-hero__actions .khoibds-btn--light {
  animation: khoibds-hero-btn-soft-pop 3.4s ease-in-out infinite;
}
.khoibds-hero__actions .khoibds-btn--ghost {
  animation: khoibds-hero-btn-soft-pop 3.4s ease-in-out .7s infinite;
}
.khoibds-hero__actions .khoibds-btn--light .khoibds-btn__icon {
  transition: transform .25s ease;
  animation: khoibds-hero-icon-pulse 1.9s ease-in-out infinite;
}
.khoibds-hero__actions .khoibds-btn--light:hover {
  background: #ffffff;
  color: #c4121b;
}
.khoibds-hero__actions .khoibds-btn--light:hover .khoibds-btn__icon { transform: translateX(2px); }
.khoibds-hero__actions .khoibds-btn--ghost:hover {
  background: #ffffff1f;
  color: #ffffff;
  border-color: #ffffff;
}
@keyframes khoibds-hero-btn-soft-pop {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 20px #00000014, 0 0 0 0 #ffffff00;
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px #00000020, 0 0 0 4px #ffffff22;
  }
}
@keyframes khoibds-hero-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.khoibds-hero__stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.khoibds-stat__value { font-weight: 700; font-size: 24px; }
.khoibds-stat__label { font-size: 14px; opacity: 0.9; }

.khoibds-section { width: 100%; padding: 80px var(--khoibds-page-gutter); background: #fff; }
.khoibds-section__header { text-align: center; margin-bottom: 40px; }
.khoibds-tag { color: var(--khoibds-red); font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.khoibds-section__title { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: var(--khoibds-black); margin: 8px 0; }
.khoibds-section__subtitle { color: var(--khoibds-gray); font-size: 16px; max-width: 720px; margin: 0 auto; }

.khoibds-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .58s ease,
    transform .68s cubic-bezier(.2, .65, .2, 1);
  transition-delay: var(--khoibds-reveal-delay, 0ms);
  will-change: opacity, transform;
}
.khoibds-reveal.khoibds-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .khoibds-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.khoibds-cards, .khoibds-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.khoibds-card { background: #fff; border: 1px solid #f3f4f6; border-radius: 16px; padding: 24px; box-shadow: 0 8px 24px #0000000f; }
.khoibds-card__title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; margin: 0 0 8px; }
.khoibds-card__desc { margin: 0; color: var(--khoibds-gray); }
.khoibds-card__icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.khoibds-card__icon i, .khoibds-card__icon svg { font-size: 28px; color: #fff; width: 28px; height: 28px; line-height: 1; display: block; stroke: currentColor; }
.khoibds-card__icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
.khoibds-why .khoibds-card__icon { width: 64px; height: 64px; }
.khoibds-why .khoibds-card__icon img { width: 28px; height: 28px; }

.khoibds-company { background: linear-gradient(180deg, #ffffff 0%, #fef2f2 55%, #fdf4ff 100%); }
.khoibds-company .khoibds-section__header { margin-bottom: 44px; }
.khoibds-company .khoibds-section__title { font-size: 42px; letter-spacing: -0.02em; margin: 4px 0 10px; }
.khoibds-company .khoibds-section__subtitle { font-size: 18px; color: #6b7280; }
.khoibds-company__grid { display: grid; grid-template-columns: minmax(560px, 1fr) minmax(520px, 1fr); gap: 48px; align-items: start; }
.khoibds-company__intro { color: #4b5563; font-size: 16px; line-height: 1.6; margin: 0 0 22px; max-width: 690px; }
.khoibds-company__features { display: grid; gap: 18px; }
.khoibds-company__feature { background: #fff5f5; border: 2px solid #fecaca; border-radius: 12px; padding: 16px; box-shadow: 0 4px 12px #ec1c2520; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; }
.khoibds-company__feature-icon { width: 48px; height: 48px; border-radius: 10px; background: #ec1c25; color: #fff; display: flex; align-items: center; justify-content: center; }
.khoibds-company__feature-icon i, .khoibds-company__feature-icon svg { width: 24px; height: 24px; color: #fff; fill: #fff; line-height: 1; display: block; stroke: currentColor; }
.khoibds-company__feature:nth-child(2) { background: #f0fdf4; border-color: #86efac; box-shadow: 0 4px 16px #22c55e1a; }
.khoibds-company__feature:nth-child(3) { background: #eff6ff; border-color: #93c5fd; box-shadow: 0 4px 16px #3b82f61a; }
.khoibds-company__feature:nth-child(2) .khoibds-company__feature-icon { background: #22c55e; }
.khoibds-company__feature:nth-child(3) .khoibds-company__feature-icon { background: #3b82f6; }
.khoibds-company__feature .khoibds-card__title { font-size: 14px; margin: 0 0 4px; color: #1f2937; font-weight: 600; font-family: 'Inter', sans-serif; }
.khoibds-company__feature .khoibds-card__desc { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.4; }
.khoibds-company__stats-title { font-size: 18px; font-weight: 700; margin: 0 0 18px; color: #1f2937; font-family: 'Space Grotesk', sans-serif; }
.khoibds-company__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.khoibds-company__stat { background: var(--khoi-stat-bg, #fdf2f2); border-radius: 12px; padding: 24px; text-align: center; min-height: 180px; display: grid; align-content: center; justify-items: center; gap: 12px; }
.khoibds-company__stat-icon { width: 32px; height: 32px; border-radius: 8px; background: transparent; color: var(--khoi-stat-accent, #ec1c25); display: flex; align-items: center; justify-content: center; }
.khoibds-company__stat-icon i, .khoibds-company__stat-icon svg { width: 32px; height: 32px; color: var(--khoi-stat-accent, #ec1c25); fill: currentColor; line-height: 1; display: block; stroke: currentColor; }
.khoibds-company__stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 48px; line-height: 1; font-weight: 700; color: var(--khoi-stat-accent, #ec1c25); letter-spacing: -0.02em; }
.khoibds-company__stat-label { color: #6b7280; font-size: 14px; line-height: 1.25; }

.khoibds-columns { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.khoibds-column { display: grid; gap: 16px; }

.khoibds-section__cta { text-align: center; margin-top: 32px; display: grid; gap: 16px; justify-items: center; }
.khoibds-cta__text { color: var(--khoibds-gray); margin: 0; }

.khoibds-cta { background: linear-gradient(180deg, var(--khoibds-red) 0%, #d41920 100%); color: #fff; text-align: center; }
.khoibds-cta .khoibds-section__title,
.khoibds-cta .khoibds-section__subtitle { color: #fff; }
.khoibds-cta .khoibds-section__title { font-size: 40px; }
.khoibds-cta .khoibds-section__subtitle { font-size: 18px; max-width: 800px; margin: 0 auto; opacity: .9; }
.khoibds-cta .khoibds-hero__actions { gap: 16px; margin-top: 8px; }
.khoibds-cta .khoibds-btn--light { border-radius: 8px; padding: 16px 32px; font-size: 16px; font-weight: 600; box-shadow: none; }
.khoibds-cta .khoibds-btn--ghost { border-radius: 8px; border: 2px solid #fff; padding: 16px 32px; font-size: 16px; font-weight: 600; }
.khoibds-cta .khoibds-stat__value { font-size: 32px; font-family: 'Space Grotesk', sans-serif; }
.khoibds-cta .khoibds-stat__label { font-size: 14px; opacity: .8; }
.khoibds-cta__stats { display: flex; justify-content: center; gap: 32px; margin-top: 24px; flex-wrap: wrap; }

.khoibds-cta-banner { background: linear-gradient(90deg, var(--khoibds-red) 0%, #c41920 100%); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.khoibds-cta-banner__title { font-family: 'Space Grotesk', sans-serif; font-size: 28px; margin: 0 0 6px; }
.khoibds-cta-banner__subtitle { margin: 0; opacity: 0.9; }
.khoibds-cta-banner .khoibds-btn {
  position: relative;
  overflow: hidden;
  animation: khoibds-cta-breathe 3.6s ease-in-out infinite, khoibds-cta-banner-pop 2.8s ease-in-out infinite;
  transform-origin: center;
}
.khoibds-cta-banner .khoibds-btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -48%;
  width: 34%;
  height: 330%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffffa3 48%, #ffffff00 100%);
  animation: khoibds-cta-banner-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}
.khoibds-cta-banner .khoibds-btn:hover {
  animation-duration: 2.2s, 1.5s;
}
@keyframes khoibds-cta-banner-pop {
  0%, 60%, 100% { transform: translateY(0) scale(1); }
  68% { transform: translateY(-1px) scale(1.015); }
  74% { transform: translateY(0) scale(1); }
  80% { transform: translateY(-2px) scale(1.02); }
  86% { transform: translateY(0) scale(1); }
}
@keyframes khoibds-cta-banner-shine {
  0%, 58% { left: -48%; opacity: 0; }
  66% { opacity: .9; }
  84% { left: 128%; opacity: .92; }
  100% { left: 128%; opacity: 0; }
}

.khoibds-consignment {
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
}
.khoibds-consignment__inner {
  max-width: var(--khoibds-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
  gap: 30px;
  align-items: start;
}
.khoibds-consignment__left {
  display: grid;
  gap: 18px;
  align-content: start;
}
.khoibds-consignment__badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #ec1c25;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.khoibds-consignment__title {
  margin: 0;
  color: #ec1c25;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.khoibds-consignment__subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-left: 4px solid #ec1c25;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px #ec1c250d;
}
.khoibds-consignment__highlights {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.khoibds-consignment__highlights li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.4;
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 18px #ec1c250f;
}
.khoibds-consignment__hl-icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: #ec1c25;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px #ec1c2533;
}
.khoibds-consignment__hl-icon i,
.khoibds-consignment__hl-icon svg {
  width: 14px;
  height: 14px;
  line-height: 1;
  color: inherit;
  fill: currentColor;
}
.khoibds-consignment__stats {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.khoibds-consignment__stat {
  border: 1px solid #fee2e2;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 14px;
  display: grid;
  gap: 6px;
  box-shadow: 0 10px 22px #ec1c2510;
}
.khoibds-consignment__stat strong {
  color: #ec1c25;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.khoibds-consignment__stat span {
  color: #6b7280;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.35;
  font-weight: 600;
}
.khoibds-consignment__form-card {
  border: 1px solid #fecaca;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 32px #ec1c2514;
  position: sticky;
  top: var(--khoibds-sticky-top);
}
.khoibds-consignment__form-card h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.khoibds-consignment__form-card > p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}
.khoibds-consignment__form {
  display: grid;
  gap: 12px;
}
.khoibds-consignment__form label {
  display: grid;
  gap: 6px;
}
.khoibds-consignment__form label > span {
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}
.khoibds-consignment__form input,
.khoibds-consignment__form select,
.khoibds-consignment__form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.khoibds-consignment__form input,
.khoibds-consignment__form select {
  min-height: 46px;
  padding: 0 12px;
}
.khoibds-consignment__form textarea {
  resize: vertical;
  min-height: 86px;
  padding: 10px 12px;
}
.khoibds-consignment__form input:focus,
.khoibds-consignment__form select:focus,
.khoibds-consignment__form textarea:focus {
  border-color: #ec1c25;
  box-shadow: 0 0 0 4px #ec1c2514;
}
.khoibds-consignment__form button {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ec1c25 0%, #d9151f 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 20px #ec1c2533;
}
.khoibds-consignment__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px #ec1c2540;
  filter: brightness(1.03);
}

.khoibds-recruitment {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}
.khoibds-recruitment__inner {
  max-width: var(--khoibds-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: 30px;
  align-items: start;
}
.khoibds-recruitment__left {
  display: grid;
  gap: 16px;
  align-content: start;
}
.khoibds-recruitment__badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1f2;
  border: 1px solid #fecaca;
  color: #ec1c25;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.khoibds-recruitment__badge { display: none !important; }
.khoibds-recruitment__title {
  margin: 0;
  color: #111827;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  line-height: 1.15;
}
.khoibds-recruitment__subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.55;
}
.khoibds-recruitment__benefits {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.khoibds-recruitment__benefits li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #374151;
  font-size: 15px;
  line-height: 1.45;
}
.khoibds-recruitment__benefit-icon {
  width: 22px;
  height: 22px;
  color: #ec1c25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.khoibds-recruitment__benefit-icon i,
.khoibds-recruitment__benefit-icon svg {
  width: 20px;
  height: 20px;
}
.khoibds-recruitment__right {
  display: grid;
  gap: 14px;
  align-content: start;
}
.khoibds-recruitment__jobs {
  display: grid;
  gap: 12px;
}
.khoibds-recruitment__job {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 8px;
}
.khoibds-recruitment__job h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}
.khoibds-recruitment__salary {
  margin: 0;
  color: #ec1c25;
  font-size: 14px;
  font-weight: 600;
}
.khoibds-recruitment__location {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
}
.khoibds-recruitment__apply {
  min-height: 42px;
  border-radius: 8px;
  background: #ec1c25;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.khoibds-recruitment__cta {
  border-radius: 12px;
  background: #ec1c25;
  color: #ffffff;
  padding: 14px;
  display: grid;
  gap: 10px;
  text-align: center;
}
.khoibds-recruitment__cta p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.khoibds-recruitment__cta a {
  min-height: 42px;
  border-radius: 8px;
  background: #ffffff;
  color: #ec1c25;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.khoibds-recruitment--focused .khoibds-recruitment__inner {
  grid-template-columns: 1fr;
  max-width: 920px;
  gap: 22px;
}
.khoibds-recruitment--focused .khoibds-recruitment__left {
  justify-items: center;
  text-align: center;
}
.khoibds-recruitment--focused .khoibds-recruitment__title {
  color: #ec1c25;
  text-shadow: 0 8px 24px #ec1c2520;
}
.khoibds-recruitment--focused .khoibds-recruitment__subtitle {
  max-width: 820px;
}
.khoibds-recruitment__job--featured {
  max-width: 760px;
  margin: 0 auto;
  border: 2px solid #fecaca;
  border-radius: 18px;
  padding: 22px;
  gap: 10px;
  box-shadow: 0 18px 34px -22px #1118274a;
  text-align: center;
}
.khoibds-recruitment__job--featured h3 {
  color: #c3141d;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}
.khoibds-recruitment__job--featured .khoibds-recruitment__salary {
  color: #ec1c25;
  font-size: 20px;
  font-weight: 700;
}
.khoibds-recruitment__job--featured .khoibds-recruitment__location {
  font-size: 16px;
}
.khoibds-recruitment__job--featured .khoibds-recruitment__apply {
  min-height: 50px;
  border-radius: 12px;
  font-size: 18px;
  margin-top: 2px;
}
.khoibds-recruitment__benefits--policies {
  margin-top: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.khoibds-recruitment__benefits--policies li {
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 20px -16px #11182742;
}
.khoibds-recruitment__cta--inline {
  max-width: 760px;
  margin: 0 auto;
}
.khoibds-recruitment__inline-form {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #fecaca;
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 18px 34px -24px #11182745;
  display: grid;
  gap: 10px;
}
.khoibds-recruitment__inline-form h3 {
  margin: 0;
  color: #c3141d;
  font-size: 24px;
  line-height: 1.25;
}
.khoibds-recruitment__inline-form p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}
.khoibds-recruitment__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.khoibds-recruitment__form label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
}
.khoibds-recruitment__form input,
.khoibds-recruitment__form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  color: #111827;
  padding: 10px 12px;
  font-size: 14px;
}
.khoibds-recruitment__form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: #ec1c25;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.khoibds-recruitment__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -14px #ec1c25d1;
}

.khoibds-about {
  background: linear-gradient(180deg, #ffffff 0%, #fef8f8 100%);
}
.khoibds-about .khoibds-section__header {
  margin-bottom: 38px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.khoibds-about .khoibds-section__title {
  color: #ec1c25;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.khoibds-about .khoibds-section__subtitle {
  font-size: 15px;
  color: #6b7280;
  max-width: 820px;
  line-height: 1.45;
}
.khoibds-about-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.khoibds-about-cards .khoibds-card {
  min-height: 320px;
  border-radius: 22px;
  padding: 28px 22px 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 14px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 12px 24px #0000000d;
  background: #ffffff;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  position: relative;
  overflow: hidden;
}
.khoibds-about-cards .khoibds-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px #00000014;
}
.khoibds-about-cards .khoibds-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  margin: 0 0 8px;
  box-shadow: 0 10px 18px #00000016;
}
.khoibds-about-cards .khoibds-card__icon i,
.khoibds-about-cards .khoibds-card__icon svg {
  color: #fff;
  fill: #fff;
  width: 32px;
  height: 32px;
  line-height: 1;
  display: block;
  stroke: currentColor;
}
.khoibds-about-cards .khoibds-card__content {
  display: grid;
  gap: 10px;
}
.khoibds-about-cards .khoibds-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: #111827;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}
.khoibds-about-cards .khoibds-card__desc {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.45;
  max-width: 240px;
}
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(1) { border-color: #fca5a5; background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%); }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(2) { border-color: #86efac; background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%); }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(3) { border-color: #93c5fd; background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%); }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(4) { border-color: #fcd34d; background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%); }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(1):hover { border-color: #ef4444; }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(2):hover { border-color: #22c55e; }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(3):hover { border-color: #3b82f6; }
.khoibds-about-cards .khoibds-card:not(.khoibds-card--image):nth-child(4):hover { border-color: #f59e0b; }
.khoibds-about-cards .khoibds-card:nth-child(1) .khoibds-card__icon { background: linear-gradient(135deg, #ec1c25 0%, #f87171 100%); }
.khoibds-about-cards .khoibds-card:nth-child(2) .khoibds-card__icon { background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%); }
.khoibds-about-cards .khoibds-card:nth-child(3) .khoibds-card__icon { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); }
.khoibds-about-cards .khoibds-card:nth-child(4) .khoibds-card__icon { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.khoibds-about-cards .khoibds-card--image {
  min-height: 280px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-items: stretch;
  text-align: left;
  background: #111827;
  border-color: #ffffff1f;
}
.khoibds-about-cards .khoibds-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #11182712 15%, #111827cc 98%);
  z-index: 1;
}
.khoibds-about-cards .khoibds-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--khoibds-about-card-image);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.2,.6,.2,1);
  z-index: 0;
}
.khoibds-about-cards .khoibds-card--image .khoibds-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 18px;
}
.khoibds-about-cards .khoibds-card--image .khoibds-card__icon { display: none; }
.khoibds-about-cards .khoibds-card--image .khoibds-card__title {
  color: #ffffff;
  font-size: 24px;
  text-shadow: 0 1px 3px #00000066;
}
.khoibds-about-cards .khoibds-card--image .khoibds-card__desc {
  color: #ffffffe0;
  font-size: 14px;
  max-width: 100%;
  text-shadow: 0 1px 2px #00000055;
}
.khoibds-about-cards .khoibds-card--image:hover {
  transform: translateY(-6px);
}
.khoibds-about-cards .khoibds-card--image:hover::after {
  transform: scale(1.05);
}

.khoibds-why { background: linear-gradient(180deg, #fdf2f2 0%, #ffffff 100%); }
.khoibds-why .khoibds-section__title { color: #ec1c25; font-size: 42px; letter-spacing: -0.02em; }
.khoibds-why .khoibds-section__subtitle { font-size: 16px; color: #7a7a7a; max-width: 600px; line-height: 1.5; }
.khoibds-why-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.khoibds-why-cards .khoibds-card { border-radius: 16px; padding: 32px; display: grid; gap: 20px; box-shadow: 0 8px 24px #00000015; background: #fff; position: relative; overflow: hidden; }
.khoibds-why-cards .khoibds-card__icon { width: 64px; height: 64px; border-radius: 16px; margin: 0; }
.khoibds-why-cards .khoibds-card__icon i, .khoibds-why-cards .khoibds-card__icon svg { width: 28px; height: 28px; font-size: 28px; }
.khoibds-why-cards .khoibds-card__content { display: grid; gap: 12px; position: relative; z-index: 1; }
.khoibds-why-cards .khoibds-card__title { margin: 0; font-size: 18px; font-family: 'Space Grotesk', sans-serif; color: #0d0d0d; font-weight: 600; }
.khoibds-why-cards .khoibds-card__desc { margin: 0; color: #7a7a7a; font-size: 14px; line-height: 1.5; }
.khoibds-why-cards .khoibds-card:nth-child(1) { border: 2px solid #ec1c25; }
.khoibds-why-cards .khoibds-card:nth-child(2) { border: 2px solid #22c55e; }
.khoibds-why-cards .khoibds-card:nth-child(3) { border: 2px solid #3b82f6; }
.khoibds-why-cards .khoibds-card:nth-child(4) { border: 2px solid #f59e0b; }
.khoibds-why-cards .khoibds-card:nth-child(1) .khoibds-card__icon { background: linear-gradient(135deg, #ec1c25 0%, #ff6b6b 100%); }
.khoibds-why-cards .khoibds-card:nth-child(2) .khoibds-card__icon { background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%); }
.khoibds-why-cards .khoibds-card:nth-child(3) .khoibds-card__icon { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); }
.khoibds-why-cards .khoibds-card:nth-child(4) .khoibds-card__icon { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.khoibds-why-cards .khoibds-card--cover {
  min-height: 280px;
  padding: 0;
  border: 0 !important;
  display: flex;
  align-items: flex-end;
  background-image: var(--khoi-card-cover);
  background-size: cover;
  background-position: center;
}
.khoibds-why-cards .khoibds-card--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, #ffffff22 0%, #ffffff00 34%),
    linear-gradient(180deg, #ec1c2538 0%, #ec1c2561 48%, #250406bf 100%);
}
.khoibds-why-cards .khoibds-card--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ec1c2526 0%, #ec1c2500 58%);
  pointer-events: none;
}
.khoibds-why-cards .khoibds-card--cover .khoibds-card__icon { display: none; }
.khoibds-why-cards .khoibds-card--cover .khoibds-card__content {
  width: 100%;
  padding: 22px 20px;
  z-index: 1;
}
.khoibds-why-cards .khoibds-card--cover .khoibds-card__title {
  color: #ffffff;
  text-shadow: 0 1px 3px #00000055;
}
.khoibds-why-cards .khoibds-card--cover .khoibds-card__desc {
  color: #ffffffe0;
  text-shadow: 0 1px 2px #00000045;
}

.khoibds-company-gallery { background: #f7f7f4; }
.khoibds-company-gallery .khoibds-section__header { margin-bottom: 28px; }
.khoibds-gallery { display: grid; gap: 16px; }
.khoibds-gallery__row { overflow: hidden; }
.khoibds-gallery__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 16px;
  animation-duration: var(--khoi-gallery-duration, 32s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.khoibds-gallery__group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.khoibds-gallery__track--left { animation-name: khoibds-gallery-left; }
.khoibds-gallery__track--right { animation-name: khoibds-gallery-right; }
.khoibds-gallery__item {
  width: 420px;
  height: 260px;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  background: #fff;
  box-shadow: 0 2px 10px #00000014;
}
.khoibds-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.khoibds-company-gallery--pause .khoibds-gallery__row:hover .khoibds-gallery__track { animation-play-state: paused; }
@keyframes khoibds-gallery-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes khoibds-gallery-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .khoibds-gallery__track { animation: none !important; }
}

.khoibds-welfare { background: #fff; padding-top: 80px; padding-bottom: 80px; }
.khoibds-welfare .khoibds-section__header { margin-bottom: 34px; }
.khoibds-welfare .khoibds-section__header,
.khoibds-welfare .khoibds-section__cta,
.khoibds-welfare .khoibds-welfare-grid { max-width: 1150px; margin-left: auto; margin-right: auto; }
.khoibds-welfare .khoibds-tag { font-size: 14px; line-height: 1; letter-spacing: 0.02em; font-weight: 700; }
.khoibds-welfare .khoibds-section__title { font-size: 36px; line-height: 1.2; margin: 8px 0 10px; letter-spacing: -0.02em; color: #1f2937; }
.khoibds-welfare .khoibds-section__subtitle { color: #6b7280; font-size: 18px; max-width: 760px; }
.khoibds-welfare-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 24px; }
.khoibds-welfare .khoibds-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: none;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
}
.khoibds-welfare-grid .khoibds-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin: 0;
  background: var(--khoi-icon-bg, #fef2f2);
}
.khoibds-welfare-grid .khoibds-card__icon i,
.khoibds-welfare-grid .khoibds-card__icon svg {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: var(--khoi-icon-color, #ef4444);
  fill: currentColor;
  stroke: currentColor;
}
.khoibds-welfare .khoibds-card__title {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 8px;
  font-weight: 600;
}
.khoibds-welfare .khoibds-card__desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.khoibds-welfare .khoibds-section__cta { margin-top: 44px; gap: 14px; }
.khoibds-welfare .khoibds-cta__text { color: #6b7280; font-size: 16px; }
.khoibds-welfare .khoibds-btn {
  min-width: 260px;
  min-height: 62px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px #ec1c2530;
  padding: 20px 48px;
}
.khoibds-welfare .khoibds-btn__icon i,
.khoibds-welfare .khoibds-btn__icon svg { width: 22px; height: 22px; }

.khoibds-benefits { background: linear-gradient(180deg, #fdf2f2 0%, #ffffff 100%); }
.khoibds-benefits .khoibds-section__header { margin-bottom: 36px; }
.khoibds-benefits .khoibds-section__title { font-size: 36px; color: #1f2937; }
.khoibds-benefits .khoibds-section__subtitle { font-size: 18px; color: #6b7280; }
.khoibds-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 24px; }
.khoibds-benefits .khoibds-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: none;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.khoibds-benefits .khoibds-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0;
  background: var(--khoi-icon-bg, #fdf2f2);
}
.khoibds-benefits .khoibds-card__icon i,
.khoibds-benefits .khoibds-card__icon svg {
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: var(--khoi-icon-color, #ec1c25);
  fill: currentColor;
  stroke: currentColor;
}
.khoibds-benefits .khoibds-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #1f2937;
}
.khoibds-benefits .khoibds-card__desc { margin: 0; font-size: 14px; color: #6b7280; line-height: 1.45; }

.khoibds-training { background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%); }
.khoibds-training .khoibds-section__header { margin-bottom: 56px; }
.khoibds-training .khoibds-tag { color: #EC1C25; font-size: 16px; line-height: 1; font-weight: 700; letter-spacing: 0; }
.khoibds-training .khoibds-section__title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  line-height: 1.2;
  color: #1F2937;
}
.khoibds-training .khoibds-section__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #6B7280;
  max-width: none;
}
.khoibds-training__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.khoibds-training__col { display: grid; gap: 24px; }
.khoibds-training__item {
  border-radius: 24px;
  padding: 32px;
  border: 2px solid var(--khoi-training-border, color-mix(in srgb, var(--khoi-training-accent), #ffffff 58%));
  background: linear-gradient(180deg, var(--khoi-training-bg, color-mix(in srgb, var(--khoi-training-accent), #ffffff 90%)) 0%, #ffffff 100%);
  box-shadow: none;
  display: grid;
  gap: 16px;
}
.khoibds-training__item--1 { --khoi-training-border: #fca5a5; --khoi-training-bg: #fef2f2; --khoi-training-title-color: #dc2626; }
.khoibds-training__item--2 { --khoi-training-border: #fcd34d; --khoi-training-bg: #fffbeb; --khoi-training-title-color: #d97706; }
.khoibds-training__item--3 { --khoi-training-border: #86efac; --khoi-training-bg: #ecfdf5; --khoi-training-title-color: #16a34a; }
.khoibds-training__item--4 { --khoi-training-border: #93c5fd; --khoi-training-bg: #eff6ff; --khoi-training-title-color: #2563eb; }
.khoibds-training__item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--khoi-training-title-color, var(--khoi-training-accent));
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.khoibds-training__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.khoibds-training__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--khoi-training-text-color, #4b5563);
  line-height: 1.45;
}
.khoibds-training__bullet-icon { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; color: var(--khoi-bullet-color, var(--khoi-training-accent)); }
.khoibds-training__bullet-icon i { width: 24px; height: 24px; font-size: 24px; line-height: 1; }
.khoibds-training .khoibds-section__cta { margin-top: 60px; gap: 16px; }
.khoibds-training .khoibds-cta__text { color: #1F2937; font-size: 18px; font-weight: 600; }
.khoibds-training__cta-actions { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.khoibds-training .khoibds-btn {
  border-radius: 8px;
  padding: 16px 32px;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.khoibds-training .khoibds-btn--primary { background: #EC1C25; color: #FFFFFF; border: 1px solid #EC1C25; }
.khoibds-training .khoibds-btn--outline { background: #FFFFFF; color: #EC1C25; border: 1px solid #EC1C25; }
.khoibds-training .khoibds-btn--outline { border-width: 1px; }

/* Brand red makeover for Training Program section */
.khoibds-training {
  background:
    radial-gradient(900px 360px at 8% -12%, #ec1c2514 0%, #ffffff00 70%),
    radial-gradient(840px 340px at 92% 115%, #ec1c250d 0%, #ffffff00 68%),
    linear-gradient(180deg, #fff6f7 0%, #ffffff 100%);
}
.khoibds-training__item {
  border: 1.5px solid #fecaca;
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  box-shadow: 0 16px 34px -24px #11182747;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .26s ease, border-color .26s ease;
}
.khoibds-training__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ec1c25 0%, #ff5f67 100%);
  opacity: .95;
}
.khoibds-training__item::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, #ec1c2510 0%, #ffffff00 72%);
  pointer-events: none;
}
.khoibds-training__item:hover {
  transform: translateY(-3px);
  border-color: #fca5a5;
  box-shadow: 0 22px 40px -24px #1118275e;
}
.khoibds-training__item h3 {
  color: #c91f27 !important;
  letter-spacing: .01em;
}
.khoibds-training__list li {
  color: #334155 !important;
  font-weight: 500;
}
.khoibds-training__bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff1f2;
  color: #ec1c25 !important;
  box-shadow: inset 0 0 0 1px #fecdd3;
}
.khoibds-training__bullet-icon i {
  width: 14px;
  height: 14px;
  font-size: 14px;
  color: #ec1c25 !important;
}

.khoibds-curriculum {
  background:
    radial-gradient(1000px 420px at 12% -10%, #ec1c250e 0%, #ffffff00 72%),
    radial-gradient(900px 420px at 88% 110%, #ec1c250a 0%, #ffffff00 68%),
    linear-gradient(180deg, #ffffff 0%, #fdf2f2 100%);
}
.khoibds-curriculum .khoibds-section__header { margin-bottom: 56px; }
.khoibds-curriculum .khoibds-tag {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
}
.khoibds-curriculum .khoibds-section__title {
  margin: 0;
  color: #1f2937;
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
}
.khoibds-curriculum .khoibds-section__subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.45;
  max-width: none;
}
.khoibds-curriculum__modules { display: grid; gap: 28px; }
.khoibds-curriculum__module {
  border: 1.5px solid color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 72%, #ffffff 28%);
  border-radius: 24px;
  padding: 36px;
  background: linear-gradient(135deg, var(--khoi-curr-bg-from, #fef2f2) 0%, var(--khoi-curr-bg-to, #ffffff) 100%);
  box-shadow:
    0 20px 40px -28px #1118274d,
    0 10px 24px -20px color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 44%, #000000 56%);
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .28s ease, border-color .28s ease;
}
.khoibds-curriculum__module::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--khoi-curr-border, #fca5a5) 0%, color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 62%, #ffffff 38%) 100%);
  opacity: .8;
  z-index: -1;
}
.khoibds-curriculum__module::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 16%, #ffffff 84%) 0%, #ffffff00 72%);
  pointer-events: none;
  z-index: -1;
}
.khoibds-curriculum__module:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 86%, #ffffff 14%);
  box-shadow:
    0 26px 48px -30px #11182761,
    0 14px 28px -20px color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 52%, #000000 48%);
}
.khoibds-curriculum__left {
  display: grid;
  gap: 12px;
  background: #ffffffc7;
  border: 1px solid #ffffffcc;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: inset 0 1px 0 #ffffff;
}
.khoibds-curriculum__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--khoi-curr-icon-from, #ec1c25) 0%, var(--khoi-curr-icon-to, #ff6b6b) 100%);
  box-shadow:
    0 12px 24px -12px color-mix(in srgb, var(--khoi-curr-icon-from, #ec1c25) 48%, #000000 52%),
    inset 0 1px 0 #ffffff66;
}
.khoibds-curriculum__icon i {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 1;
  color: var(--khoi-curr-icon-color, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.khoibds-curriculum__left h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--khoi-curr-title-color, #1f2937);
}
.khoibds-curriculum__duration {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--khoi-curr-duration-color, #374151);
  font-weight: 600;
}
.khoibds-curriculum__right ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.khoibds-curriculum__right li {
  position: relative;
  padding-left: 18px;
  margin: 0;
  color: var(--khoi-curr-point-color, #1f2937);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}
.khoibds-curriculum__right li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .63em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 70%, #ffffff 30%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--khoi-curr-border, #fca5a5) 16%, #ffffff 84%);
}

.khoibds-popup-widget { position: relative; z-index: 3; }
.khoibds-popup__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #00000073;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: auto;
}
.khoibds-popup__shell {
  width: min(500px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  position: relative;
  box-sizing: border-box;
}
.khoibds-popup__dialog {
  width: 100%;
  max-height: 100%;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f9 100%);
  border: 1px solid #fecaca;
  border-radius: 20px;
  padding: 32px 30px 28px;
  display: grid;
  gap: 24px;
  justify-items: center;
  position: relative;
  box-shadow: 0 26px 56px #0000003d;
  pointer-events: auto;
  box-sizing: border-box;
}
.khoibds-popup-embed {
  width: 100%;
}
.khoibds-popup__dialog--embed {
  max-width: 100%;
  max-height: none;
  overflow: visible;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
  justify-items: stretch;
}
.khoibds-popup__dialog--embed .khoibds-popup__title,
.khoibds-popup__dialog--embed .khoibds-popup__desc {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.khoibds-popup__close {
  width: 44px;
  height: 44px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  background: #ffffff;
  color: #ec1c25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  box-shadow: 0 10px 22px #ec1c2529;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  pointer-events: auto;
  touch-action: manipulation;
}
.khoibds-popup__close i { pointer-events: none; }
.khoibds-popup__close:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px #ec1c2526;
  background: #fff1f2;
}
.khoibds-popup__icon {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ec1c25 0%, #d9151f 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px #ec1c2538;
}
.khoibds-popup__icon i { font-size: 34px; line-height: 1; }
.khoibds-popup__title {
  margin: 0;
  color: #0d0d0d;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  width: 100%;
}
.khoibds-popup__desc {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
  max-width: 100%;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.khoibds-popup__form { width: 100%; display: grid; gap: 16px; }
.khoibds-popup__field { width: 100%; display: grid; gap: 8px; position: relative; }
.khoibds-popup__field > span { color: #111827; font-size: 14px; font-weight: 600; }
.khoibds-popup__field > i {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #9ca3af;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.khoibds-popup__field input,
.khoibds-popup__field select {
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #0d0d0d;
  font-size: 15px;
  padding: 0 16px 0 46px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}
.khoibds-popup__field select { appearance: none; -webkit-appearance: none; }
.khoibds-popup__field input:focus,
.khoibds-popup__field select:focus {
  border-color: #ec1c25;
  background: #ffffff;
  box-shadow: 0 0 0 4px #ec1c2514;
}
.khoibds-popup__submit {
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ec1c25 0%, #d9151f 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px #ec1c2533;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.khoibds-popup__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px #ec1c253d;
  filter: brightness(1.03);
}
.khoibds-popup__policy { margin: 0; color: #9ca3af; font-size: 13px; text-align: center; }
.khoibds-popup__policy a {
  color: #ec1c25;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.khoibds-popup__note {
  margin: -2px 0 0;
  color: #6b7280;
  font-size: 12px;
  text-align: center;
}
.khoibds-popup__hotline {
  width: 100%;
  margin: 0;
  min-height: 46px;
  border-radius: 10px;
  border: 1.5px solid #ec1c25;
  color: #ec1c25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}
body.khoibds-popup-open { overflow: hidden; }
/* Hide Elementor's own popup/lightbox close icon while KhoiBDS popup is open */
body.khoibds-popup-open .elementor-lightbox .dialog-close-button,
body.khoibds-popup-open .elementor-popup-modal .dialog-close-button,
body.khoibds-popup-open .dialog-widget .dialog-close-button,
body.khoibds-popup-open .dialog-close-button {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.khoibds-blog-page { background: #ffffff; width: 100%; }
.khoibds-blog-page__hero {
  background: #fafafa;
  padding: 60px 16px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}
.khoibds-blog-page__hero > .khoibds-blog-page__title,
.khoibds-blog-page__hero > .khoibds-blog-page__subtitle,
.khoibds-blog-page__hero > .khoibds-blog-page__tabs {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.khoibds-blog-page__title {
  margin: 0;
  color: #0d0d0d;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}
.khoibds-blog-page__subtitle {
  margin: 0;
  color: #7a7a7a;
  font-size: 18px;
  line-height: 1.5;
}
.khoibds-blog-page__tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding-top: 16px; }
.khoibds-blog-page__tab {
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 10px 20px;
  color: #7a7a7a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
}
.khoibds-blog-page__tab.is-active { background: #ec1c25; border-color: #ec1c25; color: #ffffff; font-weight: 600; }

.khoibds-blog-page__content {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.khoibds-blog-page__left { display: grid; gap: 28px; min-width: 0; }
.khoibds-blog-page__feature-head { display: flex; align-items: center; gap: 12px; }
.khoibds-blog-page__feature-head i { color: #ec1c25; font-size: 24px; }
.khoibds-blog-page__feature-head h2 { margin: 0; color: #0d0d0d; font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; }

.khoibds-blog-page__feature-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(320px, 45%) minmax(0, 1fr);
}
.khoibds-blog-page__feature-image,
.khoibds-blog-page__news-image,
.khoibds-blog-single__related-image,
.khoibds-blog-single__hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.khoibds-blog-page__feature-image { min-height: 280px; }
.khoibds-blog-page__feature-body { padding: 24px; display: grid; align-content: center; gap: 12px; }
.khoibds-blog-page__cat,
.khoibds-blog-single__cat {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 20px;
  background: #ec1c25;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.khoibds-blog-page__feature-body h3,
.khoibds-blog-page__news-body h3,
.khoibds-blog-single__related-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}
.khoibds-blog-page__feature-body h3 a,
.khoibds-blog-page__news-body h3 a,
.khoibds-blog-single__related-body h3 a { color: #0d0d0d; text-decoration: none; }
.khoibds-blog-page__feature-body h3 a,
.khoibds-blog-page__news-body h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.khoibds-blog-page__feature-body p,
.khoibds-blog-page__news-body p,
.khoibds-blog-single__related-body p { margin: 0; color: #7a7a7a; font-size: 14px; line-height: 1.6; }
.khoibds-blog-page__feature-body p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.khoibds-blog-page__news-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.khoibds-blog-page__meta { color: #b0b0b0; font-size: 13px; }

.khoibds-blog-page__news { display: grid; gap: 16px; }
.khoibds-blog-page__news-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.khoibds-blog-page__news-head h2 { margin: 0; font-size: 24px; color: #0d0d0d; font-family: 'Space Grotesk', sans-serif; }
.khoibds-blog-page__news-head a { color: #ec1c25; font-size: 14px; font-weight: 600; text-decoration: none; }
.khoibds-blog-page__news-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.khoibds-blog-page__news-card { border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; background: #ffffff; display: grid; grid-template-rows: 180px auto; }
.khoibds-blog-page__news-image { min-height: 180px; }
.khoibds-blog-page__news-body { padding: 14px 16px 16px; display: grid; gap: 8px; }
.khoibds-blog-page__news-body h3 { font-size: 18px; }

.khoibds-blog-page__right {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: var(--khoibds-sticky-top);
  align-self: start;
  height: fit-content;
  z-index: 3;
}
.khoibds-blog-page__jobs {
  background: #fffafa;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}
.khoibds-blog-page__jobs h3 { margin: 0; text-align: center; color: #0d0d0d; font-size: 18px; font-weight: 700; }
.khoibds-blog-page__job-card,
.khoibds-blog-single__job-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  display: grid;
  gap: 10px;
}
.khoibds-blog-page__job-card:first-of-type { border: 2px solid #ec1c25; box-shadow: 0 10px 30px #ec1c252e; }
.khoibds-blog-page__job-card h4,
.khoibds-blog-single__job-card h4 { margin: 0; color: #0d0d0d; font-size: 15px; line-height: 1.4; }
.khoibds-blog-page__salary,
.khoibds-blog-single__salary { margin: 0; color: #ec1c25; font-size: 13px; }
.khoibds-blog-page__loc,
.khoibds-blog-single__loc { margin: 0; color: #b0b0b0; font-size: 13px; }
.khoibds-blog-page__apply,
.khoibds-blog-single__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 6px;
  background: #ec1c25;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.khoibds-blog-page__job-card:hover {
  border-color: #ec1c25;
  box-shadow: 0 8px 20px #ec1c251c;
}

.khoibds-blog-page__cta-box {
  border-radius: 12px;
  background: #ec1c25;
  color: #ffffff;
  padding: 16px 14px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  box-shadow: 0 10px 22px #ec1c2536;
  border: 1px solid #ffffff1f;
}
.khoibds-blog-page__cta-box i { font-size: 24px; color: #ffffff; }
.khoibds-blog-page__cta-box h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  white-space: pre-line;
  color: #ffffff !important;
  text-shadow: 0 1px 2px #00000033;
}
.khoibds-blog-page__cta-box p {
  margin: 0;
  color: #fff5f5;
  font-size: 12px;
  line-height: 1.4;
}
.khoibds-blog-page__cta-btn {
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #ec1c25;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.khoibds-blog-single { background: #ffffff; width: 100%; padding: 0 16px 40px; }
.khoibds-blog-single__article { max-width: 1240px; margin: 0 auto; display: grid; gap: 40px; }
.khoibds-blog-single__layout,
.khoibds-blog-single__content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start; }
.khoibds-blog-single__main { display: grid; gap: 28px; min-width: 0; }
.khoibds-blog-single__hero { display: grid; gap: 20px; justify-items: start; text-align: left; padding-top: 24px; }
.khoibds-blog-single__hero-image { width: 100%; min-height: 450px; border-radius: 16px; }
.khoibds-blog-single__title { margin: 0; color: #0d0d0d; font-size: 32px; line-height: 1.3; font-weight: 700; max-width: 100%; }
.khoibds-blog-single__meta { display: flex; align-items: center; gap: 20px; color: #b0b0b0; font-size: 14px; flex-wrap: wrap; }
.khoibds-blog-single__author { display: inline-flex; align-items: center; gap: 8px; color: #7a7a7a; }

.khoibds-blog-single__content { color: #0d0d0d; font-size: 16px; line-height: 1.6; }
.khoibds-blog-single__content h2,
.khoibds-blog-single__content h3 { color: #0d0d0d; margin: 28px 0 14px; font-size: 22px; }
.khoibds-blog-single__content p { margin: 0 0 16px; }
.khoibds-blog-single__content ul,
.khoibds-blog-single__content ol { margin: 0 0 16px 22px; color: #7a7a7a; }
.khoibds-blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.khoibds-blog-single__content iframe,
.khoibds-blog-single__content video { max-width: 100%; border-radius: 12px; }
.khoibds-blog-single__content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.khoibds-blog-single__content pre {
  overflow-x: auto;
  padding: 14px;
  border-radius: 10px;
  background: #111827;
  color: #f9fafb;
}
.khoibds-blog-single__sidebar {
  border-radius: 16px;
  background: #fafafa;
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: var(--khoibds-sticky-top);
  align-self: start;
  max-height: none;
  overflow: visible;
  z-index: 3;
}
.khoibds-blog-single__sidebar h3 { margin: 0; color: #0d0d0d; font-size: 18px; font-weight: 700; }
.khoibds-blog-single__form-box {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  padding: 16px;
  display: grid;
  gap: 12px;
}
.khoibds-blog-single__form-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ec1c25;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.khoibds-blog-single__form-icon i { font-size: 22px; line-height: 1; }
.khoibds-blog-single__form-title {
  margin: 0;
  color: #0d0d0d;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}
.khoibds-blog-single__form-desc {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}
.khoibds-blog-single__form .khoibds-popup__field > span { font-size: 12px; }
.khoibds-blog-single__form .khoibds-popup__field input,
.khoibds-blog-single__form .khoibds-popup__field select { min-height: 44px; font-size: 13px; }
.khoibds-blog-single__form .khoibds-popup__field > i { bottom: 13px; }
.khoibds-blog-single__form .khoibds-popup__submit { min-height: 46px; font-size: 14px; }
.khoibds-blog-single__form-policy { text-align: left; font-size: 11px; }
.khoibds-blog-single__form-hotline {
  min-height: 38px;
  font-size: 13px;
}

.khoibds-blog-single__related { display: grid; gap: 24px; }
.khoibds-blog-single__related h2 { margin: 0; text-align: left; color: #0d0d0d; font-size: 24px; font-weight: 700; }
.khoibds-blog-single__related-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.khoibds-blog-single__related-card { border: 1px solid #e8e8e8; border-radius: 12px; background: #ffffff; overflow: hidden; display: grid; }
.khoibds-blog-single__related-image { min-height: 180px; }
.khoibds-blog-single__related-body { padding: 0 16px 16px; display: grid; gap: 8px; }

.khoibds-blog-single__sticky-cta-wrap {
  max-width: 1240px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}
.khoibds-blog-single__sticky-cta {
  min-height: 84px;
  border: 1px solid #fecdd3;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 50%, #fee2e299 0, #fee2e200 48%),
    linear-gradient(90deg, #ffffff 0%, #fff7f7 52%, #fff1f2 100%);
  box-shadow: 0 14px 32px #ec1c251a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  grid-column: 1;
}
.khoibds-blog-single__sticky-cta::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: #ec1c2514;
  pointer-events: none;
}
.khoibds-blog-single__sticky-cta p {
  margin: 0;
  color: #111827;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.khoibds-blog-single__sticky-cta p::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ec1c25;
  box-shadow: 0 0 0 6px #ec1c2524;
  flex-shrink: 0;
}
.khoibds-blog-single__sticky-cta a {
  min-height: 46px;
  border-radius: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ec1c25 0%, #d9151f 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px #ec1c2540;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: khoibds-sticky-cta-pulse 1.8s ease-in-out infinite;
}
.khoibds-blog-single__sticky-cta a::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -42%;
  width: 34%;
  height: 320%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffff9a 50%, #ffffff00 100%);
  animation: khoibds-sticky-cta-shine 2.2s ease-in-out infinite;
  pointer-events: none;
}
.khoibds-blog-single__sticky-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px #ec1c254d;
  filter: brightness(1.04);
}
@keyframes khoibds-sticky-cta-pulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 10px 24px #ec1c2540; }
  50% { transform: translateY(-1px) scale(1.03); box-shadow: 0 14px 28px #ec1c2550; }
}
@keyframes khoibds-sticky-cta-shine {
  0%, 58% { left: -42%; opacity: 0; }
  66% { opacity: .9; }
  86% { left: 128%; opacity: .9; }
  100% { left: 128%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .khoibds-blog-single__sticky-cta a,
  .khoibds-blog-single__sticky-cta a::after {
    animation: none !important;
  }
}

.khoibds-footer { width: 100%; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); padding: 60px var(--khoibds-page-gutter) 40px; }
.khoibds-footer__top { display: grid; grid-template-columns: 320px 1fr; gap: 30px; }
.khoibds-footer__left { display: grid; gap: 20px; }
.khoibds-footer__logo-wrap { display: flex; align-items: center; gap: 12px; }
.khoibds-footer__logo-icon { width: 48px; height: 48px; border-radius: 8px; background: #ec1c25; display: inline-block; }
.khoibds-footer__logo-image { max-width: 320px; width: auto; height: auto; display: block; object-fit: contain; }
.khoibds-footer__logo { margin: 0; font-family: 'Space Grotesk', sans-serif; font-size: 20px; line-height: 1.3; font-weight: 700; color: #1f2937; }
.khoibds-footer__desc { margin: 0; color: #6b7280; font-size: 14px; line-height: 1.6; max-width: 360px; }
.khoibds-footer__contact { display: grid; gap: 8px; }
.khoibds-footer__contact-row { display: flex; align-items: center; gap: 8px; color: #374151; font-size: 14px; line-height: 1.4; }
.khoibds-footer__contact-row i { width: 16px; height: 16px; color: #ec1c25; display: flex; align-items: center; justify-content: center; }
.khoibds-footer__promo { display: grid; gap: 16px; padding: 20px; border-radius: 16px; background: #ec1c25; }
.khoibds-footer__promo-label { margin: 0; color: #ffffff; font-size: 12px; font-weight: 700; line-height: 1.3; }
.khoibds-footer__promo-title { margin: 0; color: #ffffff; font-family: 'Space Grotesk', sans-serif; font-size: 16px; line-height: 1.3; font-weight: 700; }
.khoibds-footer__promo-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.khoibds-footer__promo-list li { display: flex; align-items: center; gap: 8px; color: #ffffff; font-size: 13px; line-height: 1.4; }
.khoibds-footer__promo-list li i { width: 16px; height: 16px; color: #ffffff; display: flex; align-items: center; justify-content: center; }
.khoibds-footer__promo-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: #ffffff;
  color: #ec1c25;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  animation: khoibds-footer-btn-wiggle 3s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}
.khoibds-footer__promo-btn i { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; }
.khoibds-footer__promo-btn:hover { animation-duration: 1.6s; }
@keyframes khoibds-footer-btn-wiggle {
  0%, 66%, 100% { transform: translateX(0) rotate(0deg); }
  72% { transform: translateX(-1px) rotate(-0.8deg); }
  77% { transform: translateX(1.4px) rotate(0.9deg); }
  82% { transform: translateX(-1px) rotate(-0.8deg); }
  87% { transform: translateX(1px) rotate(0.6deg); }
  92% { transform: translateX(0) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .khoibds-footer__promo-btn { animation: none !important; }
}
.khoibds-footer__right { padding: 0 24px; display: grid; gap: 24px; }
.khoibds-footer__branches-head { display: flex; align-items: center; gap: 8px; padding-bottom: 8px; border-bottom: 1px solid #e5e7eb; }
.khoibds-footer__branches-head i { width: 20px; height: 20px; color: #ec1c25; display: flex; align-items: center; justify-content: center; }
.khoibds-footer__branches-head h4 { margin: 0; color: #1f2937; font-size: 20px; line-height: 1.3; font-weight: 700; font-family: 'Inter', sans-serif; }
.khoibds-footer__branches-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr) minmax(0, 1fr); gap: 24px; }
.khoibds-footer__branch-col { display: grid; gap: 16px; align-content: start; }
.khoibds-footer__branch-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--khoi-branch-tag-bg, #fdf2f2);
  color: var(--khoi-branch-tag-color, #ec1c25);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}
.khoibds-footer__branch-tag i { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; color: inherit; }
.khoibds-footer__address-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 5px; }
.khoibds-footer__address-item { display: flex; align-items: flex-start; gap: 6px; color: #ec1c25; font-size: 13px; line-height: 1.35; }
.khoibds-footer__address-dot { flex-shrink: 0; line-height: 1; }
.khoibds-footer__address-item > span:last-child { flex: 1; min-width: 0; }
@media (min-width: 1200px) {
  .khoibds-footer__branch-col--ha-noi .khoibds-footer__address-item > span:last-child {
    white-space: nowrap;
    font-size: 12px;
  }
}
.khoibds-footer__bottom {
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.khoibds-footer__copyright { display: grid; gap: 4px; }
.khoibds-footer__copyright-text { margin: 0; color: #9ca3af; font-size: 12px; line-height: 1.4; }
.khoibds-footer__policy-link {
  color: #ec1c25;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.khoibds-footer__social { display: flex; gap: 12px; }
.khoibds-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #fdf2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ec1c25;
  text-decoration: none;
}
.khoibds-footer__social-link i { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; color: inherit; }

.khoibds-fixed-banner {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(70vw, 1240px);
  max-width: calc(100% - 24px);
  z-index: 1200;
  transition: opacity .24s ease, transform .24s ease;
}
.khoibds-fixed-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}
.khoibds-fixed-banner__close {
  min-height: 34px;
  border-radius: 10px;
  border: 0;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  box-shadow: 0 8px 18px #00000026;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.khoibds-fixed-banner__inner {
  min-height: 108px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ec1c25 0%, #d9161f 55%, #bd131b 100%);
  border: 1px solid #ffffff33;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  box-shadow: 0 16px 32px #7f1d1d52;
}
.khoibds-fixed-banner__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  display: none;
}
.khoibds-fixed-banner__brand i { font-size: 24px; color: #facc15; }
.khoibds-fixed-banner__content { display: grid; gap: 6px; min-width: 0; }
.khoibds-fixed-banner__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1.65vw, 30px);
  line-height: 1.14;
  font-weight: 800;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.khoibds-fixed-banner__subtitle {
  margin: 0;
  color: #fee2e2;
  font-size: clamp(15px, 1.1vw, 28px);
  line-height: 1.3;
}
.khoibds-fixed-banner__cta {
  min-height: 56px;
  min-width: 152px;
  border-radius: 999px;
  background: #ffffff;
  color: #ec1c25;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: khoibds-fixed-cta-pulse 1.9s ease-in-out infinite;
  box-shadow: 0 10px 22px #ffffff3d;
}
.khoibds-fixed-banner__cta::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -42%;
  width: 34%;
  height: 320%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, #ffffff00 0%, #ec1c254d 50%, #ffffff00 100%);
  animation: khoibds-fixed-cta-shine 2.3s ease-in-out infinite;
  pointer-events: none;
}
.khoibds-fixed-banner__cta:hover {
  animation-duration: 1.2s;
}
@keyframes khoibds-fixed-cta-pulse {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
  50% { transform: translateY(-1px) scale(1.03); filter: brightness(1.03); }
}
@keyframes khoibds-fixed-cta-shine {
  0%, 55% { left: -42%; opacity: 0; }
  63% { opacity: .85; }
  86% { left: 128%; opacity: .85; }
  100% { left: 128%; opacity: 0; }
}
.khoibds-fixed-banner__image {
  width: 168px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #ffffff66;
  background: #ffffff22;
}

@media (prefers-reduced-motion: reduce) {
  .khoibds-fixed-banner__cta,
  .khoibds-fixed-banner__cta::after {
    animation: none !important;
  }
}
.khoibds-fixed-banner__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1280px) {
  .khoibds-hero, .khoibds-section { padding: 72px var(--khoibds-page-gutter); }
  .khoibds-header { padding: 0 16px; }
  .khoibds-header__inner { gap: 10px; padding: 14px 0; }
  .khoibds-header__nav { gap: 0; }
  .khoibds-consignment__inner { grid-template-columns: minmax(0, 1fr) minmax(340px, 400px); gap: 24px; }
  .khoibds-consignment__title { font-size: 38px; }
  .khoibds-consignment__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-recruitment__inner { grid-template-columns: minmax(0, 1fr) minmax(340px, 400px); gap: 24px; }
  .khoibds-recruitment__title { font-size: 38px; }
  .khoibds-recruitment__job h3 { font-size: 22px; }
  .khoibds-company__grid { grid-template-columns: 1fr; gap: 32px; }
  .khoibds-company__intro { max-width: none; }
  .khoibds-about .khoibds-section__title { font-size: 46px; }
  .khoibds-about-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-about-cards .khoibds-card { min-height: 290px; }
  .khoibds-why-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-gallery__item { width: 360px; height: 230px; }
  .khoibds-footer__right { padding: 0 16px; }
  .khoibds-footer__branches-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .khoibds-blog-page__hero { padding: 48px 16px; }
  .khoibds-blog-page__content { padding: 28px 16px; grid-template-columns: minmax(0, 1fr) 300px; }
  .khoibds-blog-page__feature-card { grid-template-columns: 320px 1fr; }
  .khoibds-blog-single { padding: 0 16px 36px; }
  .khoibds-blog-single__layout,
  .khoibds-blog-single__content-wrap { gap: 32px; }
  .khoibds-blog-single__sticky-cta-wrap { grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; }
  .khoibds-fixed-banner__inner {
    grid-template-columns: 1fr auto;
    min-height: 96px;
  }
  .khoibds-fixed-banner__image { display: none; }
  .khoibds-fixed-banner__cta { min-height: 50px; font-size: 20px; }
}

@media (max-width: 1024px) {
  .khoibds-hero, .khoibds-section { padding: 64px 16px; }
  .khoibds-header {
    padding: 0 16px;
    position: fixed;
    top: var(--khoibds-header-admin-offset);
    left: 0;
    right: 0;
    overflow: visible;
  }
  .khoibds-header__inner { padding: 14px 0; }
  .khoibds-header__menu-toggle { display: inline-flex; }
  .khoibds-consignment__inner { grid-template-columns: 1fr; gap: 20px; }
  .khoibds-consignment__title { font-size: 34px; }
  .khoibds-consignment__form-card { position: static; top: auto; }
  .khoibds-recruitment__inner { grid-template-columns: 1fr; gap: 20px; }
  .khoibds-recruitment__title { font-size: 34px; }
  .khoibds-recruitment__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-recruitment__inline-form { padding: 16px; }
  .khoibds-header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 1001;
    background: #ffffff;
    border: 1px solid #fecdd3;
    border-radius: 16px;
    box-shadow: 0 18px 30px #0000001c;
    padding: 12px;
    gap: 8px;
    flex-direction: column;
    max-height: min(70vh, 460px);
    overflow-y: auto;
  }
  .khoibds-header.is-mobile-open .khoibds-header__nav { display: flex; }
  .khoibds-header__nav .khoibds-nav__item {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .khoibds-header__cta { padding: 10px 18px; font-size: 13px; }
  .khoibds-footer { padding: 48px 16px; }
  .khoibds-cta-banner { flex-direction: column; align-items: flex-start; }
  .khoibds-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .khoibds-footer__right { padding: 0; }
  .khoibds-footer__branches-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .khoibds-company__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .khoibds-company__stat { min-height: 160px; padding: 20px; }
  .khoibds-about .khoibds-section__title { font-size: 40px; }
  .khoibds-about-cards .khoibds-card { min-height: 260px; padding: 24px 20px 20px; }
  .khoibds-about-cards .khoibds-card__icon { width: 74px; height: 74px; border-radius: 18px; }
  .khoibds-about-cards .khoibds-card__title { font-size: 19px; }
  .khoibds-about-cards .khoibds-card--image { min-height: 240px; padding: 0; }
  .khoibds-about-cards .khoibds-card--image .khoibds-card__title { font-size: 22px; }
  .khoibds-training__columns { grid-template-columns: 1fr; }
  .khoibds-training .khoibds-section__header { margin-bottom: 40px; }
  .khoibds-training .khoibds-section__cta { margin-top: 44px; }
  .khoibds-training__cta-actions {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .khoibds-training .khoibds-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
  .khoibds-curriculum .khoibds-section__header { margin-bottom: 40px; }
  .khoibds-curriculum .khoibds-section__title { font-size: 36px; }
  .khoibds-curriculum__module { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .khoibds-curriculum__left { padding: 14px; border-radius: 14px; }
  .khoibds-welfare .khoibds-section__title { font-size: 30px; }
  .khoibds-welfare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-gallery__item { width: 320px; height: 210px; }
  .khoibds-popup__dialog { padding: 24px; }
  .khoibds-blog-page__hero { padding: 42px 16px; }
  .khoibds-blog-page__title { font-size: 36px; }
  .khoibds-blog-page__subtitle { font-size: 16px; }
  .khoibds-blog-page__content { padding: 24px 16px; grid-template-columns: 1fr; }
  .khoibds-blog-page__feature-card { grid-template-columns: 1fr; min-height: auto; }
  .khoibds-blog-page__feature-image { min-height: 220px; }
  .khoibds-blog-page__feature-body { padding: 20px; }
  .khoibds-blog-page__right { grid-template-columns: repeat(2, minmax(0, 1fr)); position: static; top: auto; }
  .khoibds-blog-page__cta-box h4 { font-size: 17px; }
  .khoibds-blog-page__cta-btn { min-height: 38px; font-size: 14px; }
  .khoibds-blog-single { padding: 0 16px 30px; }
  .khoibds-blog-single__hero-image { min-height: 340px; }
  .khoibds-blog-single__layout,
  .khoibds-blog-single__content-wrap { grid-template-columns: 1fr; gap: 24px; }
  .khoibds-blog-single__sticky-cta-wrap { grid-template-columns: 1fr; gap: 0; }
  .khoibds-blog-single__hero { justify-items: start; text-align: left; }
  .khoibds-blog-single__sidebar { position: static; top: auto; max-height: none; overflow: visible; }
  .khoibds-blog-single__related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .khoibds-blog-single__sticky-cta p { font-size: 20px; }
  .khoibds-blog-single__sticky-cta a { font-size: 16px; min-height: 42px; padding: 10px 22px; }
  .khoibds-fixed-banner__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 12px 14px;
  }
  .khoibds-fixed-banner__brand {
    justify-content: center;
    font-size: 22px;
  }
  .khoibds-fixed-banner__content { gap: 4px; }
  .khoibds-fixed-banner__cta {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .khoibds-hero, .khoibds-section { padding: 52px 16px; }
  .khoibds-header { padding: 0 16px; }
  .khoibds-header__inner {
    padding: 12px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 10px;
  }
  .khoibds-header__logo { grid-column: 1; }
  .khoibds-header__cta {
    grid-column: 2;
    justify-self: center;
    margin: 0;
    padding: 10px 20px;
    font-size: 13px;
  }
  .khoibds-header__menu-toggle {
    grid-column: 3;
    justify-self: end;
  }
  .khoibds-logo__image { max-height: 44px; max-width: 250px; }
  .khoibds-consignment__title { font-size: 30px; }
  .khoibds-consignment__subtitle { font-size: 15px; }
  .khoibds-consignment__stats { grid-template-columns: 1fr; }
  .khoibds-consignment__form-card h3 { font-size: 22px; }
  .khoibds-recruitment__title { font-size: 30px; }
  .khoibds-recruitment__subtitle { font-size: 15px; }
  .khoibds-recruitment__job h3 { font-size: 20px; }
  .khoibds-recruitment__cta p { font-size: 13px; }
  .khoibds-recruitment__job--featured h3 { font-size: 25px; }
  .khoibds-recruitment__benefits--policies { grid-template-columns: 1fr; }
  .khoibds-recruitment__form { grid-template-columns: 1fr; }
  .khoibds-recruitment__inline-form h3 { font-size: 22px; }
  .khoibds-hero__title { font-size: 34px; }
  .khoibds-hero__subtitle { font-size: 16px; }
  .khoibds-hero__actions {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .khoibds-hero__actions .khoibds-btn {
    width: 100%;
    min-width: 0;
    padding: 11px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .khoibds-hero__actions .khoibds-btn:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 260px);
  }
  .khoibds-hero__actions .khoibds-btn__icon { margin-left: 6px; }
  .khoibds-hero__stats {
    width: 100%;
    max-width: 420px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .khoibds-hero .khoibds-stat { min-width: 0; text-align: center; }
  .khoibds-hero .khoibds-stat__value {
    font-size: clamp(30px, 7.5vw, 48px) !important;
    line-height: 1.05;
  }
  .khoibds-hero .khoibds-stat__label {
    font-size: clamp(11px, 2.9vw, 15px) !important;
    line-height: 1.3;
  }
  .khoibds-cta .khoibds-hero__actions {
    width: 100%;
    max-width: 380px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-inline: auto;
  }
  .khoibds-cta .khoibds-hero__actions .khoibds-btn {
    width: 100%;
    min-width: 0;
    padding: 11px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .khoibds-cta__stats {
    width: 100%;
    max-width: 520px;
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .khoibds-cta__stats .khoibds-stat {
    min-width: 0;
    text-align: center;
  }
  .khoibds-cta__stats .khoibds-stat:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 240px);
  }
  .khoibds-cta .khoibds-stat__value {
    font-size: clamp(36px, 10vw, 64px);
    line-height: 1.05;
  }
  .khoibds-cta .khoibds-stat__label {
    font-size: clamp(12px, 3.9vw, 20px);
    line-height: 1.3;
  }
  .khoibds-company .khoibds-section__title,
  .khoibds-about .khoibds-section__title,
  .khoibds-why .khoibds-section__title { font-size: 34px; }
  .khoibds-company__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .khoibds-company__stat { min-height: 150px; padding: 16px 12px; gap: 8px; }
  .khoibds-company__stat-value { font-size: clamp(34px, 8.5vw, 44px); }
  .khoibds-company__stat-label { font-size: 13px; line-height: 1.25; }
  .khoibds-about-cards { grid-template-columns: 1fr; }
  .khoibds-about-cards .khoibds-card { min-height: 0; padding: 24px 18px 20px; border-radius: 18px; }
  .khoibds-about-cards .khoibds-card__title { font-size: 22px; }
  .khoibds-about-cards .khoibds-card__desc { font-size: 15px; max-width: 100%; }
  .khoibds-about-cards .khoibds-card--image { min-height: 220px; padding: 0; }
  .khoibds-about-cards .khoibds-card--image .khoibds-card__content { padding: 16px; }
  .khoibds-about-cards .khoibds-card--image .khoibds-card__title { font-size: 20px; }
  .khoibds-why-cards { grid-template-columns: 1fr; }
  .khoibds-why-cards .khoibds-card--cover { min-height: 240px; }
  .khoibds-gallery__item { width: 280px; height: 182px; }
  .khoibds-hero__title--typing { width: 100% !important; min-height: 0 !important; }
  .khoibds-hero__typing-line { white-space: normal; text-align: center; line-height: 1.2; }
  .khoibds-training__item { padding: 24px; border-radius: 18px; }
  .khoibds-training__item h3 { font-size: 22px; }
  .khoibds-training__list li { font-size: 14px; gap: 10px; grid-template-columns: 22px 1fr; }
  .khoibds-curriculum .khoibds-section__title { font-size: 32px; }
  .khoibds-curriculum__icon { width: 64px; height: 64px; border-radius: 18px; }
  .khoibds-curriculum__icon i { width: 30px; height: 30px; font-size: 30px; }
  .khoibds-curriculum__left h3 { font-size: 24px; }
  .khoibds-curriculum__right li { font-size: 15px; }
  .khoibds-footer { padding: 40px 16px 28px; }
  .khoibds-footer__logo-image { max-width: 240px; }
  .khoibds-footer__branches-grid { grid-template-columns: 1fr; }
  .khoibds-footer__bottom { flex-direction: column; align-items: flex-start; }
  .khoibds-popup__dialog { padding: 20px; gap: 16px; }
  .khoibds-blog-page__hero { padding: 36px 20px; }
  .khoibds-blog-page__title { font-size: 30px; }
  .khoibds-blog-page__tabs { gap: 8px; }
  .khoibds-blog-page__tab { padding: 9px 14px; font-size: 13px; }
  .khoibds-blog-page__content { padding: 20px; }
  .khoibds-blog-page__news-grid { grid-template-columns: 1fr; }
  .khoibds-blog-page__right { grid-template-columns: 1fr; position: static; top: auto; }
  .khoibds-blog-page__cta-box { padding: 14px 12px; }
  .khoibds-blog-page__cta-box h4 { font-size: 16px; }
  .khoibds-blog-page__cta-box p { font-size: 11px; }
  .khoibds-blog-single { padding: 0 20px 24px; }
  .khoibds-blog-single__title { font-size: 26px; }
  .khoibds-blog-single__hero-image { min-height: 250px; }
  .khoibds-blog-single__related-grid { grid-template-columns: 1fr; }
  .khoibds-blog-single__related h2 { text-align: center; }
  .khoibds-blog-single__sticky-cta { flex-direction: column; padding: 14px; min-height: 0; border-radius: 14px; }
  .khoibds-blog-single__sticky-cta p { text-align: center; font-size: 18px; justify-content: center; }
  .khoibds-blog-single__sticky-cta a { width: 100%; max-width: 320px; font-size: 16px; min-height: 40px; padding: 10px 18px; }
}

@media (max-width: 640px) {
  .khoibds-consignment__form-card { padding: 16px; border-radius: 14px; }
  .khoibds-consignment__form button { width: 100%; min-height: 44px; font-size: 14px; }
  .khoibds-recruitment__job { padding: 12px; }
  .khoibds-recruitment__apply { width: 100%; }
  .khoibds-recruitment__cta a { width: 100%; }
  .khoibds-hero__title { font-size: 30px; }
  .khoibds-hero__actions {
    max-width: 332px;
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .khoibds-hero__actions .khoibds-btn {
    padding: 10px 8px;
    font-size: 11px;
  }
  .khoibds-hero__stats { gap: 6px; }
  .khoibds-cta .khoibds-hero__actions { max-width: 332px; gap: 7px; }
  .khoibds-cta .khoibds-hero__actions .khoibds-btn {
    padding: 10px 8px;
    font-size: 11px;
  }
  .khoibds-cta__stats { max-width: 360px; gap: 8px 10px; }
  .khoibds-cta__stats .khoibds-stat:nth-child(3) { width: min(100%, 210px); }
  .khoibds-cta .khoibds-stat__value { font-size: clamp(30px, 11vw, 54px); }
  .khoibds-cta .khoibds-stat__label { font-size: clamp(10px, 4.4vw, 16px); }
  .khoibds-section__title { font-size: 28px; }
  .khoibds-header__menu-toggle { width: 40px; height: 40px; border-radius: 10px; }
  .khoibds-header__cta { padding: 10px 14px; font-size: 12px; justify-self: center; margin: 0; }
  .khoibds-logo__image { max-height: 40px; max-width: 230px; }
  .khoibds-curriculum .khoibds-section__title { font-size: 30px; }
  .khoibds-curriculum .khoibds-section__subtitle { font-size: 14px; }
  .khoibds-curriculum__module { padding: 22px; gap: 18px; }
  .khoibds-curriculum__left { padding: 12px; border-radius: 12px; }
  .khoibds-curriculum__icon { width: 60px; height: 60px; border-radius: 16px; }
  .khoibds-curriculum__icon i { width: 28px; height: 28px; font-size: 28px; }
  .khoibds-curriculum__left h3 { font-size: 22px; }
  .khoibds-curriculum__right li { font-size: 15px; }
  .khoibds-about-cards .khoibds-card__icon { width: 70px; height: 70px; border-radius: 18px; }
  .khoibds-about-cards .khoibds-card__icon i,
  .khoibds-about-cards .khoibds-card__icon svg { width: 30px; height: 30px; }
  .khoibds-about-cards .khoibds-card__title { font-size: 20px; }
  .khoibds-about-cards .khoibds-card--image { min-height: 200px; }
  .khoibds-welfare .khoibds-section__title { font-size: 26px; }
  .khoibds-welfare-grid { grid-template-columns: 1fr; }
  .khoibds-benefits-grid { grid-template-columns: 1fr; }
  .khoibds-welfare .khoibds-btn { min-width: 220px; width: 100%; max-width: 320px; }
  .khoibds-why-cards .khoibds-card--cover { min-height: 220px; }
  .khoibds-gallery__item { width: 230px; height: 154px; }
  .khoibds-training .khoibds-section__header { margin-bottom: 32px; }
  .khoibds-training .khoibds-section__cta { margin-top: 36px; }
  .khoibds-training__cta-actions { gap: 8px; }
  .khoibds-training .khoibds-btn {
    padding: 11px 10px;
    font-size: 12px;
    letter-spacing: 0;
  }
  .khoibds-popup__shell {
    width: min(500px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
  }
  .khoibds-popup__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .khoibds-popup__overlay { padding: 12px; }
  .khoibds-popup__title { font-size: 22px; }
  .khoibds-blog-page__title { font-size: 28px; }
  .khoibds-blog-page__feature-head h2,
  .khoibds-blog-page__news-head h2 { font-size: 22px; }
  .khoibds-blog-single__title { font-size: 24px; }
  .khoibds-fixed-banner { width: calc(100% - 12px); bottom: 8px; }
  .khoibds-fixed-banner__close {
    min-height: 30px;
    padding: 4px 10px;
    font-size: 12px;
    margin-bottom: 6px;
  }
  .khoibds-fixed-banner__title {
    font-size: 18px;
    -webkit-line-clamp: 2;
  }
  .khoibds-fixed-banner__subtitle { font-size: 14px; }
}

@media (max-width: 390px) {
  .khoibds-training .khoibds-btn {
    font-size: 11px;
    padding: 10px 8px;
  }
}
