/* =====================================================================
   Trade Mission landing page (page-trade-mission.php)
   Navy + gold accent (no green). Tokens come from assets/css/style.css.
   ===================================================================== */
.tm {
  --tm-blue: #2456c8;
  --tm-soft: #eef1f7;
  --tm-accent-soft: #ecf9ed;
  --tm-accent-dark: var(--ast-accent-dark);
  color: var(--ast-ink);
  background: var(--ast-bg, #f6f7fb);
}

.tm * {
  box-sizing: border-box;
}

.tm-wrap {
  width: 100%;
  max-width: var(--ast-maxw, 1200px);
  margin: 0 auto;
  padding-inline: 20px;
}

.tm-accent {
  color: var(--ast-accent);
}

.tm-section__head {
  text-align: center;
  margin-bottom: 20px;
}

/* Shared arrow / check glyphs */
.tm-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

[dir="rtl"] .tm-arrow {
  transform: scaleX(-1);
}

.tm-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ast-accent);
}

.tm-ico {
  width: 100%;
  height: 100%;
  fill: currentColor;
  object-fit: contain;
}

/* VIP why us icon */
.tmv-why__icon {
  width: 48px;
  height: 48px;
}

/* Shared buttons */
.tm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--ast-radius-sm, 10px);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.tm-btn:hover {
  transform: translateY(-1px);
}

/* Shared section heading */
.tm-section__title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-section__lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ast-muted);
}

/* =====================================================================
   HERO
   ===================================================================== */
.tm-hero {
  background: linear-gradient(180deg, #fff 0%, var(--ast-bg, #f6f7fb) 100%);
  padding-block: 36px 56px;
}

.tm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tm-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ast-muted);
  margin-bottom: 22px;
}

.tm-breadcrumb a {
  color: var(--ast-muted);
  text-decoration: none;
  max-width: 100px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tm-breadcrumb a:hover {
  color: var(--ast-accent);
}

.tm-breadcrumb__current {
  color: var(--ast-primary);
  font-weight: 700;
}

.tm-breadcrumb__sep {
  color: var(--ast-line);
}

.tm-hero__title {
  margin: 0 0 18px;
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-hero__ex {
  color: var(--ast-primary);
}

.tm-hero__subtitle {
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ast-ink);
  max-width: 520px;
}

.tm-hero__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.tm-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ast-dark);
}

.tm-hero__feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-primary);
}

/* Hero media + floating exhibition card */
.tm-hero__media {
  position: relative;
  min-height: 320px;
}

.tm-hero__img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--ast-radius, 14px);
  display: block;
}

.tm-hero__card {
  position: absolute;
  inset-inline-end: 18px;
  inset-block-end: -64px;
  width: min(330px, 86%);
  background: #fff;
  border-radius: var(--ast-radius, 14px);
  box-shadow: 0 20px 50px rgba(15, 27, 76, 0.18);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* When there is no hero image, the card sits in normal flow. */
.tm-hero__media:not(:has(.tm-hero__img)) {
  min-height: 0;
}

.tm-hero__media:not(:has(.tm-hero__img)) .tm-hero__card {
  position: static;
  inset: auto;
  width: 100%;
}

.tm-hero__card-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ast-ink);
}

.tm-hero__card-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ast-accent);
}

.tm-hero__card-name strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-hero__card-subtitle {
  margin: 0 0 2px;
  padding-inline-start: 28px;
  font-size: 0.86rem;
  color: var(--tm-blue);
  font-weight: 600;
}

.tm-hero__card-date {
  display: block;
}

.tm-hero__card-link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ast-accent);
  text-decoration: none;
}

.tm-hero__card-link:hover {
  color: var(--tm-accent-dark);
}

/* =====================================================================
   WHAT IS TRADE MISSION
   ===================================================================== */
.tm-about {
  padding-block: 56px;
}

.tm-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 36px 28px;
}

