/* =================================================================
   GVTO — Exhibition landing pages (shared component styles)
   File: css/exhibition-landing.css
   -----------------------------------------------------------------
   Used by: buildxpo-malaysia-2026.html, bct-expo-2026.html
   Loaded after css/style.css. Every rule is scoped to body.bx-page
   and uses the "bx-" prefix, so nothing here affects other pages.
   Uses the existing GVTO tokens from style.css:
     --navy #0b1a31  --navy-dark #0d2347  --navy-light #1e4a85
     --gold #2B7FD4  --gold-light #4D9FE8 --gold-dark #1a5fb0
     --font-heading Poppins / --font-body Inter / --font-display Manrope
   (css/exhibitions.css is intentionally NOT loaded on these pages:
    it redefines --gold/--navy to a gold palette.)
   ================================================================= */

.bx-page {
  --bx-line: #d9e5f2;
  --bx-line-strong: #b9cde4;
  --bx-tint: #e7f0fb;
  --bx-card-shadow: 0 1px 2px rgba(11, 26, 49, 0.05), 0 10px 28px rgba(11, 26, 49, 0.06);
  --bx-radius: 14px;
  --bx-nav-offset: 130px;
}

.bx-page main { display: block; }
.bx-page main p { margin: 0; }
.bx-page .bx-section,
.bx-page [id] { scroll-margin-top: var(--bx-nav-offset); }

.bx-page a:focus-visible,
.bx-page button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.bx-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* -----------------------------------------------------------------
   Buttons (page-scoped: the global .btn-gold / .btn-outline-white
   are redefined several times in style.css, so they are not reused)
   ----------------------------------------------------------------- */
.bx-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.bx-btns--center { justify-content: center; }

.bx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.bx-btn i { font-size: 0.8em; transition: transform 0.2s ease; }
.bx-btn:hover i { transform: translateX(3px); }

.bx-btn--primary { background: var(--gold); border-color: var(--gold); color: var(--white); }
.bx-btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.bx-btn--light { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.bx-btn--light:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); color: var(--white); }

.bx-btn--navy { background: var(--navy); border-color: var(--navy); color: var(--white); }
.bx-btn--navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); }

.bx-btn--ghost { background: transparent; border-color: var(--navy-light); color: var(--navy); }
.bx-btn--plain { text-transform: none; letter-spacing: 0.01em; }
.bx-btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* -----------------------------------------------------------------
   Section shell + headings
   ----------------------------------------------------------------- */
.bx-section { padding: 4.5rem 0; background: var(--white); }
.bx-section--tint { background: var(--off-white); }

.bx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 2rem;
}
.bx-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}
.bx-title--sm { font-size: clamp(1.2rem, 1.7vw, 1.4rem); }
.bx-head__note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.3rem;
}
.bx-intro {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: 0.5rem !important;
}
.bx-head > div { min-width: 0; }

/* Shared icon badge */
.bx-ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bx-tint);
  color: var(--gold);
  font-size: 1.15rem;
}
.bx-ico--sm { width: 40px; height: 40px; font-size: 1rem; }

/* =================================================================
   1. HERO
   ================================================================= */
.bx-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(118deg, var(--navy) 0%, var(--navy-dark) 55%, #133a6e 100%);
  padding: 196px 0 128px;
}
/* Blueprint grid — decorative only */
.bx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 159, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 159, 232, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, #000 45%, #000 100%);
  mask-image: linear-gradient(100deg, transparent 0%, #000 45%, #000 100%);
  pointer-events: none;
}
.bx-hero .container { position: relative; z-index: 1; }

.bx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.bx-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.bx-hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  flex: 0 0 auto;
}

.bx-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.3vw, 3.45rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.6rem;
}
.bx-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem !important;
}
.bx-hero__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
  margin-bottom: 1.6rem !important;
}

.bx-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
  margin-bottom: 1.5rem;
}
.bx-hero__meta li { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.bx-hero__meta .bx-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(77, 159, 232, 0.16);
  color: var(--gold-light);
  font-size: 1rem;
}
.bx-hero__meta div > strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.bx-hero__meta div > span { display: block; font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); line-height: 1.4; }

.bx-hero__pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  padding: 0.9rem 0;
  margin-bottom: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.bx-hero__pillars li { display: inline-flex; align-items: center; }
.bx-hero__pillars li + li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  margin: 0 0.7rem;
}

