/* =========================================================
   ELASIA Expo v2 — single stylesheet for homepage + inner pages
   (TEPL / ELCA / COSMA and future pages). Do not add per-page CSS files.
   ========================================================= */

/* ---------- Layout: fluid container ---------- */
.page-v2 {
  --container: 100%;
  --page-gutter: clamp(16px, 3.2vw, 72px);
}

.page-v2 .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

/* Keep readable measure on very wide copy blocks */
.page-v2 .section-head,
.page-v2 .about-copy,
.page-v2 .cta-inner,
.page-v2 .hero-inner {
  max-width: none;
}

/* Section white space — quarter of base style.css values */
.page-v2 .section {
  padding: 22px 0;
}

.page-v2 .section-head {
  margin: 0 auto 10px;
}

.page-v2 .section-partners {
  padding: 0 0 5px;
}
/* =========================================================
   Homepage — Key Highlights (stats) icons
   ========================================================= */

.page-v2 .stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 20px 16px 20px 14px;
  position: relative;
  overflow: hidden;
}

.page-v2 .stat-card__body {
  min-width: 0;
  flex: 1;
}

.page-v2 .stat-card__body h2 {
  margin: 0 0 4px;
}

.page-v2 .stat-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-v2 .stat-card__icon i {
  display: block;
}

.page-v2 .stat-card:hover .stat-card__icon {
  background: #fff;
  border-color: #fff;
  transform: scale(1.06);
}

.page-v2 .stat-card.stat-red:hover .stat-card__icon,
.page-v2 .stat-card.stat-red-soft:hover .stat-card__icon {
  color: #ed3237;
}

.page-v2 .stat-card.stat-blue:hover .stat-card__icon,
.page-v2 .stat-card.stat-blue-soft:hover .stat-card__icon {
  color: #2a5fb0;
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .stat-card:hover .stat-card__icon {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-v2 .stat-card {
    gap: 12px;
    padding: 16px 12px;
  }

  .page-v2 .stat-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
}

/* Partners — single blue → red band */
.page-v2 .section-partners {
  padding: 0 0 5px;
  background: linear-gradient(
    180deg,
    #1e4687 0%,
    #2a5fb0 42%,
    #ed3237 100%
  );
  color: #fff;
}

.page-v2 .section-partners .section-label {
  color: #fff8e0;
}

.page-v2 .section-partners .section-head h2,
.page-v2 .section-partners .tier-head h3 {
  color: #fff;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.25);
}

.page-v2 .section-partners .section-head p:not(.section-label) {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

.page-v2 .partner-tier--platinum,
.page-v2 .partner-tier--gold,
.page-v2 .partner-tier--silver {
  background: transparent;
  border: none;
  color: #fff;
}

.page-v2 .partner-tier--platinum .logo-pill,
.page-v2 .partner-tier--gold .logo-pill,
.page-v2 .partner-tier--silver .logo-pill {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
}

/* Glimpses — brand blue, red & yellow gradient */
.page-v2 .section-glimpses {
  background: linear-gradient(180deg, #1e4687 0%, #2a5fb0 10%, #ed3237 42%, #f6ca43 100%);
  color: #fff;
}

.page-v2 .section-glimpses .section-head h2,
.page-v2 .section-glimpses .section-head p {
  color: #fff;
}

.page-v2 .section-glimpses .section-head p:not(.section-label) {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

.page-v2 .section-glimpses .section-label,
.page-v2 .section-glimpses .label-blue {
  color: #fff8e0;
}

.page-v2 .section-glimpses .glimpse-item {
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
  box-sizing: border-box;
}

.page-v2 .partners-intro {
  padding: 18px 0 7px;
}

.page-v2 .partner-tier {
  padding: 7px 0;
}

.page-v2 .tier-head {
  margin-bottom: 5px;
}

.page-v2 .cta-band {
  padding: 18px 0;
}

.page-v2 .section-testimonials {
  padding-top: clamp(12px, 1.5vw, 20px);
  padding-bottom: clamp(14px, 1.75vw, 24px);
}

.page-v2 .fly-testimonials {
  margin-top: 7px;
}

.page-v2 .footer-grid {
  padding: 14px 0 9px;
}

@media (max-width: 700px) {
  .page-v2 .section {
    padding: 16px 0;
  }

  .page-v2 .section-purpose {
    padding: 64px 0;
  }
}

/* Vision & Mission — restore original section height */
.page-v2 .section-purpose {
  padding: 88px 0;
}

.page-v2 .section-purpose .section-head {
  margin: 0 auto 40px;
}

.page-v2 .hero-copy {
  max-width: min(56ch, 100%);
}

@media (min-width: 1600px) {
  .page-v2 {
    --page-gutter: clamp(40px, 4vw, 96px);
  }
}

@media (max-width: 700px) {
  .page-v2 {
    --page-gutter: 16px;
  }
}

/* Fixed top: utility + brand + menu */
.page-v2 .site-top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 24, 38, 0.12);
}

.page-v2 {
  --site-top-h: 220px;
  padding-top: var(--site-top-h);
}

/* Top contact strip */
.page-v2 .utility-strip {
  background: #f6ca43;
  color: #121826;
  font-size: 0.82rem;
  padding-right: 28px;
}

.page-v2 .utility-strip__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 34px;
  padding: 6px 12px 6px 0;
}

.page-v2 .utility-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #121826;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.page-v2 .utility-strip a i {
  color: #1e4687;
  font-size: 0.78rem;
}

.page-v2 .utility-strip a:hover {
  color: #c41e24;
}

.page-v2 .utility-strip a:hover i {
  color: #c41e24;
}

.page-v2 .site-header--v2 {
  position: relative;
  inset: auto;
  z-index: 1000;
  padding: 0;
  background: #fff;
  box-shadow: none;
}

.page-v2 .top-brand {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border-bottom: 1px solid rgba(42, 95, 176, 0.1);
}

.page-v2 .top-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/img/header-poles-current.gif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  opacity: 0.55;
}

.page-v2 .top-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 42%,
    rgba(255, 255, 255, 0.72) 72%,
    rgba(255, 255, 255, 0.92) 100%
  );
}

.page-v2 .top-brand__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding: 8px 0;
  min-height: 0;
}

.page-v2 .brand--lg {
  flex-shrink: 0;
  line-height: 0;
  margin-left: 20px;
}

.page-v2 .brand--lg img {
  display: block;
  height: 118px;
  width: auto;
  max-width: min(320px, 34vw);
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.page-v2 .top-brand__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
  margin-right: 28px;
}