.tm-about__col {
  text-align: center;
  padding-inline: 14px;
  position: relative;
}

.tm-about__col:not(:first-child)::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--ast-line);
}

.tm-about__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--ast-primary);
}

.tm-about__col-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-about__col-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ast-muted);
}

/* =====================================================================
   CHOOSE YOUR PROGRAM
   ===================================================================== */
.tm-programs {
  padding-block: 20px 64px;
}

.tm-programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.tm-programs__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.tm-prog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
}

.tm-prog__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tm-prog__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--ast-radius-sm, 10px);
  color: #fff;
}

.tm-prog--accent .tm-prog__icon {
  background: var(--ast-accent);
}

.tm-prog--primary .tm-prog__icon {
  background: var(--ast-primary);
}

.tm-prog__icon .tm-ico {
  width: 30px;
  height: 30px;
}

.tm-prog__heading {
  min-width: 0;
  flex: 1;
}

.tm-prog__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tm-prog__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-prog__badge {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.tm-prog--accent .tm-prog__badge {
  background: var(--ast-accent);
}

.tm-prog--primary .tm-prog__badge {
  background: var(--ast-primary);
}

.tm-prog__subtitle {
  margin: 4px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--tm-blue);
}

.tm-prog__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ast-ink);
}

.tm-prog__body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.tm-prog--primary .tm-prog__body {
  grid-template-columns: 1fr;
}

.tm-prog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.tm-prog__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ast-dark);
}

.tm-prog__tick {
  flex-shrink: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--ast-accent);
}

.tm-prog__tick .tm-check {
  color: var(--ast-accent);
  fill: currentColor;
}

.tm-prog__tick .tm-check polyline {
  color: #fff;
}

.tm-prog__highlights {
  display: none;
  gap: 16px;
  background: var(--tm-soft);
  border-radius: var(--ast-radius-sm, 10px);
  padding: 18px;
}

.tm-prog__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tm-prog__highlight-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-primary);
}

.tm-prog__highlight-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-prog__highlight-text {
  display: block;
  font-size: 0.82rem;
  color: var(--ast-muted);
}

.tm-prog__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  padding: 14px 16px;
  border-radius: var(--ast-radius-sm, 10px);
  background: var(--tm-soft);
}

.tm-prog__price-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ast-accent);
}

.tm-prog__price-unit {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ast-dark);
}

.tm-prog__price-sub {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--ast-muted);
}

.tm-prog__btn {
  margin-top: auto;
  width: 100%;
  color: #fff;
}

.tm-prog--accent .tm-prog__btn {
  background: var(--ast-accent);
}

.tm-prog--accent .tm-prog__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

.tm-prog--primary .tm-prog__btn {
  background: var(--ast-primary);
}

.tm-prog--primary .tm-prog__btn:hover {
  background: var(--ast-dark, #12204f);
  color: #fff;
}

.tm-prog__footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-inline: 6px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

.tm-prog__footnote-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  color: var(--ast-primary);
}

/* =====================================================================
   VALUE / HELP / CHAT BAND
   ===================================================================== */
.tm-band {
  padding-block: 16px 64px;
}

.tm-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 30px 34px;
}

.tm-band__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tm-band__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

.tm-band__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tm-band__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ast-muted);
}

.tm-band__text strong {
  color: var(--ast-accent);
}

.tm-band__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.tm-btn--accent-soft {
  background: #fff;
  border-color: var(--ast-accent);
  color: var(--ast-accent);
}

.tm-btn--accent-soft:hover {
  background: var(--ast-accent);
  color: #fff;
}

.tm-btn--accent-soft .tm-ico {
  width: 20px;
  height: 20px;
}

