/* ============================================================================
   GO4AI — Homepage proposals (2 variants)
   Design system ported from b2b.go4ai.org
   Source of truth: LucasGo4ai theme
     · go4ai.webflow.shared.72c645715.min.css  (tokens + component classes)
     · inline <style> in the published page    (gradient, marquee keyframes)

   Token values are copied verbatim from the live theme :root.
   Font note: the theme declares Switzer for headings, but the published
   Switzer woff2 files are latin-only subsets with no Vietnamese tone marks.
   Headings therefore use Archivo (full Vietnamese coverage) — the same end
   state the live site reaches via fallback, but deterministic.
   ========================================================================= */

/* ---------------------------------------------------------------- 1. TOKENS */
:root {
  --gray-50:  #f2f6f5;
  --white:    #fff;
  --black:    #15171a;

  --gray-100: #d9dfde;
  --gray-200: #bec9c6;
  --gray-300: #a5b2af;
  --gray-400: #8b9a96;
  --gray-500: #73817e;
  --gray-600: #5c6764;
  --gray-700: #454e4c;
  --gray-800: #2e3332;
  --gray-900: #15171a;

  --green-50:  #c4ece1;
  --green-100: #c4ece1;
  --green-200: #93dcc8;
  --green-300: #60c7ac;
  --green-400: #37a88a;
  --green-500: #08906c;

  --blue-50:  #ebf5f9;
  --blue-100: #d8ebf4;
  --blue-200: #b0d4e8;
  --blue-300: #87bbd9;
  --blue-400: #66a7cc;
  --blue-500: #478fb8;
  --blue-700: #2b4d60;

  --coral-50:  #fbeeec;
  --coral-100: #f6dad5;
  --coral-200: #ebb5ab;
  --coral-300: #e69786;
  --coral-400: #e06f68;
  --coral-500: #ce3c2b;
  /* Small-text variants. MEASURED: on #f2f6f5, --green-500 (#08906c) reaches only
     3.70:1 and --coral-500 only 4.48:1 — both under the 4.5:1 AA floor for body
     text. These two darker steps are used wherever the colour carries TEXT at
     body size; the brighter originals stay for fills, borders and markers. */
  --green-600: #077c5d;
  --green-700: #06694f;
  --coral-600: #b8351f;

  --font-sans: 'Archivo', Arial, sans-serif;
  --font-mono: 'Azeret Mono', Arial, sans-serif;

  --title-xl: 4.5rem;
  --title-l:  3.625rem;
  --title-m:  2.25rem;
  --title-s:  1.75rem;
  --title-xs: 1.375rem;
  --text-xl:  1.25rem;
  --text-l:   1.125rem;
  --text-m:   1rem;
  --text-s:   0.875rem;

  --radius-btn:  5rem;
  --radius-card: 1.5rem;
  --radius-sm:   1rem;
  --radius-md:   0.75rem;

  --container: 85rem;
  --pad-x: 2.5rem;

  --s-4:   0.25rem;
  --s-6:   0.375rem;
  --s-8:   0.5rem;
  --s-10:  0.625rem;
  --s-12:  0.75rem;
  --s-14:  0.875rem;
  --s-16:  1rem;
  --s-20:  1.25rem;
  --s-24:  1.5rem;
  --s-28:  1.75rem;
  --s-32:  2rem;
  --s-36:  2.25rem;
  --s-40:  2.5rem;
  --s-48:  3rem;
  --s-60:  3.75rem;
  --s-80:  5rem;
  --s-100: 6.25rem;
  --s-120: 7.5rem;

  --grad-green: linear-gradient(265.26deg, #08906c 38.04%, #1f9c7b 94.86%);
  --grad-dark:  linear-gradient(248deg, #03322a 16%, #06694f);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------- 2. RESET / BASE */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--gray-50);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: var(--text-m);
  line-height: 1.3;
  letter-spacing: -0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
dl, dd, dt { margin: 0; }

::selection { background: var(--green-500); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------- 3. LAYOUT PRIMITIVES */
.padding-global {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  width: 100%;
  padding-top: var(--s-100);
  padding-bottom: var(--s-100);
}
.section--white { background-color: var(--white); }
.section--gray  { background-color: var(--gray-50); }
.section--green { background-color: var(--green-500); color: var(--white); }
.section--dark  { background-color: var(--black); color: var(--white); }
.section--tight { padding-top: var(--s-60); padding-bottom: var(--s-60); }
.section--flush-top { padding-top: 0; }

.spacer-24 { height: var(--s-24); }
.spacer-40 { height: var(--s-40); }
.spacer-60 { height: var(--s-60); }
.spacer-80 { height: var(--s-80); }

.rule { height: 1px; background: var(--gray-200); border: 0; margin: 0; }
.section--dark .rule, .section--green .rule { background: rgba(255,255,255,.16); }

/* ------------------------------------------------------- 4. TYPOGRAPHY */
.title--xl {
  font-size: var(--title-xl);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.title--l {
  font-size: var(--title-l);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.title--m {
  font-size: var(--title-m);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.title--s {
  font-size: var(--title-s);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.title--xs {
  font-size: var(--title-xs);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.text--xl { font-size: var(--text-xl); line-height: 1.4; letter-spacing: -0.02em; }
.text--l  { font-size: var(--text-l);  line-height: 1.45; letter-spacing: -0.02em; }
.text--m  { font-size: var(--text-m);  line-height: 1.5;  letter-spacing: -0.02em; }
.text--s  { font-size: var(--text-s);  line-height: 1.5;  letter-spacing: -0.01em; }

.text--muted { color: var(--gray-600); }
.section--dark .text--muted, .section--green .text--muted { color: var(--gray-200); }

.text--mono {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.text--mono.is--grey { color: var(--gray-600); }

.text--number {
  font-size: 4.375rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.text--grad {
  background: var(--grad-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .05ch;
}
/* Gradient-clipped text only works on a light ground. On every dark surface it
   is replaced by solid white, otherwise the green-on-green ratio collapses
   (MEASURED: 1.66:1 on the statement band before this rule). */
.section--green .text--grad,
.section--dark .text--grad,
.statement .text--grad,
.hiw .text--grad,
.dark-panel .text--grad {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--white);
}

.text--measure { max-width: 46rem; }
.text--measure-sm { max-width: 34rem; }

/* Eyebrow chip — matches .section_chips on the live site */
.chips {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  color: var(--gray-600);
  font-size: var(--text-m);
  font-weight: 500;
  letter-spacing: 0;
}
.chips__icon {
  width: 20px; height: 20px;
  flex: none;
  color: var(--green-500);
}
.section--dark .chips, .section--green .chips { color: var(--gray-200); }
.section--dark .chips__icon, .section--green .chips__icon { color: var(--green-300); }

/* Small label used above a list */
.label {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  color: var(--gray-600);
  letter-spacing: 0;
}
.section--dark .label { color: var(--gray-400); }

/* --------------------------------------------------- 5. BUTTONS & LINKS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  padding: var(--s-16) var(--s-40);
  border-radius: var(--radius-btn);
  background-color: var(--coral-500);
  color: var(--white);
  font-size: var(--text-m);
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: center;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.button:hover { background-color: #b8351f; }

.button--outline {
  background-color: var(--gray-50);
  border: 1px solid var(--coral-600);
  color: var(--coral-600);
}
.button--outline:hover { background-color: var(--coral-50); }

.button--ghost {
  background-color: transparent;
  border: 1px solid var(--gray-300);
  color: var(--black);
}
.button--ghost:hover { background-color: var(--white); border-color: var(--black); }

.button--light {
  background-color: var(--white);
  color: var(--black);
}
.button--light:hover { background-color: var(--green-50); }

.button--on-dark {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}
.button--on-dark:hover { background-color: rgba(255,255,255,.1); border-color: var(--white); }

.button--s { padding: var(--s-12) var(--s-24); font-size: var(--text-s); }

.button-row { display: flex; flex-wrap: wrap; gap: var(--s-12); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-size: var(--text-m);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 3px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow:hover { border-color: var(--green-500); gap: var(--s-12); }
.link-arrow svg { flex: none; }
.section--dark .link-arrow, .section--green .link-arrow { border-color: rgba(255,255,255,.35); }
.section--dark .link-arrow:hover, .section--green .link-arrow:hover { border-color: var(--white); }

/* ------------------------------------------------------- 6. HEADER / NAV */
.notice {
  background-color: var(--black);
  color: var(--gray-200);
  font-size: var(--text-s);
  letter-spacing: -0.01em;
}
.notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  padding: 10px 0;
  text-align: center;
}
.notice a { color: var(--green-300); border-bottom: 1px solid currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(242,246,245,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is--stuck { border-bottom-color: var(--gray-200); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, var(--s-32));
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  font-weight: 700;
  font-size: var(--text-l);
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand__logo-img {
  height: 40px;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.brand:hover .brand__logo-img {
  transform: scale(1.03);
}
.site-footer__brand .brand__logo-img {
  height: 46px;
  max-height: 46px;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}
.site-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gray-700);
  transition: color .25s var(--ease);
}
.site-nav__link:hover, .site-nav__link[aria-current="page"] { color: var(--black); }

.site-header__actions { display: flex; align-items: center; gap: var(--s-16); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  place-items: center;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background-color: var(--gray-50);
  padding: var(--s-16) 0 var(--s-24);
}
.mobile-nav.is--open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--s-4); }
.mobile-nav__link {
  display: block;
  padding: var(--s-12) 0;
  font-size: var(--text-l);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav__cta { margin-top: var(--s-20); }
.mobile-nav__cta .button { width: 100%; }

/* --------------------------------------------------------------- 7. HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--s-48);
  padding-bottom: var(--s-60);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(56px, 4.5vw, 68px);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  box-sizing: border-box;
}

.hero__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 780px;
  width: 100%;
  box-sizing: border-box;
}

.hero__content > .chips {
  margin-bottom: 22px;
  align-self: flex-start;
}

.hero__title {
  margin: 0 0 24px 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.65rem, 6.8vw, 2rem);
    line-height: 1.22;
  }
}
.hero__title .text--grad {
  background: linear-gradient(135deg, #06694f 0%, #08906c 38%, #1f9c7b 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero__sub {
  color: var(--gray-700);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 680px;
  min-width: 0;
  margin: 0 0 26px 0;
}

.hero__points {
  display: flex;
  flex-direction: column;
  gap: var(--s-10);
  margin: 0 0 var(--s-32) 0;
  max-width: 33rem;
  min-width: 0;
}
.hero__points li {
  display: flex;
  gap: var(--s-12);
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gray-700);
}
.hero__points li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(8, 144, 108, 0.15);
}

.hero__ctas {
  margin: 0 0 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: auto;
  min-width: 0;
}
.hero__ctas .button {
  width: auto;
  max-width: fit-content;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.375rem;
  min-height: 40px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  box-sizing: border-box;
  white-space: nowrap;
}
.hero__ctas .button:not(.button--outline) {
  border: 1px solid transparent;
  box-shadow: 0 3px 10px rgba(206, 60, 43, 0.18);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.hero__ctas .button:not(.button--outline):hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(206, 60, 43, 0.26);
}
.hero__ctas .button--outline {
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(21, 23, 26, 0.04);
  transition: border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.hero__ctas .button--outline:hover {
  border-color: var(--gray-500);
  color: var(--black);
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(21, 23, 26, 0.08);
  transform: translateY(-1px);
}

.hero__pipeline {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(21, 23, 26, 0.04);
  gap: 8px;
  overflow: hidden;
}
.hero__pipeline-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: var(--green-700);
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(8, 144, 108, 0.2);
  flex-shrink: 0;
}
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  min-width: 0;
  max-width: 100%;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hero__trust li span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(21, 23, 26, 0.03);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.hero__trust li span:hover {
  border-color: var(--green-400);
  color: var(--green-800);
  transform: translateY(-1px);
}
.hero__trust-sep {
  color: var(--gray-400);
  font-size: 0.625rem;
  user-select: none;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
}

/* Hero visual — instrumented canvas with depth and subtle motion */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-width: 0;
  width: 100%;
  max-width: 30.5rem;
  margin: 0 auto;
  border-radius: var(--radius-card);
  box-sizing: border-box;
  align-self: center;
  background:
    radial-gradient(75% 75% at 75% 15%, rgba(8,144,108,.12) 0%, rgba(8,144,108,0) 65%),
    radial-gradient(60% 60% at 20% 85%, rgba(8,144,108,.05) 0%, rgba(8,144,108,0) 60%),
    var(--white);
  border: 1px solid rgba(217, 223, 222, 0.9);
  box-shadow:
    0 20px 48px -12px rgba(21, 23, 26, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 24px 64px -16px rgba(8, 144, 108, 0.08);
  overflow: hidden;
}
.hero__visual svg { width: 100%; height: 100%; }

.hero__stat-float {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: var(--s-12);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 223, 222, 0.8);
  box-shadow: 0 10px 28px rgba(21, 23, 26, 0.06);
}
.hero__stat-float div { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-float strong {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}
.hero__stat-float span { font-size: 0.71875rem; color: var(--gray-600); line-height: 1.35; }

/* Subtle, corporate SVG animations */
@keyframes heroRingPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.012); }
}
@keyframes heroNodePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(8, 144, 108, 0)); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 6px rgba(8, 144, 108, 0.5)); }
}
@keyframes heroPathFlow {
  0% { stroke-dashoffset: 48; }
  100% { stroke-dashoffset: 0; }
}

.hero-svg__ring {
  transform-origin: 260px 260px;
  animation: heroRingPulse 7s ease-in-out infinite;
}
.hero-svg__ring:nth-child(2) {
  animation-delay: 1.5s;
}
.hero-svg__ring:nth-child(3) {
  animation-delay: 3s;
}

.hero-svg__path {
  stroke-dasharray: 8 4;
  animation: heroPathFlow 25s linear infinite;
}

.hero-svg__node-green {
  transform-origin: center;
  transform-box: fill-box;
  animation: heroNodePulse 3.5s ease-in-out infinite;
}
.hero-svg__node-green:nth-child(2) {
  animation-delay: 1.2s;
}
.hero-svg__node-green:nth-child(3) {
  animation-delay: 2.4s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-svg__ring,
  .hero-svg__path,
  .hero-svg__node-green {
    animation: none !important;
  }
}

/* ------------------------------------------------- 8. TRƯỚC / SAU (gap) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-60);
  align-items: start;
}
.benefits { display: flex; flex-direction: column; gap: var(--s-24); }

.benefits__chips {
  display: flex;
  align-items: center;
  gap: var(--s-12);
}
.benefits__chips .chips {
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  background-color: var(--black);
  color: var(--white);
  font-size: var(--text-s);
  letter-spacing: 0;
}
.benefits__chips.is--green .chips { background-color: var(--green-700); }

.benefits__list { display: flex; flex-direction: column; }

.benefits__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-16);
  padding: var(--s-12) var(--s-16);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--s-12);
  border-radius: var(--radius-sm);
  background-color: transparent;
  cursor: pointer;
  transition:
    opacity .25s var(--ease),
    background-color .25s var(--ease),
    border-color .25s var(--ease),
    transform .25s var(--ease);
}
.benefits__item:last-child {
  margin-bottom: 0;
}

.benefit-marker {
  display: grid;
  place-items: center;
  flex: none;
  width: var(--s-32);
  height: var(--s-32);
  border: 1px solid var(--gray-800);
  border-radius: 50%;
  transition:
    transform .25s var(--ease),
    border-color .25s var(--ease),
    color .25s var(--ease),
    background-color .25s var(--ease),
    box-shadow .25s var(--ease);
}
.benefit-marker.is--green { border-color: var(--green-500); color: var(--green-500); }

.benefit-connector {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-500);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  user-select: none;
}

/* Pair highlight interaction */
.has-js .benefits-grid.has--active-pair .benefits__item:not(.is--active) {
  opacity: 0.38 !important;
}

/* Left item active (Before side) */
.benefits--before .benefits__item.is--active {
  background-color: rgba(21, 23, 26, 0.04);
  border-color: rgba(21, 23, 26, 0.12);
}
.benefits--before .benefits__item.is--active .benefit-marker {
  border-color: var(--coral-500);
  color: var(--coral-500);
  background-color: var(--coral-50);
  transform: scale(1.08) rotate(90deg);
}
.benefits--before .benefits__item.is--active .benefit-connector {
  opacity: 1;
  transform: translateX(0);
}

/* Right item active (After side) */
.benefits--after .benefits__item.is--active {
  background-color: rgba(8, 144, 108, 0.06);
  border-color: rgba(8, 144, 108, 0.22);
}
.benefits--after .benefits__item.is--active .benefit-marker {
  border-color: var(--green-500);
  color: var(--white);
  background-color: var(--green-500);
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(8, 144, 108, 0.16);
}

/* Viewport pair stagger reveal */
.has-js [data-pair-stagger]:not(.is--in) .benefits__item {
  opacity: 0;
  transform: translateY(14px);
}
.has-js [data-pair-stagger].is--in .benefits__item {
  opacity: 1;
  transform: none;
}
.has-js [data-pair-stagger]:not(.is--revealed).is--in .benefits__item[data-pair="1"] { transition-delay: .06s; }
.has-js [data-pair-stagger]:not(.is--revealed).is--in .benefits__item[data-pair="2"] { transition-delay: .14s; }
.has-js [data-pair-stagger]:not(.is--revealed).is--in .benefits__item[data-pair="3"] { transition-delay: .22s; }
.has-js [data-pair-stagger]:not(.is--revealed).is--in .benefits__item[data-pair="4"] { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .has-js [data-pair-stagger] .benefits__item,
  .benefit-marker,
  .benefit-connector {
    transition: none !important;
    transform: none !important;
  }
}

/* ------------------------------------------------------ 9. STATEMENT BAND */
.statement {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  color: var(--white);
  padding-top: var(--s-100);
  padding-bottom: var(--s-100);
}
.statement__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-24);
  text-align: center;
}
.statement__icon { width: 44px; height: 44px; color: var(--green-200); }
.statement .title--l { max-width: 68rem; }
.statement__sub { color: rgba(255,255,255,.82); max-width: 46rem; }

/* ------------------------------------------------- 10. BENTO MODULE CARDS */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
  align-items: stretch;
}
.bcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s-12);
  min-height: auto;
  padding: var(--s-28) var(--s-32);
  border-radius: var(--radius-card);
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s ease;
}
.bcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 23, 26, 0.06);
  border-color: var(--gray-200);
}