.bx-hero__coloc {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.75rem !important;
}
.bx-hero__coloc i { color: var(--gold-light); margin-top: 0.2rem; }

/* Official key visual — shown whole (object-fit: contain) */
.bx-hero__visual { position: relative; margin: 0; }
.bx-hero__frame {
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}
.bx-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1615 / 974;
  object-fit: contain;
  border-radius: 10px;
}
.bx-hero__badge {
  position: absolute;
  left: 24px;
  bottom: -22px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid rgba(77, 159, 232, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}
.bx-hero__badge i { color: var(--gold-light); font-size: 1rem; }
.bx-hero__badge strong { display: block; color: var(--white); font-family: var(--font-heading); font-size: 0.85rem; }

/* =================================================================
   2. KEY STATISTICS STRIP (overlaps hero)
   ================================================================= */
.bx-stats {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  background: linear-gradient(to bottom, transparent 0, transparent 64px, var(--off-white) 64px);
}
.bx-stats__card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(0, 1.2fr);
  gap: 1px;
  background: var(--bx-line);
  border: 1px solid var(--bx-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(11, 26, 49, 0.14);
}
.bx-stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 1.4rem 1.1rem;
  background: var(--white);
}
.bx-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
.bx-stat__num small { font-size: 0.62em; font-weight: 700; white-space: nowrap; }
.bx-stat__label { display: block; font-size: 0.82rem; color: var(--text-body); line-height: 1.35; margin-top: 0.2rem; }
.bx-stat__tag { display: block; font-size: 0.7rem; font-weight: 600; color: var(--gold-dark); margin-top: 0.15rem; }

.bx-stat--reported { background: #f5f9fe; align-items: flex-start; }
.bx-stat--reported .bx-ico { background: var(--navy); color: var(--white); }
.bx-stat__heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.bx-stat__heading small { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; color: var(--text-muted); }
.bx-stat--reported ul li { font-size: 0.78rem; line-height: 1.45; color: var(--text-body); }
.bx-stat--reported ul li + li { margin-top: 0.2rem; }
.bx-stat--reported strong { color: var(--navy); }

/* =================================================================
   3. ABOUT + KEY SECTORS
   ================================================================= */
.bx-about-section { padding-top: 3.5rem; }
.bx-about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 3.5rem;
  align-items: start;
}
.bx-about__text .bx-title { margin-bottom: 1rem; }
.bx-about__text p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem !important;
}
.bx-about__text .bx-btns { margin-top: 1.5rem; }

.bx-about__sectors .bx-head { margin-bottom: 1.1rem; }
.bx-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.bx-sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  min-height: 150px;
  padding: 1.35rem 0.9rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bx-sector:hover { border-color: var(--bx-line-strong); box-shadow: var(--bx-card-shadow); }
.bx-sector .bx-ico { width: 54px; height: 54px; font-size: 1.3rem; }
.bx-sector h3,
.bx-sector h4 {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0;
}

/* =================================================================
   4. CHOOSE YOUR PROGRAM
   ================================================================= */
.bx-programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.bx-program {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.75rem 1.6rem 1.6rem;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  box-shadow: 0 18px 40px rgba(11, 26, 49, 0.18);
  overflow: hidden;
}
.bx-program::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 159, 232, 0.22), transparent 70%);
  pointer-events: none;
}
.bx-program--featured { background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%); }
.bx-program--featured::after { background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%); }

.bx-program__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}
.bx-program__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.35rem;
}
.bx-program__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.2rem;
}
.bx-program__sub {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.bx-program__go {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 0.95rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.bx-program--featured .bx-program__go { color: var(--gold-dark); }
.bx-program__go:hover { transform: translateX(3px); background: var(--bx-tint); }

.bx-program__list {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  flex: 1 1 auto;
}
.bx-program__list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.6rem;
  padding: 0.36rem 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.bx-program__list i { color: var(--gold-light); font-size: 0.85rem; margin-top: 0.22rem; }
.bx-program--featured .bx-program__list i { color: var(--white); }
.bx-program__foot {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem !important;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
}

/* =================================================================
   5. BUSINESS MATCHING JOURNEY
   ================================================================= */
.bx-journey {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  padding: 1.35rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  counter-reset: none;
}
.bx-step {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 0.65rem;
  align-items: start;
  padding: 0 1rem 0 0.9rem;
  min-width: 0;
}
.bx-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
}
.bx-step__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0.45rem 0 0.3rem;
}
.bx-step p { font-size: 0.78rem; line-height: 1.45; color: var(--text-muted); }
/* chevron between steps (decorative) */
.bx-step:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -4px;
  top: 10px;
  font-size: 0.7rem;
  color: var(--bx-line-strong);
}