.tm-band__note {
  font-size: 0.82rem;
  color: var(--ast-muted);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .tm-hero__inner {
    grid-template-columns: 1fr;
  }
  .tm-hero__title {
    font-size: 2.4rem;
  }
  .tm-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .tm-about__col:nth-child(2)::before {
    display: none;
  }
  .tm-band__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tm-band__cta {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .tm-hero__title {
    font-size: 2rem;
  }
  .tm-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tm-programs__grid {
    grid-template-columns: 1fr;
  }
  .tm-prog__body {
    grid-template-columns: 1fr;
  }
  .tm-about__grid {
    grid-template-columns: 1fr;
  }
  .tm-about__col {
    padding-inline: 0;
  }
  .tm-about__col::before {
    display: none !important;
  }
}

/* =====================================================================
   TRADE MISSION PROGRAMME PAGE (page-tm-program.php) — .tmp-*
   ===================================================================== */
.tmp-section__title {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 22px;
}

.tmp-section__title--center {
  text-align: center;
}

/* HERO */
.tmp-hero {
  position: static;
  margin-bottom: -50px;
  background: var(--ast-primary);
  background-image:
    linear-gradient(
      90deg,
      rgba(27, 42, 107, 0.96) 0%,
      rgba(27, 42, 107, 0.78) 42%,
      rgba(27, 42, 107, 0.35) 100%
    ),
    var(--tmp-hero, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-block: 30px 100px;
}

.tmp-hero__inner {
  position: relative;
}

.tmp-hero .tm-breadcrumb,
.tmp-hero .tm-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.tmp-hero .tm-breadcrumb a:hover {
  color: #fff;
}

.tmp-hero .tm-breadcrumb__current {
  color: #fff;
}

.tmp-hero .tm-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
}

.tmp-hero__text {
  max-width: 540px;
  margin-top: 30px;
}

.tmp-hero__title {
  margin: 0 0 16px;
  font-size: 2.8rem;
  line-height: 1.14;
  font-weight: 800;
  color: #fff;
}

.tmp-hero__title .tm-accent {
  color: var(--ast-accent);
}

.tmp-hero__subtitle {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

/* LAYOUT: main + sidebar */
.tmp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}

.tmp-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Shared card chrome */
.tmp-steps,
.tmp-audience,
.tmp-services,
.tmp-priceband,
.tmp-form,
.tmp-box,
.tmp-vip {
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
}

/* PROCESS STEPS */
.tmp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 26px 28px;
}

.tmp-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.tmp-step:not(:first-child)::before {
  content: "";
  position: absolute;
  inset-inline-start: -12px;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: var(--ast-line);
}

.tmp-step__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  color: var(--ast-accent);
  border: 1px solid #eee;
  border-radius: 50%;
  padding: 12px;
}

.tmp-step__title {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tmp-step__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

/* WHO IS THIS FOR */
.tmp-audience,
.tmp-services {
  padding: 30px 28px;
}

.tmp-audience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tmp-audience__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 12px;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius-sm, 10px);
  background: var(--ast-bg, #f6f7fb);
}

.tmp-audience__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

.tmp-audience__text {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ast-primary);
}

/* SERVICES INCLUDED */
.tmp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
}

.tmp-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ast-line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ast-dark);
}

.tmp-service__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-primary);
}

/* PRICE BAND (full width) */
.tmp-priceband {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  background: var(--tm-soft);
  border-style: dashed;
}

.tmp-priceband__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ast-muted);
}

/* Price box (shared band + aside) */
.tmp-pricebox {
  display: flex;
  flex-direction: column;
}

.tmp-pricebox--aside {
  align-items: center;
  text-align: center;
}

.tmp-pricebox__label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ast-accent);
}

.tmp-pricebox__value {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ast-accent);
}

.tmp-pricebox__unit {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ast-dark);
}

.tmp-pricebox__sub {
  font-size: 0.8rem;
  color: var(--ast-muted);
  margin-top: 2px;
}

/* APPLICATION FORM */
.tmp-form {
  padding: 32px 30px;
}

.tmp-form__body {
  margin-top: 6px;
}