.bcard__index { font-family: var(--font-mono); font-size: var(--text-s); color: var(--gray-600); line-height: 1; }
.bcard__title { font-size: var(--title-m); line-height: 1.15; letter-spacing: -0.03em; font-weight: 500; }
.bcard__body { color: var(--gray-600); line-height: 1.55; }
.bcard__body.text--measure { max-width: 44rem; }

.bcard--wide {
  grid-column: span 2;
  padding: var(--s-28) var(--s-32);
}
.bcard--accent-red   { background-color: #b8422f; color: var(--white); border-color: transparent; }
.bcard--accent-green { background-color: var(--green-700); color: var(--white); border-color: transparent; }
.bcard--accent-blue  { background-color: var(--blue-700); color: var(--white); border-color: transparent; }

.bcard--accent-red:hover   { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(184, 66, 47, 0.22); border-color: transparent; }
.bcard--accent-green:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(8, 144, 108, 0.22); border-color: transparent; }
.bcard--accent-blue:hover  { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(28, 68, 134, 0.22); border-color: transparent; }

.bcard--accent-red   .bcard__body,
.bcard--accent-green .bcard__body,
.bcard--accent-blue  .bcard__body { color: rgba(255,255,255,.95); }
.bcard--accent-red   .bcard__index,
.bcard--accent-green .bcard__index,
.bcard--accent-blue  .bcard__index { color: var(--white); }

.bcard__tags { display: flex; flex-wrap: wrap; gap: var(--s-8); margin-top: var(--s-8); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: -0.01em;
}
.bcard--accent-red .tag, .bcard--accent-green .tag, .bcard--accent-blue .tag {
  border-color: rgba(255,255,255,.3);
  background-color: transparent;
  color: rgba(255,255,255,.95);
}

/* 05. KPI Chips */
.bcard__kpi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8);
  margin-top: var(--s-4);
}
.kpi-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-btn);
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.kpi-chip::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--green-600);
  flex-shrink: 0;
}

/* 06. AI Passport Two-Zone Editorial Layout & Pipeline Visual */
.bcard--passport {
  padding: var(--s-28) var(--s-32);
}
.bcard__passport-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-32);
  align-items: center;
  width: 100%;
}
.bcard__passport-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}
.bcard__passport-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.passport-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  padding: var(--s-16) var(--s-20);
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  width: 100%;
}
.passport-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8125rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background .2s ease;
}
.passport-step:hover {
  background: rgba(255, 255, 255, 0.18);
}
.passport-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1;
  user-select: none;
}
.passport-arrow--highlight {
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
}
.passport-step--final {
  background: #ffffff;
  color: var(--blue-700);
  border-color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.passport-step--final:hover {
  background: #f8fafc;
}
.passport-step__icon {
  width: 15px;
  height: 15px;
  color: var(--green-600);
  flex-shrink: 0;
}

/* ------------------------------------------------------ 11. IMPACT CIRCLES */
.impact-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-80);
  align-items: center;
}
/* MEASURED: in the published layout the four stat circles tile a 2x2 grid and the
   accent disc is centred over them at 55% of the width, which covers the inner
   half of every label ("Người tham gia các chương tr…" was unreadable in the
   render). Geometry redone as a 3x3 grid: stats in the four corners, accent in
   the centre cell. Distance from the centre to a corner circle's centre is 47.1%
   against a 33.3% sum of radii, so nothing can overlap at any size. */
/* ============================================================================
   BẰNG CHỨNG (Action a-17 "Impact Circles" từ source gốc Desktop/lucasgo4ai.life)
   ============================================================================ */
.impact-animation-track {
  position: relative;
  width: 100%;
}

html.motion-impact .impact-animation-track {
  height: 250vh;
}

.impact-section {
  width: 100%;
  background-color: var(--white);
  box-sizing: border-box;
  scroll-margin-top: calc(var(--header-h, 75px) + 1.5rem);
}

html.motion-impact .impact-section {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h, 75px);
  padding-bottom: var(--s-24);
}

.container-impact {
  width: 100%;
  max-width: var(--container, 1200px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-48);
}

.impact-section_heading {
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  gap: var(--s-20);
  flex-shrink: 0;
}

.impact-section_heading .title--l {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.impact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(42.5rem, calc(100svh - var(--header-h, 75px) - 4rem));
  aspect-ratio: 1 / 1;
  position: relative;
  margin: 0 auto;
}

.impact-item {
  width: 50%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  transition: border-color 0.3s ease;
  will-change: transform;
  box-sizing: border-box;
}

.impact-content,
.impact-item__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 15rem;
  max-width: 82%;
  padding: 0 var(--s-8);
  gap: var(--s-6);
  will-change: opacity;
}

.impact-content .text--number,
.impact-item__content .text--number {
  font-family: var(--font-mono);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--black);
  transition: color 0.3s ease;
}

.impact-content .impact-item__label,
.impact-item__content .impact-item__label {
  font-size: clamp(0.8125rem, 1.05vw, 0.9375rem);
  color: var(--gray-600);
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s ease;
}

.impact-content .impact-item__note,
.impact-item__content .impact-item__note {
  font-size: clamp(0.6875rem, 0.85vw, 0.75rem);
  color: var(--gray-500);
  line-height: 1.3;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.impact-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--green-700);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .impact-item:hover {
    border-color: var(--green-600);
  }
  .impact-item:hover .impact-bg {
    transform: scale(1);
  }
  .impact-item:hover .text--number {
    color: var(--white);
  }
  .impact-item:hover .impact-item__label,
  .impact-item:hover .impact-item__note {
    color: var(--green-100);
  }
}

.impact-list.is--scrubbing .impact-item {
  pointer-events: none;
}

.impact-item-accent,
.impact-accent {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10%;
  z-index: 5;
  transform: scale(0);
  box-shadow: 0 16px 48px rgba(8, 144, 108, 0.25);
  will-change: transform;
}

.impact-item-accent-text {
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.impact-item-accent-text p,
.impact-item-accent-text .title--m,
.impact-accent p {
  color: var(--white);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 991px) {
  html.motion-impact .impact-animation-track,
  .impact-animation-track {
    height: auto;
  }
  html.motion-impact .impact-section,
  .impact-section {
    position: static;
    height: auto;
    padding-top: var(--s-60);
    padding-bottom: var(--s-60);
  }
  .container-impact {
    flex-direction: column;
    gap: var(--s-32);
    align-items: flex-start;
  }
  .impact-section_heading {
    max-width: 100%;
  }
  .impact-list {
    max-width: 32rem;
  }
}

@media (max-width: 767px) {
  .impact-list {
    flex-direction: column;
    max-width: 22rem;
    aspect-ratio: auto;
    gap: var(--s-20);
  }
  .impact-item {
    width: 100%;
  }
  .impact-content,
  .impact-item__content {
    width: 80%;
    max-width: 16rem;
  }
  .impact-item-accent,
  .impact-accent {
    position: static;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: scale(1);
    margin-top: var(--s-16);
    padding: 2.5rem 1.5rem;
  }
  .impact-item-accent-text {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.motion-impact .impact-animation-track { height: auto; }
  html.motion-impact .impact-section { position: static; height: auto; padding-top: var(--s-60); padding-bottom: var(--s-60); }
  .impact-item { transform: none !important; }
  .impact-content,
  .impact-item__content { opacity: 1 !important; }
  .impact-item-accent,
  .impact-accent { position: static; width: 100%; aspect-ratio: 1 / 1; transform: scale(1) !important; margin-top: var(--s-20); }
  .impact-item-accent-text { opacity: 1 !important; }
}

/* --------------------------------------------------------- 12. PROGRAM TRACKS */
.tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-20); }
.track {
  display: flex;
  flex-direction: column;
  gap: var(--s-20);
  padding: var(--s-28) var(--s-28);
  border-radius: var(--radius-card);
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color .35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.track--featured {
  border: 1.5px solid rgba(8, 144, 108, 0.38);
  background: linear-gradient(180deg, rgba(8, 144, 108, 0.028) 0%, var(--white) 100%);
  box-shadow: 0 6px 24px rgba(8, 144, 108, 0.06);
}

.track__visual {
  position: relative;
  width: 100%;
  height: 96px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--black);
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.track--featured .track__visual {
  background: rgba(8, 144, 108, 0.04);
  border-color: rgba(8, 144, 108, 0.22);
}

.track__visual-svg {
  width: 100%;
  height: 100%;
  max-width: 320px;
  display: block;
}
.track__visual-svg text {
  user-select: none;
  -webkit-user-select: none;
}

.track__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-12);
}
.track__index {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  color: var(--green-700);
  font-weight: 500;
}
.track__badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-700);
  background: rgba(8, 144, 108, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.22);
  padding: 3px 10px;
  border-radius: var(--radius-btn);
  text-transform: uppercase;
}

.track__head { display: flex; flex-direction: column; gap: var(--s-8); }
.track__body { color: var(--gray-600); }

.check-list { display: flex; flex-direction: column; gap: var(--s-12); }
.check-list li { display: flex; gap: var(--s-12); align-items: flex-start; font-size: var(--text-m); }
.check-list li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  border: 1px solid var(--green-500);
  background:
    linear-gradient(var(--green-500), var(--green-500)) center/8px 1.5px no-repeat,
    linear-gradient(var(--green-500), var(--green-500)) center/1.5px 8px no-repeat;
  background-color: transparent;
}

.track__goal-box {
  margin-top: auto;
  padding: var(--s-16) var(--s-20);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.track--featured .track__goal-box {
  background: rgba(8, 144, 108, 0.04);
  border-color: rgba(8, 144, 108, 0.22);
}
.track__goal-header {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  color: var(--gray-600);
}
.track--featured .track__goal-header {
  color: var(--green-700);
}
.track__goal-icon {
  flex: none;
  width: 14px;
  height: 14px;
}
.track__goal-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.track__goal-text {
  font-size: var(--text-m);
  color: var(--black);
  line-height: 1.45;
  margin: 0;
}
.track__goal-text strong {
  font-weight: 500;
}

.track__goal {
  margin-top: auto;
  padding-top: var(--s-20);
  border-top: 1px solid var(--gray-100);
  font-size: var(--text-m);
}
.track__goal strong { font-weight: 500; }

/* Department sub-list inside a track */
.dept-list { display: flex; flex-direction: column; gap: var(--s-16); }
.dept { display: flex; flex-direction: column; gap: 4px; }
.dept__name { font-weight: 500; font-size: var(--text-m); }
.dept__body { font-size: var(--text-s); color: var(--gray-600); line-height: 1.45; }

/* Micro-animations & Interactive States */
@keyframes trackOrbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes circuitPulse {
  0% { stroke-dashoffset: 24; }
  100% { stroke-dashoffset: 0; }
}
@keyframes arrowGlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@media (hover: hover) and (pointer: fine) {
  .tracks:has(.track:hover) .track:not(:hover),
  .tracks.has--active-track .track:not(.is--active) {
    opacity: 0.48;
    transform: scale(0.995);
  }
  .track:hover,
  .track.is--active {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(21, 23, 26, 0.08);
    border-color: rgba(8, 144, 108, 0.45);
  }
  .track--featured:hover,
  .track--featured.is--active {
    box-shadow: 0 20px 48px rgba(8, 144, 108, 0.14);
    border-color: var(--green-500);
  }
  .track:hover .track__visual,
  .track.is--active .track__visual {
    border-color: rgba(8, 144, 108, 0.35);
  }
  .track:hover .track__goal-box,
  .track.is--active .track__goal-box {
    border-color: rgba(8, 144, 108, 0.3);
  }

  .track:hover .track-vis-ring--orbit,
  .track.is--active .track-vis-ring--orbit {
    animation: trackOrbitRotate 24s linear infinite;
    transform-origin: 160px 48px;
  }
  .track:hover .track-vis-trace,
  .track.is--active .track-vis-trace {
    stroke-dasharray: 6 6;
    animation: circuitPulse 1.2s linear infinite;
  }
  .track:hover .track-vis-arrow,
  .track.is--active .track-vis-arrow {
    animation: arrowGlide 1.2s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .track-vis-ring--orbit,
  .track-vis-trace,
  .track-vis-arrow {
    animation: none !important;
  }
}

/* ------------------------------------------------------------- 13. CASES */
.case-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-10) var(--s-12);
}
.case-flow__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-btn);
  font-size: var(--text-s);
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(21, 23, 26, 0.02);
  transition: border-color var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.case-flow__pill:hover {
  border-color: rgba(8, 144, 108, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 144, 108, 0.06);
}
.case-flow__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green-700);
}
.case-flow__name {
  font-weight: 500;
  color: var(--black);
}
.case-flow__sep {
  color: var(--green-600);
  font-size: 0.875rem;
  font-weight: 600;
  user-select: none;
}
.case-flow__pill--accent {
  background-color: var(--green-50);
  border-color: rgba(8, 144, 108, 0.28);
}
.case-flow__pill--accent .case-flow__name {
  color: var(--green-700);
  font-weight: 600;
}