/* =================================================================
   6. HOW GVTO HELPS
   ================================================================= */
.bx-help {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  background: var(--bx-line);
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  overflow: hidden;
}
.bx-help li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.35rem 0.6rem;
  background: var(--white);
  text-align: center;
  min-width: 0;
}
.bx-help i { font-size: 1.55rem; color: var(--gold); height: 1.6rem; }
.bx-help span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

/* =================================================================
   7. WHY PARTICIPATE + 2025 RESULTS (dark band)
   ================================================================= */
.bx-results {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.bx-results::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77, 159, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 159, 232, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.bx-results .container { position: relative; z-index: 1; }
.bx-results .bx-title { color: var(--white); }
.bx-results .bx-intro { color: rgba(255, 255, 255, 0.7); }

.bx-results__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}
.bx-why {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.5rem;
  margin-top: 1.75rem;
}
.bx-why li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 0.85rem; align-items: start; }
.bx-why .bx-ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(77, 159, 232, 0.16); color: var(--gold-light); font-size: 1rem; }
.bx-why h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.bx-why p { font-size: 0.82rem; line-height: 1.55; color: rgba(255, 255, 255, 0.68); }

.bx-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.bx-figure {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  min-width: 0;
}
.bx-figure strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  white-space: nowrap;
}
.bx-figure span { display: block; margin-top: 0.3rem; font-size: 0.76rem; line-height: 1.35; color: rgba(255, 255, 255, 0.68); }

.bx-growth { margin-top: 1.75rem; }
.bx-growth h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--white);
  margin: 0 0 1rem;
}
.bx-growth__bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  height: 170px;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.bx-growth__bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  min-width: 0;
}
.bx-growth__val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.35rem;
}
.bx-growth__fill {
  height: var(--h);
  min-height: 8px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
}
.bx-growth__bar--target .bx-growth__fill {
  background: repeating-linear-gradient(135deg, rgba(77, 159, 232, 0.55) 0 6px, rgba(77, 159, 232, 0.25) 6px 12px);
  border: 1px dashed var(--gold-light);
  border-bottom: 0;
}
.bx-growth__years {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.bx-growth__note { margin-top: 0.75rem !important; font-size: 0.74rem; color: rgba(255, 255, 255, 0.55); }

/* =================================================================
   8. WHO SHOULD JOIN + WHO YOU'LL MEET
   ================================================================= */
.bx-join {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}
.bx-join li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-height: 108px;
  padding: 1.15rem 0.6rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: 12px;
  min-width: 0;
}
.bx-join i { font-size: 1.45rem; color: var(--gold); height: 1.5rem; }
.bx-join span { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; line-height: 1.35; color: var(--navy); }

.bx-meet-head { margin: 3rem 0 1.25rem; }
.bx-meet {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.bx-meet li {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: 12px;
  min-width: 0;
}
.bx-meet h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0 0 0.25rem;
}
.bx-meet p { font-size: 0.8rem; line-height: 1.5; color: var(--text-muted); }

/* =================================================================
   9. WHAT TO EXPECT + EVENT HIGHLIGHTS
   ================================================================= */
.bx-expect {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.75rem;
}
.bx-expect li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-height: 104px;
  padding: 1.15rem 0.5rem;
  text-align: center;
  border: 1px solid var(--bx-line);
  border-radius: 12px;
  background: var(--white);
  min-width: 0;
}
.bx-expect i { font-size: 1.45rem; color: var(--gold); height: 1.5rem; }
.bx-expect span { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; line-height: 1.35; color: var(--navy); }

.bx-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.bx-shot { margin: 0; min-width: 0; }
.bx-shot__img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bx-tint);
}
/* photos are 800x480 (5:3) — same ratio, so cover never crops */
.bx-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.bx-shot figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.7rem;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}
.bx-shot figcaption i { color: var(--gold); font-size: 0.85rem; }

/* =================================================================
   10. EXHIBITOR PROFILES / WHAT BUYERS CAN EXPLORE
   ================================================================= */