.tmp-form__placeholder {
  padding: 28px;
  text-align: center;
  color: var(--ast-muted);
  background: var(--ast-bg, #f6f7fb);
  border: 1px dashed var(--ast-line);
  border-radius: var(--ast-radius-sm, 10px);
}

.tmp-form__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ast-primary);
}

.tmp-form__note strong {
  color: var(--ast-accent);
}

/* Make the embedded Gravity Form submit button match the accent CTA. */
.tmp-form .gform_button,
.tmp-form input[type="submit"] {
  width: 100%;
  padding: 15px 26px;
  border: none;
  border-radius: var(--ast-radius-sm, 10px);
  background: var(--ast-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s ease;
}

.tmp-form .gform_button:hover,
.tmp-form input[type="submit"]:hover {
  background: var(--tm-accent-dark);
}

/* SIDEBAR */
.tmp-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.tmp-box {
  display: flex;
  flex-direction: column;
  height: calc(100% + 18px);
  padding: 22px;
}

.tmp-box--center {
  text-align: center;
}

.tmp-box__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ast-primary);
}

/* Overview */
.tmp-overview__exhibition {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ast-line);
  display: grid;
  gap: 14px;
}

.tmp-overview__details {
  display: grid;
  gap: 14px;
}

.tmp-overview__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tmp-overview__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

.tmp-overview__icon svg {
  width: 18px;
  height: 18px;
}

.tmp-overview__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tmp-overview__val {
  display: block;
  font-size: 0.82rem;
  color: var(--ast-muted);
}

/* Contact 48h note */
.tmp-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--tm-soft);
  border-color: transparent;
}

.tmp-contact__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ast-ink);
}

.tmp-contact__text strong {
  color: var(--ast-accent);
}

.tmp-contact__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

/* Chat */
.tmp-chat__btn {
  width: 100%;
  background: var(--ast-accent);
  color: #fff;
}

.tmp-chat__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

.tmp-chat__btn .tm-ico {
  width: 20px;
  height: 20px;
}

.tmp-chat__note {
  margin: 12px 0 0;
  font-size: 0.84rem;
  color: var(--ast-muted);
}

/* VIP promo */
.tmp-vip {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  color: var(--ast-primary);
  background: var(--ast-primary);
  background-image:
    linear-gradient(180deg, rgba(27, 42, 107, 0), rgba(18, 32, 79, 0.1)),
    var(--tmp-vip, none);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.tmp-vip__title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
}

.tmp-vip__text {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.tmp-vip__btn {
  width: 100%;
  background: var(--ast-accent);
  color: #fff;
}

.tmp-vip__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .tmp-layout {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .tmp-aside {
    position: static;
    margin: 0;
  }
  .tmp-audience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .tmp-hero__title {
    font-size: 2rem;
  }
  .tmp-steps {
    grid-template-columns: 1fr;
  }
  .tmp-step:not(:first-child)::before {
    display: none;
  }
  .tmp-audience__grid {
    grid-template-columns: 1fr 1fr;
  }
  .tmp-services__grid {
    grid-template-columns: 1fr;
  }
  .tmp-priceband {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =====================================================================
   TRADE MISSION VIP PAGE (page-tm-vip.php) — .tmv-*
   ===================================================================== */
/* Hero: text + feature box */
.tmv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
}

.tmv-hero__tagline {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ast-accent);
}

.tmv-hero__features {
  list-style: none;
  margin: 0;
  padding: 22px 24px;
  display: grid;
  gap: 16px;
  background: rgba(13, 23, 60, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ast-radius, 14px);
  backdrop-filter: blur(4px);
}

.tmv-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.tmv-hero__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ast-accent);
  border-radius: 50%;
  padding: 4px;
}

.tmv-hero__feature-icon .tm-check {
  color: var(--ast-accent);
}

/* Numbered steps */
.tmv-step {
  position: relative;
  align-items: center;
}