/* Base Case Container */
.case {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: var(--s-48);
  align-items: start;
  padding: var(--s-48);
  border-radius: var(--radius-card);
  margin-bottom: var(--s-40);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.case:last-child {
  margin-bottom: 0;
}

/* Case 01: Light Tone (Workforce Enablement) */
.case--light {
  background-color: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.08);
  box-shadow: 0 10px 30px rgba(21, 23, 26, 0.03);
}
.case--light:hover {
  box-shadow: 0 16px 40px rgba(8, 144, 108, 0.06);
}

/* Case 02: Dark Tone (Deep Emerald Executive) */
.case--dark {
  background: linear-gradient(150deg, #02241c 0%, #053b2f 55%, #022019 100%);
  border: 1.5px solid rgba(8, 144, 108, 0.38);
  box-shadow: 0 20px 48px rgba(2, 36, 28, 0.25);
  color: var(--white);
}
.case--dark:hover {
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 24px 56px rgba(2, 36, 28, 0.32);
}

/* Media Column & Sticky behavior */
.case__media-col {
  position: relative;
}
@media (min-width: 992px) {
  .case__media-col {
    position: sticky;
    top: calc(var(--header-h, 75px) + 24px);
  }
}

.case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--s-24);
  background:
    radial-gradient(110% 90% at 80% 15%, rgba(8, 144, 108, 0.12) 0%, rgba(8, 144, 108, 0) 65%),
    linear-gradient(135deg, #f2f7f5 0%, #e5efeb 100%);
  border: 1px solid rgba(8, 144, 108, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.case__media--dark {
  background:
    radial-gradient(110% 90% at 80% 15%, rgba(52, 211, 153, 0.18) 0%, rgba(52, 211, 153, 0) 65%),
    linear-gradient(135deg, #021a14 0%, #06382c 100%);
  border: 1px solid rgba(52, 211, 153, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.case__media-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  background: rgba(8, 144, 108, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.2);
  color: var(--green-700);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.case__media-badge--dark {
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.3);
  color: #34d399;
}
.case__media-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}
.case__media-dot--emerald {
  box-shadow: 0 0 8px #34d399;
}

.case__media-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case__media-label .text--mono {
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.case__media--dark .case__media-label .text--mono {
  color: #34d399;
}
.case__media-label p {
  font-size: var(--text-m);
  line-height: 1.45;
  color: var(--gray-700);
  margin: 0;
}
.case__media--dark .case__media-label p {
  color: rgba(255, 255, 255, 0.88);
}

/* Case Body */
.case__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}
.case__header {
  display: flex;
  flex-direction: column;
  gap: var(--s-10);
  align-items: flex-start;
}
.case__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-btn);
  background-color: var(--green-50);
  color: var(--green-700);
  border: 1px solid rgba(8, 144, 108, 0.2);
  font-size: var(--text-s);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.case__tag--dark {
  background-color: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.3);
}
.case__title {
  font-size: var(--title-s);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--black);
}
.case--dark .case__title {
  color: var(--white);
}

/* Vertical Step Timeline */
.case-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
}
.case-timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 12px;
  width: 2px;
  background-color: var(--gray-200);
  border-radius: 1px;
}
.case-timeline--dark::before {
  background-color: rgba(52, 211, 153, 0.22);
}

.case-timeline__item {
  position: relative;
  padding-bottom: var(--s-20);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.case-timeline__item:last-child {
  padding-bottom: 0;
}
.case-timeline__marker {
  position: absolute;
  left: -20px;
  top: 5px;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-timeline__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(8, 144, 108, 0.16);
  transition: transform var(--dur-fast), background-color var(--dur-fast);
}
.case-timeline--dark .case-timeline__dot {
  background-color: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}
.case-timeline__item:hover .case-timeline__dot {
  transform: scale(1.25);
}

.case-timeline__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.case-timeline--dark .case-timeline__label {
  color: #6ee7b7;
}
.case-timeline__text {
  font-size: var(--text-m);
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}
.case-timeline--dark .case-timeline__text {
  color: rgba(240, 245, 243, 0.85);
}

/* Key Metric Callout for Case 02 */
.case-metric {
  padding: var(--s-24);
  border-radius: var(--radius-sm);
  background: rgba(1, 24, 19, 0.7);
  border: 1.5px solid rgba(52, 211, 153, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}
.case-metric__header {
  display: flex;
  align-items: center;
}
.case-metric__tag {
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(52, 211, 153, 0.16);
  padding: 3px 8px;
  border-radius: 4px;
}
.case-metric__body {
  display: flex;
  align-items: baseline;
  gap: var(--s-16);
  flex-wrap: wrap;
}
.case-metric__number {
  font-family: var(--font-sans);
  font-size: clamp(2.75rem, 5vw, 3.625rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #34d399;
  text-shadow: 0 0 32px rgba(52, 211, 153, 0.4);
}
.case-metric__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-metric__headline {
  font-size: var(--text-l);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.case__disclaimer {
  font-size: var(--text-s);
  color: var(--gray-600);
  line-height: 1.45;
  margin: 0;
}
.case__disclaimer--dark {
  color: rgba(255, 255, 255, 0.6);
}

/* Action Link */
.case__action {
  padding-top: var(--s-8);
}
.link-arrow {
  transition: color var(--dur-fast), gap var(--dur-fast), border-color var(--dur-fast);
}
.link-arrow--dark {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.35);
}
.link-arrow--dark:hover {
  color: #ffffff;
  border-color: #34d399;
}
.link-arrow svg {
  transition: transform var(--dur-fast) var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

/* -------------------------------------------------------- 14. LOGO WALL */
.logos { overflow: hidden; }
.logos__caption { text-align: center; color: var(--gray-600); margin-bottom: var(--s-24); }

.logos__header {
  text-align: center;
  margin-bottom: var(--s-36);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-10);
}

.logos__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-12);
}

.logos__eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 144, 108, 0.1), rgba(8, 144, 108, 0.45));
}

.logos__eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(8, 144, 108, 0.45), rgba(8, 144, 108, 0.1));
}

.logos__eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
}

.logos__title {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.38;
  color: var(--gray-800);
  margin: 0 auto;
  max-width: 52rem;
  text-wrap: balance;
}
.logos__row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos__row + .logos__row { margin-top: var(--s-20); }
.logos__track { display: flex; align-items: center; width: max-content; will-change: transform; }
.logos__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 84px;
  margin-right: var(--s-20);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  background-color: var(--white);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  user-select: none;
}
.logos__item:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 105, 79, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.logos__img {
  width: auto;
  height: auto;
  max-width: 142px;
  max-height: 48px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  display: block;
}
.logos__row:hover .logos__track { animation-play-state: paused; }
.logos__track.is--rtl { animation: marquee-rtl 40s linear infinite; }
.logos__track.is--ltr { animation: marquee-ltr 40s linear infinite; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ----------------------------------------------------- 15. STEP TIMELINE */
.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
  flex-wrap: wrap;
  margin-top: var(--s-12);
}
.timeline-meta__desc {
  margin: 0;
}
.timeline-meta__indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--gray-700);
  box-shadow: 0 1px 3px rgba(21, 23, 26, 0.03);
}
.timeline-meta__label {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-right: 4px;
}
.timeline-meta__current {
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.9375rem;
}
.timeline-meta__sep {
  color: var(--gray-400);
}
.timeline-meta__total {
  color: var(--gray-600);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.timeline__line {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 52px;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}
.timeline__line-track {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 2px;
}
.timeline__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--green-500);
  border-radius: 2px;
  transition: height .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-20);
  align-items: flex-start;
  padding: var(--s-16) var(--s-20);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  opacity: 0.52;
  cursor: pointer;
  transition: opacity .35s var(--ease),
              background-color .35s var(--ease),
              border-color .35s var(--ease),
              box-shadow .35s var(--ease),
              transform .35s var(--ease);
}

.timeline__step.is--active {
  opacity: 1;
  background: rgba(8, 144, 108, 0.028);
  border-color: rgba(8, 144, 108, 0.22);
  box-shadow: 0 4px 20px rgba(8, 144, 108, 0.05);
}
.timeline__step.is--past {
  opacity: 0.72;
}

.timeline__marker-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2px;
  position: relative;
  z-index: 2;
}
.timeline__marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color .35s var(--ease),
              color .35s var(--ease),
              background-color .35s var(--ease);
  box-shadow: 0 1px 3px rgba(21, 23, 26, 0.04);
}
.timeline__step.is--past .timeline__marker {
  border-color: rgba(8, 144, 108, 0.45);
  color: var(--green-700);
  background: rgba(8, 144, 108, 0.04);
}
.timeline__step.is--active .timeline__marker {
  border-color: var(--green-500);
  color: var(--green-700);
  background: var(--white);
  font-weight: 700;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(8, 144, 108, 0.14), 0 2px 10px rgba(8, 144, 108, 0.16);
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding-top: 6px;
}
.timeline__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
}
.timeline__title {
  font-size: var(--title-xs);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 0;
  transition: color .35s var(--ease);
}
.timeline__step.is--active .timeline__title {
  color: var(--green-700);
  font-weight: 600;
}
.timeline__step-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-700);
  background: rgba(8, 144, 108, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-btn);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.timeline__step.is--active .timeline__step-badge {
  opacity: 1;
  transform: translateX(0);
}
.timeline__text {
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0;
  line-height: 1.5;
  transition: color .35s var(--ease);
}
.timeline__step.is--active .timeline__text {
  color: var(--gray-800);
}

/* Hover desktop */
@media (hover: hover) and (pointer: fine) {
  .timeline__step:hover {
    opacity: 1;
    transform: translateX(4px);
  }
  .timeline__step:not(.is--active):hover {
    background: rgba(8, 144, 108, 0.015);
    border-color: rgba(8, 144, 108, 0.12);
  }
  .timeline__step:not(.is--active):hover .timeline__marker {
    border-color: rgba(8, 144, 108, 0.4);
    color: var(--green-700);
  }
}

/* Statement block */
.learning-statement {
  padding: var(--s-32) var(--s-36);
  background: linear-gradient(135deg, rgba(8, 144, 108, 0.045) 0%, rgba(8, 144, 108, 0.01) 100%);
  border: 1.5px solid rgba(8, 144, 108, 0.28);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(8, 144, 108, 0.04);
}
.learning-statement__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  max-width: 52rem;
}
.learning-statement__header {
  display: flex;
  align-items: center;
  gap: var(--s-12);
}
.learning-statement__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(8, 144, 108, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.2);
  padding: 3px 10px;
  border-radius: var(--radius-btn);
}
.learning-statement__icon {
  flex: none;
  color: currentColor;
}
.learning-statement__quote {
  font-size: var(--text-l);
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}
.learning-statement__quote strong {
  font-weight: 600;
  color: var(--black);
}

/* Legacy .steps support */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: var(--s-24);
  padding: var(--s-24) 0;
  border-top: 1px solid var(--gray-200);
}
.step:last-child { border-bottom: 1px solid var(--gray-200); }
.step__num {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  color: var(--green-700);
  padding-top: 4px;
}
.step__body { display: flex; flex-direction: column; gap: var(--s-8); }
.step__title { font-size: var(--title-xs); font-weight: 500; letter-spacing: -0.02em; }
.step__text { color: var(--gray-600); max-width: 44rem; }

.steps--dark .step { border-color: rgba(255,255,255,.14); }
.steps--dark .step__num { color: var(--green-300); }
.steps--dark .step__text { color: var(--gray-200); }

/* ------------------------------------------- 16. STICKY STEPPER (HIW) */
.hiw {
  /* MEASURED: on #08906c (--green-500) no text colour can reach the 4.5:1 AA
     floor — even pure white tops out at 4.03:1, because the surface is not dark
     enough. The section therefore uses the darker --green-700 as its GROUND and
     keeps #08906c for the accents that carry meaning (markers, borders), which
     is also a clearer hierarchy: dark field, bright markers. */
  background-color: var(--green-700);
  color: var(--white);
  padding-top: var(--s-120);
  padding-bottom: var(--s-120);
}
.hiw__head {
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  margin-bottom: var(--s-80);
}
.hiw__head .chips { color: var(--white); }
.hiw__head .chips__icon { color: var(--green-200); }

.hiw__layout {
  display: flex;
  align-items: flex-start;
  gap: var(--s-80);
}

.hiw__aside {
  position: sticky;
  top: 7rem;
  width: 24.375rem;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}
.hiw__aside-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  color: var(--white);
}
.hiw__aside-title { font-size: var(--title-s); line-height: 1.25; font-weight: 500; letter-spacing: -0.03em; }
.hiw__aside-text { font-size: var(--text-m); color: rgba(255,255,255,.86); }

.hiw__progress {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: var(--s-8);
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: var(--s-16);
}
.hiw__progress-item {
  display: flex;
  align-items: baseline;
  gap: var(--s-12);
  padding: var(--s-8) 0 var(--s-8) 0;
  border-left: 2px solid transparent;
  padding-left: 0;
  font-size: var(--text-m);
  color: rgba(255,255,255,.85);
  transition: color .35s var(--ease), border-color .35s var(--ease), padding-left .35s var(--ease);
}
.hiw__progress-item .text--mono { color: inherit; opacity: .85; }
.hiw__progress-item.is--active {
  color: var(--white);
  border-left-color: var(--green-200);
  padding-left: var(--s-12);
}
.hiw__progress-item.is--done { color: rgba(255,255,255,.85); }

.hiw__panel {
  position: relative;
  flex: 1;
  border-left: 1px solid var(--green-300);
  padding-left: 4.375rem;
}
.hiw-block {
  position: relative;
  padding: var(--s-48) 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hiw-block:first-child { padding-top: 0; }
.hiw-block:last-child { border-bottom: 0; padding-bottom: 0; }

.hiw-block__marker {
  position: absolute;
  top: 0;
  left: -4.5rem;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: var(--s-48);
  height: var(--s-48);
  border-radius: 50%;
  border: 1px solid var(--green-300);
  background-color: rgba(0,0,0,.28);
  font-family: var(--font-mono);
  font-size: var(--text-s);
  color: var(--white);
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.hiw-block:first-child .hiw-block__marker { top: 0; }
.hiw-block.is--active .hiw-block__marker {
  background-color: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}

.hiw-block__inner { display: flex; flex-direction: column; gap: var(--s-16); max-width: 42rem; }
.hiw-block__title { font-size: var(--title-s); line-height: 1.25; font-weight: 500; letter-spacing: -0.03em; }
.hiw-block__text { color: rgba(255,255,255,.88); }

.hiw-block__list { display: flex; flex-direction: column; gap: var(--s-12); }
.hiw-block__list li {
  display: flex;
  gap: var(--s-12);
  align-items: flex-start;
  font-size: var(--text-m);
  color: rgba(255,255,255,.88);
}
.hiw-block__list li::before {
  content: "";
  flex: none;
  width: 5px; height: 5px;
  margin-top: 9px;
  border-radius: 50%;
  background-color: var(--green-200);
}

.hiw-block__note {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--s-12) var(--s-16);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.22);
  background-color: rgba(0,0,0,.24);
  font-size: var(--text-m);
}