.page-v2 .top-brand__facts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-v2 .event-dates {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.page-v2 .event-dates__days {
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-v2 .event-dates__days span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 40px;
  padding: 0 8px;
  border-radius: 7px;
  background: #ed3237;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 0 rgba(196, 30, 36, 0.35);
}

.page-v2 .event-dates__month {
  color: #1e4687;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.page-v2 .event-venue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.page-v2 .biec-mark {
  display: block;
  height: 44px;
  width: auto;
  margin: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.page-v2 .event-venue__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.page-v2 .event-venue__copy strong {
  color: #1e4687;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.page-v2 .event-venue__copy span {
  color: var(--el-ink-soft, #3d4554);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: none;
}

.page-v2 .top-brand__organised {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.page-v2 .organised-banner {
  display: block;
  height: 115px;
  width: auto;
  object-fit: contain;
}

/* Menu bar under brand header */
.page-v2 .menu-bar {
  position: relative;
  top: auto;
  z-index: 1100;
  background: linear-gradient(90deg, #1e4687 0%, #2a5fb0 42%, #c41e24 100%);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.page-v2 .menu-bar.is-stuck {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.page-v2 .menu-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
}

.page-v2 .site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  margin: 0;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.page-v2 .nav-link {
  color: #fff;
  border-radius: 0;
  padding: 14px 11px;
  font-size: 0.88rem;
}

.page-v2 .nav-link:hover,
.page-v2 .nav-item:hover > .nav-link,
.page-v2 .nav-item.is-open > .nav-link {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

/* =========================================================
   Submenu — running-light border (current moving around edge)
   ========================================================= */
.page-v2 .nav-dropdown {
  border: none;
  background: #fff;
  overflow: visible;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.page-v2 .nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    #1e4687 0deg,
    #7dd3fc 60deg,
    #ffffff 110deg,
    #f6ca43 170deg,
    #ed3237 230deg,
    #7dd3fc 300deg,
    #1e4687 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.35);
}

.page-v2 .nav-item:hover > .nav-dropdown::before,
.page-v2 .nav-item:focus-within > .nav-dropdown::before,
.page-v2 .nav-item.is-open > .nav-dropdown::before {
  opacity: 1;
  animation: navSubmenuRunningLight 1.2s linear infinite;
}

.page-v2 .nav-dropdown > * {
  position: relative;
  z-index: 1;
}

@keyframes navSubmenuRunningLight {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .nav-item:hover > .nav-dropdown::before,
  .page-v2 .nav-item:focus-within > .nav-dropdown::before,
  .page-v2 .nav-item.is-open > .nav-dropdown::before {
    animation: none;
    opacity: 1;
    background: linear-gradient(90deg, #2a5fb0, #f6ca43, #ed3237);
  }
}

.page-v2 .menu-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.page-v2 .btn-flashy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  animation: flashy-pulse 1.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-v2 .btn-flashy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: flashy-shine 2.4s linear infinite;
  z-index: -1;
}

.page-v2 .btn-flashy--blue {
  background: linear-gradient(135deg, #3b73c8, #1e4687 55%, #163968);
  box-shadow: 0 0 0 0 rgba(42, 95, 176, 0.55), 0 8px 20px rgba(0, 0, 0, 0.22);
}

.page-v2 .btn-flashy--red {
  background: linear-gradient(135deg, #ff5a5f, #ed3237 50%, #c41e24);
  box-shadow: 0 0 0 0 rgba(237, 50, 55, 0.55), 0 8px 20px rgba(0, 0, 0, 0.22);
  animation-delay: 0.35s;
}

.page-v2 .btn-flashy--red::before {
  animation-delay: 0.6s;
}

.page-v2 .btn-flashy:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

@keyframes flashy-shine {
  0% { transform: translateX(-130%); }
  40%, 100% { transform: translateX(130%); }
}

@keyframes flashy-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0), 0 10px 24px rgba(0, 0, 0, 0.28);
  }
}

.page-v2 .nav-toggle {
  display: none;
  background: rgba(42, 95, 176, 0.1);
}

.page-v2 .nav-toggle span {
  background: var(--el-blue);
}

/* Compact hero video */
.page-v2 .hero--compact {
  min-height: 0;
  height: clamp(460px, 46vh, 460px);
  align-items: center;
}

.page-v2 .hero-media--youtube {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.page-v2 .hero-media--youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78%;
  transform: translate(-50%, -50%);
  border: 0;
}

.page-v2 .hero--compact .hero-inner {
  padding-bottom: 28px;
  padding-top: 28px;
}

.page-v2 .hero--compact h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  max-width: 16ch;
}

.page-v2 .hero--compact .hero-copy {
  max-width: 48ch;
  font-size: 0.98rem;
}

.page-v2 .hero--compact .hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 18, 36, 0.78) 0%, rgba(10, 18, 36, 0.42) 55%, rgba(10, 18, 36, 0.25) 100%),
    linear-gradient(180deg, rgba(10, 18, 36, 0.2), rgba(10, 18, 36, 0.55));
}

/* Floating social rail — flush to right / scrollbar edge */
.page-v2 .social-float {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1300;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: -4px 8px 24px rgba(15, 23, 42, 0.22);
}

.page-v2 .social-float a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-v2 .social-float a:nth-child(1) { background: #1877f2; }
.page-v2 .social-float a:nth-child(2) {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.page-v2 .social-float a:nth-child(3) { background: #0a66c2; }
.page-v2 .social-float a:nth-child(4) { background: #ff0000; }

.page-v2 .social-float a:hover {
  filter: brightness(1.08);
  transform: translateX(-3px);
}

/* Floating WhatsApp (right) + Phone (left) — bottom corners */
.page-v2 .contact-float {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 22px;
  z-index: 1400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.page-v2 .contact-float__btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  overflow: hidden;
  line-height: 0;
  pointer-events: auto;
}

.page-v2 .contact-float__btn i {
  font-size: 1.55rem;
  line-height: 1;
  color: #fff;
}

.page-v2 .contact-float__btn--wa {
  background: #25d366;
  order: 2;
}

.page-v2 .contact-float__btn--phone {
  background: #2a5fb0;
  color: #fff !important;
  order: 1;
}

.page-v2 .contact-float__btn--phone i {
  color: #fff;
}

.page-v2 .contact-float__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.34);
  filter: brightness(1.06);
  color: #fff !important;
}

@media (max-width: 640px) {
  .page-v2 .contact-float {
    left: 12px;
    right: 12px;
    bottom: 16px;
  }

  .page-v2 .contact-float__btn {
    width: 50px;
    height: 50px;
  }

  .page-v2 .contact-float__btn i {
    font-size: 1.35rem;
  }
}

@media (max-width: 1100px) {
  /* Row 1: ELASIA left + Organised by right | Row 2: dates */
  .page-v2 .top-brand__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px 16px;
    min-height: 0;
    padding: 12px 0;
  }

  .page-v2 .brand--lg {
    grid-column: 1;
    grid-row: 1;
    margin-left: 12px;
  }

  .page-v2 .top-brand__right {
    display: contents;
  }

  .page-v2 .top-brand__organised {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 16px;
  }

  .page-v2 .top-brand__facts {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .page-v2 .brand--lg img {
    height: 84px;
    max-width: min(280px, 46vw);
  }

  .page-v2 .organised-banner {
    height: 76px;
    max-width: min(220px, 42vw);
  }

  .page-v2 .menu-bar__inner {
    position: relative;
    justify-content: flex-end;
    flex-wrap: wrap;
    min-height: 48px;
    gap: 8px;
  }

  .page-v2 .nav-toggle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    order: 2;
  }

  .page-v2 .nav-toggle span {
    background: #fff;
  }

  .page-v2 .menu-cta {
    order: 1;
    margin-right: auto;
  }

  .page-v2 .btn-flashy {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .page-v2 .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(42, 95, 176, 0.14);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    margin: 0;
    width: auto;
    order: 3;
  }

  .page-v2 .site-nav.is-open {
    display: flex;
  }

  .page-v2 .nav-link {
    color: var(--el-ink);
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .page-v2 .nav-link:hover,
  .page-v2 .nav-item:hover > .nav-link,
  .page-v2 .nav-item.is-open > .nav-link {
    background: rgba(237, 50, 55, 0.1);
    color: var(--el-red);
  }

  .page-v2 .hero--compact {
    height: clamp(280px, 48vh, 400px);
  }

  .page-v2 .social-float a {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .page-v2 .utility-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.78rem;
  }

  .page-v2 .top-brand__inner {
    gap: 10px 12px;
  }

  .page-v2 .brand--lg {
    margin-left: 8px;
  }

  .page-v2 .top-brand__organised {
    margin-right: 8px;
  }

  .page-v2 .top-brand__facts {
    align-items: center;
    text-align: center;
  }

  .page-v2 .event-dates {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-v2 .event-dates__days span {
    min-width: 36px;
    height: 34px;
    font-size: 1.05rem;
  }

  .page-v2 .event-dates__month {
    font-size: 1.35rem;
  }

  .page-v2 .event-venue__copy strong {
    font-size: 1rem;
  }

  .page-v2 .organised-banner {
    height: 56px;
    max-width: min(160px, 40vw);
  }

  .page-v2 .brand--lg img {
    height: 56px;
    max-width: min(160px, 44vw);
  }

  .page-v2 .hero--compact h1 {
    max-width: none;
  }
}

/* Footer feeds — match elasiaexpo.com */
.page-v2 .site-footer .container {
  padding-inline: calc(var(--page-gutter) + 24px);
}

.page-v2 .footer-grid--feeds {
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.page-v2 .footer-about p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
}

.page-v2 .footer-logo {
  display: block;
  height: 88px;
  width: auto;
  max-width: min(260px, 70vw);
  object-fit: contain;
  margin-bottom: 14px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #fff;
}

.page-v2 .footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.page-v2 .footer-contact-line i {
  margin-top: 3px;
  color: #8eb6f5;
}

.page-v2 .footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.page-v2 .footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-v2 .footer-social a:hover {
  background: #2a5fb0;
  color: #fff;
  transform: translateY(-2px);
}

.page-v2 .footer-feed h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-v2 .footer-feed__frame {
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 420px;
  width: 100%;
}

.page-v2 .footer-feed__frame iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-width: 100%;
  height: 420px;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
}

.page-v2 .footer-feed--facebook .footer-feed__frame {
  display: flex;
  justify-content: stretch;
}

@media (max-width: 980px) {
  .page-v2 .footer-grid--feeds {
    grid-template-columns: 1fr;
  }
}

.page-v2 .footer-bottom {
  background: #ed3237;
  border-top: none;
  color: #fff;
}

.page-v2 .footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.page-v2 .footer-bottom p {
  color: #fff;
}

.page-v2 .footer-credit {
  margin: 0;
  text-align: right;
}

.page-v2 .footer-credit a {
  color: #faea0c;
  text-decoration: none;
  font-weight: 700;
}

.page-v2 .footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .page-v2 .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-v2 .footer-credit {
    text-align: left;
  }
}

/* About ELASIA image slider — rotating transitions */
.page-v2 .about-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.page-v2 .about-slider__viewport {
  position: relative;
  width: 100%;
  height: 364px;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 0;
  background: #0f1a2e;
}

.page-v2 #about {
  padding-top: 16px;
  padding-bottom: 16px;
}

.page-v2 #about .about-grid {
  gap: 24px;
}

.page-v2 #about .about-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.page-v2 #about .about-copy p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.page-v2 #about .about-media img,
.page-v2 #about .about-slide img {
  aspect-ratio: auto;
}

.page-v2 .about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  pointer-events: none;
}

.page-v2 .about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-v2 .about-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

/* Fade */
.page-v2 .about-slide[data-transition="fade"].is-active {
  animation: aboutFadeIn 0.5s ease both;
}
.page-v2 .about-slide[data-transition="fade"].is-leave {
  animation: aboutFadeOut 0.5s ease both;
  visibility: visible;
  z-index: 3;
}