.tmv-step__num {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ast-accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
}

/* Two content cards filling the space the form used to take */
.tmv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tmv-card__title {
  font-size: 1.15rem;
}

.tmv-card__title-ico {
  width: 22px;
  height: 22px;
  color: var(--ast-accent);
}

.tmv-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--ast-radius-sm, 10px);
  margin-top: auto;
  display: block;
}

/* Why-choose checklist */
.tmv-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.tmv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ast-dark);
}

.tmv-checklist__tick {
  flex-shrink: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--ast-accent);
}

.tmv-checklist__tick .tm-check {
  color: var(--ast-accent);
}

/* Who-uses list */
.tmv-wholist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.tmv-wholist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ast-primary);
}

.tmv-wholist__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

/* Support box */
.tmv-support__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tmv-support__title .tm-ico {
  width: 24px;
  height: 24px;
}

.tmv-support__note {
  margin: 0 0 16px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

/* VIP form */
#input_6_27,
#input_6_34,
#input_6_35,
#input_6_17,
#input_6_24,
#input_6_25 {
  flex-direction: row;
  flex-wrap: wrap;
}

/* Safe box */
.tmp-side-widget {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tmp-side-widget__header {
  display: flex;
  align-items: center;
}

.tmp-side-widget__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  color: var(--ast-accent);
}

.tmp-side-widget__icon svg {
  width: 24px;
  height: 24px;
}

.tmp-side-widget__title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.tmp-side-widget__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

@media (max-width: 1024px) {
  .tmv-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .tmv-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  #field_6_28,
  #field_6_29,
  #field_6_30,
  #field_6_31,
  #field_6_19,
  #field_6_20,
  #field_6_32,
  #field_6_33 {
    grid-column: span 6;
  }
  #field_6_33 {
    grid-column: 7 / 13;
  }
}

/* =====================================================================
   EXHIBIT AS EXHIBITOR PAGE (page-exhibit-exhibitor.php) — .exx-*
   Reuses .tm-hero / .tm-breadcrumb / .tm-wrap / .tm-btn / .tm-section__*.
   Navy + gold accent (no green).
   ===================================================================== */

/* Hero trust badges: two side-by-side */
.exx-hero__features {
  grid-template-columns: repeat(2, max-content);
  gap: 16px 36px;
}

/* SUPPORT: main column (cards + why + how it works) + sidebar */
.exx-support {
  padding-block: 56px;
}

.exx-support__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.exx-support__main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

.exx-support__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Section heads for the Why / How-It-Works blocks inside the main column */
.exx-block__head {
  margin-bottom: 18px;
  text-align: center;
}

.exx-block__head .tm-section__title {
  font-size: 1.4rem;
}

/* Service card */
.exx-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
}

.exx-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: var(--ast-radius-sm, 10px);
  color: #fff;
}

.exx-card--accent .exx-card__icon {
  background: var(--ast-accent);
}

.exx-card--primary .exx-card__icon {
  background: var(--ast-primary);
}

.exx-card__icon .tm-ico,
.exx-card__icon-svg {
  width: 30px;
  height: 30px;
}

.exx-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exx-card--accent .exx-card__num {
  color: var(--ast-accent);
}

.exx-card--primary .exx-card__num {
  color: var(--ast-primary);
}

.exx-card__subtitle {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

.exx-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.exx-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ast-dark);
}