/* -------------------------------------------------- 17. DARK INTEGRATION (SAU ĐÀO TẠO) */
.dark-panel {
  background-color: #080c0a;
  color: var(--white);
  padding-top: var(--s-120);
  padding-bottom: var(--s-120);
  position: relative;
  overflow: hidden;
}
.dark-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.dark-panel__head { display: flex; flex-direction: column; gap: var(--s-16); margin-bottom: var(--s-48); }
.dark-panel__head .chips { color: #34d399; font-weight: 500; }
.dark-panel .title--l { color: #ffffff; }
.dark-panel .head__sub,
.dark-panel .text--muted { color: #cbd5e1; line-height: 1.6; }
.dark-panel__head .chips__icon { color: #34d399; }

/* Backward compatibility for dark-grid and dark-card */
.dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-20); }
.dark-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-32);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,.1);
  background-color: #0e1411;
  transition: border-color .35s var(--ease), background-color .35s var(--ease);
}
.dark-card:hover { border-color: rgba(16, 185, 129, 0.4); background-color: #121c16; }
.dark-card__title { font-size: var(--title-xs); font-weight: 600; letter-spacing: -0.02em; color: #ffffff; }
.dark-card__text { color: #cbd5e1; font-size: var(--text-m); line-height: 1.55; }

/* 17.1. DIAGNOSTIC NETWORK CARDS */
.diag-system {
  position: relative;
  display: flex;
  flex-direction: column;
}
.diag-system__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-16);
  margin-bottom: var(--s-24);
}
.diag-system__line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.diag-system__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #10b981;
}
.diag-system__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #34d399;
  background: #0d1512;
  border: 1px solid rgba(16, 185, 129, 0.22);
  padding: 4px 14px;
  border-radius: 9999px;
  font-weight: 500;
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-20);
  transition: opacity 0.35s ease;
}

/* Sibling Dimming on Hover / Active: Inactive cards stay easily legible at 0.72 opacity without grayscale */
@media (hover: hover) and (pointer: fine) {
  .diag-grid:hover .diag-card:not(:hover) {
    opacity: 0.72;
    transform: none;
    filter: none;
  }
}
.diag-grid.has--active-card .diag-card:not(.is--active):not(:hover) {
  opacity: 0.72;
  transform: none;
  filter: none;
}

.diag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-16);
  padding: var(--s-28) var(--s-24);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e1411;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background-color 0.35s ease,
              box-shadow 0.35s ease,
              opacity 0.35s ease;
  cursor: pointer;
  min-height: 140px;
  overflow: hidden;
}
.diag-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.35s ease;
}

.diag-card:hover,
.diag-card.is--active {
  background: #121c16;
  border-color: #10b981;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 10px rgba(16, 185, 129, 0.14);
  transform: translateY(-2px);
  opacity: 1 !important;
  filter: none !important;
}
.diag-card:hover::before,
.diag-card.is--active::before {
  background: rgba(16, 185, 129, 0.4);
}

.diag-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.diag-card__num {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.diag-card:hover .diag-card__num,
.diag-card.is--active .diag-card__num {
  color: #34d399;
  font-weight: 700;
}

.diag-card__signal {
  position: relative;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diag-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #334155;
  transition: all 0.3s ease;
}
.diag-card__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #10b981;
  opacity: 0;
  transform: scale(1);
}
.diag-card:hover .diag-card__dot,
.diag-card.is--active .diag-card__dot {
  background: #34d399;
}
.diag-card:hover .diag-card__pulse,
.diag-card.is--active .diag-card__pulse {
  animation: diag-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes diag-ping {
  0% { transform: scale(1); opacity: 0.5; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.diag-card__text {
  font-size: var(--text-m);
  color: #f1f5f9;
  line-height: 1.55;
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.diag-card:hover .diag-card__text,
.diag-card.is--active .diag-card__text {
  color: #ffffff;
  font-weight: 500;
}

.diag-card__glow {
  display: none;
}

/* 17.2. TRANSFORMATION STATEMENT */
.trans-statement {
  background: #0b110e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: var(--s-36) var(--s-32);
  position: relative;
  overflow: hidden;
}
.trans-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(16, 185, 129, 0.2);
}
.trans-statement__header {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
  margin-bottom: var(--s-24);
}
.trans-statement__badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #34d399;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.trans-statement__intro {
  font-size: var(--text-l);
  color: #cbd5e1;
  margin: 0;
}
.trans-statement__grid {
  display: grid;
  grid-template-columns: 1fr 54px 1.4fr;
  align-items: center;
  gap: var(--s-20);
}

.trans-statement__box {
  border-radius: var(--radius-card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.trans-statement__box--old {
  background: #0e1512;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: var(--s-24);
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}
.trans-statement__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trans-statement__tag--old {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
}
.trans-statement__icon--old {
  font-size: 0.8125rem;
  color: #94a3b8;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}
.trans-statement__quote--old {
  font-size: var(--title-xs);
  color: #94a3b8;
  margin: 0;
  line-height: 1.45;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
}

.trans-statement__shift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
}
.trans-statement__shift-line {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
}
.trans-statement__shift-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111a15;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trans-statement__box--new {
  background: #111c16;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: var(--s-24) var(--s-28);
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(16, 185, 129, 0.08);
  position: relative;
}
.trans-statement__tag--new {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.trans-statement__tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}
.trans-statement__icon--new {
  font-size: 0.8125rem;
  color: #34d399;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  font-weight: bold;
}
.trans-statement__lead-new {
  font-size: var(--text-s);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #34d399;
  margin: 0;
  font-weight: 600;
}
.trans-statement__quote--new {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

/* 17.3. INTERACTIVE TRANSFORMATION JOURNEY */
.journey-section {
  position: relative;
  display: flex;
  flex-direction: column;
}
.journey-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-16);
  margin-bottom: var(--s-32);
}
.journey-section__lead {
  margin: 0;
  color: #e2e8f0;
}
.journey-section__meta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #0e1512;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.journey-section__curr {
  color: #34d399;
  font-weight: 700;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-16);
  padding-top: var(--s-16);
}

.journey-track__rail {
  position: absolute;
  top: 38px;
  left: 40px;
  right: 40px;
  height: 2px;
  z-index: 1;
  pointer-events: none;
}
.journey-track__rail-base {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.journey-track__rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #10b981;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.3);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-14);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: var(--s-12) var(--s-8);
  border-radius: var(--radius-md);
}
.journey-node:hover {
  transform: translateY(-2px);
}

.journey-node__marker {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e1411;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.journey-node__num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.3s ease;
}
.journey-node__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #10b981;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.35s ease;
}

.journey-node__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.journey-node__sub {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}
.journey-node__title {
  font-size: var(--text-m);
  font-weight: 500;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s ease;
}

/* Past Node */
.journey-node.is--past .journey-node__marker {
  background: #0d1a13;
  border-color: #10b981;
}
.journey-node.is--past .journey-node__num {
  color: #34d399;
  font-weight: 600;
}
.journey-node.is--past .journey-node__title {
  color: #ffffff;
}

/* Active Node */
.journey-node.is--active .journey-node__marker {
  background: #10b981;
  border-color: #a7f3d0;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
  transform: scale(1.06);
}
.journey-node.is--active .journey-node__num {
  color: #ffffff;
  font-weight: 700;
}
.journey-node.is--active .journey-node__pulse {
  opacity: 0.5;
  animation: diag-ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.journey-node.is--active .journey-node__title {
  color: #ffffff;
  font-weight: 600;
}
.journey-node.is--active .journey-node__sub {
  color: #34d399;
}

/* 17.4. KEY STATEMENT CALLOUT */
.dark-guardrail {
  background: #0b110e;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-card);
  padding: var(--s-36) var(--s-40);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.dark-guardrail__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1.3fr;
  gap: var(--s-36);
  align-items: center;
}
.dark-guardrail__context {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}
.dark-guardrail__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 4px 10px;
  border-radius: 9999px;
  align-self: flex-start;
}
.dark-guardrail__caution {
  font-size: var(--text-m);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}
.dark-guardrail__divider {
  background: rgba(255, 255, 255, 0.08);
  width: 1px;
  height: 100%;
  min-height: 80px;
}
.dark-guardrail__statement {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.dark-guardrail__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: #34d399;
}
.dark-guardrail__title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.32;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ------------------------------------------------------ 18. GUIDE BLOCKS */
.guide { display: flex; flex-direction: column; }
.guide-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-48);
  align-items: start;
  padding: var(--s-48) 0;
  border-top: 1px solid var(--gray-200);
}
.guide-block:last-child { border-bottom: 1px solid var(--gray-200); }
.guide-block__head { display: flex; flex-direction: column; gap: var(--s-16); }
.guide-block__num {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  color: var(--green-700);
}
.guide-block__body { display: flex; flex-direction: column; gap: var(--s-16); }

/* --------------------------------------------------- 18b. STAT BAND (B) */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-cell {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-32) var(--s-24) var(--s-32) 0;
  border-left: 1px solid var(--gray-200);
  padding-left: var(--s-24);
}
.stat-cell:first-child { border-left: 0; padding-left: 0; }
.stat-cell__n { font-size: 3.5rem; line-height: 1; letter-spacing: -0.03em; font-weight: 500; }
.stat-cell__label { font-size: var(--text-m); color: var(--gray-600); line-height: 1.45; }
.stat-cell__note { font-size: var(--text-s); color: var(--gray-600); line-height: 1.4; }

/* Question shift: the before/after framing used in Section 8 */
.shift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
}
.shift__col {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-32);
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}
.shift__col.is--now {
  border-color: transparent;
  background: var(--grad-dark);
  color: var(--white);
}
.shift__label { font-family: var(--font-mono); font-size: var(--text-s); color: var(--gray-600); }
.shift__col.is--now .shift__label { color: var(--white); }
.shift__q { font-size: var(--title-s); line-height: 1.25; font-weight: 500; letter-spacing: -0.03em; }
.shift__col p.text--m { line-height: 1.5; }
.shift__col:not(.is--now) p.text--m { color: var(--gray-600); }
.shift__col.is--now p.text--m { color: rgba(255,255,255,.82); }

/* ------------------------------------------------------------ 19. CHAIN */
.chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-12);
}
.chain__node {
  display: inline-flex;
  align-items: center;
  padding: var(--s-12) var(--s-20);
  border-radius: var(--radius-btn);
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  font-size: var(--text-m);
  letter-spacing: -0.02em;
}
.chain__node.is--accent { background-color: var(--green-700); border-color: var(--green-700); color: var(--white); }
.chain__arrow { color: var(--green-500); flex: none; }

.chain--dark .chain__node { background-color: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); color: var(--white); }
.chain--dark .chain__node.is--accent { background-color: var(--green-700); border-color: var(--green-700); }
.chain--dark .chain__arrow { color: var(--green-300); }

/* --------------------------------------------------------------- 20. FAQ (PREMIUM EDITORIAL B2B) */
.faq-section {
  position: relative;
}

.faq-layout {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: clamp(2.5rem, 4.5vw, 5rem);
  align-items: start;
}

/* Sticky Aside (Desktop) */
.faq-layout__aside {
  position: relative;
}
.faq-sticky {
  position: sticky;
  top: calc(var(--s-64) + 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  padding-right: var(--s-12);
}
.faq-layout__title {
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.faq-layout__sub {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Quick Support Card */
.faq-sticky__help {
  margin-top: var(--s-20);
  padding: var(--s-20) var(--s-24);
  border-radius: var(--radius-card);
  background-color: #f8faf9;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.faq-sticky__help-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.faq-sticky__help-title {
  font-size: var(--text-s);
  font-weight: 500;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.4;
}
.faq-sticky__help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-700);
  font-weight: 600;
  font-size: var(--text-s);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.faq-sticky__help-link:hover {
  gap: 10px;
  color: var(--green-600);
}

/* Accordion Main */
.faq-layout__main {
  width: 100%;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  border-top: none;
}

/* Accordion Item Card */
.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  background-color: var(--white);
  padding: var(--s-24) var(--s-32);
  transition: background-color 0.3s var(--ease),
              border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.faq__item:hover {
  border-color: var(--gray-300);
}

/* Active / Open state: soft light green tint + refined green border */
.faq__item.is--open {
  background-color: #f5fbf8;
  border-color: rgba(8, 144, 108, 0.35);
  box-shadow: 0 4px 20px -2px rgba(8, 144, 108, 0.06);
}

/* Question button */
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-20);
  width: 100%;
  padding: 0;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.45;
  transition: color 0.25s var(--ease);
}
.faq__q:hover {
  color: var(--green-700);
}
.faq__item.is--open .faq__q {
  color: var(--green-700);
}

/* Plus / Minus Sign Indicator */
.faq__sign {
  position: relative;
  flex: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--gray-500);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s var(--ease),
              border-color 0.25s var(--ease),
              color 0.25s var(--ease);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s var(--ease);
}
.faq__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__q:hover .faq__sign {
  border-color: var(--green-400);
  color: var(--green-700);
  background-color: var(--green-50);
}

/* Active Sign State: rotate smoothly to minus */
.faq__item.is--open .faq__sign {
  background-color: #e6f6f1;
  border-color: var(--green-300);
  color: var(--green-700);
  transform: rotate(180deg);
}
.faq__item.is--open .faq__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* Answer Accordion Expansion */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__item.is--open .faq__a {
  grid-template-rows: 1fr;
}

/* Answer Inner: Slide + Fade Animation */
.faq__a-inner {
  overflow: hidden;
  min-height: 0;
  max-width: 42rem;
  color: var(--gray-600);
  font-size: var(--text-m);
  line-height: 1.7;
  padding-top: var(--s-16);
  padding-bottom: var(--s-4);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.32s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__item.is--open .faq__a-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.04s;
}
.faq__a-inner::after {
  display: none;
}
.faq__a-inner strong {
  color: var(--gray-800);
  font-weight: 600;
}

/* Responsive: 1 column on tablet and mobile */
@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--s-36);
  }
  .faq-sticky {
    position: static;
    padding-right: 0;
  }
  .faq-sticky__help {
    display: none;
  }
  .faq__item {
    padding: var(--s-20);
  }
  .faq__q {
    font-size: 1.0625rem;
    gap: var(--s-16);
  }
  .faq__sign {
    width: 32px;
    height: 32px;
  }
  .faq__sign::before,
  .faq__sign::after {
    width: 11px;
  }
  .faq__a-inner {
    max-width: 100%;
    font-size: var(--text-m);
    line-height: 1.62;
    padding-top: var(--s-14);
  }
}

/* -------------------------------------------------- 21. LUCAS + FINAL CTA */
.contact {
  display: grid;
  grid-template-columns: 4fr 6fr; /* 40% Lucas / 60% CTA */
  gap: clamp(1.5rem, 2.8vw, 2.5rem);
  align-items: stretch;
}

/* Lucas Card (Left Column) */
.lucas {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.lucas__portrait {
  position: relative;
  width: 100%;
  height: 310px;
  background-color: #0b1410;
  overflow: hidden;
  flex-shrink: 0;
}

.lucas__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.lucas:hover .lucas__img {
  transform: scale(1.025);
}

.lucas__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-16) var(--s-24);
  background: linear-gradient(
    to top,
    rgba(6, 16, 12, 0.85) 0%,
    rgba(6, 16, 12, 0.45) 50%,
    rgba(6, 16, 12, 0.1) 80%,
    transparent 100%
  );
  color: var(--white);
  pointer-events: none;
}