/* Right to left (enter from right) */
.page-v2 .about-slide[data-transition="slide-left"].is-active {
  animation: aboutSlideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-v2 .about-slide[data-transition="slide-left"].is-leave {
  animation: aboutSlideOutLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 3;
}

/* Left to right (enter from left) */
.page-v2 .about-slide[data-transition="slide-right"].is-active {
  animation: aboutSlideInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-v2 .about-slide[data-transition="slide-right"].is-leave {
  animation: aboutSlideOutRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 3;
}

/* Zoom */
.page-v2 .about-slide[data-transition="zoom"].is-active {
  animation: aboutZoomIn 0.95s ease both;
}
.page-v2 .about-slide[data-transition="zoom"].is-leave {
  animation: aboutZoomOut 0.95s ease both;
  visibility: visible;
  z-index: 3;
}

/* Blocks overlay */
.page-v2 .about-blocks {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  pointer-events: none;
  background: #0f172a;
}

.page-v2 .about-blocks__cell {
  background-repeat: no-repeat;
  background-color: #1e293b;
  transform: scale(0.2);
  opacity: 0;
  animation: aboutBlockIn 0.36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes aboutBlockIn {
  from {
    opacity: 0;
    transform: scale(0.15);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide up */
.page-v2 .about-slide[data-transition="slide-up"].is-active {
  animation: aboutSlideInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-v2 .about-slide[data-transition="slide-up"].is-leave {
  animation: aboutSlideOutUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 3;
}

/* Flip */
.page-v2 .about-slide[data-transition="flip"].is-active {
  animation: aboutFlipIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: center center;
  backface-visibility: hidden;
}
.page-v2 .about-slide[data-transition="flip"].is-leave {
  animation: aboutFlipOut 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 3;
  transform-origin: center center;
  backface-visibility: hidden;
}

/* Wipe */
.page-v2 .about-slide[data-transition="wipe"].is-active {
  animation: aboutWipeIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-v2 .about-slide[data-transition="wipe"].is-leave {
  animation: aboutWipeOut 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 3;
}

@keyframes aboutFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes aboutFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes aboutSlideInLeft {
  from { opacity: 0; transform: translateX(14%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes aboutSlideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-14%); }
}
@keyframes aboutSlideInRight {
  from { opacity: 0; transform: translateX(-14%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes aboutSlideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(14%); }
}
@keyframes aboutZoomIn {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes aboutZoomOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.92); }
}
@keyframes aboutSlideInUp {
  from { opacity: 0; transform: translateY(14%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutSlideOutUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10%); }
}
@keyframes aboutFlipIn {
  from { opacity: 0; transform: rotateY(-72deg) scale(0.94); }
  to { opacity: 1; transform: rotateY(0) scale(1); }
}
@keyframes aboutFlipOut {
  from { opacity: 1; transform: rotateY(0) scale(1); }
  to { opacity: 0; transform: rotateY(55deg) scale(0.96); }
}
@keyframes aboutWipeIn {
  from { opacity: 0.35; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes aboutWipeOut {
  from { opacity: 1; clip-path: inset(0 0 0 0); }
  to { opacity: 0; clip-path: inset(0 0 0 100%); }
}

.page-v2 .about-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 14px 18px 34px;
  border-radius: 0;
  background: rgba(10, 18, 36, 0.48);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

.page-v2 .about-caption__tag {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6ca43;
}

.page-v2 .about-caption__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.page-v2 .about-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
}

.page-v2 .about-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-v2 .about-slider__dots button.is-active {
  background: #f6ca43;
  transform: scale(1.25);
}

/* Countdown band above footer */
.page-v2 .countdown-band {
  background: linear-gradient(90deg, #ffe27a 0%, #f6ca43 45%, #e8b82e 100%);
  color: #1e4687;
  padding: 28px 0;
}

.page-v2 .countdown-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.page-v2 .countdown-band__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1e4687;
}

.page-v2 .countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-v2 .countdown__unit {
  min-width: 92px;
  padding: 14px 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(30, 70, 135, 0.14);
  box-shadow: 0 10px 24px rgba(30, 70, 135, 0.12);
}

.page-v2 .countdown__unit strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: #ed3237;
}

.page-v2 .countdown__unit span {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e4687;
}

@media (max-width: 640px) {
  .page-v2 .countdown__unit {
    min-width: 72px;
    padding: 12px 8px 10px;
  }

  .page-v2 .countdown__unit strong {
    font-size: 1.55rem;
  }
}

/* Testimonials — Kavita-style center slider (middle blue, sides greyed) */
.page-v2 .section-testimonials {
  position: relative;
  overflow: hidden;
  background: #f4f5f7;
}

.page-v2 .section-testimonials .section-head {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.page-v2 .fly-testimonials {
  --fly-items: 3;
  --fly-speed: 750ms;
  position: relative;
  padding: 0 48px;
}

.page-v2 .fly-testimonials__viewport {
  overflow: hidden;
  width: 100%;
  padding: 16px 0 10px;
}

.page-v2 .fly-testimonials__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 750ms ease;
}

.page-v2 .fly-testimonials__track.is-instant {
  transition: none !important;
}

.page-v2 .fly-card {
  flex: 0 0 auto;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 14px 4px;
  text-align: center;
}

.page-v2 .fly-card__inner {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease;
  transform-origin: center center;
  filter: none;
}

.page-v2 .fly-card.is-center .fly-card__inner {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  filter: none;
}

.page-v2 .fly-card__body {
  position: relative;
  padding: 28px 24px 22px;
  border-radius: 4px;
  background: #2a5fb0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(42, 95, 176, 0.2);
  min-height: 180px;
  text-align: center;
}

.page-v2 .fly-card.is-center .fly-card__body {
  background: #2a5fb0;
  box-shadow: 0 10px 24px rgba(42, 95, 176, 0.2);
}

.page-v2 .fly-card__body > .fa-quote-left {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.page-v2 .fly-card.is-center .fly-card__body > .fa-quote-left {
  color: rgba(255, 255, 255, 0.65);
}

.page-v2 .fly-card__body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
}

.page-v2 .fly-card__author {
  margin: 12px auto 0;
  display: table;
  padding: 8px 28px;
  text-align: center;
}

.page-v2 .fly-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e4687;
}

.page-v2 .fly-card.is-center .fly-card__author strong {
  color: #1e4687;
}

.page-v2 .fly-card__author span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #6b7280;
  text-transform: none;
}

.page-v2 .fly-testimonials__nav {
  position: absolute;
  top: calc(50% - 42px);
  z-index: 8;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #1e4687;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-v2 .fly-testimonials__nav:hover {
  background: #2a5fb0;
  color: #fff;
}

.page-v2 .fly-testimonials__nav--prev { left: 0; }
.page-v2 .fly-testimonials__nav--next { right: 0; }

.page-v2 .fly-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.page-v2 .testimonials-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-v2 .fly-testimonials__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(42, 95, 176, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-v2 .fly-testimonials__dots button.is-active {
  background: #2a5fb0;
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  /* Keep slide motion visible for this carousel */
  .page-v2 .fly-card__inner {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease;
  }
}

@media (max-width: 1169px) {
  .page-v2 .fly-testimonials {
    --fly-items: 2;
  }
}

@media (max-width: 767px) {
  .page-v2 .fly-testimonials {
    --fly-items: 1;
    padding: 0 40px;
  }

  .page-v2 .fly-card__inner {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .page-v2 .fly-card__body {
    background: #2a5fb0;
    min-height: 200px;
  }

  .page-v2 .fly-testimonials__nav {
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   On-scroll reveal animations
   (only active after JS adds .has-reveal on <html>)
   ========================================================= */
.has-reveal .page-v2 .reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal .page-v2 .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-reveal .page-v2 .reveal--left {
  transform: translate3d(-40px, 0, 0);
}

.has-reveal .page-v2 .reveal--right {
  transform: translate3d(40px, 0, 0);
}

.has-reveal .page-v2 .reveal--zoom {
  transform: translate3d(0, 20px, 0) scale(0.94);
}

.has-reveal .page-v2 .reveal--block {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: none;
  transition:
    clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: clip-path;
}

.has-reveal .page-v2 .reveal--fade {
  transform: translate3d(0, 40px, 0);
}

.has-reveal .page-v2 .tepl-copy > *.reveal:nth-child(1) { transition-delay: 0ms; }
.has-reveal .page-v2 .tepl-copy > *.reveal:nth-child(2) { transition-delay: 100ms; }
.has-reveal .page-v2 .tepl-copy > *.reveal:nth-child(3) { transition-delay: 200ms; }
.has-reveal .page-v2 .tepl-copy > *.reveal:nth-child(4) { transition-delay: 300ms; }
.has-reveal .page-v2 .tepl-copy > *.reveal:nth-child(5) { transition-delay: 400ms; }
.has-reveal .page-v2 .tepl-copy > *.reveal:nth-child(6) { transition-delay: 500ms; }

.has-reveal .page-v2 .reveal--left.is-visible,
.has-reveal .page-v2 .reveal--right.is-visible,
.has-reveal .page-v2 .reveal--zoom.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal .page-v2 .reveal--block.is-visible {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .page-v2 .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    clip-path: none !important;
  }
}

/* =========================================================
   Inner page banner (shared by TEPL / ELCA / COSMA)
   Full-bleed photo + left transparent colour patch + title
   ========================================================= */
.page-v2 .page-banner {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.page-v2 .page-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-v2 .page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Soft base shade so photo stays visible (no heavy blue wash) */
.page-v2 .page-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 100%);
}

/*
   Banner left colour panel — red fading to transparent (default / TEPL).
*/
.page-v2 .page-banner__patch {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(72%, 920px);
  background: linear-gradient(
    90deg,
    rgba(237, 50, 55, 0.9) 0%,
    rgba(237, 50, 55, 0.7) 38%,
    rgba(237, 50, 55, 0.35) 68%,
    rgba(237, 50, 55, 0) 100%
  );
  clip-path: none;
  pointer-events: none;
  transform-origin: left center;
}

.page-v2 .page-banner__inner {
  position: relative;
  z-index: 2;
  padding: 56px 0 60px;
}

.page-v2 .page-banner--patch .page-banner__copy {
  position: relative;
  max-width: min(34rem, 58vw);
  margin-left: clamp(18px, 3.5vw, 48px);
  padding-left: clamp(18px, 2.2vw, 28px);
  border-left: 3px solid #f6ca43;
}

.page-v2 .page-banner--patch .page-banner__eyebrow {
  margin: 0 0 10px;
}

.page-v2 .page-banner--patch .page-banner__eyebrow span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f6ca43;
  padding-bottom: 0;
  border-bottom: none;
}

.page-v2 .page-banner--patch .page-banner__title {
  position: relative;
  margin: 0;
  line-height: 0.9;
  min-height: clamp(3.6rem, 9vw, 5.6rem);
}

.page-v2 .page-banner--patch .page-banner__title-shadow,
.page-v2 .page-banner--patch .page-banner__title-main {
  font-family: "Bebas Neue", Manrope, sans-serif;
  font-size: clamp(3.8rem, 9vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-v2 .page-banner--patch .page-banner__title-shadow {
  position: absolute;
  left: 10px;
  top: 8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  user-select: none;
  pointer-events: none;
}

.page-v2 .page-banner--patch .page-banner__title-main {
  position: relative;
  display: inline-block;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.page-v2 .page-banner--patch .page-banner__sub {
  display: block;
  margin: 16px 0 0;
  max-width: 22rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}

.page-v2 .page-banner--patch .page-banner__tag {
  margin: 10px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.page-v2 .page-banner--tepl {
  min-height: 300px;
}

.page-v2 .page-banner--elca,
.page-v2 .page-banner--cosma {
  min-height: 300px;
}

/* ELCA banner — blue gradient panel (consultants / professional) */
.page-v2 .page-banner--elca .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.92) 0%,
    rgba(42, 95, 176, 0.72) 40%,
    rgba(42, 95, 176, 0.32) 70%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--elca .page-banner__eyebrow span {
  color: #f6ca43;
}

/* COSMA banner — red-to-blue industrial blend */
.page-v2 .page-banner--cosma .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(237, 50, 55, 0.9) 0%,
    rgba(180, 40, 55, 0.65) 35%,
    rgba(42, 95, 176, 0.35) 68%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--cosma .page-banner__media img {
  object-position: center center;
}

.page-v2 #about-cosma .about-org-logo img {
  max-width: 420px;
  padding: 0;
}

.page-v2 #about-elca .about-org-logo img {
  max-width: 420px;
  padding: 0;
}

.page-v2 .page-banner--elca .page-banner__media img {
  object-position: center center;
}

/* =========================================================
   About organisation content (TEPL / ELCA / COSMA)
   Logo panel + copy column, embossed hover on outer box only
   ========================================================= */
.page-v2 .section-tepl,
.page-v2 .section-about-org {
  padding-top: 28px;
  padding-bottom: 72px;
}

.page-v2 .tepl-grid,
.page-v2 .about-org-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px 56px;
  align-items: start;
}

.page-v2 .tepl-logo-wrap,
.page-v2 .about-org-logo {
  background: #fff;
  border: 1px solid rgba(42, 95, 176, 0.35);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(42, 95, 176, 0.1),
    0 10px 28px rgba(42, 95, 176, 0.18),
    0 4px 10px rgba(237, 50, 55, 0.1);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.page-v2 .tepl-logo-wrap a,
.page-v2 .about-org-logo a {
  display: block;
  line-height: 0;
}

.page-v2 .tepl-logo-wrap img,
.page-v2 .about-org-logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border: 0;
  box-shadow: none;
  filter: none;
}

.page-v2 .tepl-logo-wrap:hover,
.page-v2 .about-org-logo:hover {
  border-color: rgba(42, 95, 176, 0.55);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px rgba(42, 95, 176, 0.22),
    0 14px 34px rgba(42, 95, 176, 0.28),
    0 6px 14px rgba(237, 50, 55, 0.16),
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    inset 0 -3px 6px rgba(30, 70, 135, 0.18);
}

.page-v2 .tepl-logo-wrap:hover img,
.page-v2 .about-org-logo:hover img {
  transform: none;
  filter: none;
  box-shadow: none;
}

.page-v2 .tepl-logo-wrap:focus-within,
.page-v2 .about-org-logo:focus-within {
  border-color: rgba(42, 95, 176, 0.55);
  outline: none;
  box-shadow:
    0 0 0 2px rgba(42, 95, 176, 0.25),
    0 14px 34px rgba(42, 95, 176, 0.28),
    0 6px 14px rgba(237, 50, 55, 0.16),
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    inset 0 -3px 6px rgba(30, 70, 135, 0.18);
}

.page-v2 .tepl-copy h2,
.page-v2 .about-org-copy h2 {
  margin: 6px 0 18px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  color: #1e4687;
}

.page-v2 .tepl-copy > p:first-child,
.page-v2 .about-org-copy > p:first-child {
  margin-top: 0;
}

.page-v2 .tepl-copy p,
.page-v2 .about-org-copy p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #334155;
}

.page-v2 .tepl-copy strong,
.page-v2 .about-org-copy strong {
  color: #1e4687;
}

.page-v2 .about-org-list {
  margin: 0 0 18px;
  padding: 0 0 0 1.15rem;
  color: #334155;
}

.page-v2 .about-org-list li {
  margin: 0 0 10px;
  line-height: 1.65;
  padding-left: 0.15rem;
}

.page-v2 .about-org-list li::marker {
  color: #2a5fb0;
  font-weight: 700;
}

.page-v2 .tepl-cta,
.page-v2 .about-org-cta {
  margin-top: 10px;
  display: inline-flex;
}

@media (max-width: 900px) {
  .page-v2 .page-banner,
  .page-v2 .page-banner--tepl {
    min-height: 240px;
  }

  .page-v2 .page-banner__patch {
    width: min(88%, 640px);
  }

  .page-v2 .page-banner--patch .page-banner__copy {
    max-width: 92%;
    margin-left: 12px;
    padding-left: 16px;
  }

  .page-v2 .page-banner__inner {
    padding: 40px 0 44px;
  }

  .page-v2 .page-banner--patch .page-banner__title-shadow {
    left: 6px;
    top: 5px;
  }

  .page-v2 .tepl-grid,
  .page-v2 .about-org-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-v2 .tepl-logo-wrap,
  .page-v2 .about-org-logo {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .page-v2 .page-banner__patch {
    width: 78%;
  }

  .page-v2 .page-banner--patch .page-banner__copy {
    max-width: 90%;
  }
}

/* =========================================================
   Inner-page entrance animations (TEPL / ELCA / COSMA)
   Pure CSS — no JS required. Applies when body has .page-inner
   ========================================================= */

/* Banner background image: fade + subtle zoom */
.page-inner .page-banner__media img {
  animation: piBannerImg 2s ease both !important;
}

/* Left colour patch: wipe in from left */
.page-inner .page-banner__patch {
  transform-origin: left center;
  animation: piBannerPatch 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both !important;
}

/* Banner copy: staggered slide-in */
.page-inner .page-banner__eyebrow {
  animation: piSlideIn 0.9s ease 0.75s both !important;
}

.page-inner .page-banner__title {
  animation: piSlideIn 0.9s ease 0.95s both !important;
}

.page-inner .page-banner__sub {
  animation: piSlideIn 0.9s ease 1.15s both !important;
}

.page-inner .page-banner__tag {
  animation: piSlideIn 0.9s ease 1.3s both !important;
}

/* Org logo / photo panel: block reveal */
.page-inner .tepl-logo-wrap,
.page-inner .about-org-logo {
  animation: piBlockIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both !important;
}

/* Org body copy: staggered fade-up */
.page-inner .tepl-copy > *:nth-child(1),
.page-inner .about-org-copy > *:nth-child(1) {
  animation: piFadeUp 0.85s ease 0.55s both !important;
}

.page-inner .tepl-copy > *:nth-child(2),
.page-inner .about-org-copy > *:nth-child(2) {
  animation: piFadeUp 0.85s ease 0.7s both !important;
}

.page-inner .tepl-copy > *:nth-child(3),
.page-inner .about-org-copy > *:nth-child(3) {
  animation: piFadeUp 0.85s ease 0.85s both !important;
}

.page-inner .tepl-copy > *:nth-child(4),
.page-inner .about-org-copy > *:nth-child(4) {
  animation: piFadeUp 0.85s ease 1s both !important;
}

.page-inner .tepl-copy > *:nth-child(5),
.page-inner .about-org-copy > *:nth-child(5) {
  animation: piFadeUp 0.85s ease 1.15s both !important;
}

.page-inner .tepl-copy > *:nth-child(6),
.page-inner .about-org-copy > *:nth-child(6) {
  animation: piFadeUp 0.85s ease 1.3s both !important;
}

/* Keyframes: banner image */
@keyframes piBannerImg {
  from {
    opacity: 0;
    transform: scale(1.18);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Keyframes: left patch wipe */
@keyframes piBannerPatch {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Keyframes: banner text slide */
@keyframes piSlideIn {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Keyframes: logo block wipe */
@keyframes piBlockIn {
  from {
    opacity: 0.35;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Keyframes: copy fade-up */
@keyframes piFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* =========================================================
   About ELASIA page — copy + image collage
   ========================================================= */

/* Banner: blue-red blend suited to expo stage photo */
.page-v2 .page-banner--about-elasia {
  min-height: 300px;
}

.page-v2 .page-banner--about-elasia .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.92) 0%,
    rgba(42, 95, 176, 0.7) 38%,
    rgba(237, 50, 55, 0.35) 70%,
    rgba(237, 50, 55, 0) 100%
  );
}

.page-v2 .page-banner--about-elasia .page-banner__media img {
  object-position: center 35%;
}

.page-v2 .section-about-elasia {
  padding-top: 36px;
  padding-bottom: 72px;
}

.page-v2 .about-elasia-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px 48px;
  align-items: start;
}

.page-v2 .about-elasia-copy {
  position: relative;
}

.page-v2 .about-elasia-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  color: #1e4687;
  line-height: 1.2;
  animation: aboutCopyTitleIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-v2 .about-elasia-copy h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6ca43 0%, #ed3237 55%, transparent 100%);
  box-shadow: 0 0 10px rgba(246, 202, 67, 0.55);
  animation: aboutCopyLineIn 0.9s ease 0.25s both;
}

.page-v2 .about-elasia-copy h2 span {
  color: #ed3237;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(237, 50, 55, 0.35);
  animation: aboutCopyAccentPulse 2.8s ease-in-out infinite;
}

.page-v2 .about-elasia-copy p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #334155;
  animation: aboutCopyFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-v2 .about-elasia-copy p:nth-of-type(1) {
  animation-delay: 0.18s;
  color: #1e293b;
  font-style: italic;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 50%, #fff8e0 100%);
  border: 1px solid rgba(246, 202, 67, 0.45);
  border-left: 3px solid #f6ca43;
  box-shadow: 0 6px 18px rgba(246, 202, 67, 0.16);
}

.page-v2 .about-elasia-copy p:nth-of-type(2) { animation-delay: 0.3s; }
.page-v2 .about-elasia-copy p:nth-of-type(3) { animation-delay: 0.42s; }
.page-v2 .about-elasia-copy p:nth-of-type(4) { animation-delay: 0.54s; }

.page-v2 .about-elasia-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  animation: aboutCopyFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.66s both;
}

@keyframes aboutCopyTitleIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutCopyLineIn {
  from {
    opacity: 0;
    transform: scaleX(0.2);
    transform-origin: left center;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes aboutCopyFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutCopyAccentPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(237, 50, 55, 0.25); }
  50% { text-shadow: 0 0 22px rgba(237, 50, 55, 0.55), 0 0 8px rgba(246, 202, 67, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .about-elasia-copy h2,
  .page-v2 .about-elasia-copy h2::after,
  .page-v2 .about-elasia-copy h2 span,
  .page-v2 .about-elasia-copy p,
  .page-v2 .about-elasia-actions {
    animation: none !important;
  }
}

/* About ELASIA — collage panels in a continuous marquee (R → L) */
.page-v2 .about-elasia-media {
  min-width: 0;
  align-self: stretch;
}

.page-v2 .about-elasia-marquee {
  height: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}

.page-v2 .about-elasia-marquee__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-v2 .about-elasia-marquee__track {
  display: flex;
  width: max-content;
  animation: aboutElasiaMarquee 40s linear infinite;
}

.page-v2 .about-elasia-marquee:hover .about-elasia-marquee__track {
  animation-play-state: paused;
}

.page-v2 .about-elasia-marquee__group {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding-right: 16px;
  flex: 0 0 auto;
}

.page-v2 .about-elasia-marquee__panel {
  flex: 0 0 auto;
  width: min(480px, 78vw);
  height: 420px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 3px solid #f6ca43;
  background: #0f172a;
  box-shadow:
    0 0 0 1px #e8b82e,
    0 0 12px rgba(246, 202, 67, 0.75),
    0 0 28px rgba(246, 202, 67, 0.45),
    0 0 48px rgba(232, 184, 46, 0.28),
    inset 0 0 0 1px rgba(255, 248, 224, 0.55),
    inset 0 0 18px rgba(246, 202, 67, 0.18);
  animation: aboutElasiaPanelGlow 2.4s ease-in-out infinite alternate;
}

.page-v2 .about-elasia-marquee__panel .collage-item {
  margin: 0;
  overflow: hidden;
  min-height: 0;
  background: #0f172a;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.page-v2 .about-elasia-marquee__panel .collage-item--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.page-v2 .about-elasia-marquee__panel .collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes aboutElasiaMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes aboutElasiaPanelGlow {
  from {
    box-shadow:
      0 0 0 1px #e8b82e,
      0 0 10px rgba(246, 202, 67, 0.55),
      0 0 22px rgba(246, 202, 67, 0.35),
      0 0 36px rgba(232, 184, 46, 0.2),
      inset 0 0 0 1px rgba(255, 248, 224, 0.45),
      inset 0 0 14px rgba(246, 202, 67, 0.12);
  }
  to {
    box-shadow:
      0 0 0 1px #f6ca43,
      0 0 16px rgba(246, 202, 67, 0.9),
      0 0 34px rgba(246, 202, 67, 0.55),
      0 0 56px rgba(232, 184, 46, 0.35),
      inset 0 0 0 1px rgba(255, 248, 224, 0.7),
      inset 0 0 22px rgba(246, 202, 67, 0.25);
  }
}

@media (max-width: 980px) {
  .page-v2 .about-elasia-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-v2 .about-elasia-marquee {
    min-height: 360px;
  }

  .page-v2 .about-elasia-marquee__panel {
    width: min(440px, 88vw);
    height: 360px;
  }

  .page-v2 .about-elasia-marquee__track {
    animation-duration: 32s;
  }
}

@media (max-width: 640px) {
  .page-v2 .about-elasia-marquee {
    min-height: 280px;
  }

  .page-v2 .about-elasia-marquee__panel {
    width: 300px;
    height: 260px;
    gap: 6px;
  }

  .page-v2 .about-elasia-marquee__group {
    gap: 10px;
    padding-right: 10px;
  }

  .page-v2 .about-elasia-marquee__panel .collage-item {
    border-width: 1.5px;
  }

  .page-v2 .about-elasia-marquee__track {
    animation-duration: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .about-elasia-marquee__track {
    animation-duration: 90s;
  }
}

/* =========================================================
   Exhibitors Profile
   ========================================================= */

.page-v2 .page-banner--exhibitor-profile {
  min-height: 280px;
}

.page-v2 .page-banner--exhibitor-profile .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.94) 0%,
    rgba(42, 95, 176, 0.72) 40%,
    rgba(237, 50, 55, 0.32) 72%,
    rgba(237, 50, 55, 0) 100%
  );
}

.page-v2 .page-banner--exhibitor-profile .page-banner__media img {
  object-position: center 55%;
}

.page-v2 .page-banner--exhibitor-list .page-banner__media img {
  object-position: center 50%;
}

.page-v2 .section-exhibitor-profile {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(246, 202, 67, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(42, 95, 176, 0.08), transparent 50%),
    #fff;
}

.page-v2 .exhibitor-profile-intro {
  max-width: 720px;
  margin: 0 0 32px;
}

.page-v2 .exhibitor-profile-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 800;
  color: #1e4687;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-v2 .exhibitor-profile-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .exhibitor-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 36px;
}

.page-v2 .exhibitor-profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-v2 .exhibitor-profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 8px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a2744;
  cursor: default;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.page-v2 .exhibitor-profile-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: 1px;
  border-radius: 9px;
  background: rgba(30, 70, 135, 0.08);
  color: #1e4687;
  font-size: 0.92rem;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.page-v2 .exhibitor-profile-label {
  flex: 1;
  min-width: 0;
  padding-top: 7px;
}

.page-v2 .exhibitor-profile-list li:hover {
  background: linear-gradient(90deg, rgba(246, 202, 67, 0.16), rgba(42, 95, 176, 0.08));
  border-color: rgba(246, 202, 67, 0.55);
  box-shadow: 0 8px 18px rgba(30, 70, 135, 0.1);
  transform: translateY(-2px);
  color: #0f1c33;
}

.page-v2 .exhibitor-profile-list li:hover .exhibitor-profile-icon {
  background: #ed3237;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(237, 50, 55, 0.35);
}

@media (hover: none) {
  .page-v2 .exhibitor-profile-list li:active {
    background: linear-gradient(90deg, rgba(246, 202, 67, 0.16), rgba(42, 95, 176, 0.08));
    border-color: rgba(246, 202, 67, 0.55);
  }

  .page-v2 .exhibitor-profile-list li:active .exhibitor-profile-icon {
    background: #ed3237;
    color: #fff;
  }
}

@media (max-width: 980px) {
  .page-v2 .exhibitor-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }
}

@media (max-width: 640px) {
  .page-v2 .section-exhibitor-profile {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-v2 .exhibitor-profile-intro {
    margin-bottom: 22px;
  }

  .page-v2 .exhibitor-profile-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-v2 .exhibitor-profile-list li {
    font-size: 0.95rem;
    padding: 11px 12px;
    min-height: 44px;
  }

  .page-v2 .exhibitor-profile-icon {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .exhibitor-profile-list li,
  .page-v2 .exhibitor-profile-icon {
    transition: none;
  }

  .page-v2 .exhibitor-profile-list li:hover {
    transform: none;
  }

  .page-v2 .exhibitor-profile-list li:hover .exhibitor-profile-icon {
    transform: none;
  }
}

/* =========================================================
   Exhibitors List
   ========================================================= */

.page-v2 .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-v2 .page-banner--exhibitor-list {
  min-height: 280px;
}

.page-v2 .page-banner--exhibitor-list .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.94) 0%,
    rgba(42, 95, 176, 0.72) 40%,
    rgba(237, 50, 55, 0.32) 72%,
    rgba(237, 50, 55, 0) 100%
  );
}

.page-v2 .section-exhibitor-list {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(42, 95, 176, 0.08), transparent 55%),
    #fff;
}

.page-v2 .exhibitor-list-intro {
  max-width: 720px;
  margin: 0 0 28px;
}

.page-v2 .exhibitor-list-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 800;
  color: #1e4687;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-v2 .exhibitor-list-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .exhibitor-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 18px;
}