.exx-card__tick {
  flex-shrink: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.exx-card--accent .exx-card__tick {
  color: var(--ast-accent);
}

.exx-card--primary .exx-card__tick {
  color: var(--ast-primary);
}

.exx-card__tick .tm-check {
  color: inherit;
  fill: currentColor;
}

.exx-card__tick .tm-check polyline {
  color: #fff;
}

.exx-card__btn {
  margin-top: auto;
  width: 100%;
  color: #fff;
}

.exx-card--accent .exx-card__btn {
  background: var(--ast-accent);
}

.exx-card--accent .exx-card__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

.exx-card--primary .exx-card__btn {
  background: var(--ast-primary);
}

.exx-card--primary .exx-card__btn:hover {
  background: var(--ast-dark, #12204f);
  color: #fff;
}

.exx-card__footnote {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--ast-radius-sm, 10px);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
  color: var(--ast-muted);
}

.exx-card--accent .exx-card__footnote {
  background: var(--tm-accent-soft);
  color: var(--tm-accent-dark);
}

.exx-card--primary .exx-card__footnote {
  background: var(--tm-soft);
  color: var(--tm-blue);
}

/* Sidebar */
.exx-support__aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exx-aside-box {
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
  padding: 22px;
}

.exx-aside-box__title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ast-accent);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exx-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.exx-options__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exx-options__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ast-radius-sm, 10px);
  background: var(--tm-soft);
  color: var(--ast-primary);
}

.exx-options__icon .tm-ico {
  width: 20px;
  height: 20px;
}

.exx-options__body {
  display: flex;
  flex-direction: column;
}

.exx-options__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exx-options__text {
  font-size: 0.8rem;
  color: var(--ast-muted);
}

/* Need help choosing */
.exx-help__text {
  margin: 0 0 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

.exx-help__actions {
  display: grid;
  gap: 10px;
}

.exx-help__chat,
.exx-help__contact {
  width: 100%;
  font-size: 0.9rem;
  background: #fff;
}

.exx-help__chat {
  border-color: var(--ast-accent);
  color: var(--ast-accent);
}

.exx-help__chat:hover {
  background: var(--ast-accent);
  color: #fff;
}

.exx-help__contact {
  border-color: var(--ast-primary);
  color: var(--ast-primary);
}

.exx-help__contact:hover {
  background: var(--ast-primary);
  color: #fff;
}

.exx-help__chat .tm-ico,
.exx-help__contact .tm-ico {
  width: 18px;
  height: 18px;
}

/* Download guide promo */
.exx-guide {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: var(--ast-radius, 14px);
  background: linear-gradient(
    160deg,
    var(--ast-primary) 0%,
    var(--ast-dark, #12204f) 100%
  );
  color: #fff;
}

.exx-guide__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ast-accent);
}

.exx-guide__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.exx-guide__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.exx-guide__img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  margin: 8px 0;
  display: block;
}

.exx-guide__btn {
  width: 100%;
  background: var(--ast-accent);
  color: #fff;
}

.exx-guide__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

.exx-guide__btn svg {
  width: 18px;
  height: 18px;
}

/* WHY WORK WITH US — inner block of the support main column */
.exx-why {
  padding-block: 0;
}

.exx-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 32px 28px;
}

.exx-why__col {
  text-align: center;
  padding-inline: 14px;
  position: relative;
}

/* Divider between the two columns of each row */
.exx-why__col:nth-child(even)::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--ast-line);
}

.exx-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--ast-primary);
}

.exx-why__icon .tm-ico {
  width: 32px;
  height: 32px;
}

.exx-why__col-title {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exx-why__col-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--ast-muted);
}

/* HOW IT WORKS — inner block of the support main column */
.exx-steps__section {
}

.exx-steps {
  padding-block: 0;
}

.exx-steps__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.exx-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 24px;
}

.exx-step__icon {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-primary);
}

.exx-step__num {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ast-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.exx-step__icon .tm-ico {
  width: 30px;
  height: 30px;
}

.exx-step__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exx-step__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

/* CTA BAND */
.exx-cta {
  padding-block: 8px 56px;
}

.exx-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--ast-primary) 0%,
    var(--ast-dark, #12204f) 100%
  );
  border-radius: var(--ast-radius, 14px);
  padding: 30px 36px;
  color: #fff;
}

.exx-cta__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

.exx-cta__icon .tm-ico {
  width: 44px;
  height: 44px;
}