.bx-buyer-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.5rem;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
}
.bx-buyer-note i { color: var(--gold); margin-top: 0.2rem; }
.bx-buyer-note strong { color: var(--navy); }

.bx-profiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.bx-profile {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: var(--bx-radius);
  min-width: 0;
}
.bx-profile__head { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 0.9rem; align-items: center; }
.bx-profile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
}
.bx-profile h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0;
}
.bx-profile__count { display: block; margin-top: 0.15rem; font-size: 0.74rem; font-weight: 600; color: var(--gold-dark); }
.bx-profile ul {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--bx-line);
}
.bx-profile li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 0.6rem;
  padding: 0.3rem 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-body);
}
.bx-profile li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: 0.5em;
  border-radius: 1px;
  background: var(--gold);
}

/* =================================================================
   11. ENGAGEMENT ACTIVITIES
   ================================================================= */
.bx-engage {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 2.5rem;
  align-items: center;
}
.bx-engage .bx-shot figcaption { font-weight: 500; color: var(--text-muted); font-family: var(--font-body); font-size: 0.8rem; }
.bx-activities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.bx-activities li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 70px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bx-line);
  border-radius: 12px;
  background: var(--white);
  min-width: 0;
}
.bx-activities__label { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; line-height: 1.3; color: var(--navy); }

/* =================================================================
   12. PARTICIPATION FEES
   ================================================================= */
.bx-fees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.bx-fee {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: 16px;
  overflow: hidden;
  min-width: 0;
}
.bx-fee__top {
  padding: 1.5rem 1.6rem;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.bx-fee__row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.bx-fee__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--white);
  margin: 0;
}
.bx-fee__min {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(77, 159, 232, 0.18);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 600;
}
.bx-fee__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 0.9rem;
  margin-top: 1rem;
}
.bx-fee__price strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}
.bx-fee__price strong small { font-size: 0.5em; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.bx-fee__price span { font-size: 0.92rem; font-weight: 600; color: rgba(255, 255, 255, 0.82); }
.bx-fee__total { margin-top: 0.45rem !important; font-size: 0.8rem; color: rgba(255, 255, 255, 0.65); }

.bx-fee__body { padding: 1.5rem 1.6rem 1.6rem; flex: 1 1 auto; }
.bx-fee__body h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.bx-fee__body p { font-size: 0.9rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 0.75rem !important; }
.bx-fee__body p strong { color: var(--navy); }
.bx-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.2rem 1.25rem; }
.bx-checks--single { grid-template-columns: minmax(0, 1fr); }
.bx-checks li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.55rem;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-body);
}
.bx-checks i { color: var(--gold); font-size: 0.85rem; margin-top: 0.22rem; }
.bx-fee__body h4 + .bx-checks { margin-bottom: 0.25rem; }
.bx-fee__body .bx-checks + h4 { margin-top: 1rem; }

.bx-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.bx-contact {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-radius: 16px;
  min-width: 0;
}
.bx-contact .bx-ico { width: 52px; height: 52px; font-size: 1.2rem; }
.bx-contact__label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.3rem; }
.bx-contact h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; letter-spacing: 0; color: var(--navy); margin: 0; }
.bx-contact__role { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem !important; }
.bx-contact__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 0.85rem; }
.bx-contact__links a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 600; color: var(--gold-dark);
  word-break: break-word;
}
.bx-contact__links a:hover { color: var(--navy); }
.bx-contact__event { margin-top: 0.85rem !important; padding-top: 0.85rem; border-top: 1px solid var(--bx-line); font-size: 0.8rem; line-height: 1.6; color: var(--text-muted); }
.bx-contact p.bx-contact__text { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); margin-top: 0.35rem !important; }
.bx-contact .bx-btns { margin-top: 1rem; }

/* =================================================================
   13. FINAL CTA
   ================================================================= */