.page-v2 .exhibitor-list-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 280px;
  max-width: 420px;
}

.page-v2 .exhibitor-list-search > i {
  position: absolute;
  left: 14px;
  color: #1e4687;
  pointer-events: none;
  font-size: 0.95rem;
}

.page-v2 .exhibitor-list-search input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 40px;
  border: 1px solid rgba(30, 70, 135, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #0f1c33;
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-v2 .exhibitor-list-search input:focus {
  border-color: #2a5fb0;
  box-shadow: 0 0 0 3px rgba(42, 95, 176, 0.18);
}

.page-v2 .exhibitor-list-count {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.7);
}

.page-v2 .exhibitor-list-count strong {
  color: #1e4687;
  font-weight: 800;
}

.page-v2 .exhibitor-list-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(30, 70, 135, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.page-v2 .exhibitor-list-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.page-v2 .exhibitor-list-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #1e4687 0%, #2a5fb0 100%);
  white-space: nowrap;
}

.page-v2 .exhibitor-list-table thead th:nth-child(2),
.page-v2 .exhibitor-list-table thead th:nth-child(3),
.page-v2 .exhibitor-list-table td:nth-child(2),
.page-v2 .exhibitor-list-table td:nth-child(3) {
  width: 1%;
  white-space: nowrap;
  text-align: center;
}