.exx-cta__title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.exx-cta__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.exx-cta__btn {
  flex-shrink: 0;
  background: var(--ast-accent);
  color: #fff;
}

.exx-cta__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

/* STATS BAR */
.exx-stats {
  padding-block: 0 56px;
}

.exx-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--ast-line);
  padding-top: 28px;
}

.exx-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exx-stat__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ast-accent);
}

.exx-stat__body {
  display: flex;
  flex-direction: column;
}

.exx-stat__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exx-stat__text {
  font-size: 0.82rem;
  color: var(--ast-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .exx-support__layout {
    grid-template-columns: 1fr;
  }
  .exx-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .exx-cta__icon {
    margin: 0 auto;
  }
  .exx-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
}

@media (max-width: 720px) {
  .exx-hero__features {
    grid-template-columns: 1fr;
  }
  .exx-support__cards {
    grid-template-columns: 1fr;
  }
  .exx-steps__grid {
    grid-template-columns: 1fr;
  }
  .exx-why__grid {
    grid-template-columns: 1fr;
  }
  .exx-why__col {
    padding-inline: 0;
  }
  .exx-why__col::before {
    display: none !important;
  }
  .exx-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   EXHIBITOR SERVICE SUB-PAGES (page-exx-service.php)
   accent = Registration Assistance · primary = Full Exhibitor Support
   ===================================================================== */
.exs {
  --exs-accent: var(--ast-accent);
  --exs-accent-dark: var(--tm-accent-dark);
  --exs-soft: var(--tm-accent-soft);
}

.exs--primary {
  --exs-accent: var(--ast-primary);
  --exs-accent-dark: var(--ast-dark, #12204f);
  --exs-soft: var(--tm-soft);
}

.exs-glyph {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* HERO */
.exs-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--exs-accent);
}

.exs-hero__tagline {
  margin: -6px 0 16px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--exs-accent);
}

.exs-hero__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 440px;
  border-radius: var(--ast-radius, 14px);
  background: linear-gradient(
    135deg,
    var(--ast-primary) 0%,
    var(--ast-dark, #12204f) 100%
  );
  color: rgba(255, 255, 255, 0.5);
}

.exs-hero__ph .exs-glyph {
  width: 84px;
  height: 84px;
}

.exs-badges {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.exs-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius-sm, 10px);
  padding: 10px 14px;
  box-shadow: 0 8px 22px rgba(15, 27, 76, 0.04);
}

.exs-badge__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--exs-accent);
}

.exs-badge__icon .exs-glyph,
.exs-badge__icon .tm-ico {
  width: 100%;
  height: 100%;
}

.exs-badge__text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ast-dark);
  line-height: 1.25;
}

/* INTRO CALLOUTS BAND (Full Support) */
.exs-callouts {
  padding-block: 28px 8px;
}

.exs-callouts__band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--exs-soft);
  border-radius: var(--ast-radius, 14px);
  padding: 28px 32px;
}

.exs-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.exs-callout__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--exs-accent);
  color: #fff;
}

.exs-callout__icon .exs-glyph,
.exs-callout__icon .tm-ico {
  width: 26px;
  height: 26px;
}

.exs-callout__title {
  margin: 2px 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exs-callout__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

/* MAIN LAYOUT: content + sidebar */
.exs-main {
  padding-block: 36px 8px;
}

.exs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.exs-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.exs-aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Shared boxes */
.exs-box {
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
}

.exs-box__title {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ast-primary);
}

/* Lead form */
.exs-form {
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
}

.exs-form__title {
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exs-form__placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px dashed var(--ast-line);
  border-radius: var(--ast-radius-sm, 10px);
  padding: 28px;
  text-align: center;
  color: var(--ast-muted);
}

.exs-form__placeholder strong {
  color: var(--ast-primary);
  font-size: 1.02rem;
}