.lucas__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 3px 10px;
  background: rgba(6, 18, 13, 0.68);
  border: 1px solid rgba(52, 211, 153, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-btn);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #34d399;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lucas__name {
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.lucas__body {
  padding: var(--s-24) var(--s-28);
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  flex: 1;
  justify-content: space-between;
}

.lucas__bio {
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.lucas__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8);
  margin: 0;
}

.lucas__pillars span {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(8, 144, 108, 0.25);
  background-color: #f0fdf4;
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--green-700);
  font-family: var(--font-mono);
  transition: all var(--dur-fast) var(--ease-out);
}

.lucas__pillars span:hover {
  background-color: #dcfce7;
  border-color: var(--green-500);
}

.lucas__pillars-desc {
  font-size: var(--text-s);
  color: var(--gray-600);
  line-height: 1.6;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--s-14);
  margin: 0;
}

/* Convert / Final CTA (Right Column) */
.convert {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-20);
  padding: clamp(2rem, 3.2vw, 2.75rem);
  border-radius: var(--radius-card);
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.convert__header {
  display: flex;
  flex-direction: column;
  gap: var(--s-10);
}

.convert__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--black);
}

.convert__sub {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.5;
}

.convert__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-10) var(--s-20);
  background-color: #f9fbfa;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  padding: var(--s-16) var(--s-20);
  margin: 0;
  list-style: none;
}

.convert__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-10);
  font-size: var(--text-s);
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.45;
  margin: 0;
}

.convert__list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background-color: var(--green-500);
}

.convert__note {
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
}

.convert__workflow {
  display: flex;
  align-items: center;
}

.convert__chain {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 8px 16px;
  background-color: #f8faf9;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-btn);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  margin: 0;
}

.convert__chain span {
  font-weight: 600;
  color: var(--gray-700);
}

.convert__chain span[aria-hidden="true"] {
  color: var(--green-500);
}

.convert__chain .convert__chain-kpi {
  color: var(--green-700);
}

.convert .button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-12);
  margin: 0;
}

.convert .button-row .button {
  padding: var(--s-14) var(--s-24);
  font-size: var(--text-m);
  font-weight: 500;
  text-align: center;
}

.convert .button-row .button:not(.button--outline) {
  flex: 1 1 auto;
  max-width: max-content;
}

.convert .button-row .button--outline {
  flex: 0 0 auto;
}

.convert__micro {
  font-size: var(--text-s);
  color: var(--gray-500);
  line-height: 1.55;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--s-14);
  margin: 0;
}

@media (max-width: 991px) {
  .contact {
    grid-template-columns: 1fr;
    gap: var(--s-32);
  }
  .lucas__portrait {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .convert__list {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .lucas__portrait {
    height: 280px;
  }
}

/* ------------------------------------------------------------- 22. FOOTER */
.site-footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: var(--s-80);
  padding-bottom: var(--s-40);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--s-60);
  padding-bottom: var(--s-60);
}
.site-footer__brand { display: flex; flex-direction: column; gap: var(--s-20); }
.site-footer__brand .brand { color: var(--white); }
.site-footer__brand p { color: var(--gray-400); font-size: var(--text-m); max-width: 24rem; line-height: 1.5; }

.site-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-40); }
.site-footer__col { display: flex; flex-direction: column; gap: var(--s-12); }
.site-footer__col h4 {
  font-family: var(--font-mono);
  font-size: var(--text-s);
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0;
  margin-bottom: var(--s-4);
}
.site-footer__col a { font-size: var(--text-m); color: var(--gray-200); transition: color .25s var(--ease); }
.site-footer__col a:hover { color: var(--green-300); }

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  padding: var(--s-24) 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: var(--gray-400);
  font-size: var(--text-s);
  line-height: 1.6;
}
.site-footer__legal strong { color: var(--gray-200); font-weight: 500; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
  padding-top: var(--s-24);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: var(--text-s);
  color: var(--gray-400);
}
.site-footer__bottom nav { display: flex; gap: var(--s-20); }
.site-footer__bottom a:hover { color: var(--green-300); }

/* ------------------------------------------------------ 23. MOTION UTILS
   The hidden state is scoped to .has-js so that a JS-disabled browser (or a
   crawler that does not execute scripts) still renders every section. The
   class is added by proposal.js on boot. */
.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.has-js [data-reveal].is--in { opacity: 1; transform: none; }
.has-js [data-reveal="sm"] { transform: translateY(10px); }
.has-js [data-reveal="left"] { transform: translateX(-22px); }
.has-js [data-reveal="right"] { transform: translateX(22px); }

.has-js [data-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.has-js [data-stagger].is--in > * { opacity: 1; transform: none; }
[data-stagger].is--in > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].is--in > *:nth-child(2) { transition-delay: .10s; }
[data-stagger].is--in > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].is--in > *:nth-child(4) { transition-delay: .22s; }
[data-stagger].is--in > *:nth-child(5) { transition-delay: .28s; }
[data-stagger].is--in > *:nth-child(6) { transition-delay: .34s; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-size: var(--text-s);
}
.skip-link:focus { left: 0; }

.scrub-meter {
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  height: 2px;
  width: 0;
  background: var(--grad-green);
  transition: width .1s linear;
}

/* Review aid: jump between the two proposals while comparing them. */
.variant-switch {
  position: fixed;
  right: var(--s-24);
  bottom: var(--s-24);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  padding: var(--s-12) var(--s-20);
  border-radius: var(--radius-btn);
  background-color: var(--black);
  color: var(--white);
  font-size: var(--text-s);
  box-shadow: 0 12px 30px rgba(21,23,26,.22);
  transition: transform .3s var(--ease);
}
.variant-switch:hover { transform: translateY(-2px); }
.variant-switch strong { font-weight: 500; color: var(--green-300); }

/* Section heading block, reused by every section. */
.head { display: flex; flex-direction: column; gap: var(--s-16); }
.head--center { align-items: center; text-align: center; }
.head__sub { color: var(--gray-600); }
.section--dark .head__sub, .section--green .head__sub { color: var(--gray-200); }
.head__title { margin-top: var(--s-4); }

/* --------------------------------------------- 23b. GRID/FLEX MIN-SIZE GUARD
   A grid or flex item defaults to min-width:auto, so it refuses to shrink below
   its content's min-content width and pushes the whole track past the viewport.
   MEASURED before this rule: .lucas held 358px inside a 320px viewport, giving
   77px of horizontal page scroll. */
.hero__grid > *, .bento > *, .benefits-grid > *, .tracks > *, .case > *,
.guide-block > *, .dark-grid > *, .stat-band > *, .contact > *, .shift > *,
.site-footer__inner > *, .site-footer__cols > *, .pick > *, .impact-list > * {
  min-width: 0;
}
.lucas, .convert, .lucas__portrait { min-width: 0; }
.lucas__portrait { width: 100%; }
.lucas__bio, .lucas__pillars, .convert__list li, .case__step dd, .dept__body,
.guide-block__body p, .text--measure, .text--measure-sm {
  overflow-wrap: break-word;
}

/* ------------------------------------------------------- 24. RESPONSIVE */
@media (max-width: 1200px) {
  :root {
    --title-xl: 3.5rem;
    --title-l: 3rem;
    --title-m: 2rem;
    --title-s: 1.5rem;
  }
  .hiw__aside { width: 18.125rem; }
  .hiw__layout { gap: var(--s-60); }
  .hiw__panel { padding-left: var(--s-60); }
  .impact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  :root {
    --title-xl: 2.75rem;
    --title-l: 2.375rem;
    --title-m: 1.75rem;
    --title-s: 1.375rem;
    --title-xs: 1.25rem;
    --pad-x: 1.5rem;
  }
  .section { padding-top: var(--s-80); padding-bottom: var(--s-80); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-40); }
  .hero__visual { margin: 0 auto; max-width: 23.5rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: var(--s-48); }
  .bento { grid-template-columns: 1fr; }
  .bcard--wide { grid-column: span 1; }
  .bcard__passport-grid { grid-template-columns: 1fr; gap: var(--s-20); }
  .passport-flow { justify-content: flex-start; padding: var(--s-12) var(--s-14); }
  .tracks { grid-template-columns: 1fr; }
  .dark-grid, .diag-grid { grid-template-columns: 1fr 1fr; }
  .trans-statement__grid { grid-template-columns: 1fr; gap: var(--s-16); }
  .trans-statement__shift { flex-direction: row; height: auto; width: 100%; margin: var(--s-4) 0; }
  .trans-statement__shift-line { width: 36px; height: 1px; }
  .trans-statement__shift-icon { transform: rotate(90deg); }
  .dark-guardrail__inner { grid-template-columns: 1fr; gap: var(--s-24); }
  .dark-guardrail__divider { width: 100%; height: 1px; min-height: 0; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat-cell { padding-top: var(--s-24); padding-bottom: var(--s-24); }
  .shift { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: var(--s-32); padding: var(--s-32); }
  .case__media-col { position: static; }
  .guide-block { grid-template-columns: 1fr; gap: var(--s-24); }
  .contact { grid-template-columns: 1fr; gap: var(--s-32); }
  .site-footer__inner { grid-template-columns: 1fr; gap: var(--s-48); }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .hiw { padding-top: var(--s-80); padding-bottom: var(--s-80); }
  .hiw__layout { flex-direction: column; gap: var(--s-48); }
  .hiw__aside { position: static; width: 100%; }
  .hiw__progress { display: none; }
  .hiw__panel { border-left: 0; padding-left: 0; }
  .hiw-block { padding-left: 4rem; }
  .hiw-block__marker { left: 0; top: 2.6rem; transform: none; }
  .hiw-block:first-child .hiw-block__marker { top: 0; }
  .section--green, .dark-panel { padding-top: var(--s-80); padding-bottom: var(--s-80); }
  .impact-list { max-width: 40rem; }
}

@media (max-width: 480px) {
  /* .button is white-space:nowrap by design; at 320px "Tư vấn chương trình
     doanh nghiệp" needs 332px inside a 305px column and forced page scroll. */
  .button { white-space: normal; padding-left: var(--s-24); padding-right: var(--s-24); }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row .button { width: 100%; }
}

@media (max-width: 767px) {
  :root {
    --title-xl: 2.125rem;
    --title-l: 1.875rem;
    --title-m: 1.5rem;
    --title-s: 1.25rem;
    --title-xs: 1.125rem;
    --text-l: 1.0625rem;
  }
  .section { padding-top: var(--s-60); padding-bottom: var(--s-60); }
  .site-nav { display: none; }
  .site-header__actions .button { display: none; }
  .nav-toggle { display: grid; }
  .hero { padding-top: var(--s-48); }
  .hero__pipeline {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    gap: 12px;
    border-radius: 12px;
  }
  .hero__pipeline-tag {
    font-size: 0.6875rem;
    padding: 5px 12px;
    border-radius: 6px;
    align-self: flex-start;
  }
  .hero__trust {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 8px;
    padding: 0;
  }
  .hero__trust li span {
    padding: 3px 8px;
    font-size: 0.71875rem;
    border-radius: 5px;
  }
  .hero__trust-sep {
    font-size: 0.6875rem;
  }
  .hero__stat-float { flex-direction: column; gap: var(--s-8); }
  .text--number { font-size: 2.75rem; }
  .impact-list { display: flex; flex-direction: column; max-width: 22rem; aspect-ratio: auto; }
  .impact-item { width: 100%; }
  .impact-accent { margin: var(--s-20) 0 0; padding: 3rem 2rem; width: 100%; }
  .impact-accent p { font-size: var(--text-l); }
  .dark-grid, .diag-grid { grid-template-columns: 1fr; }
  .diag-system__bar { display: none; }
  .journey-track {
    display: flex;
    flex-direction: column;
    gap: var(--s-24);
    padding-left: 54px;
    padding-top: 0;
    position: relative;
  }
  .journey-track__rail {
    display: block;
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .journey-track__rail-fill {
    width: 100%;
    height: 0%;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .journey-node {
    flex-direction: row;
    text-align: left;
    padding: 0;
    align-items: center;
    gap: var(--s-16);
  }
  .journey-node__marker {
    position: absolute;
    left: -54px;
    top: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .journey-node__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .trans-statement { padding: var(--s-24) var(--s-16); }
  .dark-guardrail { padding: var(--s-28) var(--s-20); }
  .dark-guardrail__title { font-size: 1.375rem; }
  .stat-band { grid-template-columns: 1fr; }
  .stat-cell { border-left: 0; padding-left: 0; }
  .site-footer__cols { grid-template-columns: 1fr; }
  .logos__item { width: 136px; height: 68px; padding: 8px 12px; margin-right: var(--s-12); }
  .logos__img { max-width: 104px; max-height: 38px; }
  .case__step { grid-template-columns: 1fr; gap: 2px; }
  .case { padding: var(--s-24) var(--s-16); gap: var(--s-24); }
  .case-metric { padding: var(--s-16); }
  .case-metric__number { font-size: 2.5rem; }
  .case-flow { gap: var(--s-8); }
  .case-flow__pill { padding: 4px 10px; font-size: 0.75rem; }
  .case-flow__sep { font-size: 0.75rem; }
  .case-timeline { padding-left: 16px; }
  .case-timeline__marker { left: -16px; }
  .bcard { min-height: 0; padding: var(--s-24); }
  .convert { padding: var(--s-24); }
  .step { grid-template-columns: 3rem 1fr; gap: var(--s-16); }
  .timeline__line { left: 36px; }
  .timeline__step { grid-template-columns: 48px 1fr; gap: var(--s-12); padding: var(--s-14) var(--s-12); }
  .timeline__marker { width: 34px; height: 34px; font-size: 0.75rem; }
  .timeline__step-badge { display: none; }
  .learning-statement { padding: var(--s-24) var(--s-20); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .impact-accent { transform: none !important; }
}

/* ------------------------------------------- 22. FULL-SCREEN PROFILE (LUCAS ĐẶNG) */
html.has--profile-open,
body.has--profile-open {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
}

/* Full-Screen Container */
.profile-view {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 10000;
  background-color: #f8faf9;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s var(--ease), opacity 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.profile-view.is--open {
  visibility: visible;
  opacity: 1;
}

/* Sticky Header */
.profile-view__header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.profile-view__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-view__badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid rgba(8, 144, 108, 0.22);
  padding: 3px 10px;
  border-radius: 6px;
}

.profile-view__title-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
}

.profile-view__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-500);
}

.profile-view__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.profile-view__close kbd {
  font-size: 0.6875rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 1px 5px;
  border-radius: 4px;
}

.profile-view__close:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--black);
}

/* Body Container */
.profile-view__body {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 36px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* Generic Section Styles */
.prof-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prof-section__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prof-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.prof-section__title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}

.prof-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(15, 23, 26, 0.04);
}

/* 1. Hero Grid */
.prof-hero__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: stretch;
}

.prof-identity {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prof-identity__avatar-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-100);
}

.prof-identity__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.prof-identity__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 26, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.prof-identity__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.prof-identity__name-block h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 0 0 2px;
  line-height: 1.2;
}

.prof-identity__alias {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-700);
}

.prof-identity__title {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin-top: 6px;
}