.page-v2 .exhibitor-list-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(30, 70, 135, 0.08);
  color: #1a2744;
  vertical-align: middle;
}

.page-v2 .exhibitor-list-table tbody tr:nth-child(even) td {
  background: rgba(42, 95, 176, 0.035);
}

.page-v2 .exhibitor-list-table tbody tr:hover td {
  background: rgba(246, 202, 67, 0.14);
}

.page-v2 .exhibitor-list-table tbody td:nth-child(2),
.page-v2 .exhibitor-list-table tbody td:nth-child(3) {
  font-weight: 700;
  color: #1e4687;
}

.page-v2 .exhibitor-list-empty {
  margin: 0;
  padding: 36px 20px;
  text-align: center;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 600;
}

@media (max-width: 640px) {
  .page-v2 .section-exhibitor-list {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-v2 .exhibitor-list-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .page-v2 .exhibitor-list-search {
    max-width: none;
  }

  .page-v2 .exhibitor-list-table {
    min-width: 480px;
    font-size: 0.9rem;
  }

  .page-v2 .exhibitor-list-table thead th,
  .page-v2 .exhibitor-list-table tbody td {
    padding: 11px 12px;
  }
}

/* =========================================================
   Why Exhibit
   ========================================================= */

.page-v2 .page-banner--why-exhibit {
  min-height: 280px;
}

.page-v2 .page-banner--why-exhibit .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.94) 0%,
    rgba(42, 95, 176, 0.72) 40%,
    rgba(237, 50, 55, 0.32) 72%,
    rgba(237, 50, 55, 0) 100%
  );
}

.page-v2 .page-banner--why-exhibit .page-banner__media img {
  object-position: center 48%;
}

.page-v2 .section-exhibit {
  padding-top: 40px;
  padding-bottom: 72px;
}

.page-v2 .why-exhibit-intro {
  margin-bottom: 32px;
}

.page-v2 .why-exhibit-intro .section-label {
  margin-bottom: 10px;
}

.page-v2 .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .page-v2 .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-v2 .section-exhibit {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-v2 .why-grid {
    grid-template-columns: 1fr;
  }

  .page-v2 .glass-card {
    padding: 22px 18px;
  }
}

/* =========================================================
   Venue — BIEC
   ========================================================= */

.page-v2 .page-banner--venue {
  min-height: 300px;
}

.page-v2 .page-banner--venue .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.94) 0%,
    rgba(42, 95, 176, 0.7) 42%,
    rgba(237, 50, 55, 0.28) 75%,
    rgba(237, 50, 55, 0) 100%
  );
}

.page-v2 .page-banner--venue .page-banner__media img {
  object-position: center 42%;
}

.page-v2 .section-venue {
  padding-top: 40px;
  padding-bottom: 28px;
  background: #fff;
}

.page-v2 .venue-about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px 48px;
  align-items: center;
}

.page-v2 .venue-about__media {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.page-v2 .venue-about__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.page-v2 .venue-about__copy .section-label {
  margin-bottom: 12px;
}

.page-v2 .venue-about__copy > p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.8);
}

.page-v2 .venue-address {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 4px solid #f6ca43;
  background: rgba(246, 202, 67, 0.12);
  border-radius: 0 10px 10px 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a2744;
}

.page-v2 .venue-address i {
  margin-top: 4px;
  color: #ed3237;
  flex-shrink: 0;
}

.page-v2 .venue-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  padding-top: 8px;
}

.page-v2 .venue-stat {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid rgba(30, 70, 135, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, rgba(42, 95, 176, 0.04) 100%);
}

.page-v2 .venue-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #1e4687;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-v2 .venue-stat span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.65);
}

.page-v2 .section-venue-reach {
  padding-top: 28px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(42, 95, 176, 0.08), transparent 55%),
    #f7f9fc;
}

.page-v2 .venue-reach-intro {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.page-v2 .venue-reach-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 800;
  color: #1e4687;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-v2 .venue-reach-intro p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.6;
}

.page-v2 .venue-reach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page-v2 .venue-reach-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px;
  border: 1px solid rgba(30, 70, 135, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.page-v2 .venue-reach-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 202, 67, 0.55);
  box-shadow: 0 16px 34px rgba(30, 70, 135, 0.12);
}

.page-v2 .venue-reach-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(30, 70, 135, 0.08);
  color: #1e4687;
  font-size: 1.35rem;
}

.page-v2 .venue-reach-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.page-v2 .venue-reach-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .venue-reach-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.75);
}

.page-v2 .venue-qr {
  display: inline-block;
  margin-top: 16px;
  padding: 8px;
  border: 1px solid rgba(30, 70, 135, 0.14);
  border-radius: 10px;
  background: #fff;
  line-height: 0;
}

.page-v2 .venue-qr img {
  display: block;
  width: 120px;
  height: 120px;
  max-width: 100%;
}

@media (max-width: 980px) {
  .page-v2 .venue-about {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-v2 .venue-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-v2 .venue-reach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-v2 .section-venue {
    padding-top: 28px;
  }

  .page-v2 .section-venue-reach {
    padding-bottom: 56px;
  }

  .page-v2 .venue-stats {
    gap: 10px;
  }

  .page-v2 .venue-stat {
    padding: 16px 10px;
  }

  .page-v2 .venue-reach-card {
    padding: 22px 18px;
  }

  .page-v2 .venue-qr img {
    width: 110px;
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .venue-reach-card {
    transition: none;
  }

  .page-v2 .venue-reach-card:hover {
    transform: none;
  }
}

/* =========================================================
   Exhibitor Registration + Thank You
   ========================================================= */

.page-v2 .page-banner--exhibitor-reg {
  min-height: 280px;
}

.page-v2 .page-banner--exhibitor-reg .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(30, 70, 135, 0.94) 0%,
    rgba(42, 95, 176, 0.72) 40%,
    rgba(237, 50, 55, 0.32) 72%,
    rgba(237, 50, 55, 0) 100%
  );
}

.page-v2 .section-exhibitor-reg {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(246, 202, 67, 0.1), transparent 55%),
    #f7f9fc;
}

.page-v2 .exhibitor-reg-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px 40px;
  align-items: start;
}