.exs-form__placeholder span {
  font-size: 0.86rem;
  line-height: 1.6;
}

.exs-form__note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ast-muted);
}

/* Service includes */
.exs-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.exs-includes__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ast-dark);
}

.exs-includes__tick {
  flex-shrink: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--exs-accent);
}

.exs-includes__tick .tm-check {
  color: inherit;
}

/* Why choose (feature box) */
.exs-why {
  background: linear-gradient(
    135deg,
    var(--ast-primary) 0%,
    var(--ast-dark, #12204f) 100%
  );
  border: none;
}

.exs-why__title {
  color: #fff;
}

.exs-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}

.exs-why__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.exs-why__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--ast-radius-sm, 10px);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ast-accent);
}

.exs-why__icon .exs-glyph,
.exs-why__icon .tm-ico {
  width: 24px;
  height: 24px;
}

.exs-why__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exs-why__item-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #fff;
}

.exs-why__item-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Important note (text box) */
.exs-note {
  background: var(--exs-soft);
  border-color: transparent;
  box-shadow: none;
}

.exs-note__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.exs-note__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--exs-accent);
}

.exs-note__text {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ast-ink);
}

.exs-note__text:last-child {
  margin-bottom: 0;
}

/* Sidebar — cross-sell promo */
.exs-promo {
  border-radius: var(--ast-radius, 14px);
  padding: 24px;
}

.exs--accent .exs-promo {
  background: linear-gradient(
    135deg,
    var(--ast-primary) 0%,
    var(--ast-dark, #12204f) 100%
  );
  color: #fff;
}

.exs--primary .exs-promo {
  background: #fff;
  border: 1px solid var(--ast-line);
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
}

.exs-promo__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
}

.exs--accent .exs-promo__title {
  color: #fff;
}

.exs--primary .exs-promo__title {
  color: var(--ast-primary);
}

.exs-promo__text {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.exs--accent .exs-promo__text {
  color: rgba(255, 255, 255, 0.82);
}

.exs--primary .exs-promo__text {
  color: var(--ast-muted);
}

.exs-promo__btn {
  width: 100%;
  background: var(--ast-accent);
  color: #fff;
}

.exs-promo__btn:hover {
  background: var(--tm-accent-dark);
  color: #fff;
}

/* Sidebar — support / questions */
.exs-support {
  background: #fff;
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius, 14px);
  box-shadow: 0 12px 34px rgba(15, 27, 76, 0.05);
  padding: 24px;
}

.exs-support__title {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ast-primary);
}

.exs-support__text {
  margin: 0 0 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ast-muted);
}

.exs-support__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exs-support__actions .tm-btn {
  width: 100%;
}

.exs-support__actions .exs-glyph,
.exs-support__actions .tm-ico {
  width: 18px;
  height: 18px;
}

.exs-support__chat {
  background: transparent;
  border-color: var(--ast-accent);
  color: var(--ast-accent);
}

.exs-support__chat:hover {
  background: var(--ast-accent);
  color: #fff;
}

.exs-support__contact {
  background: var(--ast-primary);
  color: #fff;
}

.exs-support__contact:hover {
  background: var(--ast-dark, #12204f);
  color: #fff;
}

/* Stats reuse .exx-stats; just spacing here */
.exs-stats {
  padding-block: 36px 56px;
}

.exs-stats .exx-stat__icon .exs-glyph {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .exs-layout {
    grid-template-columns: 1fr;
  }
  /* Assitance Service: when the sidebar stacks, show the promo before the
     Safe / What Next boxes. */
  .exs-aside--promo-first .exs-promo {
    order: -1;
  }
}

@media (max-width: 720px) {
  .exs-callouts__band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .exs-includes__list {
    grid-template-columns: 1fr;
  }
  .exs-why__grid {
    grid-template-columns: 1fr;
  }
  .exs-hero__tagline {
    font-size: 1.05rem;
  }
}