.prof-identity__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.prof-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 3px 8px;
  border-radius: 6px;
}

.prof-identity__contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}

.prof-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-700);
  text-decoration: none;
}

.prof-contact-item svg {
  color: var(--green-700);
  flex-shrink: 0;
}

.prof-favikon-card {
  background: linear-gradient(135deg, rgba(8, 144, 108, 0.04), rgba(8, 144, 108, 0.08));
  border: 1px solid rgba(8, 144, 108, 0.22);
  border-radius: 10px;
  padding: 12px;
  margin-top: auto;
}

.prof-favikon__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--green-700);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.prof-favikon__ranks {
  display: flex;
  gap: 14px;
}

.prof-favikon__item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.prof-favikon__num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
}

.prof-favikon__lbl {
  font-size: 0.6875rem;
  color: var(--gray-700);
  line-height: 1.2;
}

/* Executive Overview Card */
.prof-overview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.prof-overview__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prof-overview__role-chip {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-700);
  padding: 4px 10px;
  border-radius: 6px;
}

.prof-overview__headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}

.prof-overview__subpills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--gray-600);
}

.prof-overview__subpills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prof-overview__subpills span:not(:last-child)::after {
  content: "|";
  color: var(--gray-300);
}

.prof-overview__quote-box {
  background: var(--gray-50);
  border-left: 3px solid var(--green-700);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-800);
}

.prof-anchors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.prof-anchor-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prof-anchor-item__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-700);
}

.prof-anchor-item__desc {
  font-size: 0.75rem;
  color: var(--gray-700);
  line-height: 1.4;
  margin: 0;
}

.prof-ecosystem-strip {
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.prof-ecosystem-strip strong {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--gray-900);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 2. Impact Metrics Grid */
.prof-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.prof-metric-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}

.prof-metric-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 4px;
}

.prof-metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.prof-metric-desc {
  font-size: 0.71875rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.prof-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.prof-case-card {
  background: linear-gradient(135deg, rgba(8, 144, 108, 0.04), rgba(8, 144, 108, 0.09));
  border: 1px solid rgba(8, 144, 108, 0.25);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.prof-case-num {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--green-700);
  white-space: nowrap;
}

.prof-case-text {
  font-size: 0.8125rem;
  color: var(--gray-800);
  line-height: 1.45;
}

/* 3. Credentials Grid */
.prof-creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.prof-cred-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.prof-cred-card:last-child {
  grid-column: 1 / -1;
}

.prof-cred-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid rgba(8, 144, 108, 0.22);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.prof-cred-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prof-cred-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.prof-cred-desc {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* 4. Three Pillars Grid */
.prof-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prof-bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prof-bento-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid rgba(8, 144, 108, 0.2);
  padding: 3px 8px;
  border-radius: 6px;
}

.prof-bento-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.prof-bento-desc {
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}

/* 5. Workflow / 6 Steps */
.prof-workflow {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.prof-wf-principle {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 20px;
}

.prof-wf-principle__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 4px;
}

.prof-wf-principle__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px;
}

.prof-wf-principle__desc {
  font-size: 0.78125rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.45;
}

.prof-wf-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.prof-wf-step {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prof-wf-step__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-700);
}

.prof-wf-step__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

/* 6. Operating Capabilities */
.prof-op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.prof-op-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prof-op-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prof-op-num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-700);
}

.prof-op-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.prof-op-desc {
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}

/* 7. Training Topics (Chủ đề đào tạo trọng tâm) */
.prof-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.prof-topic-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.prof-topic-card__main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prof-topic-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.prof-topic-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.45;
  margin: 0;
}

.prof-topic-card__output {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.71875rem;
  color: var(--gray-800);
  line-height: 1.35;
}

.prof-topic-card__output strong {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--green-700);
  text-transform: uppercase;
}

/* 8. Press & Media (Báo chí & Truyền thông) */
.prof-press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.prof-press-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prof-press-card__source {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prof-press-card__title {
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0;
}

/* 9. Teaching & Cooperation Formats (Hình thức giảng dạy & hợp tác) */
.prof-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.prof-format-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.35;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}

.prof-format-card:hover {
  border-color: var(--green-700);
  background: var(--gray-50);
}

/* 10. CTA Banner */
.prof-cta-banner {
  background: var(--black);
  border-radius: 16px;
  padding: 32px 36px;
  color: var(--white);
}

.prof-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.prof-cta-banner__text {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prof-cta-banner__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
}

.prof-cta-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}

.prof-cta-banner__contacts {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.prof-cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.prof-cta-banner__actions .button {
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .prof-hero__grid {
    grid-template-columns: 1fr;
  }
  .prof-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prof-cases-grid {
    grid-template-columns: 1fr;
  }
  .prof-bento-grid {
    grid-template-columns: 1fr;
  }
  .prof-wf-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .prof-op-grid,
  .prof-topics-grid,
  .prof-press-grid {
    grid-template-columns: 1fr;
  }
  .prof-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prof-cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .prof-cta-banner__actions {
    align-items: flex-start;
    width: 100%;
  }
  .prof-cta-banner__actions .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .profile-view__header {
    padding: 10px 16px;
  }
  .profile-view__title-wrap {
    gap: 4px 8px;
  }
  .profile-view__title-text {
    font-size: 0.8125rem;
  }
  .profile-view__badge {
    font-size: 0.625rem;
    padding: 2px 6px;
  }
  .profile-view__meta {
    font-size: 0.6875rem;
  }
  .profile-view__close {
    padding: 6px 10px;
    font-size: 0.75rem;
    gap: 4px;
    flex-shrink: 0;
  }
  .profile-view__close kbd {
    display: none;
  }
  .profile-view__body {
    padding: 20px 16px 56px;
    gap: 32px;
  }
  .prof-anchors-grid {
    grid-template-columns: 1fr;
  }
  .prof-creds-grid {
    grid-template-columns: 1fr;
  }
  .prof-wf-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .prof-formats-grid {
    grid-template-columns: 1fr;
  }
  .prof-cta-banner {
    padding: 24px 20px;
  }
}

/* ------------------------------------------------------ 25. PRINT */
@media print {
  .site-header, .notice, .scrub-meter, .mobile-nav, .profile-view, .profile-modal { display: none !important; }
  body { background: #fff; }
  .section, .hiw, .dark-panel, .statement { padding: 24px 0 !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   26. STANDALONE LUCAS PROFILE PAGE (lucas.html)
   Executive Editorial · Enterprise AI · Premium Corporate B2B
   ========================================================================== */

body.lucas-page {
  background-color: #f8faf9;
  color: var(--gray-900);
}

/* Base Section Spacing for Lucas page */
.lucas-section {
  padding: 72px 0;
  position: relative;
}

.lucas-section--alt {
  background-color: var(--white);
  border-top: 1px solid rgba(21, 23, 26, 0.08);
  border-bottom: 1px solid rgba(21, 23, 26, 0.08);
}

.lucas-section__header {
  margin-bottom: 36px;
}

.lucas-section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 8px;
}

.lucas-section__title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.25;
}

.lucas-section__lead {
  margin-top: 8px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* 1. SINGLE EXECUTIVE HERO FULL WIDTH (38% Portrait / 62% Content) */
.lucas-hero {
  padding: 36px 0 44px;
}

.lucas-executive-hero {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 33% 67%;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
  margin-bottom: 16px;
  align-items: stretch;
}

/* Left ~33%: Lucas portrait, crop 4:5 executive */
.lucas-hero__portrait-col {
  position: relative;
  background: var(--gray-900);
  height: 100%;
  overflow: hidden;
}

.lucas-hero__portrait-frame {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.lucas-hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}

.lucas-hero__portrait-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 2;
}

.lucas-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

/* Right ~67%: Executive Content with subtle background technical visual */
.lucas-hero__content-col {
  position: relative;
  background: var(--white);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.lucas-hero__tech-bg {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 440px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
}

.lucas-hero__content-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HORIZONTAL CREDIBILITY RAIL FULL WIDTH */
.lucas-credibility-rail {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 12px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1.25fr 1.35fr 0.85fr;
  align-items: center;
  gap: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.lucas-cred-rail__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-right: 20px;
  border-right: 1px solid rgba(21, 23, 26, 0.08);
}

.lucas-cred-rail__name-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.lucas-cred-rail__name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}

.lucas-cred-rail__alias {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-700);
}

.lucas-cred-rail__role {
  font-size: 0.78125rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.35;
}

.lucas-cred-rail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.lucas-tag {
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  background: #f4f6f5;
  color: var(--gray-700);
  border: 1px solid rgba(21, 23, 26, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Contacts in rail */
.lucas-cred-rail__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-right: 20px;
  border-right: 1px solid rgba(21, 23, 26, 0.08);
}

.lucas-cred-rail__contact-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lucas-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78125rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.lucas-contact-chip svg {
  color: var(--green-700);
  flex-shrink: 0;
}

.lucas-contact-chip:hover {
  color: var(--green-700);
}

/* Favikon in rail */
.lucas-cred-rail__favikon {
  display: flex;
  justify-content: flex-end;
}

.lucas-favikon-badge {
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
}

.lucas-favikon-badge__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.lucas-favikon-badge__ranks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lucas-favikon-badge__item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.lucas-favikon-badge__num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-800);
}

.lucas-favikon-badge__label {
  font-size: 0.625rem;
  color: var(--gray-700);
  line-height: 1.25;
}
.lucas-overview__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.lucas-overview__role-chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-700);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
}

.lucas-overview__headline {
  font-size: clamp(1.625rem, 2.3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  line-height: 1.24;
  margin: 2px 0 0;
}

.lucas-overview__subpills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-700);
}

.lucas-overview__subpills span {
  display: inline-flex;
  align-items: center;
}

.lucas-overview__subpills span:not(:last-child)::after {
  content: '|';
  margin-left: 8px;
  color: var(--gray-400);
}

.lucas-overview__quote {
  background: #f7faf9;
  border-left: 3px solid var(--green-700);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.90625rem;
  color: var(--gray-800);
  line-height: 1.55;
}

.lucas-overview__quote p {
  margin: 0;
}

.lucas-overview__quote p:not(:last-child) {
  margin-bottom: 6px;
}

/* Capability Strip: Định vị | Phương châm | Đầu ra */
.lucas-cap-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lucas-cap-block {
  background: #fbfdfc;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lucas-cap-block__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.lucas-cap-block__desc {
  font-size: 0.8125rem;
  color: var(--gray-700);
  line-height: 1.45;
  margin: 0;
}

.lucas-ecosystem {
  font-size: 0.75rem;
  color: var(--gray-600);
  border-top: 1px solid rgba(21, 23, 26, 0.08);
  padding-top: 12px;
  line-height: 1.5;
}

.lucas-ecosystem strong {
  font-family: var(--font-mono);
  color: var(--gray-800);
  font-weight: 600;
}

/* 2. EVIDENCE SECTION: IMPACT RAIL & 2 HIGHLIGHT PANELS */
.lucas-impact-rail {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  margin-bottom: 20px;
  overflow: hidden;
}

.lucas-impact-rail__item {
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lucas-impact-rail__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(21, 23, 26, 0.08);
}

.lucas-impact-rail__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 6px;
}

.lucas-impact-rail__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.35;
}

.lucas-impact-rail__desc {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--green-700);
  margin-top: 2px;
}

/* 2 Highlight Panels */
.lucas-highlight-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lucas-highlight-panel {
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lucas-highlight-panel--1 {
  background: linear-gradient(135deg, #f0fdf7 0%, #ffffff 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 2px 10px rgba(8, 144, 108, 0.04);
}

.lucas-highlight-panel--2 {
  background: linear-gradient(135deg, #f7faf9 0%, #ffffff 100%);
  border: 1px solid rgba(21, 23, 26, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.lucas-highlight-panel:hover {
  transform: translateY(-2px);
  border-color: var(--green-600);
}

.lucas-highlight-panel__stat {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.lucas-highlight-panel__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lucas-highlight-panel__badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.lucas-highlight-panel__text {
  font-size: 0.90625rem;
  color: var(--gray-800);
  line-height: 1.45;
  margin: 0;
}

.lucas-highlight-panel__text strong {
  color: var(--gray-900);
}

/* 3. BA TRỤ CỘT NĂNG LỰC (ASYMMETRIC BENTO & REAL MICRO-DIAGRAMS) */
.lucas-bento__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.22fr 0.95fr;
  gap: 20px;
  align-items: stretch;
}

.lucas-bento-card {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.lucas-bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-700);
  box-shadow: 0 8px 24px rgba(8, 144, 108, 0.08);
}

.lucas-bento-card--featured {
  background: linear-gradient(180deg, #f7fdfa 0%, #ffffff 100%);
  border: 1.5px solid var(--green-700);
  box-shadow: 0 4px 18px rgba(8, 144, 108, 0.06);
}

.lucas-bento-card__badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.lucas-bento-card__badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.lucas-bento-card__featured-tag {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-700);
  padding: 2px 7px;
  border-radius: 3px;
}

.lucas-bento-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 8px;
}

.lucas-bento-card__desc {
  font-size: 0.84375rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0 0 20px;
}

/* REAL TECHNICAL MICRO-DIAGRAMS */
.micro-diagram {
  background: #fbfdfc;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 8px;
  padding: 14px 12px;
  margin-top: auto;
}

.micro-diagram--featured {
  background: #f2faf6;
  border-color: rgba(16, 185, 129, 0.35);
}

/* Diagram 1: AI Passport Flow */
.passport-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.passport-flow__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.passport-flow__icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gray-800);
}

.passport-flow__node--verified .passport-flow__icon {
  background: #10b981;
  border-color: #059669;
  color: #ffffff;
}

.passport-flow__label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--gray-600);
  white-space: nowrap;
}

.passport-flow__arrow {
  color: var(--gray-400);
  font-size: 0.625rem;
  margin-bottom: 12px;
}

/* Diagram 2: AI Enterprise Pipeline */
.enterprise-pipeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enterprise-pipeline__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.enterprise-pipeline__step {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
}

.enterprise-pipeline__step--active {
  border-color: var(--green-600);
  background: #f0fdf7;
}

.enterprise-pipeline__step-idx {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--green-700);
  display: block;
}

.enterprise-pipeline__step-name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.enterprise-pipeline__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--green-800);
  padding-top: 4px;
  border-top: 1px dashed rgba(16, 185, 129, 0.3);
}

/* Diagram 3: Agentic Tree */
.agentic-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.agentic-tree__leader {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.12);
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--gray-800);
}

.agentic-tree__branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}

.agentic-tree__agent {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  background: #f0fdf7;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 2px;
  border-radius: 4px;
  text-align: center;
  color: var(--green-800);
  font-weight: 600;
}

.agentic-tree__review {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.agentic-tree__review::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
}

/* 4. QUY TRÌNH 6 BƯỚC: INTERACTIVE PROGRESS JOURNEY */
.lucas-journey-box {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.lucas-journey__principle {
  background: #f7faf9;
  border-left: 3px solid var(--green-700);
  padding: 16px 22px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}

.lucas-journey__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 4px;
}

.lucas-journey__statement {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 6px;
}

.lucas-journey__desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin: 0;
}

/* Interactive Stepper Navigation */
.journey-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.journey-stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(21, 23, 26, 0.08);
  z-index: 0;
}

.journey-stepper__progress-line {
  position: absolute;
  top: 20px;
  left: 30px;
  height: 2px;
  background: var(--green-700);
  z-index: 1;
  transition: width 0.3s var(--ease);
}