.page-v2 .exhibitor-reg-aside h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  color: #1e4687;
  letter-spacing: -0.02em;
}

.page-v2 .exhibitor-reg-aside > p {
  margin: 0 0 18px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .exhibitor-reg-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-v2 .exhibitor-reg-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.45;
}

.page-v2 .exhibitor-reg-points i {
  margin-top: 3px;
  color: #ed3237;
}

.page-v2 .exhibitor-reg-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.page-v2 .exhibitor-reg-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #1e4687;
  font-weight: 700;
  text-decoration: none;
}

.page-v2 .exhibitor-reg-contact a:hover {
  color: #ed3237;
}

.page-v2 .exhibitor-reg-panel {
  padding: 28px 26px 30px;
  border: 1px solid rgba(30, 70, 135, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.page-v2 .exhibitor-reg-panel__head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(30, 70, 135, 0.1);
}

.page-v2 .exhibitor-reg-panel__head h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .exhibitor-reg-panel__head p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(15, 23, 42, 0.65);
}

.page-v2 .exhibitor-reg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.page-v2 .exhibitor-reg-field--full {
  grid-column: 1 / -1;
}

.page-v2 .exhibitor-reg-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2744;
}

.page-v2 .req {
  color: #ed3237;
}

.page-v2 .exhibitor-reg-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(30, 70, 135, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #0f1c33;
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.page-v2 .exhibitor-reg-input:focus {
  border-color: #2a5fb0;
  box-shadow: 0 0 0 3px rgba(42, 95, 176, 0.16);
}

.page-v2 .exhibitor-reg-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.page-v2 .exhibitor-reg-error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c41e24;
}

.page-v2 .exhibitor-reg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-v2 .exhibitor-reg-actions .btn-flashy {
  min-width: 120px;
}

.page-v2 .section-thankyou-exhibitor {
  padding-top: 56px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(42, 95, 176, 0.1), transparent 60%),
    #fff;
}

.page-v2 .thankyou-exhibitor {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.page-v2 .thankyou-exhibitor__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(34, 160, 90, 0.12);
  color: #1f9d57;
  font-size: 2rem;
}

.page-v2 .thankyou-exhibitor h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .thankyou-exhibitor__lead {
  font-weight: 700;
  color: #1a2744;
}

.page-v2 .thankyou-exhibitor p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .thankyou-exhibitor__support {
  margin: 28px 0 24px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(42, 95, 176, 0.06);
}

.page-v2 .thankyou-exhibitor__support h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #1e4687;
}

.page-v2 .thankyou-exhibitor__support a {
  color: #1e4687;
  font-weight: 700;
  text-decoration: none;
}

.page-v2 .thankyou-exhibitor__support a:hover {
  color: #ed3237;
}

.page-v2 .thankyou-exhibitor__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .page-v2 .exhibitor-reg-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-v2 .section-exhibitor-reg {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-v2 .exhibitor-reg-panel {
    padding: 22px 16px 24px;
  }

  .page-v2 .exhibitor-reg-grid {
    grid-template-columns: 1fr;
  }

  .page-v2 .exhibitor-reg-actions {
    flex-direction: column;
  }

  .page-v2 .exhibitor-reg-actions .btn-flashy {
    width: 100%;
  }
}

/* =========================================================
   Visitor Registration
   ========================================================= */

.page-v2 .section-visitor-reg {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(237, 50, 55, 0.08), transparent 55%),
    #f7f9fc;
}

.page-v2 .visitor-reg-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px 40px;
  align-items: start;
}

.page-v2 .visitor-reg-aside h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  color: #1e4687;
  letter-spacing: -0.02em;
}

.page-v2 .visitor-reg-aside > p {
  margin: 0 0 18px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .visitor-reg-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-v2 .visitor-reg-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.45;
}

.page-v2 .visitor-reg-points i {
  margin-top: 3px;
  color: #ed3237;
}

.page-v2 .visitor-reg-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.page-v2 .visitor-reg-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #1e4687;
  font-weight: 700;
  text-decoration: none;
}

.page-v2 .visitor-reg-contact a:hover {
  color: #ed3237;
}

.page-v2 .visitor-reg-panel {
  padding: 28px 26px 30px;
  border: 1px solid rgba(30, 70, 135, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.page-v2 .visitor-reg-panel__head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(30, 70, 135, 0.1);
}

.page-v2 .visitor-reg-panel__head h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .visitor-reg-panel__head p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(15, 23, 42, 0.65);
}

.page-v2 .visitor-reg-exist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.75);
}

.page-v2 .visitor-reg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.page-v2 .visitor-reg-field--full {
  grid-column: 1 / -1;
}

.page-v2 .visitor-reg-field label,
.page-v2 .visitor-reg-state-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2744;
}

.page-v2 .visitor-reg-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(30, 70, 135, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #0f1c33;
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.page-v2 .visitor-reg-input:focus {
  border-color: #2a5fb0;
  box-shadow: 0 0 0 3px rgba(42, 95, 176, 0.16);
}

/* Server-set BorderColor must win over the base border shorthand */
.page-v2 .visitor-reg-input[style*="border-color"] {
  border-width: 1px;
  border-style: solid;
}

.page-v2 .visitor-reg-input--invalid {
  border-color: #b20000 !important;
  box-shadow: 0 0 0 3px rgba(178, 0, 0, 0.12);
}

.page-v2 .visitor-reg-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.page-v2 .visitor-reg-error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c41e24;
}

.page-v2 .visitor-reg-resend {
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(237, 50, 55, 0.06);
  border: 1px solid rgba(237, 50, 55, 0.14);
}

.page-v2 .visitor-reg-resend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 10px 0;
}

.page-v2 .visitor-reg-badge-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 8px 0 0;
}

.page-v2 .visitor-reg-badge-links a {
  color: #1e4687;
  font-weight: 700;
  text-decoration: none;
}

.page-v2 .visitor-reg-badge-links a:hover {
  color: #ed3237;
}

.page-v2 .visitor-reg-newuser {
  margin-top: 8px;
}

.page-v2 .visitor-reg-tree {
  max-height: 280px;
  overflow: auto;
  padding: 12px 14px;
  border: 1px solid rgba(30, 70, 135, 0.18);
  border-radius: 10px;
  background: #fafbfd;
}

.page-v2 .visitor-reg-tree table {
  border-collapse: collapse;
}

.page-v2 .visitor-reg-tree a {
  color: #1a2744;
  text-decoration: none;
  font-size: 0.92rem;
}

.page-v2 .visitor-medium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  padding: 14px;
  border: 1px solid rgba(30, 70, 135, 0.18);
  border-radius: 10px;
  background: #fafbfd;
}

.page-v2 .visitor-reg-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.35;
  cursor: pointer;
}

.page-v2 .visitor-reg-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.page-v2 .visitor-reg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-v2 .visitor-reg-field.contact-captcha {
  margin-top: 8px;
}

.page-v2 .visitor-reg-actions .btn-flashy {
  min-width: 120px;
}

.page-v2 .visitor-reg-is-hidden,
.page-v2 .visitor-reg-loader {
  display: none !important;
}

.page-v2 .section-thankyou-visitor {
  padding-top: 56px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(237, 50, 55, 0.08), transparent 60%),
    #fff;
}

.page-v2 .thankyou-visitor {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.page-v2 .thankyou-visitor__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(34, 160, 90, 0.12);
  color: #1f9d57;
  font-size: 2rem;
}

.page-v2 .thankyou-visitor h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .thankyou-visitor__lead {
  font-weight: 700;
  color: #1a2744;
}

.page-v2 .thankyou-visitor p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .thankyou-visitor__support {
  margin: 28px 0 24px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(42, 95, 176, 0.06);
}

.page-v2 .thankyou-visitor__support h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #1e4687;
}

.page-v2 .thankyou-visitor__support a {
  color: #1e4687;
  font-weight: 700;
  text-decoration: none;
}

.page-v2 .thankyou-visitor__support a:hover {
  color: #ed3237;
}

.page-v2 .thankyou-visitor__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .page-v2 .visitor-reg-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-v2 .section-visitor-reg {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-v2 .visitor-reg-panel {
    padding: 22px 16px 24px;
  }

  .page-v2 .visitor-reg-grid,
  .page-v2 .visitor-medium {
    grid-template-columns: 1fr;
  }

  .page-v2 .visitor-reg-actions {
    flex-direction: column;
  }

  .page-v2 .visitor-reg-actions .btn-flashy,
  .page-v2 .visitor-reg-exist .btn-flashy {
    width: 100%;
  }
}

/* =========================================================
   Why Visit
   ========================================================= */

.page-v2 .page-banner--why-visit {
  min-height: 280px;
}

.page-v2 .page-banner--why-visit .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(6, 24, 51, 0.94) 0%,
    rgba(11, 42, 82, 0.78) 38%,
    rgba(42, 95, 176, 0.42) 68%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--why-visit .page-banner__media img {
  object-position: center 45%;
}

.page-v2.page-inner .section-visit {
  padding-top: 40px;
  padding-bottom: 72px;
  background: none;
  color: inherit;
}

.page-v2 .why-visit-intro {
  margin-bottom: 32px;
}

.page-v2 .why-visit-intro .section-label {
  margin-bottom: 10px;
  color: var(--el-blue);
}

.page-v2 .why-visit-intro p {
  color: var(--el-muted);
}

.page-v2 .visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page-v2 .visit-media-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius, 14px);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-v2 .visit-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.page-v2 .visit-media-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.page-v2 .visit-media-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 70, 135, 0.25));
}

.page-v2 .visit-media-card__img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.page-v2 .visit-media-card:hover .visit-media-card__img img {
  transform: scale(1.06);
}

.page-v2 .visit-media-card__body {
  padding: 1.25rem 1.35rem 1.45rem;
}

.page-v2 .visit-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--el-red);
}

.page-v2 .visit-media-card:nth-child(even) .visit-tag {
  color: var(--el-blue);
}

.page-v2 .visit-media-card h3 {
  margin: 0 0 0.5rem;
  color: var(--el-blue-dark);
  font-size: 1.08rem;
}

.page-v2 .visit-media-card p {
  margin: 0;
  color: var(--el-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .page-v2 .visit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-v2 .visit-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Event Information
   ========================================================= */

.page-v2 .page-banner--event-info {
  min-height: 280px;
}

.page-v2 .page-banner--event-info .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(140, 20, 28, 0.94) 0%,
    rgba(237, 50, 55, 0.72) 40%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--event-info .page-banner__media img {
  object-position: center 35%;
}

.page-v2 .section-event-info {
  padding-top: 40px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(237, 50, 55, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(42, 95, 176, 0.07), transparent 55%),
    #fff;
}

.page-v2 .event-info-intro {
  margin-bottom: 36px;
}

.page-v2 .event-info-intro .section-label {
  margin-bottom: 10px;
}

.page-v2 .event-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 40px 48px;
  align-items: center;
}

.page-v2 .event-roadmap__list {
  list-style: none;
  margin: 0;
  padding: 8px 0 8px 34px;
  position: relative;
  display: grid;
  gap: 18px;
}

.page-v2 .event-roadmap__list::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  bottom: 12px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #ed3237 0%,
    #f08a24 25%,
    #2f9e44 50%,
    #c2185b 75%,
    #2a5fb0 100%
  );
  box-shadow: 0 0 0 4px rgba(30, 70, 135, 0.06);
}