.bx-cta {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0;
  text-align: center;
  color: var(--white);
  background: var(--navy);
}
.bx-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bx-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11, 26, 49, 0.95) 0%, rgba(13, 35, 71, 0.88) 50%, rgba(11, 26, 49, 0.95) 100%);
}
.bx-cta .container { position: relative; z-index: 2; }
.bx-cta__kicker {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem !important;
}
.bx-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.9rem;
}
.bx-cta__text {
  max-width: 40rem;
  margin: 0 auto 1.9rem !important;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1200px) {
  .bx-help { grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .bx-help span { font-size: 0.74rem; }
  .bx-step { padding: 0 0.7rem 0 0.6rem; }
}

@media (max-width: 1100px) {
  .bx-stats__card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-stat--reported { grid-column: 1 / -1; }

  .bx-about { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }

  .bx-programs { grid-template-columns: minmax(0, 1fr); max-width: 720px; margin: 0 auto; }

  /* journey → vertical timeline */
  .bx-journey { grid-template-columns: minmax(0, 1fr); padding: 1.5rem 1.25rem; }
  .bx-step { padding: 0 0 1.35rem; }
  .bx-step:last-child { padding-bottom: 0; }
  .bx-step:not(:last-child)::after {
    content: '';
    font-family: inherit;
    right: auto;
    left: 17px;
    top: 40px;
    bottom: 4px;
    width: 2px;
    background: var(--bx-line);
  }
  .bx-step__title { margin-top: 0.5rem; }
  .bx-step p { font-size: 0.86rem; }

  .bx-help { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bx-help span { font-size: 0.82rem; }

  .bx-results__grid { grid-template-columns: minmax(0, 1fr); gap: 3rem; }

  .bx-meet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-profiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .bx-hero { padding-bottom: 120px; }
  .bx-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
  .bx-hero__visual { max-width: 720px; }
  .bx-join { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bx-expect { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .bx-engage { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
  .bx-engage .bx-shot { max-width: 640px; }
  .bx-fees,
  .bx-contacts { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
  .bx-page { --bx-nav-offset: 110px; }
  .bx-section,
  .bx-results { padding: 3.5rem 0; }
  .bx-about-section { padding-top: 3rem; }
  .bx-hero { padding: 170px 0 108px; }
  .bx-head { margin-bottom: 1.5rem; }
  .bx-gallery { gap: 1rem; }
  .bx-figures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .bx-hero__badge {
    position: static;
    margin-top: 0.9rem;
    width: 100%;
  }
  .bx-hero__eyebrow { font-size: 0.68rem; letter-spacing: 0.12em; }
  .bx-hero .bx-btns { flex-direction: column; }
  /* pillars become chips so a wrapped line never starts with a bullet */
  .bx-hero__pillars { gap: 0.5rem; border: 0; padding: 0; }
  .bx-hero__pillars li {
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
  }
  .bx-hero__pillars li + li::before { display: none; }

  .bx-program { padding: 1.4rem 1.2rem; }
  .bx-program__head { gap: 0.75rem; }
  .bx-program__icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 10px; }
  .bx-program__title { font-size: 0.98rem; }
  .bx-program__sub { font-size: 0.78rem; }
  .bx-program__go { width: 38px; height: 38px; }
  .bx-hero .bx-btn { width: 100%; }

  .bx-sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-why { grid-template-columns: minmax(0, 1fr); }
  .bx-join { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bx-meet { grid-template-columns: minmax(0, 1fr); }
  .bx-meet li { flex-direction: row; align-items: flex-start; }
  .bx-gallery { grid-template-columns: minmax(0, 1fr); }
  .bx-profiles { grid-template-columns: minmax(0, 1fr); }
  .bx-checks { grid-template-columns: minmax(0, 1fr); }
  .bx-cta .bx-btns { flex-direction: column; align-items: stretch; max-width: 360px; margin: 0 auto; }
}

@media (max-width: 520px) {
  .bx-stats__card { grid-template-columns: minmax(0, 1fr); }
  .bx-stat { padding: 1.1rem 1.1rem; }
  .bx-expect { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-activities { grid-template-columns: minmax(0, 1fr); }
  .bx-fee__top,
  .bx-fee__body,
  .bx-contact { padding-left: 1.2rem; padding-right: 1.2rem; }
  .bx-contact { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 400px) {
  .bx-join { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-help { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-help li:last-child { grid-column: 1 / -1; }
  .bx-figures { grid-template-columns: minmax(0, 1fr); }
  .bx-growth__bars,
  .bx-growth__years { gap: 0.6rem; }
  .bx-sector { min-height: 140px; padding: 1.1rem 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bx-page .bx-btn,
  .bx-page .bx-btn i,
  .bx-page .bx-program__go,
  .bx-page .bx-sector { transition: none; }
}

/* =================================================================
   VARIANTS + COMPONENTS ADDED FOR BCT EXPO 2026
   (placed last; width-bounded media queries keep them from
    overriding the responsive rules above)
   ================================================================= */

/* Stats strip — four equal statistics, no "reported" cell */
.bx-stat__sub { display: block; font-size: 0.72rem; line-height: 1.35; color: var(--text-muted); margin-top: 0.15rem; }
@media (min-width: 1101px) {
  .bx-stats__card--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Hero subtitle line (below the tagline) */
.bx-hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin: -0.4rem 0 1.5rem !important;
}

/* About — secondary subtitle + text link */
.bx-about__sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy-light);
  margin: -0.4rem 0 1rem !important;
}
.bx-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.bx-textlink:hover { color: var(--navy); }

/* Twelve sector cards */
.bx-sector-grid--12 .bx-sector { min-height: 124px; padding: 1rem 0.6rem; gap: 0.65rem; }
.bx-sector-grid--12 .bx-sector .bx-ico { width: 46px; height: 46px; font-size: 1.1rem; }
.bx-sector-grid--12 .bx-sector h4 { font-size: 0.8rem; }
@media (min-width: 1101px) { .bx-sector-grid.bx-sector-grid--12 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 769px) and (max-width: 1100px) { .bx-sector-grid.bx-sector-grid--12 { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (min-width: 641px) and (max-width: 768px) { .bx-sector-grid.bx-sector-grid--12 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 401px) and (max-width: 640px) { .bx-sector-grid.bx-sector-grid--12 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Six-step journey (desktop row) */
@media (min-width: 1101px) {
  .bx-journey--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); padding-left: 0.75rem; padding-right: 0.75rem; }
  .bx-journey--6 .bx-step { padding-right: 1.4rem; }
}

/* Eight-item GVTO strip */
@media (min-width: 1101px) { .bx-help.bx-help--8 { grid-template-columns: repeat(8, minmax(0, 1fr)); } }
@media (min-width: 641px) and (max-width: 1100px) { .bx-help.bx-help--8 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 640px) { .bx-help.bx-help--8 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.bx-help.bx-help--8 li:last-child { grid-column: auto; }

/* ---------- Event photo gallery ----------
   Photos are 3:4 portrait or 4:3 landscape. Portrait tiles use their
   native 3:4 ratio (no crop); landscape tiles span two columns and
   take the row height, a mild ~11% trim of sky/floor only. */
.bx-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row dense;
  gap: 1rem;
}
.bx-photo { position: relative; min-width: 0; aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; background: var(--bx-tint); }
.bx-photo--wide { grid-column: span 2; aspect-ratio: auto; }
.bx-photo .bct-card { margin: 0; height: 100%; }
.bx-photo .bct-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.bx-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transition: transform 0.45s ease;
}
.bx-photo .bct-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 49, 0.55) 0%, rgba(11, 26, 49, 0) 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bx-photo__view {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bx-photo__view i { color: var(--gold); }
.bx-photo .bct-card__media:hover img,
.bx-photo .bct-card__media:focus-visible img { transform: scale(1.03); }
.bx-photo .bct-card__media:hover::after,
.bx-photo .bct-card__media:focus-visible::after { opacity: 1; }
.bx-photo .bct-card__media:hover .bx-photo__view,
.bx-photo .bct-card__media:focus-visible .bx-photo__view { opacity: 1; transform: none; }
.bx-photo .bct-card__media:focus-visible { outline: 3px solid var(--gold-light); outline-offset: -3px; }

/* Info tile that completes the last row */
.bx-photo--info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 1.4rem;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.bx-photo--info .bx-ico { background: rgba(77, 159, 232, 0.18); color: var(--gold-light); }
.bx-photo--info strong { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.3; color: var(--white); }
.bx-photo--info p { font-size: 0.82rem; line-height: 1.55; color: rgba(255, 255, 255, 0.75); }

.bx-stand-head { margin: 2.5rem 0 1rem; }
.bx-photos--stand { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.75rem; }

@media (max-width: 1024px) {
  .bx-photos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bx-photos--stand { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .bx-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .bx-photo--wide { aspect-ratio: 4 / 3; }
  .bx-photos--stand { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx-photo--info { padding: 1rem; }
  .bx-photo--info strong { font-size: 0.92rem; }
  .bx-photo--info p { font-size: 0.74rem; }
  /* touch screens have no hover: keep the zoom hint visible */
  .bx-photo__view { opacity: 1; transform: none; left: 0.5rem; bottom: 0.5rem; padding: 0.3rem 0.55rem; font-size: 0.68rem; }
}

/* ---------- Media coverage cards ---------- */
.bx-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.bx-media__card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--bx-line);
  border-top: 3px solid var(--gold);
  border-radius: var(--bx-radius);
  min-width: 0;
}
.bx-media__outlet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.bx-media__outlet i { color: var(--gold); }
.bx-media__card blockquote { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text-body); flex: 1 1 auto; }
.bx-media__link { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 700; color: var(--gold-dark); }
.bx-media__link:hover { color: var(--navy); }
@media (max-width: 900px) { .bx-media { grid-template-columns: minmax(0, 1fr); } }

@media (prefers-reduced-motion: reduce) {
  .bx-photo img, .bx-photo__view, .bx-photo .bct-card__media::after { transition: none; }
}

/* Hero badge placed under the frame (for key visuals whose edges carry logos) */
.bx-hero__badge.bx-hero__badge--below { position: static; margin-top: 0.9rem; }

/* Equal-height sector cards across every row */
.bx-sector-grid.bx-sector-grid--12 { grid-auto-rows: 1fr; }

/* Final CTA with a long heading: sentence case, calmer size */
.bx-cta.bx-cta--long h2 { text-transform: none; letter-spacing: -0.01em; font-size: clamp(1.6rem, 3vw, 2.35rem); max-width: 34ch; margin-left: auto; margin-right: auto; }

/* ---------- Gallery captions (tag + title + one-line description) ----------
   Always visible, on a navy gradient so text stays readable over any photo.
   Clicks pass through to the photo button (pointer-events: none). */
.bx-photo__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding: 3.25rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(11, 26, 49, 0.92) 0%, rgba(11, 26, 49, 0.62) 50%, rgba(11, 26, 49, 0) 100%);
  pointer-events: none;
}
.bx-photo__tag {
  align-self: flex-start;
  margin-bottom: 0.3rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(77, 159, 232, 0.24);
  border: 1px solid rgba(77, 159, 232, 0.45);
  color: #cfe4fa;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.bx-photo__title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}
.bx-photo__desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}
.bx-photo--wide .bx-photo__cap { padding: 4rem 1.4rem 1.25rem; }
.bx-photo--wide .bx-photo__title { font-size: 1.15rem; }
.bx-photo--wide .bx-photo__desc { font-size: 0.86rem; }

/* Hover: a gentle lift of the caption instead of a second gradient */
.bx-photo .bct-card__media::after { display: none; }
.bx-photo__cap { transition: padding-bottom 0.3s ease; }
.bx-photo:hover .bx-photo__cap,
.bx-photo:focus-within .bx-photo__cap { padding-bottom: 1.2rem; }

/* "View photo" hint: top-right, icon + label on hover */
.bx-photo__view {
  left: auto;
  right: 0.8rem;
  top: 0.8rem;
  bottom: auto;
  z-index: 3;
  transform: translateY(-4px);
}
.bx-photo .bct-card__media:hover .bx-photo__view,
.bx-photo .bct-card__media:focus-visible .bx-photo__view { transform: none; }

/* GVTO stand strip: smaller tiles, tighter caption */
.bx-photos--stand .bx-photo__cap { padding: 2.5rem 0.8rem 0.8rem; }
.bx-photos--stand .bx-photo__title { font-size: 0.84rem; }
.bx-photos--stand .bx-photo__desc { font-size: 0.72rem; }
.bx-photos--stand .bx-photo__tag { display: none; }

@media (max-width: 640px) {
  .bx-photo__cap,
  .bx-photo--wide .bx-photo__cap,
  .bx-photos--stand .bx-photo__cap { padding: 2.25rem 0.65rem 0.65rem; gap: 0.1rem; }
  .bx-photo__tag { display: none; }
  .bx-photo__title,
  .bx-photos--stand .bx-photo__title { font-size: 0.8rem; }
  .bx-photo--wide .bx-photo__title { font-size: 0.95rem; }
  .bx-photo__desc,
  .bx-photos--stand .bx-photo__desc { font-size: 0.7rem; line-height: 1.35; }
  .bx-photo--wide .bx-photo__desc { font-size: 0.78rem; }
  /* icon-only zoom hint on phones */
  .bx-photo__view { right: 0.45rem; top: 0.45rem; left: auto; bottom: auto; padding: 0.35rem; border-radius: 50%; }
  .bx-photo__view span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bx-photo__cap { transition: none; }
}