.journey-step-btn {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.12);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: inherit;
}

.journey-step-btn:hover {
  border-color: var(--green-600);
  transform: translateY(-2px);
}

.journey-step-btn.is-active {
  border-color: var(--green-700);
  background: #f0fdf7;
  box-shadow: 0 4px 12px rgba(8, 144, 108, 0.12);
}

.journey-step-btn__num {
  width: 24px;
  height: 24px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #f4f6f5;
  border: 1px solid rgba(21, 23, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: all 0.2s var(--ease);
}

.journey-step-btn.is-active .journey-step-btn__num {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #ffffff;
}

.journey-step-btn__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}

.journey-step-btn.is-active .journey-step-btn__title {
  color: var(--green-800);
}

/* Active Step Dynamic Detail Panel */
.journey-detail-panel {
  background: #fbfdfc;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  animation: fadeIn 0.25s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.journey-detail__badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: #e6f7ef;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.journey-detail__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 6px;
}

.journey-detail__sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 10px;
}

.journey-detail__desc {
  font-size: 0.84375rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

.journey-detail__deliverables {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journey-detail__box-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.journey-detail__box-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.journey-detail__box-val {
  font-size: 0.8125rem;
  color: var(--gray-900);
  font-weight: 500;
  line-height: 1.4;
}

/* 5. NĂNG LỰC VẬN HÀNH (EDITORIAL 2x2) */
.lucas-caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lucas-cap-card {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s var(--ease);
}

.lucas-cap-card:hover {
  border-color: var(--green-600);
}

.lucas-cap-card__header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.lucas-cap-card__idx {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-700);
}

.lucas-cap-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.lucas-cap-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* 6. CREDENTIALS & MEDIA: EDITORIAL TIMELINE / LIST (NO BULKY CARD BOXES) */
.lucas-creds-media__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lucas-col-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lucas-col-block__title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Left: Editorial Timeline for Credentials */
.lucas-editorial-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.lucas-editorial-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 12px;
  left: 4px;
  width: 2px;
  background: rgba(16, 185, 129, 0.25);
}

.lucas-timeline-item {
  position: relative;
  padding-bottom: 22px;
}

.lucas-timeline-item:not(:last-child) {
  border-bottom: 1px solid rgba(21, 23, 26, 0.06);
  margin-bottom: 18px;
}

.lucas-timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-700);
}

.lucas-timeline-item__badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--green-800);
  background: #f0fdf7;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 4px;
}

.lucas-timeline-item__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 3px;
}

.lucas-timeline-item__desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin: 0;
}

/* Right: Báo chí & Truyền thông */
.lucas-col-block--press {
  gap: 20px;
}

.lucas-editorial-press {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 1. Featured Press Hero Card */
.lucas-press-featured {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(8, 144, 108, 0.28);
  border-radius: 14px;
  padding: 22px 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(21, 23, 26, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lucas-press-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700) 0%, #10b981 100%);
}

.lucas-press-featured:hover {
  transform: translateY(-3px);
  border-color: var(--green-600);
  box-shadow: 0 12px 28px rgba(8, 144, 108, 0.12);
}

.lucas-press-featured__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lucas-press-featured__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lucas-press-pub-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 32px;
  background: var(--gray-950);
  border: 1px solid rgba(8, 144, 108, 0.35);
  border-radius: 6px;
  flex-shrink: 0;
}

.lucas-press-pub-logo__abbr {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #34d399;
}

.lucas-press-pub-logo__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
}

/* Press Logo Box (Uniform height & width box) */
.lucas-press-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 32px;
  background: #ffffff;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(21, 23, 26, 0.04);
}

.lucas-press-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.lucas-press-featured__outlet-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lucas-press-kicker {
  font-family: var(--font-mono);
  font-size: 0.59375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.lucas-press-outlet-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-800);
}

.lucas-press-year-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gray-700);
  background: rgba(21, 23, 26, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}

.lucas-press-featured__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lucas-press-featured__headline {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s var(--ease);
}

.lucas-press-featured:hover .lucas-press-featured__headline {
  color: var(--green-800);
}

.lucas-press-featured__excerpt {
  font-size: 0.84375rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

.lucas-press-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(21, 23, 26, 0.06);
}

.lucas-press-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-800);
}

.lucas-press-cta-arrow {
  font-size: 0.875rem;
  transition: transform 0.2s var(--ease);
}

.lucas-press-featured:hover .lucas-press-cta-arrow {
  transform: translateX(4px);
}

.lucas-press-featured__status {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* 2. Secondary Press Grid (2 cols desktop, 1 col mobile) */
.lucas-press-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lucas-press-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 114px;
}

.lucas-press-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.lucas-press-card__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.lucas-press-card__outlet {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.lucas-press-card__indicators {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lucas-press-card__year {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}

.lucas-press-card__arrow {
  font-size: 0.8125rem;
  font-weight: 700;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.lucas-press-card:hover .lucas-press-card__arrow {
  transform: translate(3px, -3px);
}

.lucas-press-card__headline {
  font-family: var(--font-heading);
  font-size: 0.90625rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  flex-grow: 1;
}

.lucas-press-card__footer {
  display: flex;
  align-items: center;
}

.lucas-press-card__cta-hint {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Card 02: Dark Emerald / Near-black Accent */
.lucas-press-card--dark {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0b2921 0%, #15171a 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11, 41, 33, 0.12);
}

.lucas-press-card--dark .lucas-press-logo-box {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.lucas-press-card--dark .lucas-press-card__outlet {
  color: #34d399;
}

.lucas-press-card--dark .lucas-press-card__year {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.lucas-press-card--dark .lucas-press-card__arrow {
  color: #34d399;
}

.lucas-press-card--dark .lucas-press-card__headline {
  color: var(--white);
}

.lucas-press-card--dark .lucas-press-card__cta-hint {
  color: #6ee7b7;
}

.lucas-press-card--dark:hover {
  transform: translateY(-3px);
  border-color: #34d399;
  box-shadow: 0 12px 28px rgba(8, 144, 108, 0.25);
}

/* Card 03: Crisp White Editorial Card */
.lucas-press-card--light {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.09);
  color: var(--gray-900);
  box-shadow: 0 3px 12px rgba(21, 23, 26, 0.03);
}

.lucas-press-card--light .lucas-press-card__outlet {
  color: var(--green-700);
}

.lucas-press-card--light .lucas-press-card__year {
  color: var(--gray-600);
  background: rgba(21, 23, 26, 0.05);
}

.lucas-press-card--light .lucas-press-card__arrow {
  color: var(--gray-400);
}

.lucas-press-card--light .lucas-press-card__headline {
  color: var(--gray-900);
}

.lucas-press-card--light .lucas-press-card__cta-hint {
  color: var(--green-700);
}

.lucas-press-card--light:hover {
  transform: translateY(-3px);
  border-color: var(--green-600);
  box-shadow: 0 10px 22px rgba(21, 23, 26, 0.06);
}

.lucas-press-card--light:hover .lucas-press-card__arrow {
  color: var(--green-700);
}

/* Card 04: Pale Emerald Mint Card */
.lucas-press-card--pale {
  background: #f0fdf7;
  border: 1px solid rgba(8, 144, 108, 0.2);
  color: var(--gray-900);
  box-shadow: 0 3px 12px rgba(8, 144, 108, 0.04);
}

.lucas-press-card--pale .lucas-press-card__outlet {
  color: var(--green-800);
}

.lucas-press-card--pale .lucas-press-card__year {
  color: var(--green-800);
  background: rgba(8, 144, 108, 0.1);
}

.lucas-press-card--pale .lucas-press-card__arrow {
  color: var(--green-700);
}

.lucas-press-card--pale .lucas-press-card__headline {
  color: var(--gray-900);
}

.lucas-press-card--pale .lucas-press-card__cta-hint {
  color: var(--green-800);
}

.lucas-press-card--pale:hover {
  transform: translateY(-3px);
  border-color: var(--green-700);
  box-shadow: 0 10px 22px rgba(8, 144, 108, 0.12);
}

.lucas-press-card--pale .lucas-press-logo-box {
  border-color: rgba(8, 144, 108, 0.16);
}

/* Press Section Responsive */
@media (max-width: 768px) {
  .lucas-press-subgrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lucas-press-card--dark {
    grid-column: auto;
  }
  .lucas-press-featured {
    padding: 18px 18px;
  }
}

@media (max-width: 480px) {
  .lucas-press-logo-box {
    width: 88px;
    height: 30px;
    padding: 2px 6px;
  }
  .lucas-press-featured__brand {
    gap: 10px;
  }
  .lucas-press-outlet-title {
    font-size: 0.6875rem;
  }
  .lucas-press-featured__top {
    align-items: center;
    gap: 8px;
  }
}

/* 7. CHỦ ĐỀ ĐÀO TẠO (GRID 3x2 VỚI NHỊP BENTO & SUBTLE EMERALD TREATMENT) */
.lucas-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lucas-topic-card {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.lucas-topic-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-600);
  box-shadow: 0 6px 18px rgba(8, 144, 108, 0.06);
}

/* Rhythm treatment for core modules */
.lucas-topic-card--accent {
  background: linear-gradient(180deg, #f7faf9 0%, #ffffff 100%);
  border-color: rgba(8, 144, 108, 0.35);
}

.lucas-topic-card--highlight {
  background: linear-gradient(180deg, #f2f9f5 0%, #ffffff 100%);
  border: 1.5px solid rgba(8, 144, 108, 0.45);
}

.lucas-topic-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lucas-topic-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lucas-topic-card__idx {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.06em;
}

.lucas-topic-card__badge {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  background: rgba(16, 185, 129, 0.14);
  padding: 2px 6px;
  border-radius: 3px;
}

.lucas-topic-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 2px 0 0;
  line-height: 1.35;
}

.lucas-topic-card__desc {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.lucas-topic-card__footer {
  border-top: 1px solid rgba(21, 23, 26, 0.08);
  padding-top: 10px;
  font-size: 0.75rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.lucas-topic-card__footer strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green-800);
  text-transform: uppercase;
}

/* 8. HÌNH THỨC HỢP TÁC & DARK CTA BAND */
.lucas-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.lucas-format-card {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 8px;
  padding: 16px 14px;
  text-align: center;
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.lucas-format-card:hover {
  border-color: var(--green-600);
  transform: translateY(-2px);
}

/* Executive Dark CTA Band */
.lucas-cta-band {
  background: #0d1210;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 14px;
  padding: 44px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.lucas-cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lucas-cta-band__content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.lucas-cta-band__statement {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #34d399;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.lucas-cta-band__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin: 0;
}

.lucas-cta-band__contact {
  font-family: var(--font-mono);
  font-size: 0.78125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.lucas-cta-band__contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lucas-cta-band__action {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lucas-cta-band__action .button--red {
  background-color: #dc3522;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(220, 53, 34, 0.35);
  transition: all 0.2s var(--ease);
}

.lucas-cta-band__action .button--red:hover {
  background-color: #c82312;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 34, 0.45);
}

/* Nav Active Indicator */
.site-nav__link.is--active,
.mobile-nav__link.is--active {
  color: var(--green-700);
  font-weight: 600;
}

.site-nav__link.is--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-700);
}

/* Responsive Rules for Lucas Page */
@media (max-width: 1024px) {
  .lucas-executive-hero {
    grid-template-columns: 1fr;
  }
  .lucas-hero__portrait-col {
    min-height: 400px;
    height: 400px;
  }
  .lucas-credibility-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lucas-cred-rail__identity,
  .lucas-cred-rail__contacts {
    border-right: none;
    border-bottom: 1px solid rgba(21, 23, 26, 0.08);
    padding-right: 0;
    padding-bottom: 14px;
  }
  .lucas-cred-rail__favikon {
    justify-content: flex-start;
  }
  .lucas-bento__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lucas-creds-media__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lucas-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-detail-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .lucas-section {
    padding: 52px 0;
  }
  .lucas-hero__content-col {
    padding: 24px 20px;
  }
  .lucas-cred-rail__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .lucas-impact-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .lucas-impact-rail__item:nth-child(2)::after {
    display: none;
  }
  .lucas-highlight-panels {
    grid-template-columns: 1fr;
  }
  .lucas-cap-strip {
    grid-template-columns: 1fr;
  }
  .journey-stepper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .journey-stepper::before,
  .journey-stepper__progress-line {
    display: none;
  }
  .lucas-caps-grid {
    grid-template-columns: 1fr;
  }
  .lucas-topics-grid {
    grid-template-columns: 1fr;
  }
  .lucas-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }
  .lucas-cta-band__action {
    width: 100%;
  }
  .lucas-cta-band__action .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .lucas-hero {
    padding: 24px 0 36px;
  }
  .lucas-hero__portrait-col {
    min-height: 320px;
    height: 320px;
  }
  .lucas-impact-rail {
    grid-template-columns: 1fr;
  }
  .lucas-impact-rail__item:not(:last-child)::after {
    display: none;
  }
  .lucas-impact-rail__item {
    border-bottom: 1px solid rgba(21, 23, 26, 0.08);
  }
  .journey-stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .lucas-formats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   27. TRANG ỨNG DỤNG THỰC TẾ (ung-dung-thuc-te.html)
   Layout 48% Video / 52% Content, 4:3 Video Player, Dark/Light Themes
   ========================================================================= */

/* Hero Section */
.app-hero {
  padding: 48px 0 36px;
  background-color: var(--gray-50);
  border-bottom: 1px solid rgba(21, 23, 26, 0.06);
}

.app-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.app-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  background: rgba(8, 144, 108, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.22);
  color: var(--green-700);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.app-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

.app-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0 0 16px;
}

.app-hero__desc {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
  color: var(--gray-600);
  margin: 0 0 32px;
  max-width: 740px;
}

/* Capability Flow Bar */
.app-flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.app-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f4f6f5;
  color: var(--gray-800);
  font-size: 0.8125rem;
  font-weight: 500;
}

.app-flow-step__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green-700);
}

.app-flow-sep {
  color: var(--gray-400);
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  user-select: none;
}

.app-flow-step--accent {
  background: var(--green-50);
  border: 1px solid rgba(8, 144, 108, 0.25);
  color: var(--green-800);
  font-weight: 600;
}

/* Main Cases Wrapper */
.app-cases-section {
  padding: 56px 0 72px;
}

.app-case-card {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 40px;
  align-items: start;
  padding: 44px;
  border-radius: var(--radius-card);
  margin-bottom: 40px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.app-case-card:last-child {
  margin-bottom: 0;
}

/* Case 01: Light Tone */
.app-case-card--light {
  background-color: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.08);
  box-shadow: 0 10px 32px rgba(21, 23, 26, 0.04);
}

.app-case-card--light:hover {
  box-shadow: 0 16px 44px rgba(8, 144, 108, 0.07);
}

/* Case 02: Dark Emerald / Near-Black Treatment */
.app-case-card--dark {
  background: linear-gradient(150deg, #031e17 0%, #063428 55%, #021a14 100%);
  border: 1.5px solid rgba(8, 144, 108, 0.4);
  box-shadow: 0 20px 48px rgba(2, 30, 23, 0.32);
  color: var(--white);
}

.app-case-card--dark:hover {
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 24px 56px rgba(2, 30, 23, 0.42);
}

/* Video Column & Component */
.app-case-video-col {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .app-case-video-col {
    position: sticky;
    top: calc(var(--header-h, 75px) + 24px);
  }
}

/* ── YouTube / Responsive Video Embed (16:9) ──────────────────────────────── */
.case-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background-color: #0b1210;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.2);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.case--light:hover .case-video-embed,
.cs-case--light:hover .case-video-embed {
  border-color: rgba(8, 144, 108, 0.35);
  box-shadow: 0 12px 28px rgba(8, 144, 108, 0.12);
}

.case--dark .case-video-embed,
.cs-case--dark .case-video-embed,
.cs-case--dark-close .case-video-embed {
  border-color: rgba(52, 211, 153, 0.35);
}

.case-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Fallback when iframe cannot load or file:// protocol */
.case-video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background:
    radial-gradient(110% 90% at 80% 15%, rgba(8, 144, 108, 0.16) 0%, rgba(8, 144, 108, 0) 65%),
    linear-gradient(135deg, #0b1512 0%, #032018 100%);
  color: var(--white);
  z-index: 2;
  overflow: hidden;
}

.is-file-protocol .case-video-embed iframe,
.has-video-error .case-video-embed iframe {
  display: none !important;
}

.is-file-protocol .case-video-embed .case-video-fallback,
.has-video-error .case-video-embed .case-video-fallback {
  display: flex !important;
}

.case-video-fallback__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.case-video-fallback__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: blur(1.5px);
  transform: scale(1.05);
}

.case-video-fallback__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 32, 24, 0.65) 0%, rgba(3, 32, 24, 0.88) 100%);
}