.page-v2 .event-roadmap__list::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -2px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid #2a5fb0;
}

.page-v2 .event-milestone {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  animation: eventMilestoneIn 0.55s ease both;
}

.page-v2 .event-milestone:nth-child(1) { animation-delay: 0.05s; }
.page-v2 .event-milestone:nth-child(2) { animation-delay: 0.12s; }
.page-v2 .event-milestone:nth-child(3) { animation-delay: 0.19s; }
.page-v2 .event-milestone:nth-child(4) { animation-delay: 0.26s; }
.page-v2 .event-milestone:nth-child(5) { animation-delay: 0.33s; }

@keyframes eventMilestoneIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-v2 .event-milestone__pin {
  width: 48px;
  height: 48px;
  margin-left: -40px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  z-index: 1;
  flex-shrink: 0;
}

.page-v2 .event-milestone__pin i {
  transform: rotate(45deg);
  font-size: 1.05rem;
}

.page-v2 .event-milestone__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 70, 135, 0.08);
  box-shadow: 0 12px 28px rgba(20, 40, 80, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-v2 .event-milestone:hover .event-milestone__card {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(20, 40, 80, 0.12);
}

.page-v2 .event-milestone__card h2 {
  margin: 0;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.page-v2 .event-milestone__card p {
  margin: 0;
  padding: 0.95rem 1.1rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.page-v2 .event-milestone[data-tone="duration"] .event-milestone__pin,
.page-v2 .event-milestone[data-tone="duration"] .event-milestone__card h2 {
  background: #ed3237;
}

.page-v2 .event-milestone[data-tone="duration"] .event-milestone__card p {
  color: #ed3237;
}

.page-v2 .event-milestone[data-tone="dates"] .event-milestone__pin,
.page-v2 .event-milestone[data-tone="dates"] .event-milestone__card h2 {
  background: #f08a24;
}

.page-v2 .event-milestone[data-tone="dates"] .event-milestone__card p {
  color: #d97706;
}

.page-v2 .event-milestone[data-tone="venue"] .event-milestone__pin,
.page-v2 .event-milestone[data-tone="venue"] .event-milestone__card h2 {
  background: #2f9e44;
}

.page-v2 .event-milestone[data-tone="venue"] .event-milestone__card p {
  color: #2f9e44;
}

.page-v2 .event-milestone[data-tone="time"] .event-milestone__pin,
.page-v2 .event-milestone[data-tone="time"] .event-milestone__card h2 {
  background: #c2185b;
}

.page-v2 .event-milestone[data-tone="time"] .event-milestone__card p {
  color: #c2185b;
}

.page-v2 .event-milestone[data-tone="hall"] .event-milestone__pin,
.page-v2 .event-milestone[data-tone="hall"] .event-milestone__card h2 {
  background: #2a5fb0;
}

.page-v2 .event-milestone[data-tone="hall"] .event-milestone__card p {
  color: #2a5fb0;
}

.page-v2 .event-roadmap__brand {
  padding: 28px 28px 30px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.98)),
    #fff;
  border: 1px solid rgba(30, 70, 135, 0.1);
  box-shadow: 0 18px 40px rgba(20, 40, 80, 0.08);
  text-align: left;
}

.page-v2 .event-roadmap__eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--el-muted);
}

.page-v2 .event-roadmap__title {
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.page-v2 .event-roadmap__edition {
  font-family: Manrope, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #222;
  align-self: center;
}

.page-v2 .event-roadmap__el {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: #1e4687;
}

.page-v2 .event-roadmap__asia {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: #ed3237;
}

.page-v2 .event-roadmap__year {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: #2b2b2b;
}

.page-v2 .event-roadmap__tagline {
  margin: 0 0 22px;
  max-width: 28ch;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
  line-height: 1.45;
}

.page-v2 .event-roadmap__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-v2 .event-roadmap__actions .btn-flashy {
  min-height: 44px;
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .event-milestone {
    animation: none;
  }

  .page-v2 .event-milestone:hover .event-milestone__card {
    transform: none;
  }
}

@media (max-width: 900px) {
  .page-v2 .event-roadmap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-v2 .event-roadmap__brand {
    order: -1;
  }
}

@media (max-width: 560px) {
  .page-v2 .event-roadmap__list {
    padding-left: 28px;
    gap: 14px;
  }

  .page-v2 .event-roadmap__list::before {
    left: 12px;
    width: 5px;
  }

  .page-v2 .event-roadmap__list::after {
    left: 4px;
  }

  .page-v2 .event-milestone__pin {
    width: 40px;
    height: 40px;
    margin-left: -34px;
  }

  .page-v2 .event-milestone__pin i {
    font-size: 0.92rem;
  }

  .page-v2 .event-milestone__card h2 {
    padding: 0.6rem 0.95rem;
  }

  .page-v2 .event-milestone__card p {
    padding: 0.8rem 0.95rem 0.95rem;
    font-size: 0.98rem;
  }

  .page-v2 .event-roadmap__actions {
    flex-direction: column;
  }

  .page-v2 .event-roadmap__actions .btn-flashy {
    width: 100%;
  }
}

/* =========================================================
   Visitor Profile
   ========================================================= */

.page-v2 .page-banner--visitor-profile {
  min-height: 280px;
}

.page-v2 .page-banner--visitor-profile .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(140, 20, 28, 0.94) 0%,
    rgba(237, 50, 55, 0.72) 40%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--visitor-profile .page-banner__media img {
  object-position: center 48%;
}

.page-v2 .section-visitor-profile {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(237, 50, 55, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(42, 95, 176, 0.08), transparent 50%),
    #fff;
}

.page-v2 .visitor-profile-intro {
  max-width: 720px;
  margin: 0 0 32px;
}

.page-v2 .visitor-profile-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .visitor-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 36px;
}

.page-v2 .visitor-profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-v2 .visitor-profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 8px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a2744;
  cursor: default;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.page-v2 .visitor-profile-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(237, 50, 55, 0.1);
  color: #ed3237;
  font-size: 0.95rem;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.page-v2 .visitor-profile-label {
  padding-top: 6px;
}

.page-v2 .visitor-profile-list li:hover {
  background: rgba(237, 50, 55, 0.05);
  border-color: rgba(237, 50, 55, 0.14);
  box-shadow: 0 8px 20px rgba(237, 50, 55, 0.08);
  transform: translateY(-2px);
  color: #9f1c24;
}

.page-v2 .visitor-profile-list li:hover .visitor-profile-icon {
  background: #ed3237;
  color: #fff;
  transform: scale(1.06);
}

@media (hover: none) {
  .page-v2 .visitor-profile-list li:active {
    background: rgba(237, 50, 55, 0.05);
  }

  .page-v2 .visitor-profile-list li:active .visitor-profile-icon {
    background: #ed3237;
    color: #fff;
  }
}

@media (max-width: 1100px) {
  .page-v2 .visitor-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-v2 .section-visitor-profile {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .page-v2 .visitor-profile-intro {
    margin-bottom: 22px;
  }

  .page-v2 .visitor-profile-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-v2 .visitor-profile-list li {
    padding: 11px 12px;
    min-height: 44px;
  }

  .page-v2 .visitor-profile-icon {
    width: 34px;
    height: 34px;
  }

  .page-v2 .visitor-profile-list li,
  .page-v2 .visitor-profile-icon {
    transition: none;
  }

  .page-v2 .visitor-profile-list li:hover {
    transform: none;
  }

  .page-v2 .visitor-profile-list li:hover .visitor-profile-icon {
    transform: none;
  }
}

/* =========================================================
   Photos — albums + galleries
   ========================================================= */

.page-v2 .page-banner--photos {
  min-height: 280px;
}

.page-v2 .page-banner--photos .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(140, 20, 28, 0.94) 0%,
    rgba(237, 50, 55, 0.72) 40%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--photos .page-banner__media img {
  object-position: center 40%;
}

.page-v2 .section-photos,
.page-v2 .section-photo-gallery {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(237, 50, 55, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 100%, rgba(42, 95, 176, 0.07), transparent 50%),
    #fff;
}

.page-v2 .photos-intro {
  margin-bottom: 32px;
}

.page-v2 .photos-albums {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-v2 .photos-album {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(30, 70, 135, 0.1);
  box-shadow: 0 14px 32px rgba(20, 40, 80, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-v2 .photos-album:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(20, 40, 80, 0.14);
}

.page-v2 .photos-album__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}

.page-v2 .photos-album__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 30, 55, 0.35));
}

.page-v2 .photos-album__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.page-v2 .photos-album:hover .photos-album__media img {
  transform: scale(1.05);
}

.page-v2 .photos-album__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.page-v2 .photos-album__edition {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ed3237;
}

.page-v2 .photos-album h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: #1e4687;
}

.page-v2 .photos-album__body > p {
  margin: 0 0 0.85rem;
  color: var(--el-muted);
  font-size: 0.92rem;
}

.page-v2 .photos-album__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2a5fb0;
}

.page-v2 .photo-gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.page-v2 .photo-gallery-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  font-weight: 700;
  color: #2a5fb0;
  text-decoration: none;
}

.page-v2 .photo-gallery-back:hover {
  color: #ed3237;
}

.page-v2 .photo-gallery-count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--el-muted);
}

.page-v2 .section-photo-gallery,
.page-v2 .section-photo-gallery .container {
  overflow: visible;
}

.page-v2 .photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 20px 10px 12px;
  overflow: visible;
}

.page-v2 .photo-gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: visible;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  z-index: 0;
}

.page-v2 .photo-gallery__item img {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20, 40, 80, 0.1);
  transform: scale(1);
  transform-origin: center center;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-v2 .photo-gallery__zoom {
  position: absolute;
  inset: auto 10px 10px auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.page-v2 .photo-gallery__item:hover {
  z-index: 8;
}

.page-v2 .photo-gallery__item:hover img {
  transform: scale(1.12);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.85),
    0 0 18px rgba(237, 50, 55, 0.55),
    0 0 36px rgba(42, 95, 176, 0.4),
    0 16px 40px rgba(20, 40, 80, 0.28);
}

.page-v2 .photo-gallery__item:hover .photo-gallery__zoom {
  opacity: 1;
}

body.photo-lightbox-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(8, 14, 28, 0.92);
  padding: 56px 64px 40px;
}

.photo-lightbox[hidden] {
  display: none !important;
}

.photo-lightbox__stage {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 100px);
}

.photo-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 100px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.photo-lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.photo-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.photo-lightbox__prev { left: 16px; }
.photo-lightbox__next { right: 16px; }

.photo-lightbox__nav:hover,
.photo-lightbox__close:hover {
  background: rgba(237, 50, 55, 0.85);
}