.case-video-fallback__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 92%;
}

.case-video-fallback__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  background: rgba(8, 144, 108, 0.18);
  border: 1px solid rgba(8, 144, 108, 0.35);
  color: #34d399;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.case-video-fallback__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.case-video-fallback__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ff0000;
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.case-video-fallback__btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.5);
  color: #fff;
}

.case-video-fallback__hint {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-family: var(--font-mono);
}

.case-video-card {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background-color: #0b1210;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(8, 144, 108, 0.2);
}

.case-video-card__element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.case-video-card__poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    radial-gradient(110% 90% at 80% 15%, rgba(8, 144, 108, 0.14) 0%, rgba(8, 144, 108, 0) 65%),
    linear-gradient(135deg, #f2f7f5 0%, #e2ece7 100%);
  z-index: 2;
  transition: opacity 0.3s var(--ease);
}

.case-video-card--dark .case-video-card__poster {
  background:
    radial-gradient(110% 90% at 80% 15%, rgba(52, 211, 153, 0.2) 0%, rgba(52, 211, 153, 0) 65%),
    linear-gradient(135deg, #021812 0%, #06382b 100%);
  color: var(--white);
}

.case-video-card__grid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.case-video-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-video-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  background: rgba(8, 144, 108, 0.1);
  border: 1px solid rgba(8, 144, 108, 0.25);
  color: var(--green-700);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.case-video-card--dark .case-video-card__badge {
  background: rgba(52, 211, 153, 0.16);
  border-color: rgba(52, 211, 153, 0.32);
  color: #34d399;
}

.case-video-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.case-video-card--dark .case-video-card__dot {
  box-shadow: 0 0 8px #34d399;
}

.case-video-card__duration {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-600);
}

.case-video-card--dark .case-video-card__duration {
  color: rgba(255, 255, 255, 0.6);
}

.case-video-card__center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-video-card__play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(6, 105, 79, 0.3);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.case-video-card__play-btn:hover {
  transform: scale(1.08);
  background: var(--green-600);
  box-shadow: 0 8px 24px rgba(6, 105, 79, 0.4);
}

.case-video-card--dark .case-video-card__play-btn {
  background: #10b981;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
}

.case-video-card--dark .case-video-card__play-btn:hover {
  background: #34d399;
  box-shadow: 0 8px 28px rgba(52, 211, 153, 0.5);
}

.case-video-card__play-btn svg {
  margin-left: 3px;
}

.case-video-card__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-video-card__caption-tag {
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.case-video-card--dark .case-video-card__caption-tag {
  color: #34d399;
}

.case-video-card__caption-text {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--gray-700);
  margin: 0;
}

.case-video-card--dark .case-video-card__caption-text {
  color: rgba(255, 255, 255, 0.85);
}

/* Case Body Column */
.app-case-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-case-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.app-case-title {
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.app-case-card--dark .app-case-title {
  color: var(--white);
}

/* Case Metric Callout for Case 02 */
.app-case-metric {
  padding: 20px 22px;
  background: rgba(4, 34, 26, 0.75);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-case-metric__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6ee7b7;
  text-transform: uppercase;
}

.app-case-metric__body {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.app-case-metric__num {
  font-family: var(--font-mono);
  font-size: clamp(2.25rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.app-case-metric__headline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.app-case-disclaimer {
  font-size: 0.78125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
}

/* Bottom CTA Band */
.app-cta-band {
  background: #0d1412;
  border: 1px solid rgba(8, 144, 108, 0.28);
  border-radius: 14px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  margin-top: 48px;
}

.app-cta-band__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.app-cta-band__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #34d399;
}

.app-cta-band__title {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.app-cta-band__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

.app-cta-band__action {
  flex-shrink: 0;
}

.app-cta-band__action .button--red {
  background-color: #dc3522;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(220, 53, 34, 0.35);
  transition: all 0.2s var(--ease);
}

.app-cta-band__action .button--red:hover {
  background-color: #c82312;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 34, 0.45);
}

/* ============================================================================
   CASE STUDY LIBRARY — Unified layout (6 cases, consistent grid)
   All cases: video left 47% / content right 53%
   Backgrounds: light / pale / dark / dark-close for visual rhythm
   ============================================================================ */

/* ── Library wrapper ──────────────────────────────────────────────────────── */
.cs-library {
  padding: 56px 0 80px;
}

/* ── Base case card ───────────────────────────────────────────────────────── */
.cs-case {
  position: relative;
  border-radius: var(--radius-card);
  margin-bottom: 32px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}

.cs-case:last-of-type {
  margin-bottom: 0;
}

/* Watermark case number */
.cs-case__num-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(21, 23, 26, 0.045);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.cs-case--dark  .cs-case__num-badge,
.cs-case--dark-close .cs-case__num-badge {
  color: rgba(255, 255, 255, 0.06);
}

/* ── Unified inner grid (video left / content right) ─────────────────────── */
.cs-case__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 47% 53%;
  gap: 44px;
  align-items: start;
  padding: 44px;
}

/* Media column (video) — sticky on desktop when content is long */
.cs-case__media {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .cs-case__media {
    position: sticky;
    top: calc(var(--header-h, 75px) + 24px);
  }
}

/* Content column */
.cs-case__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-case__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.cs-case__title {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

/* ── Background themes ────────────────────────────────────────────────────── */

/* White */
.cs-case--light {
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.08);
  box-shadow: 0 8px 28px rgba(21, 23, 26, 0.04);
}
.cs-case--light:hover {
  box-shadow: 0 12px 36px rgba(8, 144, 108, 0.07);
}

/* Pale green tint */
.cs-case--pale {
  background: #f5faf8;
  border: 1px solid rgba(8, 144, 108, 0.12);
  box-shadow: 0 4px 16px rgba(21, 23, 26, 0.03);
}
.cs-case--pale:hover {
  border-color: rgba(8, 144, 108, 0.22);
  box-shadow: 0 8px 24px rgba(8, 144, 108, 0.06);
}

/* Dark emerald (Case 02) */
.cs-case--dark {
  background: linear-gradient(150deg, #031e17 0%, #063428 55%, #021a14 100%);
  border: 1.5px solid rgba(8, 144, 108, 0.4);
  box-shadow: 0 20px 48px rgba(2, 30, 23, 0.32);
  color: var(--white);
}
.cs-case--dark:hover {
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 24px 56px rgba(2, 30, 23, 0.42);
}
.cs-case--dark .cs-case__title {
  color: var(--white);
}

/* Dark near-black (Case 06) */
.cs-case--dark-close {
  background: linear-gradient(150deg, #0d1412 0%, #111c19 60%, #0a1210 100%);
  border: 1px solid rgba(8, 144, 108, 0.25);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  color: var(--white);
}
.cs-case--dark-close:hover {
  border-color: rgba(52, 211, 153, 0.4);
}
.cs-case--dark-close .cs-case__title {
  color: var(--white);
}

/* ── Metric chips (Case 01) ──────────────────────────────────────────────── */
.cs-case__metric-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cs-metric-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  background: rgba(8, 144, 108, 0.05);
  border: 1px solid rgba(8, 144, 108, 0.18);
  border-radius: 10px;
  min-width: 110px;
}

.cs-metric-chip__num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}

.cs-metric-chip__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* ── Pipeline strip (Case 05) ───────────────────────────────────────────── */
.cs-pipeline-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: rgba(8, 144, 108, 0.04);
  border: 1px solid rgba(8, 144, 108, 0.14);
  border-radius: 10px;
}

.cs-pipeline__node {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

.cs-pipeline__node--accent {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.cs-pipeline__node--em {
  background: rgba(8, 144, 108, 0.08);
  border-color: rgba(8, 144, 108, 0.22);
  color: var(--green-800);
}

.cs-pipeline__arrow {
  color: var(--gray-400);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

/* ── Automation flow (Case 06) ──────────────────────────────────────────── */
.cs-auto-flow {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 10px;
  overflow-x: auto;
}

.cs-auto-flow__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.cs-auto-flow__node--ai {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.45);
  color: #34d399;
}

.cs-auto-flow__node--kpi {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.cs-auto-flow__icon {
  font-size: 1rem;
  opacity: 0.5;
}

.cs-auto-flow__node--ai .cs-auto-flow__icon {
  opacity: 1;
  color: #34d399;
}

.cs-auto-flow__connector {
  flex: 1;
  min-width: 20px;
  height: 1px;
  background: linear-gradient(to right, rgba(52, 211, 153, 0.3), rgba(52, 211, 153, 0.1));
  position: relative;
  flex-shrink: 0;
}

.cs-auto-flow__connector::after {
  content: '→';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(52, 211, 153, 0.5);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  /* Legacy compatibility */
  .app-case-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }

  /* Unified grid: 1 column, video top / content bottom */
  .cs-case__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }

  .app-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }

  .app-cta-band__action {
    width: 100%;
  }

  .app-cta-band__action .button {
    width: 100%;
    text-align: center;
  }

  .cs-auto-flow {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cs-auto-flow__connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .app-hero {
    padding: 36px 0 28px;
  }

  .cs-library {
    padding: 36px 0 56px;
  }

  .cs-case__grid {
    padding: 24px 18px;
    gap: 20px;
  }

  .app-flow-bar {
    border-radius: 12px;
    padding: 12px;
  }

  .cs-pipeline-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cs-case__metric-row {
    gap: 10px;
  }

  .cs-metric-chip {
    min-width: 90px;
    padding: 10px 14px;
  }
}

/* =========================================================
   GO4AI FOOTER — Dark Premium · 3 Columns · Scoped styles
   Class prefix: go4ai-footer-* to avoid collision with .site-footer
   ========================================================= */

.go4ai-footer {
  background-color: #0c1117;
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a2332;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
}

.go4ai-footer-container {
  position: relative;
  z-index: 10;
  max-width: var(--container, 85rem);
  margin: 0 auto;
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
}

/* Grid 3 cột: Cân đối trọng lượng thị giác giữa 3 cột */
.go4ai-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 3.4fr) 4.8fr 3.8fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1023px) {
  .go4ai-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .go4ai-footer-col--policy {
    grid-column: span 2;
  }
}

@media (max-width: 639px) {
  .go4ai-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .go4ai-footer-col--policy {
    grid-column: span 1;
  }
  .go4ai-footer-container {
    padding-top: 2.5rem;
  }
}

/* Cột 1 — Brand: Logo thu nhỏ (72–84px), Logo/Mô tả/Social căn cùng trục giữa */
.go4ai-footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}

.go4ai-footer-logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px; /* Spacing logo -> mô tả: 20-24px */
  text-decoration: none;
}

.go4ai-footer-logo-img {
  width: 78px; /* Thu nhỏ về kích thước cân đối: 72–84px, giữ đúng tỷ lệ */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.go4ai-footer-tagline {
  color: #aebbce;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 auto 30px; /* Spacing mô tả -> social: 28-32px */
  max-width: 300px; /* Giới hạn chiều rộng 280-320px để xuống dòng đẹp */
  text-align: center;
}

.go4ai-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.go4ai-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background-color: #242d38;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
  border: 1px solid #2e3a48;
}

.go4ai-social-btn:hover {
  background-color: #08906c;
  color: #ffffff;
  border-color: #08906c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 144, 108, 0.3);
}

.go4ai-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Cột 2 — Thông tin doanh nghiệp */
.go4ai-footer-col-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.625rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.go4ai-footer-company-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.875rem;
  line-height: 1.4;
}

.go4ai-footer-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.go4ai-footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.go4ai-footer-info-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #6b7d8f;
}

.go4ai-footer-info-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.go4ai-footer-info-list a:hover {
  color: #ffffff;
}

/* Cột 3 — Chính sách & Hỗ trợ */
.go4ai-policy-list {
  display: flex;
  flex-direction: column;
}

.go4ai-policy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8125rem 0;
  border-bottom: 1px solid #1d242e;
  font-size: 0.8125rem;
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s ease;
  gap: 0.75rem;
}

.go4ai-policy-link:first-child {
  border-top: 1px solid #1d242e;
}

.go4ai-policy-link:hover {
  color: #ffffff;
}

.go4ai-policy-link:hover .go4ai-policy-arrow {
  color: #08906c;
  transform: translateX(4px);
}

.go4ai-policy-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #6b7d8f;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Divider */
.go4ai-footer-divider {
  height: 1px;
  background: #1d242e;
  margin: 0 0 1.5rem;
}

/* Copyright bar */
.go4ai-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.go4ai-footer-copyright {
  font-size: 0.75rem;
  color: #6b7d8f;
  margin: 0;
}

/* Decorative wave — góc dưới phải */
.go4ai-footer-wave {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 560px;
  max-width: 55%;
  height: 240px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .go4ai-footer-wave {
    width: 300px;
    max-width: 75%;
    height: 140px;
    opacity: 0.35;
  }
}

/* Policy page — layout cho 3 trang chính sách */
.go4ai-policy-page .go4ai-policy-header {
  background: #0c1117;
  border-bottom: 1px solid #1a2332;
  padding: 1.125rem 0;
}

.go4ai-policy-header-inner {
  max-width: var(--container, 85rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.go4ai-policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #8e9bae;
  text-decoration: none;
  transition: color 0.2s ease;
}

.go4ai-policy-back:hover {
  color: #ffffff;
}

.go4ai-policy-back svg {
  width: 14px;
  height: 14px;
}

.go4ai-policy-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 5rem;
}

.go4ai-policy-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #15171a;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.go4ai-policy-date {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 2.5rem;
  display: block;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.go4ai-policy-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #15171a;
  margin: 2rem 0 0.625rem;
}

.go4ai-policy-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1rem;
}

.go4ai-policy-content ol,
.go4ai-policy-content ul {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.go4ai-policy-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0.375rem;
}

.go4ai-policy-content a {
  color: #08906c;
  text-decoration: underline;
  text-decoration-color: rgba(8, 144, 108, 0.4);
}

.go4ai-policy-content a:hover {
  text-decoration-color: #08906c;
}

.go4ai-policy-content strong {
  color: #15171a;
}