.photo-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .photos-album,
  .page-v2 .photos-album__media img {
    transition: none;
  }

  .page-v2 .photos-album:hover {
    transform: none;
  }

  .page-v2 .photo-gallery__item img {
    transition:
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (max-width: 1100px) {
  .page-v2 .photos-albums {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .page-v2 .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-v2 .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .photo-lightbox {
    padding: 64px 12px 48px;
  }

  .photo-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .photo-lightbox__prev { left: 6px; }
  .photo-lightbox__next { right: 6px; }
}

/* =========================================================
   Videos
   ========================================================= */

.page-v2 .page-banner--videos {
  min-height: 280px;
}

.page-v2 .page-banner--videos .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(140, 20, 28, 0.94) 0%,
    rgba(237, 50, 55, 0.72) 40%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--videos .page-banner__media img {
  object-position: center 40%;
}

.page-v2 .section-videos {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(237, 50, 55, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 100%, rgba(42, 95, 176, 0.07), transparent 50%),
    #fff;
}

.page-v2 .videos-intro {
  margin-bottom: 28px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
}

.page-v2 .videos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
}

.page-v2 .video-row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px 18px;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(30, 70, 135, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(20, 40, 80, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-v2 .video-row:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 50, 55, 0.22);
  box-shadow: 0 14px 30px rgba(20, 40, 80, 0.1);
}

.page-v2 .video-row__thumb {
  position: relative;
  display: block;
  width: 168px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #0f172a;
  flex-shrink: 0;
}

.page-v2 .video-row__thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.page-v2 .video-row:hover .video-row__thumb img {
  transform: scale(1.05);
}

.page-v2 .video-row__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.28);
  color: #fff;
}

.page-v2 .video-row__play i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(237, 50, 55, 0.92);
  font-size: 0.75rem;
  padding-left: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-v2 .video-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.page-v2 .video-row__meta {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ed3237;
}

.page-v2 .video-row__title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1e4687;
}

.page-v2 .video-row__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--el-muted);
}

.page-v2 .video-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #2a5fb0;
}

.page-v2 .video-row:hover .video-row__cta {
  color: #ed3237;
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .video-row,
  .page-v2 .video-row__thumb img {
    transition: none;
  }

  .page-v2 .video-row:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .page-v2 .videos-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-v2 .video-row {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .page-v2 .video-row__thumb {
    width: 120px;
  }

  .page-v2 .video-row__title {
    font-size: 0.98rem;
  }

  .page-v2 .video-row__desc {
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .page-v2 .video-row {
    grid-template-columns: 1fr;
  }

  .page-v2 .video-row__thumb {
    width: 100%;
  }
}

/* =========================================================
   Testimonials page
   ========================================================= */

.page-v2 .page-banner--testimonials {
  min-height: 280px;
}

.page-v2 .page-banner--testimonials .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(140, 20, 28, 0.94) 0%,
    rgba(237, 50, 55, 0.72) 40%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .page-banner--testimonials .page-banner__media img {
  object-position: center 42%;
}

.page-v2 .section-testimonials-page {
  padding-top: 40px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(237, 50, 55, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 20%, rgba(42, 95, 176, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 40%, #fff 100%);
}

.page-v2 .testimonials-page-intro {
  margin-bottom: 36px;
  text-align: left;
  margin-left: 0;
  max-width: 640px;
}

.page-v2 .t-featured {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: center;
  margin-bottom: 36px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(30, 70, 135, 0.96), rgba(18, 48, 95, 0.94));
  color: #fff;
  box-shadow: 0 24px 50px rgba(20, 40, 80, 0.2);
  overflow: hidden;
  position: relative;
}

.page-v2 .t-featured--text {
  grid-template-columns: 1fr;
}

.page-v2 .t-featured::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 50, 55, 0.35), transparent 70%);
  pointer-events: none;
}

.page-v2 .t-featured__media {
  position: relative;
  z-index: 1;
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.page-v2 .t-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.page-v2 .t-featured__copy {
  position: relative;
  z-index: 1;
}

.page-v2 .t-featured__quote {
  display: block;
  margin-bottom: 12px;
  font-size: 1.6rem;
  color: rgba(246, 202, 67, 0.9);
}

.page-v2 .t-featured blockquote {
  margin: 0 0 18px;
}

.page-v2 .t-featured blockquote p {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.page-v2 .t-featured footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-v2 .t-featured footer strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.page-v2 .t-featured footer span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-v2 .t-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-v2 .t-card {
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(30, 70, 135, 0.08);
  box-shadow: 0 12px 28px rgba(20, 40, 80, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.page-v2 .t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 40, 80, 0.1);
}

.page-v2 .t-card--wide {
  grid-column: 1 / -1;
  max-width: 720px;
}

.page-v2 .t-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.page-v2 .t-card__person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 2px rgba(42, 95, 176, 0.18),
    0 8px 18px rgba(20, 40, 80, 0.12);
}

.page-v2 .t-card__person strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #1e4687;
  line-height: 1.25;
}

.page-v2 .t-card__person span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.84rem;
  color: var(--el-muted);
}

.page-v2 .t-card blockquote {
  margin: 0;
}

.page-v2 .t-card blockquote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .page-v2 .t-card {
    transition: none;
  }

  .page-v2 .t-card:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .page-v2 .t-featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px 28px;
  }

  .page-v2 .t-featured__quote {
    margin-inline: auto;
  }

  .page-v2 .t-featured footer {
    align-items: center;
  }
}

@media (max-width: 700px) {
  .page-v2 .t-grid {
    grid-template-columns: 1fr;
  }

  .page-v2 .t-card--wide {
    max-width: none;
  }

  .page-v2 .t-card__person img {
    width: 56px;
    height: 56px;
  }
}

/* =========================================================
   Brochure download page + modal
   ========================================================= */

.page-v2 .page-banner--brochure {
  min-height: 280px;
}

.page-v2 .page-banner--brochure .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(6, 24, 51, 0.94) 0%,
    rgba(30, 70, 135, 0.78) 40%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .section-brochure {
  padding-top: 48px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(42, 95, 176, 0.1), transparent 55%),
    #f7f9fc;
}

.page-v2 .brochure-panel {
  max-width: 640px;
}

.page-v2 .brochure-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .brochure-panel > p {
  margin: 0 0 22px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.brochure-modal-open {
  overflow: hidden;
}

.brochure-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1200;
}

.brochure-modal-overlay.is-open {
  display: block;
}

.brochure-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1201;
  width: min(450px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px 24px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brochure-modal.is-open {
  display: block;
}

.brochure-modal__title {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #004b87;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.brochure-modal__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 15px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: #0f1c33;
  background: #fff;
  outline: none;
}

.brochure-modal__input:focus {
  border-color: #004b87;
  box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.14);
}

.brochure-modal__input.is-valid {
  border-color: #1f9d57;
  border-width: 2px;
}

.brochure-modal__input.is-invalid {
  border-color: #c41e24;
  border-width: 2px;
}

.brochure-modal__success {
  display: none;
  margin: 0 0 12px;
  font-weight: 700;
  color: #1f9d57;
}

.brochure-modal__success.is-visible {
  display: block;
}

.brochure-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.brochure-modal__btn {
  min-height: 44px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.brochure-modal__btn--primary {
  background: #004b87;
  color: #fff;
}

.brochure-modal__btn--primary:hover {
  background: #003966;
}

.brochure-modal__btn--primary:disabled {
  opacity: 0.7;
  cursor: wait;
}

.brochure-modal__btn--secondary {
  background: #ccc;
  color: #333;
}

.brochure-modal__btn--secondary:hover {
  background: #b8b8b8;
}

@media (max-width: 480px) {
  .brochure-modal {
    padding: 22px 16px 18px;
  }

  .brochure-modal__title {
    font-size: 1.1rem;
  }

  .brochure-modal__actions {
    flex-direction: column;
  }

  .brochure-modal__btn {
    width: 100%;
  }
}

/* =========================================================
   Contact Us
   ========================================================= */

.page-v2 .page-banner--contact {
  min-height: 280px;
}

.page-v2 .page-banner--contact .page-banner__patch {
  background: linear-gradient(
    90deg,
    rgba(6, 24, 51, 0.94) 0%,
    rgba(30, 70, 135, 0.78) 38%,
    rgba(42, 95, 176, 0.28) 72%,
    rgba(42, 95, 176, 0) 100%
  );
}

.page-v2 .section-contact {
  padding-top: 48px;
  padding-bottom: 56px;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(42, 95, 176, 0.1), transparent 55%),
    #f7f9fc;
}

.page-v2 .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 36px;
  align-items: start;
}

.page-v2 .contact-info__block {
  margin: 0 0 22px;
}

.page-v2 .contact-info h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .contact-info h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .contact-info p {
  margin: 0;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
}

.page-v2 .contact-info a {
  color: #1e4687;
  font-weight: 700;
  text-decoration: none;
}

.page-v2 .contact-info a:hover {
  color: #ed3237;
}

.page-v2 .contact-form-panel {
  padding: 28px 26px 30px;
  border: 1px solid rgba(30, 70, 135, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.page-v2 .contact-form-panel__head {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(30, 70, 135, 0.1);
}

.page-v2 .contact-form-panel__head h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .contact-form-panel__head p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.68);
}

.page-v2 .contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.page-v2 .contact-form-field--full {
  grid-column: 1 / -1;
}

.page-v2 .contact-form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2744;
}

.page-v2 .contact-form-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(30, 70, 135, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #0f1c33;
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-v2 .contact-form-input:focus {
  border-color: #2a5fb0;
  box-shadow: 0 0 0 3px rgba(42, 95, 176, 0.16);
}

.page-v2 .contact-form-input.is-invalid {
  border-color: #c41e24;
  border-width: 2px;
}

.page-v2 .contact-form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.page-v2 .contact-form-actions {
  margin-top: 20px;
}

.page-v2 .contact-captcha__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-v2 .contact-captcha__img {
  display: block;
  height: 46px;
  width: auto;
  max-width: 140px;
  border-radius: 10px;
  border: 1px solid rgba(30, 70, 135, 0.22);
  background: #f5f8fc;
}

.page-v2 .contact-captcha__refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(30, 70, 135, 0.22);
  background: #fff;
  color: #1e4687;
  text-decoration: none;
  flex-shrink: 0;
}

.page-v2 .contact-captcha__refresh:hover {
  background: #eef3fb;
  color: #16356a;
}

.page-v2 .contact-captcha__input {
  flex: 1 1 160px;
  min-width: 140px;
  max-width: 220px;
}

.page-v2 .section-contact-map {
  padding-top: 12px;
  padding-bottom: 64px;
  background: #fff;
}

.page-v2 .contact-map-title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e4687;
}

.page-v2 .contact-map {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(30, 70, 135, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.page-v2 .contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
  max-width: 100%;
}

@media (max-width: 900px) {
  .page-v2 .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-v2 .section-contact {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .page-v2 .contact-form-panel {
    padding: 22px 16px 24px;
  }

  .page-v2 .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .page-v2 .contact-form-actions .btn-flashy {
    width: 100%;
  }

  .page-v2 .contact-map iframe {
    height: 320px;
  }
}

