/* ====================================================
   TABLE RESERVATIONS PAGE
   ==================================================== */

/* ---- Hero wrap (constrains sticky to hero+features zone only) ---- */
.tr-hero-wrap {
  position: relative;
}

/* ---- Hero ---- */
.tr-hero {
  position: sticky;
  top: 0;
  background-image: url("./images/table-reservations/table1.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.tr-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 160px;
}

.tr-hero__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 92px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 28px;
  letter-spacing: -1px;
}

.tr-hero__sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 100%;
  margin: 0 0 0;
  max-width: 480px;
}

.tr-hero .buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
}

.tr-hero .buttons button {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #000000;
  padding: 15px 13px;
  height: 40px;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.tr-hero .buttons button.get_free_quote_btn {
  background-color: #fff;
}

.tr-hero .buttons button.get_free_quote_btn:hover {
  background-color: #002574;
  color: #fff;
}

.tr-hero .buttons button.learn_more_btn {
  border: 1.5px solid #fff;
  background-color: transparent;
  color: #fff;
}

.tr-hero .buttons button.learn_more_btn:hover {
  background-color: #fff;
  color: #000;
}

/* ---- Features Wrapper ---- */
.tr-features {
  background: #f5f5f5;
  border-radius: 100px 100px 0 0;
  padding: 80px 0 80px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

/* ---- Individual Feature Row ---- */
.tr-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  /* align-items: center; */
  padding: 0 0 90px 0;
}

.tr-feat--reverse .tr-feat__text {
  order: 2;
}

.tr-feat--reverse .tr-feat__media {
  order: 1;
}

.tr-feat__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* ---- Feature Text ---- */
.tr-feat__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 64px;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.tr-feat__title--large {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.tr-feat__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 24px;
  font-weight: 400;
  color: #666666;
  line-height: 100%;
  margin: 0;
  max-width: 486px;
}

/* ---- Feature Media ---- */
.tr-feat__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tr-feat__media img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 24px;
  display: block;
}

.tr-page .restaurant-packages-section {
  padding-bottom: 100px;
}

.voip-phone-page .tr-feat__media img {
  padding: 115px 0;
}

@media (min-width: 1600px) {
  .tr-hero__inner {
    padding-top: 423px;
  }
}

@media (min-width: 1200px) {
  .tr-feat__title {
    font-size: 64px;
  }
}

@media (max-width: 1200px) {
  .tr-feat {
    gap: 56px;
  }

  .tr-feat__title--large {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .tr-hero__inner {
    padding-top: 180px;
    padding-bottom: 120px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .tr-hero__title {
    font-size: 60px;
  }

  .tr-hero__sub {
    font-size: 18px;
    max-width: 100%;
  }

  .tr-features {
    border-radius: 48px 48px 0 0;
    padding: 60px 0 80px;
    margin-top: -48px;
  }

  .tr-feat {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .tr-feat--reverse .tr-feat__text {
    order: 1;
  }

  .tr-feat--reverse .tr-feat__media {
    order: 2;
  }

  .tr-feat__title--large {
    font-size: 40px;
  }

  .tr-feat__media img {
    max-width: 100%;
  }

  .tr-page .restaurant-packages-section {
    padding: 20px 0 75px;
  }

  .voip-phone-page .tr-feat__media img {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .tr-hero__inner {
    padding-top: 120px;
    padding-bottom: 90px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tr-hero__title {
    font-size: 44px;
    letter-spacing: -0.5px;
  }

  .tr-hero__sub {
    font-size: 16px;
  }

  .tr-features {
    border-radius: 32px 32px 0 0;
    margin-top: -32px;
  }

  .tr-feat {
    padding: 48px 0;
    gap: 32px;
    padding-top: 0;
  }

  .tr-feat__title {
    font-size: 28px;
    line-height: 36px;
  }

  .tr-feat__title br {
    display: none;
  }

  .tr-feat__title--large {
    font-size: 32px;
  }

  .tr-feat__desc {
    font-size: 16px;
  }

  .tr-feat__text {
    gap: 2px;
  }

  .tr-features,
  .tr-feat {
    padding-bottom: 30px;
  }

  .tr-feat__desc,
  .tr-hero__sub {
    line-height: 25px;
  }
}

/* ====================================================
   TABLE RESERVATIONS — APPLE-STYLE REDESIGN  (trx-*)
   Self-contained namespace. Does not touch legacy .tr-*
   rules shared by voip-phone.php / online-orders.php.
   ==================================================== */
.tr-page {
  --trx-ink: #1d1d1f;
  --trx-sub: #6e6e73;
  --trx-line: #e8e8ed;
  --trx-bg: #ffffff;
  --trx-bg2: #f5f5f7;
  --trx-blue: #002574;
  --trx-radius: 16px;
}

/* ---- Shared section rhythm ---- */
.trx-section {
  padding: 110px 0;
  background: var(--trx-bg);
}

.trx-section + .trx-section {
  border-top: 1px solid var(--trx-line);
}

/* ---- Eyebrow ---- */
.trx-eyebrow {
  display: inline-block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--trx-blue);
  margin-bottom: 18px;
}

/* ---- Section heading block ---- */
.trx-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.trx-head__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--trx-ink);
  margin: 0 0 16px;
}

.trx-head__sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 21px;
  line-height: 1.4;
  color: var(--trx-sub);
  margin: 0;
}

.trx-head__title--left {
  text-align: left;
}

/* ---- Buttons ---- */
.trx-btn {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.trx-btn--primary {
  background: var(--trx-blue);
  color: #fff;
}

.trx-btn--primary:hover {
  background: #001a54;
}

.trx-btn--ghost {
  background: transparent;
  color: var(--trx-ink);
  border-color: var(--trx-line);
}

.trx-btn--ghost:hover {
  border-color: var(--trx-ink);
}

/* ---- Image placeholders ---- */
.trx-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
  text-align: center;
}

.trx-ph__label {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  line-height: 1.45;
  color: #86868b;
  padding: 24px;
  max-width: 88%;
}

.trx-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trx-ph--16x9 {
  aspect-ratio: 16 / 9;
}
.trx-ph--4x3 {
  aspect-ratio: 4 / 3;
}
.trx-ph--hero {
  aspect-ratio: 16 / 7.5;
  border-radius: 22px;
}
.trx-ph--phone {
  aspect-ratio: 9 / 18;
  max-width: 300px;
  width: 100%;
  border-radius: 26px;
  margin: 0 auto;
}
.trx-ph--icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin-bottom: 22px;
}
.trx-ph--icon .trx-ph__label {
  font-size: 10px;
  padding: 0;
  color: #b0b0b8;
}

/* ---- Hero ---- */
.trx-hero {
  background: var(--trx-bg);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.trx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 42%,
    #000 0%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 42%,
    #000 0%,
    transparent 78%
  );
  pointer-events: none;
}
.trx-hero > .container {
  position: relative;
  z-index: 1;
}

/* Hero — floating channel chips behind the device mockups */
.trx-herostage {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.trx-herostage .trx-devices {
  position: relative;
  z-index: 2;
}
.trx-fxbg {
  position: absolute;
  inset: -54px -82px;
  z-index: 0;
  pointer-events: none;
}
.trx-fxchip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #1d1d1f;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: fxFloat 7s ease-in-out infinite;
}
.trx-fxchip .ic {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #f3f3f5;
  color: var(--c, #1d1d1f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.trx-fxchip .ic svg {
  width: 13px;
  height: 13px;
}
.trx-fxchip .stars {
  color: #f5a623;
  letter-spacing: 1px;
}
@keyframes fxFloat {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  14% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 991px) {
  .trx-fxbg {
    inset: -24px -8px;
  }
  .trx-fxchip {
    font-size: 11px;
    padding: 6px 11px;
  }
}
@media (max-width: 576px) {
  .trx-fxbg {
    display: none;
  }
}

.trx-hero__inner {
  text-align: center;
  max-width: 860px;
}

.trx-hero__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 80px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--trx-ink);
  margin: 0 0 24px;
}

.trx-hero__sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 23px;
  line-height: 1.45;
  color: var(--trx-sub);
  max-width: 620px;
  margin: 0 auto 36px;
}

.trx-hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 72px;
}

/* ---- Device mockups (iPad + iPhone, layered) ---- */
.trx-devices {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* iPad — landscape, holds the manager (tablet) app */
.trx-ipad {
  position: relative;
  width: 100%;
  background: #1d1d1f;
  border-radius: 28px;
  padding: 15px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.trx-ipad__screen {
  position: relative;
  aspect-ratio: 1340 / 800;
  background: var(--trx-bg2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trx-ipad__screen img,
.trx-iphone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* iPhone — portrait, floats over the iPad's corner for depth */
.trx-iphone {
  position: absolute;
  right: -14px;
  bottom: -30px;
  width: 21%;
  min-width: 132px;
  background: #1d1d1f;
  border-radius: 30px;
  padding: 7px;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.3);
  transform: rotate(-4deg);
}

.trx-iphone__screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  background: var(--trx-bg2);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trx-iphone__island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 13px;
  background: #1d1d1f;
  border-radius: 10px;
  z-index: 2;
}

.trx-dev-label {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  line-height: 1.4;
  color: #86868b;
  padding: 18px;
}

.trx-iphone__screen .trx-dev-label {
  font-size: 10.5px;
  padding: 10px;
}

/* ---- Stat band ---- */
.trx-band {
  background: var(--trx-bg2);
  padding: 56px 0;
}

.trx-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trx-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 24px;
}

.trx-band__item + .trx-band__item {
  border-left: 1px solid var(--trx-line);
}

.trx-band__num {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--trx-ink);
  margin-bottom: 12px;
}

.trx-band__label {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 17px;
  color: var(--trx-sub);
  max-width: 220px;
}

/* ---- Journey steps (card grid) ---- */
.trx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}

.trx-step {
  display: flex;
  flex-direction: column;
}

.trx-step__media {
  margin: 0 0 24px;
}

/* Step device mockups (desktop + tablet) — uniform height via shared outer ratio */
.trx-dev {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}
.trx-dev__screen {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--trx-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trx-dev__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trx-dev__label {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  line-height: 1.4;
  color: #86868b;
  padding: 14px;
  text-align: center;
}

.trx-dev--desktop {
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.trx-dev--desktop .trx-dev__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  background: #f0f0f3;
  border-bottom: 1px solid var(--trx-line);
  flex: none;
}
.trx-dev__dots {
  display: flex;
  gap: 5px;
  flex: none;
}
.trx-dev__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.trx-dev__dots i:nth-child(1) {
  background: #ff5f57;
}
.trx-dev__dots i:nth-child(2) {
  background: #febc2e;
}
.trx-dev__dots i:nth-child(3) {
  background: #28c840;
}
.trx-dev__addr {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 999px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 10.5px;
  color: #86868b;
  padding: 3px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trx-dev--tablet {
  background: #1d1d1f;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.trx-dev--tablet .trx-dev__screen {
  border-radius: 8px;
}

/* Step 6 — completed + review requested */
.trx-done {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px;
  text-align: center;
}
/* Success badge with ripple */
.trx-done__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 3px;
}
.trx-done__badge::before,
.trx-done__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #16a34a;
  opacity: 0;
}
.trx-done__check {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
  transform: scale(0.4);
  opacity: 0;
}
.trx-done__check svg {
  width: 24px;
  height: 24px;
}

.trx-done__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13.5px;
  color: #1d1d1f;
  margin: 3px 0 0;
}
.trx-done__sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9.5px;
  line-height: 1.4;
  color: #6e6e73;
  margin: 0;
  max-width: 80%;
}

.trx-done__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 256px;
  margin-top: 11px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 9px 11px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(14px);
  opacity: 0;
}
.trx-done__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  background: #0a84ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
}
.trx-done__alert-body {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trx-done__alert-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #1d1d1f;
}
.trx-done__newbadge {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 7.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #0a84ff;
  border-radius: 999px;
  padding: 2px 6px;
  flex: none;
}
.trx-done__rateline {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 1px;
}
.trx-done__rstars {
  display: inline-flex;
  gap: 1px;
}
.trx-done__rstars i {
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  color: #d8d8de;
  transform: scale(0.5);
  opacity: 0.4;
}
.trx-done__rmeta {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 8.5px;
  color: #6e6e73;
}
.trx-done__quote {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9px;
  font-style: italic;
  line-height: 1.35;
  color: #6e6e73;
  margin-top: 2px;
}

.trx-done.is-in .trx-done__check {
  animation: trxDonePop 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.trx-done.is-in .trx-done__badge::before {
  animation: trxRipple 2.4s ease-out infinite 0.45s;
}
.trx-done.is-in .trx-done__badge::after {
  animation: trxRipple 2.4s ease-out infinite 1.65s;
}
.trx-done.is-in .trx-done__alert {
  animation: trxToastIn 0.5s ease 0.4s forwards;
}
.trx-done.is-in .trx-done__rstars i {
  animation: trxStarPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.trx-done.is-in .trx-done__rstars i:nth-child(1) {
  animation-delay: 0.8s;
}
.trx-done.is-in .trx-done__rstars i:nth-child(2) {
  animation-delay: 0.94s;
}
.trx-done.is-in .trx-done__rstars i:nth-child(3) {
  animation-delay: 1.08s;
}
.trx-done.is-in .trx-done__rstars i:nth-child(4) {
  animation-delay: 1.22s;
}
.trx-done.is-in .trx-done__rstars i:nth-child(5) {
  animation-delay: 1.36s;
}
@keyframes trxStarPop {
  0% {
    transform: scale(0.5);
    opacity: 0.4;
    color: #d8d8de;
  }
  60% {
    transform: scale(1.3);
    color: #f5a623;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    color: #f5a623;
  }
}
@keyframes trxDonePop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.12);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes trxRipple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@keyframes trxToastIn {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.trx-step__num {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 15px;
  color: var(--trx-blue);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.trx-step__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--trx-ink);
  margin: 0 0 12px;
}

.trx-step__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  line-height: 1.5;
  color: var(--trx-sub);
  margin: 0;
}

.trx-step__desc strong {
  font-family: "Neuzeit Grotesk Bold";
  font-weight: 400;
  color: var(--trx-ink);
}

/* ---- Feature tabs ---- */
.trx-tabs {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 40px;
  align-items: start;
}

.trx-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trx-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 6px 11px;
  cursor: pointer;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15.5px;
  color: var(--trx-sub);
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.trx-tab:hover {
  background: var(--trx-bg2);
  color: var(--trx-ink);
}

.trx-tab.is-active {
  background: var(--trx-bg2);
  color: var(--trx-ink);
  font-family: "Neuzeit Grotesk Bold";
}

.trx-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--trx-bg2);
  color: var(--trx-ink);
  flex: none;
}

.trx-tab__icon svg {
  width: 18px;
  height: 18px;
}

.trx-panel {
  display: none;
}

.trx-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 44px;
  animation: trxFade 0.25s ease;
}

@keyframes trxFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.trx-panel__eyebrow {
  display: inline-block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--trx-blue);
  margin-bottom: 14px;
}

.trx-panel__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--trx-ink);
  margin: 0 0 14px;
}

.trx-panel__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 18px;
  line-height: 1.55;
  color: var(--trx-sub);
  margin: 0 0 24px;
}

.trx-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.trx-panel__list li {
  position: relative;
  padding-left: 28px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--trx-ink);
}

.trx-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23002574'/%3E%3Cpath d='M5.8 10.4l2.6 2.6 5.2-5.6' stroke='white' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.trx-panel__media {
  background: #fff;
}

@media (max-width: 991px) {
  .trx-tabs {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .trx-tabs__nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .trx-tab {
    flex: 0 0 auto;
    padding: 9px 12px;
    font-size: 15px;
  }
  .trx-tab__label {
    white-space: nowrap;
  }
  .trx-panel.is-active {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .trx-panel__media {
    order: -1;
  }
}

@media (max-width: 576px) {
  .trx-panel.is-active {
    padding: 22px;
  }
  .trx-panel__title {
    font-size: 25px;
  }
  .trx-panel__desc {
    font-size: 17px;
  }
  .trx-tab__label {
    font-size: 14px;
  }
}

/* ---- Reservation sources ---- */
.trx-sources {
  background: var(--trx-bg);
}

.trx-sources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trx-source {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 32px 28px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.trx-source:hover {
  background: #fff;
  border-color: #d4d4dc;
  transform: translateY(-3px);
}

.trx-source__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--trx-line);
  margin-bottom: 22px;
}

.trx-source__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.trx-source:hover .trx-source__icon {
  border-color: var(--trx-line);
}

.trx-source__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 20px;
  color: var(--trx-ink);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.trx-source__badge {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--trx-blue);
  background: rgba(0, 37, 116, 0.08);
  border-radius: 999px;
  padding: 3px 9px;
}

.trx-source__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  line-height: 1.5;
  color: var(--trx-sub);
  margin: 0;
}

/* ---- Status lifecycle ---- */
.trx-status {
  background: var(--trx-bg2);
}

.trx-status__list {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.trx-status__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--trx-ink);
}

.trx-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c, #999);
  flex: none;
}

.trx-status .trx-ph {
  background: #fff;
}

/* ---- Feature grid ---- */
.trx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trx-card {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 34px 30px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.trx-card:hover {
  background: #fff;
  border-color: #d4d4dc;
  transform: translateY(-3px);
}

.trx-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 37, 116, 0.07);
  color: var(--trx-blue);
  margin-bottom: 22px;
  transition: transform 0.2s ease;
}

.trx-card:hover .trx-card__icon {
  transform: scale(1.08);
}

.trx-card__icon svg {
  width: 26px;
  height: 26px;
}

/* Colorful per-feature accents (6-color cycle across the grid) */
.trx-grid .trx-card:nth-child(6n + 1) .trx-card__icon {
  background: #e9f2ff;
  color: #0a84ff;
}
.trx-grid .trx-card:nth-child(6n + 2) .trx-card__icon {
  background: #f1ecfe;
  color: #8b5cf6;
}
.trx-grid .trx-card:nth-child(6n + 3) .trx-card__icon {
  background: #e3f7f5;
  color: #0fb5ae;
}
.trx-grid .trx-card:nth-child(6n + 4) .trx-card__icon {
  background: #fdefe6;
  color: #f97316;
}
.trx-grid .trx-card:nth-child(6n + 5) .trx-card__icon {
  background: #fdeaf3;
  color: #ec4899;
}
.trx-grid .trx-card:nth-child(6n) .trx-card__icon {
  background: #e7f6ec;
  color: #16a34a;
}

.trx-grid .trx-card:nth-child(6n + 1):hover {
  border-color: #0a84ff;
}
.trx-grid .trx-card:nth-child(6n + 2):hover {
  border-color: #8b5cf6;
}
.trx-grid .trx-card:nth-child(6n + 3):hover {
  border-color: #0fb5ae;
}
.trx-grid .trx-card:nth-child(6n + 4):hover {
  border-color: #f97316;
}
.trx-grid .trx-card:nth-child(6n + 5):hover {
  border-color: #ec4899;
}
.trx-grid .trx-card:nth-child(6n):hover {
  border-color: #16a34a;
}

.trx-card__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 21px;
  color: var(--trx-ink);
  margin: 0 0 12px;
}

.trx-card__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  line-height: 1.55;
  color: var(--trx-sub);
  margin: 0;
}

.trx-card__desc strong {
  font-family: "Neuzeit Grotesk Regular";
  font-weight: 400;
  color: var(--trx-sub);
}

.trx-card__list {
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--trx-line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.trx-card__list li {
  position: relative;
  padding-left: 23px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  line-height: 1.35;
  color: var(--trx-ink);
}

.trx-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23002574'/%3E%3Cpath d='M5.8 10.4l2.6 2.6 5.2-5.6' stroke='white' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* ---- Reviews & reputation ---- */
.trx-rev {
  background: var(--trx-bg);
}

.trx-rev__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.trx-rev__showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trx-reviewcard {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 22px;
}

.trx-reviewcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.trx-reviewcard__src {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 15px;
  color: var(--trx-ink);
}

.trx-reviewcard__src img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.trx-reviewcard__date {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-sub);
}

.trx-reviewcard__stars {
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.trx-reviewcard__text {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  line-height: 1.5;
  color: var(--trx-ink);
  margin: 0 0 14px;
}

.trx-reviewcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.trx-rtag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: var(--trx-ink);
}

.trx-rtag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c, #999);
}

.trx-reviewcard__reply {
  display: flex;
  gap: 12px;
  background: var(--trx-bg2);
  border-radius: 12px;
  padding: 14px;
}

.trx-reviewcard__replyicon {
  color: var(--trx-blue);
  flex: none;
}
.trx-reviewcard__replyicon svg {
  width: 20px;
  height: 20px;
}

.trx-reviewcard__reply strong {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: var(--trx-ink);
  margin-bottom: 3px;
}

.trx-reviewcard__reply p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  line-height: 1.45;
  color: var(--trx-sub);
  margin: 0;
}

/* Interactive reply composer */
.trx-reply {
  margin-top: 4px;
}
.trx-reply__box {
  min-height: 58px;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--trx-ink);
}
.trx-reply__box:empty::before {
  content: attr(data-placeholder);
  color: #9a9aa2;
}
.trx-reply__box.is-typing::after {
  content: "\258D";
  color: var(--trx-blue);
  animation: trxBlink 1s steps(1) infinite;
}
.trx-reply__box.trx-fadein {
  animation: trxFade 0.25s ease;
}
@keyframes trxBlink {
  50% {
    opacity: 0;
  }
}

.trx-think {
  color: var(--trx-sub);
}
.trx-think__dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 4px;
}
.trx-think__dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--trx-blue);
  opacity: 0.3;
  animation: trxDot 1s infinite;
}
.trx-think__dots i:nth-child(2) {
  animation-delay: 0.15s;
}
.trx-think__dots i:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes trxDot {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.trx-reply__actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.trx-reply__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--trx-line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.trx-reply__btn:hover {
  border-color: #bbb;
}
.trx-reply__btn svg {
  width: 15px;
  height: 15px;
}
.trx-reply__btn--ai {
  color: var(--trx-blue);
  border-color: rgba(0, 37, 116, 0.28);
}
.trx-reply__btn--ai:hover {
  background: rgba(0, 37, 116, 0.05);
  border-color: var(--trx-blue);
}

.trx-reply__send {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.trx-reply__tag {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: var(--trx-sub);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 999px;
  padding: 5px 11px;
}
.trx-reply__tag--ai {
  color: var(--trx-blue);
}
.trx-reply__sendbtn {
  margin-left: auto;
  background: var(--trx-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.trx-reply__sendbtn:hover {
  background: #001a54;
}

.trx-sent {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #16a34a;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}
.trx-reply__again {
  margin-top: 9px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: var(--trx-blue);
}
.trx-anim-in {
  animation: trxFade 0.3s ease;
}

.trx-reviewcard__newdot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  margin-right: 6px;
  animation: trxPulse 1.6s ease-in-out infinite;
}
@keyframes trxPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.trx-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 18px;
}
.trx-rev__text .trx-qr {
  margin-top: 26px;
}

.trx-qr__code {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  flex: none;
  border: 1px solid var(--trx-line);
}
.trx-qr__code svg {
  display: block;
  width: 100%;
  height: 100%;
}

.trx-qr__text strong {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--trx-ink);
  margin-bottom: 4px;
}
.trx-qr__text p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-sub);
  margin: 0;
}

.trx-rev__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--trx-ink);
  margin: 0 0 22px;
}

.trx-rev__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.trx-rev__list li {
  position: relative;
  padding-left: 30px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--trx-ink);
}

.trx-rev__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23002574'/%3E%3Cpath d='M5.8 10.4l2.6 2.6 5.2-5.6' stroke='white' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.trx-rev__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* ---- Dashboard & insights ---- */
.trx-dash {
  background: var(--trx-bg2);
}

.trx-dash__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.trx-dash__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 19px;
  line-height: 1.5;
  color: var(--trx-sub);
  margin: 18px 0 26px;
  max-width: 480px;
}

.trx-dash .trx-ph {
  background: #fff;
}
.trx-dash__media {
  margin: 0;
}
.trx-dash .trx-ipad__screen {
  aspect-ratio: 2936 / 1658;
}

.trx-dash__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trx-dash__list li {
  position: relative;
  padding-left: 30px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  line-height: 1.4;
  color: var(--trx-ink);
}

.trx-dash__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23002574'/%3E%3Cpath d='M5.8 10.4l2.6 2.6 5.2-5.6' stroke='white' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* ---- Preferences / personalization (bento) ---- */
.trx-prefs {
  background: var(--trx-bg);
}

.trx-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.trx-bento__tile {
  grid-column: span 2;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 218px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.trx-bento__tile:hover {
  background: #fff;
  border-color: #d4d4dc;
  transform: translateY(-3px);
}

.trx-bento__tile.span-3 {
  grid-column: span 3;
}
.trx-bento__tile.span-4 {
  grid-column: span 4;
}

.trx-bento__cap h3 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 19px;
  color: var(--trx-ink);
  margin: 0 0 6px;
}

.trx-bento__cap p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--trx-sub);
  margin: 0;
}

.trx-demo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Theme preview (interactive) */
.trx-demo--theme {
  gap: 22px;
}
.trx-screen {
  width: 210px;
  max-width: 58%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--trx-line);
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease;
}
.trx-screen__top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.trx-screen__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0a84ff;
  flex: none;
}
.trx-screen__bar {
  height: 8px;
  border-radius: 4px;
  background: #e3e3e8;
  transition: background-color 0.4s ease;
}
.trx-screen__bar--title {
  width: 58%;
  height: 10px;
  background: #c9c9d2;
}
.trx-screen__bar.short {
  width: 72%;
}
.trx-screen__chip {
  margin-top: auto;
  height: 24px;
  width: 48%;
  border-radius: 8px;
  background: #e9f2ff;
  transition: background-color 0.4s ease;
}
.trx-screen.is-dark {
  background: #1d1d1f;
  border-color: #34343a;
}
.trx-screen.is-dark .trx-screen__bar {
  background: #3a3a42;
}
.trx-screen.is-dark .trx-screen__bar--title {
  background: #56565f;
}
.trx-screen.is-dark .trx-screen__chip {
  background: #0a3b80;
}

.trx-themebtn {
  position: relative;
  width: 66px;
  height: 33px;
  border-radius: 999px;
  background: #e6e6ec;
  border: 1px solid var(--trx-line);
  cursor: pointer;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  transition: background-color 0.4s ease;
}
.trx-themebtn.is-dark {
  background: #2a2a30;
}
.trx-themebtn__icon {
  width: 15px;
  height: 15px;
  display: flex;
  z-index: 1;
}
.trx-themebtn__sun {
  color: #f5a623;
}
.trx-themebtn__moon {
  color: #9aa0ff;
}
.trx-themebtn__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.trx-themebtn.is-dark .trx-themebtn__knob {
  transform: translateX(33px);
}

/* Toggles */
.trx-demo--switches {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
}
.trx-switchrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  color: var(--trx-ink);
}
.trx-switch {
  width: 42px;
  height: 25px;
  border-radius: 999px;
  background: #d4d4dc;
  position: relative;
  flex: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.trx-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}
.trx-switch.is-on {
  background: #16a34a;
}
.trx-switch.is-on::after {
  transform: translateX(17px);
}

/* Font size slider */
.trx-demo--font {
  flex-direction: column;
  gap: 20px;
}
.trx-fontprev {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-ink);
  font-size: 28px;
  line-height: 1;
  text-align: center;
  transition: font-size 0.08s linear;
}
.trx-fontctl {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.trx-font-a {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-sub);
  line-height: 1;
  flex: none;
}
.trx-font-a.small {
  font-size: 16px;
}
.trx-font-a.large {
  font-size: 30px;
}
.trx-slider {
  position: relative;
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: #d4d4dc;
  cursor: pointer;
  touch-action: none;
}
.trx-slider__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  border-radius: 3px;
  background: var(--trx-blue);
}
.trx-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--trx-line);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Languages */
.trx-demo--langs {
  flex-direction: column;
  gap: 16px;
}
.trx-greeting {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 27px;
  line-height: 1;
  color: var(--trx-ink);
}
.trx-greeting.pop {
  animation: trxPop 0.32s ease;
}
@keyframes trxPop {
  from {
    opacity: 0.25;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.trx-langchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.trx-lang {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 999px;
  padding: 8px 15px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13.5px;
  color: var(--trx-ink);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.trx-lang.is-active {
  background: var(--trx-blue);
  border-color: var(--trx-blue);
  color: #fff;
}

/* Notification */
.trx-demo--notif {
  align-items: stretch;
  justify-content: flex-start;
}
.trx-notifstack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.trx-notif {
  display: flex;
  gap: 12px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 16px;
  padding: 13px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}
.trx-notif--in {
  transform: translateY(-18px);
  opacity: 0;
}
.trx-notif__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: none;
  background: #fff;
  border: 1px solid var(--trx-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trx-notif__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.trx-notif__body {
  flex: 1;
  min-width: 0;
}
.trx-notif__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.trx-notif__top strong {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
}
.trx-notif__top span {
  font-size: 12px;
  color: var(--trx-sub);
}
.trx-notif__body p {
  margin: 4px 0 0;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-sub);
}

/* Segmented control */
.trx-demo--seg {
  align-items: center;
}
.trx-seg {
  position: relative;
  display: flex;
  width: 100%;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.trx-seg__indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  border-radius: 9px;
  background: var(--trx-blue);
  transform: translateX(0);
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.trx-seg__item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding: 9px 6px;
  border: none;
  background: transparent;
  border-radius: 9px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}
.trx-seg__item.is-active {
  color: #fff;
  font-family: "Neuzeit Grotesk Bold";
}

/* ---- Two views: tablet vs owner app ---- */
.trx-compare {
  background: var(--trx-bg);
}

.trx-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.trx-compare__card {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.trx-compare__card .trx-stores {
  margin-top: auto;
  padding-top: 20px;
}

.trx-compare__stage {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Standalone (non-floating) device variants for the comparison boxes */
.trx-ipad--flat {
  width: 94%;
  padding: 12px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.trx-ipad--flat .trx-ipad__screen {
  border-radius: 10px;
}

.trx-iphone--flat {
  position: static;
  transform: none;
  right: auto;
  bottom: auto;
  width: auto;
  min-width: 0;
  height: 90%;
  aspect-ratio: 10 / 20.5;
  padding: 6px;
  border-radius: 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.trx-iphone--flat .trx-iphone__screen {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.trx-iphone--flat .trx-iphone__island {
  top: 11px;
}

/* Layered 3-phone stack (owner box) */
.trx-compare__stage--stack {
  overflow: visible;
}
.trx-pstack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trx-pstack__d {
  position: absolute;
  width: 39%;
  max-width: 140px;
  background: #1d1d1f;
  border-radius: 24px;
  padding: 5px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}
.trx-pstack__d .trx-iphone__screen {
  aspect-ratio: 9 / 19.5;
  border-radius: 20px;
}
.trx-pstack__d--l {
  transform: translateX(-48%) rotate(-9deg) scale(0.85);
  z-index: 1;
  filter: brightness(0.9);
}
.trx-pstack__d--r {
  transform: translateX(48%) rotate(9deg) scale(0.85);
  z-index: 1;
  filter: brightness(0.9);
}
.trx-pstack__d--f {
  z-index: 3;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}
.trx-pstack__d--f .trx-iphone__island {
  top: 9px;
}

.trx-compare__tag {
  display: inline-block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--trx-blue);
  background: rgba(0, 37, 116, 0.07);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 16px;
}

.trx-compare__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 26px;
  line-height: 1.12;
  color: var(--trx-ink);
  margin: 0 0 12px;
}

.trx-compare__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 17px;
  line-height: 1.5;
  color: var(--trx-sub);
  margin: 0 0 24px;
}

.trx-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.trx-compare__list li {
  position: relative;
  padding-left: 30px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  line-height: 1.4;
  color: var(--trx-ink);
}

.trx-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23002574'/%3E%3Cpath d='M5.8 10.4l2.6 2.6 5.2-5.6' stroke='white' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.trx-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.trx-store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1d1d1f;
  color: #fff;
  border-radius: 11px;
  padding: 8px 15px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.trx-store:hover {
  background: #000;
  transform: translateY(-1px);
}
.trx-store svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.trx-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  text-align: left;
}
.trx-store small {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.trx-store b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
}

.trx-compare__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin-top: 52px;
}

.trx-compare__note {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 18px;
  line-height: 1.5;
  color: var(--trx-sub);
  margin: 0;
  max-width: 540px;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991px) {
  .trx-section {
    padding: 80px 0;
  }
  .trx-hero {
    padding: 64px 0 60px;
  }
  .trx-hero__title {
    font-size: 56px;
  }
  .trx-hero__sub {
    font-size: 20px;
  }
  .trx-head {
    margin-bottom: 48px;
  }
  .trx-head__title {
    font-size: 38px;
  }
  .trx-head__sub {
    font-size: 19px;
  }

  .trx-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 28px;
  }
  .trx-step__title {
    font-size: 22px;
  }

  .trx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trx-sources__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trx-rev__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trx-rev__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trx-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .trx-bento__tile,
  .trx-bento__tile.span-3 {
    grid-column: span 1;
  }
  .trx-bento__tile.span-4 {
    grid-column: span 2;
  }

  .trx-compare__grid {
    grid-template-columns: 1fr;
  }

  .trx-dash__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trx-dash__media {
    order: -1;
  }

  .trx-head__title--left {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .trx-band__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .trx-section {
    padding: 60px 0;
  }
  .trx-hero {
    padding: 48px 0 48px;
  }
  .trx-hero__title {
    font-size: 40px;
    letter-spacing: -0.02em;
  }
  .trx-hero__sub {
    font-size: 17px;
  }
  .trx-hero__cta {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .trx-btn {
    width: 100%;
  }

  .trx-devices .trx-ipad {
    border-radius: 22px;
    padding: 10px;
  }
  .trx-devices .trx-ipad__screen {
    border-radius: 9px;
  }
  .trx-devices .trx-iphone {
    width: 26%;
    min-width: 96px;
    right: -6px;
    bottom: -16px;
    border-radius: 22px;
    padding: 5px;
  }
  .trx-devices .trx-iphone__screen {
    border-radius: 17px;
  }
  .trx-devices .trx-iphone__island {
    top: 9px;
    height: 9px;
  }

  .trx-head__title {
    font-size: 30px;
  }
  .trx-head__sub {
    font-size: 17px;
  }

  .trx-band {
    padding: 40px 0;
  }
  .trx-band__item {
    padding: 22px 0;
  }
  .trx-band__item + .trx-band__item {
    border-left: none;
    border-top: 1px solid var(--trx-line);
  }
  .trx-band__num {
    font-size: 38px;
  }

  .trx-steps {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .trx-step__title {
    font-size: 22px;
  }
  .trx-step__desc {
    font-size: 16px;
  }

  .trx-grid {
    grid-template-columns: 1fr;
  }
  .trx-sources__grid {
    grid-template-columns: 1fr;
  }
  .trx-rev__grid {
    grid-template-columns: 1fr;
  }
  .trx-rev__title {
    font-size: 25px;
  }
  .trx-card {
    padding: 28px 24px;
  }

  .trx-bento {
    grid-template-columns: 1fr;
  }
  .trx-bento__tile,
  .trx-bento__tile.span-3,
  .trx-bento__tile.span-4 {
    grid-column: span 1;
  }
  .trx-bento__tile {
    min-height: 0;
  }

  .trx-status__item {
    font-size: 15px;
    padding: 9px 16px;
  }
}

/* ====================================================
   FEATURE-TAB ANIMATED DEMOS (.trx-fx scenes)
   ==================================================== */
.trx-fx {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.trx-fx .fx {
  width: 100%;
  max-width: 280px;
}
.trx-fx b {
  font-family: "Neuzeit Grotesk Bold";
  font-weight: 400;
}

@keyframes fxPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
}
@keyframes fxSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fxDots {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fxAppear {
  0%,
  46% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  60%,
  90% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@keyframes fxStarLoop {
  0% {
    transform: scale(0.5);
    opacity: 0.4;
    color: #d8d8de;
  }
  12% {
    transform: scale(1.3);
    color: #f5a623;
  }
  22%,
  90% {
    transform: scale(1);
    opacity: 1;
    color: #f5a623;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    color: #f5a623;
  }
}
@keyframes fxSeat {
  0%,
  40% {
    background: #dfe7f5;
  }
  55%,
  100% {
    background: #16a34a;
  }
}
@keyframes fxRing {
  0%,
  40% {
    opacity: 0;
    transform: scale(0.5);
  }
  55% {
    opacity: 1;
    transform: scale(1.15);
  }
  75% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes fxLoc {
  0% {
    background: #1b74e4;
    color: #fff;
    border-color: #1b74e4;
  }
  28% {
    background: #1b74e4;
    color: #fff;
    border-color: #1b74e4;
  }
  30% {
    background: #fff;
    color: #1d1d1f;
    border-color: var(--trx-line);
  }
  100% {
    background: #fff;
    color: #1d1d1f;
    border-color: var(--trx-line);
  }
}
@keyframes fxLocAv {
  0%,
  28% {
    background: #1b74e4;
    color: #fff;
  }
  30%,
  100% {
    background: #e6ebf3;
    color: #6e6e73;
  }
}
@keyframes fxLocChk {
  0%,
  5%,
  28% {
    opacity: 1;
    transform: scale(1);
  }
  0% {
    transform: scale(0.4);
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
}

/* 1. Branded booking */
.fx-branded {
  position: relative;
}
.fx-bcard {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fx-brow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.fx-blogo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #1b74e4;
  flex: none;
}
.fx-bnm {
  display: flex;
  flex-direction: column;
}
.fx-bnm b {
  font-size: 12.5px;
  color: #1d1d1f;
}
.fx-bnm i {
  font-style: normal;
  font-size: 9.5px;
  color: #6e6e73;
}
.fx-bslots {
  display: flex;
  gap: 6px;
}
.fx-bslots span {
  flex: 1;
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  color: #6e6e73;
  background: #f5f5f7;
  border-radius: 7px;
  padding: 6px 0;
}
.fx-bslots span.on {
  background: #eaf2ff;
  color: #1b74e4;
  animation: fxPulse 2.6s ease-in-out infinite;
}
.fx-bbtn {
  background: #1b74e4;
  color: #fff;
  border-radius: 9px;
  padding: 9px;
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
}
.fx-btoast {
  position: absolute;
  right: -4px;
  bottom: -12px;
  background: #16a34a;
  color: #fff;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.3);
  animation: fxAppear 2.8s ease-in-out infinite;
}
.fx-btoast::before {
  content: "\2713  ";
}

/* 2. Live floor plan */
.fx-floor {
  max-width: 300px;
}
.fx-fhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.fx-fhead b {
  font-size: 12px;
  color: #1d1d1f;
}
.fx-fcount {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #16a34a;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 3px 9px;
}
.fx-fstage {
  position: relative;
  height: 138px;
  background: #f5f5f7;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
}
.fx-ft {
  position: absolute;
  width: 13%;
  height: 17%;
  border-radius: 5px;
  background: #dfe7f5;
}
.fx-ft.seated {
  background: #16a34a;
}
.fx-ft.t1 {
  left: 7%;
  top: 12%;
}
.fx-ft.t2 {
  left: 40%;
  top: 10%;
}
.fx-ft.t3 {
  left: 74%;
  top: 12%;
}
.fx-ft.t4 {
  left: 20%;
  top: 44%;
}
.fx-ft.t5 {
  left: 50%;
  top: 46%;
}
.fx-ft.t6 {
  left: 78%;
  top: 44%;
}
.fx-ft.t7 {
  left: 14%;
  top: 76%;
}
.fx-ft.t8 {
  left: 58%;
  top: 76%;
}
.fx-ft.sel {
  animation: fxSeat 3.4s ease-in-out infinite;
}
.fx-fring {
  position: absolute;
  left: 20%;
  top: 44%;
  width: 13%;
  height: 17%;
  border-radius: 7px;
  border: 2px solid #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
  animation: fxRing 3.4s ease-in-out infinite;
}
.fx-flegend {
  display: flex;
  gap: 14px;
  margin-top: 9px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9.5px;
  color: #6e6e73;
}
.fx-flegend span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fx-flegend .d {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}
.fx-flegend .d.g {
  background: #16a34a;
}
.fx-flegend .d.b {
  background: #dfe7f5;
}

/* 3. Auto-waitlist */
.fx-wait {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fx-whead {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #6e6e73;
  margin-bottom: 1px;
}
.fx-whead svg {
  width: 14px;
  height: 14px;
  color: #f59e0b;
}
.fx-wrow,
.fx-wseat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11.5px;
  color: #1d1d1f;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 9px 11px;
}
.fx-wrow b,
.fx-wseat b {
  margin-left: auto;
  font-size: 10px;
  color: #6e6e73;
}
.fx-wd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}
.fx-wd.a {
  background: #f59e0b;
}
.fx-wd.g {
  background: #16a34a;
}
.fx-wseat {
  border-color: #bfe6c8;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.16);
  animation: fxAppear 3.2s ease-in-out infinite;
}
.fx-wseat .fx-wtick {
  color: #16a34a;
}

/* 4. Guest CRM */
.fx-crm {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fx-cprof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fx-cav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a84ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  flex: none;
}
.fx-cinfo {
  display: flex;
  flex-direction: column;
}
.fx-cinfo b {
  font-size: 13px;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fx-cvip {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 8px;
  letter-spacing: 0.04em;
  color: #7a5b00;
  background: #fde9a8;
  border-radius: 999px;
  padding: 1px 6px;
}
.fx-cinfo i {
  font-style: normal;
  font-size: 10px;
  color: #6e6e73;
}
.fx-ctags {
  display: flex;
  gap: 6px;
}
.fx-ctags span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9px;
  color: #6e6e73;
  background: #f5f5f7;
  border-radius: 6px;
  padding: 4px 8px;
}
.fx-chrow {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11px;
  color: #6e6e73;
  background: #f5f5f7;
  border-radius: 8px;
  padding: 7px 10px;
}
.fx-chnew {
  color: #1d1d1f;
  background: #eaf2ff;
  animation: fxAppear 3.2s ease-in-out infinite;
}

/* 5. VIP */
.fx-vip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.fx-vrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}
.fx-vav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6e6e73;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  flex: none;
}
.fx-vinfo {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fx-vinfo b {
  font-size: 13px;
  color: #1d1d1f;
}
.fx-vinfo i {
  font-style: normal;
  font-size: 10px;
  color: #6e6e73;
}
.fx-vbadge {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #7a5b00;
  background: #fde9a8;
  border: 1px solid #f5cf63;
  border-radius: 999px;
  padding: 4px 9px;
  flex: none;
  animation: fxVip 3s ease-in-out infinite;
}
@keyframes fxVip {
  0%,
  40% {
    transform: scale(0.6);
    opacity: 0;
  }
  55% {
    transform: scale(1.18);
    opacity: 1;
  }
  70%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.fx-vnote {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  color: #16a34a;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 5px 12px;
  animation: fxAppear 3s ease-in-out infinite 0.3s;
}
.fx-vnote::before {
  content: "\2605  ";
  color: #f5a623;
}

/* 6. Messaging */
.fx-msg {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fx-bub {
  max-width: 88%;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11px;
  line-height: 1.35;
  color: #fff;
  background: #1b74e4;
  border-radius: 14px 14px 14px 4px;
  padding: 8px 11px;
  opacity: 0;
}
.fx-bub .fx-bk {
  font-size: 8px;
  margin-left: 5px;
  opacity: 0.85;
}
.fx-bub.b1 {
  animation: fxAppear 5s ease-in-out infinite;
}
.fx-bub.b2 {
  animation: fxAppear 5s ease-in-out infinite 1s;
}
.fx-bub.b3 {
  align-self: flex-end;
  background: #e9e9ee;
  color: #1d1d1f;
  border-radius: 14px 14px 4px 14px;
  min-width: 38px;
  text-align: center;
  animation: fxAppear 5s ease-in-out infinite 2s;
}
.fx-bub.b3 .fx-bk {
  color: #34b233;
  opacity: 1;
}

/* 7. Reviews */
.fx-rvcard {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 13px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fx-rvtop {
  display: flex;
  align-items: center;
  gap: 9px;
}
.fx-rvg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--trx-line);
  color: #4285f4;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fx-rstars {
  display: inline-flex;
  gap: 2px;
}
.fx-rstars i {
  font-style: normal;
  font-size: 15px;
  color: #d8d8de;
  transform: scale(0.5);
  opacity: 0.4;
  animation: fxStarLoop 4s ease-in-out infinite;
}
.fx-rstars i:nth-child(1) {
  animation-delay: 0.2s;
}
.fx-rstars i:nth-child(2) {
  animation-delay: 0.4s;
}
.fx-rstars i:nth-child(3) {
  animation-delay: 0.6s;
}
.fx-rstars i:nth-child(4) {
  animation-delay: 0.8s;
}
.fx-rstars i:nth-child(5) {
  animation-delay: 1s;
}
.fx-rvtxt {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11px;
  color: #1d1d1f;
}
.fx-rvreply {
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid var(--trx-line);
  padding-top: 8px;
}
.fx-rvreply b {
  font-size: 10px;
  color: #0a84ff;
  flex: none;
}
.fx-rvtype {
  position: relative;
  height: 7px;
  border-radius: 4px;
  background: #eef0f3;
  flex: 1;
  overflow: hidden;
}
.fx-rvtype::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #cfe0fb;
  border-radius: 4px;
  animation: fxType 4s ease-in-out infinite;
}
@keyframes fxType {
  0%,
  30% {
    width: 0;
  }
  70%,
  100% {
    width: 100%;
  }
}

/* 8. Multi-location (switch restaurant) */
.fx-loc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fx-lhead {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6e6e73;
}
.fx-lmenu {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fx-litem {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 8px 11px;
  background: #fff;
  color: #1d1d1f;
  animation: fxLoc 4.2s ease-in-out infinite;
}
.fx-litem.r2 {
  animation-delay: -1.4s;
}
.fx-litem.r3 {
  animation-delay: -2.8s;
}
.fx-lav {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 9px;
  background: #e6ebf3;
  color: #6e6e73;
  flex: none;
  animation: fxLocAv 4.2s ease-in-out infinite;
}
.fx-litem.r2 .fx-lav {
  animation-delay: -1.4s;
}
.fx-litem.r3 .fx-lav {
  animation-delay: -2.8s;
}
.fx-lcheck {
  margin-left: auto;
  font-size: 11px;
  opacity: 0;
  animation: fxLocChk 4.2s ease-in-out infinite;
}
.fx-litem.r2 .fx-lcheck {
  animation-delay: -1.4s;
}
.fx-litem.r3 .fx-lcheck {
  animation-delay: -2.8s;
}

/* 9. Policies & deposits */
.fx-pol {
  position: relative;
}
.fx-pcard {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 13px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fx-prow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #1d1d1f;
}
.fx-prow.sub {
  font-size: 11px;
  color: #6e6e73;
}
.fx-prow.sub b {
  color: #1d1d1f;
}
.fx-ptg {
  width: 36px;
  height: 21px;
  border-radius: 999px;
  background: #16a34a;
  position: relative;
}
.fx-ptg::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
}
.fx-pamt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #1d1d1f;
  background: #f5f5f7;
  border-radius: 9px;
  padding: 8px 10px;
}
.fx-pcardicon {
  color: #0a84ff;
  display: flex;
}
.fx-pcardicon svg {
  width: 18px;
  height: 18px;
}
.fx-pconf {
  position: absolute;
  right: -4px;
  bottom: -12px;
  background: #16a34a;
  color: #fff;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.3);
  animation: fxAppear 3s ease-in-out infinite;
}
.fx-pconf::before {
  content: "\2713  ";
}

/* 10. Calendar view */
.fx-calv {
  max-width: 290px;
}
.fx-cvhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.fx-cvhead b {
  font-size: 12px;
  color: #1d1d1f;
}
.fx-cvtoggle {
  display: flex;
  background: #f0f0f3;
  border-radius: 8px;
  padding: 2px;
}
.fx-cvtoggle span {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 9px;
  color: #6e6e73;
  padding: 4px 8px;
  border-radius: 6px;
}
.fx-cvtoggle .s1 {
  animation: fxSeg 4.2s ease-in-out infinite;
}
.fx-cvtoggle .s2 {
  animation: fxSeg 4.2s ease-in-out infinite -1.4s;
}
.fx-cvtoggle .s3 {
  animation: fxSeg 4.2s ease-in-out infinite -2.8s;
}
@keyframes fxSeg {
  0%,
  28% {
    background: #1b74e4;
    color: #fff;
  }
  30%,
  100% {
    background: transparent;
    color: #6e6e73;
  }
}
.fx-cvgrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.fx-cvc {
  position: relative;
  aspect-ratio: 1;
  border-radius: 5px;
  background: #f5f5f7;
}
.fx-cvc i {
  position: absolute;
  right: 2px;
  top: 2px;
  font-style: normal;
  font-size: 7px;
  font-family: "Neuzeit Grotesk Bold";
  color: #fff;
  background: #1b74e4;
  border-radius: 999px;
  min-width: 11px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}
.fx-cvc.sel {
  background: #eaf2ff;
  box-shadow: 0 0 0 2px #1b74e4 inset;
  animation: fxPulse 2.4s ease-in-out infinite;
}

/* 11. Closing days */
.fx-close {
  max-width: 250px;
}
.fx-clhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.fx-clhead b {
  font-size: 12px;
  color: #1d1d1f;
}
.fx-cltag {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 9.5px;
  color: #e0413f;
  background: #fde7e7;
  border-radius: 999px;
  padding: 3px 9px;
  animation: fxAppear 3.6s ease-in-out infinite;
}
.fx-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.fx-clc {
  aspect-ratio: 1;
  border-radius: 5px;
  background: #f0f0f3;
  position: relative;
}
.fx-clc.rng {
  background: #fde7e7;
  animation: fxAppear 3.6s ease-in-out infinite;
}
.fx-clc.rng:nth-child(12) {
  animation-delay: 0.12s;
}
.fx-clc.rng:nth-child(13) {
  animation-delay: 0.24s;
}
.fx-clc.rng::before,
.fx-clc.rng::after {
  content: "";
  position: absolute;
  inset: 36% 24%;
  border-top: 2px solid #e0413f;
}
.fx-clc.rng::before {
  transform: rotate(45deg);
}
.fx-clc.rng::after {
  transform: rotate(-45deg);
}

/* 12. Real-time sync */
.fx-sync {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fx-sgroup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.fx-sdev {
  background: #1d1d1f;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.fx-sphone {
  width: 34px;
  height: 56px;
}
.fx-stab {
  width: 66px;
  height: 48px;
}
.fx-sdev i {
  width: 60%;
  height: 4px;
  border-radius: 2px;
  background: #3a3a42;
  animation: fxRow 2.4s ease-in-out infinite;
}
@keyframes fxRow {
  0%,
  45% {
    background: #3a3a42;
  }
  60%,
  100% {
    background: #0a84ff;
  }
}
.fx-ssync {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #0a84ff;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.fx-ssync svg {
  width: 24px;
  height: 24px;
  display: block;
  animation: fxSpin 2.6s linear infinite;
}
.fx-sping {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  margin-top: -4px;
  animation: fxPing 2.4s ease-in-out infinite;
}
@keyframes fxPing {
  0% {
    left: 26%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 70%;
    opacity: 0;
  }
}
.fx-supd {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #16a34a;
}
.fx-supd::before {
  content: "\2713  ";
}

/* 13. SMS campaigns */
.fx-camp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  max-width: 230px;
}
.fx-cfilters {
  display: flex;
  gap: 6px;
}
.fx-cfilters span {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 9px;
  color: #ec4899;
  background: #fdeaf3;
  border-radius: 999px;
  padding: 4px 9px;
}
.fx-cmbody {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 54px;
}
.fx-mega {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fdeaf3;
  color: #ec4899;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fx-mega svg {
  width: 26px;
  height: 26px;
}
.fx-fly {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: #ec4899;
  opacity: 0;
  animation: fxFly 2.4s ease-in infinite;
}
.fx-fly.f2 {
  animation-delay: 0.5s;
}
.fx-fly.f3 {
  animation-delay: 1s;
}
@keyframes fxFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translate(78px, -26px) scale(0.3);
    opacity: 0;
  }
}
.fx-cbar {
  width: 100%;
  height: 7px;
  border-radius: 4px;
  background: #f0f0f3;
  overflow: hidden;
}
.fx-cbar i {
  display: block;
  height: 100%;
  width: 0;
  background: #ec4899;
  border-radius: 4px;
  animation: fxFill 3s ease-in-out infinite;
}
@keyframes fxFill {
  0% {
    width: 0;
  }
  75%,
  100% {
    width: 100%;
  }
}
.fx-csent {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  color: #6e6e73;
}

/* 14. Services & seatings */
.fx-serv {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fx-srow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 9px 12px;
}
.fx-sname {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #1d1d1f;
  display: flex;
  flex-direction: column;
}
.fx-sname i {
  font-style: normal;
  font-size: 9px;
  font-family: "Neuzeit Grotesk Regular";
  color: #6e6e73;
  margin-top: 2px;
}
.fx-tg {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: #d4d4dc;
  position: relative;
  flex: none;
  animation: fxTg 3.6s ease-in-out infinite;
}
.fx-tg::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  animation: fxTgKnob 3.6s ease-in-out infinite;
}
.fx-tg.t2,
.fx-tg.t2::after {
  animation-delay: 0.4s;
}
.fx-tg.t3,
.fx-tg.t3::after {
  animation-delay: 0.8s;
}
@keyframes fxTg {
  0%,
  30% {
    background: #d4d4dc;
  }
  45%,
  100% {
    background: #16a34a;
  }
}
@keyframes fxTgKnob {
  0%,
  30% {
    transform: translateX(0);
  }
  45%,
  100% {
    transform: translateX(16px);
  }
}

/* 15. Operating hours */
.fx-hours {
  display: flex;
  align-items: center;
  gap: 18px;
}
.fx-clock {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2.5px solid #1d1d1f;
  flex: none;
}
.fx-clock i {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: bottom center;
  background: #1d1d1f;
  border-radius: 2px;
}
.fx-clock .fx-h {
  width: 3px;
  height: 16px;
  margin-left: -1.5px;
  animation: fxSpin 6s linear infinite;
}
.fx-clock .fx-m {
  width: 2px;
  height: 23px;
  margin-left: -1px;
  animation: fxSpin 1.5s linear infinite;
}
.fx-clock .fx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  margin: -3px 0 0 -3px;
}
.fx-hrows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.fx-hrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #1d1d1f;
}
.fx-hrow span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 10px;
  color: #6e6e73;
}
.fx-hrow b {
  width: 26px;
}
.fx-hopen {
  margin-left: auto;
  font-style: normal;
  font-size: 9px;
  color: #16a34a;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 3px 8px;
  animation: fxPulse 2.2s ease-in-out infinite;
}
.fx-hrow.off span {
  color: #e0413f;
}
.fx-hclosed {
  margin-left: auto;
  font-style: normal;
  font-size: 9px;
  color: #e0413f;
  background: #fde7e7;
  border-radius: 999px;
  padding: 3px 8px;
}

/* ====================================================
   INTERACTIVE REVIEWS PANEL (.trx-revapp)
   ==================================================== */
.trx-revapp {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 18px;
  overflow: hidden;
}
.trx-revapp__bar {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--trx-line);
}
.rv2-filter {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: #6e6e73;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 5px 11px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.rv2-filter:hover {
  color: #1d1d1f;
}
.rv2-filter.is-on {
  background: #f0f0f2;
  color: #1d1d1f;
  font-family: "Neuzeit Grotesk Bold";
}
.trx-revapp__list {
  display: flex;
  flex-direction: column;
}

.rv2 {
  border-bottom: 1px solid var(--trx-line);
  padding: 22px 20px;
}
.rv2:last-child {
  border-bottom: none;
}
.rv2__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv2__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: none;
  background: #f2f2f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  overflow: hidden;
}
.rv2__logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.rv2__logo--fb {
  background: #1877f2;
  color: #fff;
}
.rv2__logo--ta {
  background: #00af87;
  color: #fff;
}
.rv2__id {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.rv2__id b {
  font-size: 14px;
  color: #1d1d1f;
}
.rv2__id i {
  font-style: normal;
  font-size: 11px;
  color: #86868b;
}
.rv2__stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1.5px;
  flex: none;
}
.rv2__text {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  line-height: 1.5;
  color: #3a3a3c;
  margin: 13px 0 0;
}
.rv2__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}
.rv2__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #3a3a3c;
  background: #f5f5f7;
  border-radius: 7px;
  padding: 4px 10px;
}
.rv2__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c, #999);
}
.rv2__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.rv2__badge {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
}
.rv2__badge--todo {
  color: #86868b;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.rv2__badge--todo::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid #c4c4cc;
}
.rv2__replybtn {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #1d1d1f;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 9px;
  padding: 7px 18px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.rv2__replybtn:hover {
  background: #f5f5f7;
  border-color: #c4c4cc;
}

.rv2__panel {
  display: none;
  margin-top: 12px;
  border-top: 1px solid var(--trx-line);
  padding-top: 12px;
}
.rv2.is-open .rv2__panel {
  display: block;
  animation: trxFade 0.25s ease;
}
.rv2.is-open .rv2__foot {
  display: none;
}
.rv2__tabs {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--trx-line);
  margin-bottom: 11px;
}
.rv2__tab {
  background: none;
  border: none;
  padding: 0 0 8px;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #6e6e73;
  border-bottom: 2px solid transparent;
}
.rv2__tab.is-on {
  color: #1d1d1f;
  border-bottom-color: #1d1d1f;
}
.rv2__ta {
  width: 100%;
  min-height: 66px;
  resize: none;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: #1d1d1f;
}
.rv2__ta:focus {
  outline: none;
  border-color: #1b74e4;
}
.rv2__pane--quick {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rv2__qr {
  text-align: left;
  cursor: pointer;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: #1d1d1f;
  background: #f5f5f7;
  border: 1px solid var(--trx-line);
  border-radius: 9px;
  padding: 9px 11px;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.rv2__qr:hover {
  background: #eaf2ff;
  border-color: #bcd4f7;
}
.rv2__send {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}
.rv2__cancel {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #6e6e73;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 12px;
}
.rv2__post {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #fff;
  background: #1b74e4;
  border: none;
  border-radius: 9px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.rv2__post:hover {
  background: #155fc0;
}

.rv2__posted {
  display: none;
  gap: 10px;
  margin-top: 11px;
  background: #f5f7fb;
  border: 1px solid #e2e8f5;
  border-radius: 10px;
  padding: 11px;
}
.rv2.is-replied .rv2__posted {
  display: flex;
  animation: trxFade 0.3s ease;
}
.rv2.is-replied .rv2__foot,
.rv2.is-replied .rv2__panel {
  display: none;
}
.rv2__pic {
  color: #1b74e4;
  font-size: 15px;
  flex: none;
  line-height: 1.2;
}
.rv2__pbody b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #1d1d1f;
  margin-bottom: 3px;
}
.rv2__sent {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #16a34a;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 5px;
}
.rv2__pbody p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  line-height: 1.45;
  color: #6e6e73;
  margin: 0;
}

/* Reviews panel — stats header + tag assignment */
.trx-revapp__stats {
  padding: 18px 20px 0;
  border-bottom: 1px solid var(--trx-line);
}
.rv2-stats-row {
  display: flex;
}
.rv2-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rv2-stat + .rv2-stat {
  border-left: 1px solid var(--trx-line);
  padding-left: 16px;
}
.rv2-stat__n {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #1d1d1f;
}
.rv2-stat__l {
  font-size: 11px;
  color: #86868b;
}
.rv2-sentbar {
  display: flex;
  gap: 3px;
  height: 5px;
  margin: 16px 0;
  border-radius: 3px;
}
.rv2-sentbar i {
  display: block;
  border-radius: 3px;
}
.rv2-sentbar .pos {
  flex: 72;
  background: #34c759;
}
.rv2-sentbar .needs {
  flex: 20;
  background: #ffb02e;
}
.rv2-sentbar .neg {
  flex: 8;
  background: #ff453a;
}

/* Tag menu — Apple-clean */
.rv2__addtag {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #86868b;
  background: transparent;
  border: 1px solid var(--trx-line);
  border-radius: 7px;
  padding: 3px 10px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.rv2__addtag:hover {
  color: #1d1d1f;
  border-color: #c4c4cc;
}

.rv2__tagmenu {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  padding: 12px;
  background: #f7f7f8;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
}
.rv2__tagopt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #3a3a3c;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 7px;
  padding: 4px 10px;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.rv2__tagopt::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c, #999);
}
.rv2__tagopt.is-sel {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
  font-family: "Neuzeit Grotesk Bold";
}

/* ====================================================
   ORDERS PAGE — feature-tab animated scenes (.fxo-*)
   ==================================================== */
.fxo-board {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fxo-oc {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #1d1d1f;
}
.fxo-oc .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c, #999);
  flex: none;
}
.fxo-oc b {
  margin-left: auto;
}
.fxo-onew {
  box-shadow: 0 8px 18px rgba(27, 116, 228, 0.14);
  animation: fxAppear 3.2s ease-in-out infinite;
}

.fxo-receipt {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.fxo-rr {
  display: flex;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: #3a3a3c;
}
.fxo-rr b {
  font-family: "Neuzeit Grotesk Bold";
  color: #1d1d1f;
}
.fxo-rsub {
  font-size: 12px;
  color: #6e6e73;
}
.fxo-rtot {
  border-top: 1px solid var(--trx-line);
  padding-top: 9px;
  margin-top: 2px;
  font-size: 15px;
}
.fxo-rtot span,
.fxo-rtot b {
  font-family: "Neuzeit Grotesk Bold";
  color: #1d1d1f;
}

.fxo-auto {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fxo-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #1d1d1f;
}
.fxo-tg {
  width: 42px;
  height: 25px;
  border-radius: 999px;
  background: #25a029;
  position: relative;
  flex: none;
}
.fxo-tg::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
}
.fxo-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fxo-pill {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 13px;
}
.fxo-pill.b {
  background: #eaf2ff;
  color: #1b74e4;
}
.fxo-pill.o {
  background: #fdefe0;
  color: #e99000;
}
.fxo-arr {
  color: #9a9aa2;
}
.fxo-pop {
  animation: fxAppear 3s ease-in-out infinite;
}

.fxo-overdue {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fxo-ocard {
  position: relative;
  width: 100%;
  max-width: 250px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  padding: 16px 14px 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.fxo-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff1100;
  overflow: hidden;
}
.fxo-stripe::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  background: rgba(255, 255, 255, 0.65);
  animation: fxStripe 1.5s linear infinite;
}
@keyframes fxStripe {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(380%);
  }
}
.fxo-ocard__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #1d1d1f;
}
.fxo-late {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #fff;
  background: #ff1100;
  border-radius: 999px;
  padding: 3px 9px;
  animation: fxPulse 1.4s ease-in-out infinite;
}
.fxo-ocard__t {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11.5px;
  color: #6e6e73;
  margin-top: 7px;
}

.fxo-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fxo-li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 9px;
  padding: 9px 12px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: #3a3a3c;
}
.fxo-li b {
  font-family: "Neuzeit Grotesk Bold";
  color: #1d1d1f;
}
.fxo-child {
  margin-left: 18px;
}
.fxo-soldout span:first-child {
  color: #9a9aa2;
  text-decoration: line-through;
}
.fxo-tagx {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #ff1100;
  background: #fde7e7;
  border-radius: 999px;
  padding: 3px 8px;
}

.fxo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
  justify-content: center;
}
.fxo-chip {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  border-radius: 999px;
  padding: 7px 13px;
  background: #f3f3f5;
  color: #6e6e73;
  border: 1px solid var(--trx-line);
}
.fxo-chip.on {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}

.fxo-coupon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fxo-code {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #1d1d1f;
  background: #f5f5f7;
  border: 1px dashed #c4c4cc;
  border-radius: 10px;
  padding: 12px 22px;
}
.fxo-applied {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #25a029;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 6px 14px;
}

.fxo-seg2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fxo-segctl {
  display: flex;
  background: #f0f0f3;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  max-width: 240px;
}
.fxo-segctl span {
  flex: 1;
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #6e6e73;
  padding: 8px 0;
  border-radius: 8px;
}
.fxo-segctl .s1 {
  animation: fxSeg 4.2s ease-in-out infinite;
}
.fxo-segctl .s2 {
  animation: fxSeg 4.2s ease-in-out infinite -1.4s;
}
.fxo-segctl .s3 {
  animation: fxSeg 4.2s ease-in-out infinite -2.8s;
}
.fxo-seglabel {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11px;
  color: #6e6e73;
}

.fxo-route {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.fxo-rstore,
.fxo-rhome {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #1d1d1f;
  background: #f3f3f5;
  border-radius: 8px;
  padding: 6px 10px;
}
.fxo-rline {
  position: relative;
  flex: 1;
  min-width: 90px;
  height: 2px;
  background: #e3e3e8;
  border-radius: 2px;
}
.fxo-rdot {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8b5cf6;
  animation: fxRouteDot 2.6s ease-in-out infinite;
}
@keyframes fxRouteDot {
  0% {
    left: 0;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.fxo-rstatus {
  width: 100%;
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #8b5cf6;
}

.fxo-refund {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.fxo-ramt {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  color: #1d1d1f;
}
.fxo-rrow {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #6e6e73;
}
.fxo-rdone {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #25a029;
  background: #e7f6ec;
  border-radius: 999px;
  padding: 5px 13px;
}

.fxo-print {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fxo-printer {
  width: 122px;
  height: 30px;
  background: #1d1d1f;
  border-radius: 9px 9px 4px 4px;
  position: relative;
  z-index: 2;
}
.fxo-receipt2 {
  width: 96px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 11px;
  margin-top: -3px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform-origin: top;
  animation: fxPrint 3s ease-in-out infinite;
}
.fxo-receipt2 span {
  height: 5px;
  background: #e3e3e8;
  border-radius: 3px;
}
.fxo-receipt2 span.s {
  width: 60%;
}
@keyframes fxPrint {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  22% {
    transform: scaleY(1);
    opacity: 1;
  }
  82% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

.fxo-pause {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.fxo-pauseic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fdefe0;
  color: #e99000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fxo-pauseic svg {
  width: 26px;
  height: 26px;
}
.fxo-pausetxt {
  display: flex;
  flex-direction: column;
}
.fxo-pausetxt b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: #1d1d1f;
}
.fxo-pausetxt span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11px;
  color: #6e6e73;
}

.fxo-store {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fxo-shead {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6e6e73;
}
.fxo-smenu {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fxo-sitem {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 8px 11px;
  background: #fff;
  color: #1d1d1f;
  animation: fxLoc 4.2s ease-in-out infinite;
}
.fxo-sitem.r2 {
  animation-delay: -1.4s;
}
.fxo-sitem.r3 {
  animation-delay: -2.8s;
}
.fxo-sitem i {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 9px;
  background: #e6ebf3;
  color: #6e6e73;
  flex: none;
  animation: fxLocAv 4.2s ease-in-out infinite;
}
.fxo-sitem.r2 i {
  animation-delay: -1.4s;
}
.fxo-sitem.r3 i {
  animation-delay: -2.8s;
}
.fxo-sitem b {
  margin-left: auto;
  opacity: 0;
  animation: fxLocChk 4.2s ease-in-out infinite;
}
.fxo-sitem.r2 b {
  animation-delay: -1.4s;
}
.fxo-sitem.r3 b {
  animation-delay: -2.8s;
}

/* ====================================================
   ORDERS PAGE — interactive "move an order" demo
   ==================================================== */
.trx-ordemo__wrap {
  max-width: 460px;
  margin: 0 auto;
}
.trx-ord {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.trx-ord__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.trx-ord__src {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: #1d1d1f;
}
.trx-ord__src img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.trx-ord__status {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  border-radius: 999px;
  padding: 5px 12px;
  color: #fff;
  background: #1b74e4;
  transition: background-color 0.3s ease;
}
.trx-ord[data-step="1"] .trx-ord__status {
  background: #e99000;
}
.trx-ord[data-step="2"] .trx-ord__status {
  background: #0fb5ae;
}
.trx-ord[data-step="3"] .trx-ord__status {
  background: #25a029;
}
.trx-ord__items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.trx-ord__item {
  display: flex;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #3a3a3c;
}
.trx-ord__item b {
  font-family: "Neuzeit Grotesk Bold";
  color: #1d1d1f;
}
.trx-ord__item--tot {
  border-top: 1px solid var(--trx-line);
  padding-top: 10px;
  margin-top: 2px;
}
.trx-ord__item--tot span,
.trx-ord__item--tot b {
  font-family: "Neuzeit Grotesk Bold";
  color: #1d1d1f;
  font-size: 15px;
}
.trx-ord__prep {
  margin-top: 14px;
  background: #fdefe0;
  color: #e99000;
  border-radius: 10px;
  padding: 10px 13px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
}
.trx-ord__prep b {
  font-family: "Neuzeit Grotesk Bold";
}
.trx-ord__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin: 18px 0;
  position: relative;
}
.trx-ord__track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 7px;
  height: 2px;
  background: var(--trx-line);
  z-index: 0;
}
.trx-ord__tnode {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  color: #9a9aa2;
  padding-top: 22px;
}
.trx-ord__tnode::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--trx-line);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.trx-ord__tnode.is-on {
  color: #1d1d1f;
}
.trx-ord__tnode.is-on::before {
  background: #1d1d1f;
  border-color: #1d1d1f;
}
.trx-ord__btn {
  width: 100%;
  background: var(--trx-blue);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 13px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.trx-ord__btn:hover {
  background: #001a54;
}

/* ====================================================
   ORDERS PAGE — extra preference tiles + print preview
   ==================================================== */
.trx-demo--autostart {
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
}
.trx-stepwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #1d1d1f;
}
.trx-step2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 5px 8px;
}
.trx-step2 button {
  width: 24px;
  height: 24px;
  border: none;
  background: #f0f0f3;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: #1d1d1f;
}
.trx-step2 b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  min-width: 22px;
  text-align: center;
}
.trx-step2 .u {
  font-size: 11px;
  color: #6e6e73;
}

.trx-demo--overdue {
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.trx-demo--chips {
  align-items: center;
  justify-content: center;
}
.trx-chipgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.trx-chipgroup--center {
  justify-content: center;
}
.trx-chip2 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  border: 1px solid var(--trx-line);
  background: #fff;
  color: #6e6e73;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.trx-chip2.is-on {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}
.trx-dotgroup {
  gap: 10px;
}
.trx-dot2 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--c, #999);
  cursor: pointer;
}
.trx-dot2.is-on {
  outline: 2px solid #1d1d1f;
  outline-offset: 2px;
}

.trx-print2 {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  margin-top: 24px;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 28px;
  align-items: start;
}
.trx-print2__h {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 20px;
  color: #1d1d1f;
  margin: 0 0 4px;
}
.trx-print2__sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: #6e6e73;
  margin: 0 0 18px;
}
.trx-print2__opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.trx-pp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #1d1d1f;
  cursor: pointer;
}
.trx-pp-tg {
  width: 36px;
  height: 21px;
  border-radius: 999px;
  background: #d4d4dc;
  position: relative;
  flex: none;
  transition: background-color 0.2s ease;
}
.trx-pp-tg::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.trx-pp-row.is-on .trx-pp-tg {
  background: #25a029;
}
.trx-pp-row.is-on .trx-pp-tg::after {
  transform: translateX(15px);
}
.trx-print2__ctl {
  display: flex;
  gap: 22px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.trx-pp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  color: #6e6e73;
}
.trx-pp-field .trx-seg {
  width: 150px;
}
.trx-print2__previewwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trx-receipt {
  width: 200px;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
  color: #1d1d1f;
  transition: width 0.25s ease;
}
.trx-receipt.is-wide {
  width: 252px;
}
.trx-receipt__logo {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  text-align: center;
}
.trx-receipt__meta {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9.5px;
  color: #6e6e73;
  text-align: center;
  margin-top: 3px;
}
.trx-receipt__dash {
  border-top: 1px dashed #c4c4cc;
  margin: 9px 0;
}
.trx-receipt__line,
.trx-receipt__it {
  display: flex;
  justify-content: space-between;
  font-family: "Courier New", monospace;
  font-size: 11px;
  margin: 3px 0;
}
.trx-receipt__note {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #6e6e73;
  font-style: italic;
  margin: 4px 0;
}
.trx-receipt__tot {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  border-top: 1px dashed #c4c4cc;
  padding-top: 7px;
  margin-top: 5px;
}
.trx-receipt__foot {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 9px;
  color: #6e6e73;
  text-align: center;
  margin-top: 10px;
}
.trx-print2__copiestag {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: #6e6e73;
}

@media (max-width: 991px) {
  .trx-print2 {
    grid-template-columns: 1fr;
  }
  .trx-print2__previewwrap {
    order: -1;
  }
}
@media (max-width: 576px) {
  .trx-print2__opts {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   ORDERS PAGE — preference tile live previews
   ==================================================== */
.trx-demo--stack {
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
}

.trx-pcard {
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 14px;
  transition: padding 0.2s ease;
}
.trx-pcard.is-compact {
  padding: 7px 11px;
}
.trx-pcard__r {
  display: flex;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #1d1d1f;
}
.trx-pcard.is-compact .trx-pcard__r {
  font-size: 11.5px;
}
.trx-pcard__m {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11px;
  color: #6e6e73;
  margin-top: 6px;
}
.trx-pcard.is-compact .trx-pcard__m {
  margin-top: 2px;
  font-size: 9.5px;
}

.trx-play {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
  transition: 0.2s ease;
}
.trx-play .b {
  height: 24px;
  background: #eef0f3;
  border-radius: 5px;
}
.trx-play.is-list {
  grid-template-columns: 1fr;
}
.trx-play.is-list .b {
  height: 13px;
}

.trx-saprev {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.sa-swipe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0f0f3;
  border-radius: 999px;
  padding: 5px 5px 5px 16px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #6e6e73;
}
.sa-knob {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25a029;
}
.sa-tap {
  display: none;
  background: #25a029;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 22px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  cursor: pointer;
}
.trx-saprev.is-tap .sa-swipe {
  display: none;
}
.trx-saprev.is-tap .sa-tap {
  display: inline-flex;
}

.trx-asprev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
}
.trx-asprev.is-off .fxo-arr {
  display: none;
}
.trx-asprev.is-off .fxo-pill.o {
  background: #f0f0f3;
  color: #6e6e73;
}

.trx-odcard {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 16px 13px 13px;
  overflow: hidden;
}
.trx-odstripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c, #e99000);
  overflow: hidden;
}
.trx-odh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: #1d1d1f;
}
.trx-odh span {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  color: #fff;
  background: var(--c, #e99000);
  border-radius: 999px;
  padding: 3px 9px;
}
.trx-odcard[data-style="barber"] .trx-odstripe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.55) 0 6px,
    transparent 6px 12px
  );
  animation: odBarber 0.5s linear infinite;
}
@keyframes odBarber {
  to {
    background-position: 17px 0;
  }
}
.trx-odcard[data-style="wave"] .trx-odstripe {
  animation: odWave 1.2s ease-in-out infinite;
}
@keyframes odWave {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.trx-odcard[data-style="sweep"] .trx-odstripe::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  background: rgba(255, 255, 255, 0.65);
  animation: odSweep 1.4s linear infinite;
}
@keyframes odSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(380%);
  }
}
.trx-odcard[data-style="pulse"] .trx-odstripe {
  animation: odPulseH 1s ease-in-out infinite;
}
@keyframes odPulseH {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 8px;
  }
}

.trx-pauseprev {
  text-align: center;
}
.trx-pauseprev b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: #1d1d1f;
}
.trx-pauseprev span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: #6e6e73;
}

.trx-ddprev,
.trx-dsprev {
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: #6e6e73;
}
.trx-ddprev b,
.trx-dsprev b {
  font-family: "Neuzeit Grotesk Bold";
  color: #1d1d1f;
}

.trx-prprev {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #1d1d1f;
}
.trx-prprev .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25a029;
  flex: none;
}

/* ====================================================
   ORDERS PAGE — full print preferences + receipt
   ==================================================== */
.trx-pp-group {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9aa2;
  margin: 18px 0 9px;
}
.trx-print2__panel > .trx-pp-group:first-of-type {
  margin-top: 0;
}
.trx-pp-typo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trx-pp-typo .trx-pp-field {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.trx-receipt {
  position: relative;
}
.trx-receipt__logo {
  font-size: calc(14px * var(--ts, 1));
}
.trx-receipt__meta {
  font-size: calc(9.5px * var(--bs, 1));
}
.trx-receipt__line,
.trx-receipt__itr {
  font-size: calc(11px * var(--bs, 1));
}
.trx-receipt__tot {
  font-size: calc(13px * var(--ts, 1));
}
.trx-receipt__foot {
  font-size: calc(9px * var(--bs, 1));
}
.trx-receipt__it {
  display: block;
  margin: 5px 0;
}
.trx-receipt__itr {
  display: flex;
  justify-content: space-between;
}
.trx-receipt__opt,
.trx-receipt__inote {
  font-family: "Courier New", monospace;
  font-size: calc(10px * var(--bs, 1));
  color: #6e6e73;
}
.trx-receipt__instr {
  font-family: "Courier New", monospace;
  font-style: italic;
  font-size: calc(10px * var(--bs, 1));
  color: #6e6e73;
  margin: 4px 0;
}
.trx-receipt__banner {
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: calc(12px * var(--ts, 1));
  border: 1px dashed #c4c4cc;
  border-radius: 4px;
  padding: 4px;
  margin-bottom: 8px;
}
.trx-receipt__sig {
  font-family: "Courier New", monospace;
  font-size: calc(10px * var(--bs, 1));
  margin-top: 10px;
}
.trx-receipt__qr {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.trx-receipt__qr svg {
  width: 56px;
  height: 56px;
}

/* body font families */
.trx-receipt.ff-sans .trx-receipt__line,
.trx-receipt.ff-sans .trx-receipt__itr,
.trx-receipt.ff-sans .trx-receipt__opt,
.trx-receipt.ff-sans .trx-receipt__inote,
.trx-receipt.ff-sans .trx-receipt__instr,
.trx-receipt.ff-sans .trx-receipt__sig {
  font-family: "Neuzeit Grotesk Regular", sans-serif;
}
.trx-receipt.ff-mono .trx-receipt__line,
.trx-receipt.ff-mono .trx-receipt__itr,
.trx-receipt.ff-mono .trx-receipt__opt,
.trx-receipt.ff-mono .trx-receipt__inote,
.trx-receipt.ff-mono .trx-receipt__instr,
.trx-receipt.ff-mono .trx-receipt__sig {
  font-family: "Courier New", monospace;
}
.trx-receipt.ff-serif .trx-receipt__line,
.trx-receipt.ff-serif .trx-receipt__itr,
.trx-receipt.ff-serif .trx-receipt__opt,
.trx-receipt.ff-serif .trx-receipt__inote,
.trx-receipt.ff-serif .trx-receipt__instr,
.trx-receipt.ff-serif .trx-receipt__sig {
  font-family: Georgia, "Times New Roman", serif;
}

/* style toggles */
.trx-receipt.up .trx-receipt__itr span {
  text-transform: uppercase;
}
.trx-receipt.num .trx-receipt__items {
  counter-reset: rit;
}
.trx-receipt.num .trx-receipt__itr span::before {
  counter-increment: rit;
  content: counter(rit) ". ";
}
.trx-receipt.boldtot .tline span,
.trx-receipt.boldtot .tline b {
  font-family: "Neuzeit Grotesk Bold";
}
.trx-receipt.cut {
  padding-bottom: 30px;
}
.trx-receipt.cut::after {
  content: "\2702  \2009\2014\2009\2014\2009\2014\2009\2014\2009\2014\2009\2014";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  text-align: center;
  font-size: 10px;
  color: #c4c4cc;
}
.trx-play.is-list {
  grid-template-columns: repeat(4, 1fr);
}
.trx-play.is-list .b {
  height: 24px;
}

/* ====================================================
   ORDERS PAGE — fit screenshots to native ~1504x900 ratio
   (avoids object-fit cover zoom/crop on order screenshots)
   ==================================================== */
.oo-page .trx-ipad__screen {
  aspect-ratio: 1504 / 900;
}
.oo-page .trx-dash .trx-ipad__screen {
  aspect-ratio: 1504 / 900;
}
.oo-page .trx-dev {
  aspect-ratio: auto;
}
.oo-page .trx-dev--tablet .trx-dev__screen {
  aspect-ratio: 1504 / 900;
  flex: none;
}

/* ---- Orders settings showcase (two tablets) ---- */
.trx-twotab__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 991px) {
  .trx-twotab__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 560px;
    margin: 0 auto;
  }
}

.trx-panel__media {
  margin: 0;
}

/* ---- Orders customization highlights (two-up row) ---- */
.trx-cust2__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.trx-cust2__col {
  flex: 1;
  min-width: 0;
}
.trx-cust2__col .trx-dash__media {
  margin: 0 0 22px;
}
.trx-cust2__title {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--trx-ink);
  margin: 0 0 12px;
}
.trx-cust2__desc {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 17px;
  line-height: 1.5;
  color: var(--trx-sub);
  margin: 0 0 18px;
}
@media (max-width: 991px) {
  .trx-cust2__row {
    flex-direction: column;
    gap: 48px;
  }
}

/* customization row wraps when it grows beyond 2 columns */
.trx-cust2__row {
  flex-wrap: wrap;
}
.trx-cust2__col {
  flex: 1 1 240px;
}
@media (min-width: 992px) {
  .trx-cust2__col {
    flex: 1 1 0;
    min-width: 220px;
  }
}

/* customization highlights — 2 cards per row (2x2) */
.trx-cust2__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  align-items: start;
  flex-wrap: initial;
}
.trx-cust2__col {
  flex: none;
  min-width: 0;
}
@media (max-width: 991px) {
  .trx-cust2__row {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ====================================================
   ORDERS — "Set the pass up your way" polish
   ==================================================== */
.oo-page .trx-prefs .trx-head {
  margin-bottom: 56px;
}
.oo-page .trx-bento {
  gap: 22px;
}
.oo-page .trx-bento__tile {
  padding: 26px 24px;
  gap: 18px;
  min-height: 252px;
}
.oo-page .trx-bento__cap {
  margin-top: 2px;
}
.oo-page .trx-bento__cap h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.oo-page .trx-bento__cap p {
  font-size: 13.5px;
  line-height: 1.45;
}
.oo-page .trx-demo {
  flex: 1;
}
.oo-page .trx-demo--stack {
  gap: 16px;
  justify-content: center;
}
.oo-page .trx-demo--stack > :first-child {
  margin-top: auto;
}
.oo-page .trx-demo--stack > :last-child {
  margin-bottom: auto;
}

/* previews fill the tile width and stay centered */
.oo-page .trx-pcard,
.oo-page .trx-asprev,
.oo-page .trx-prprev,
.oo-page .trx-pauseprev,
.oo-page .trx-ddprev,
.oo-page .trx-dsprev {
  width: 100%;
}
.oo-page .trx-pcard {
  max-width: none;
}
.oo-page .trx-odcard {
  max-width: 260px;
}
.oo-page .trx-chipgroup {
  justify-content: center;
}
.oo-page .trx-switchrow {
  font-size: 13.5px;
}
.oo-page .trx-stepwrap {
  font-size: 13.5px;
}

/* Print preferences — layout polish */
.trx-print2 {
  padding: 34px;
  gap: 36px;
  margin-top: 28px;
  align-items: start;
}
.trx-print2__h {
  font-size: 22px;
  margin: 0 0 5px;
}
.trx-print2__sub {
  margin-bottom: 20px;
}
.trx-pp-group {
  margin: 22px 0 10px;
}
.trx-print2__opts {
  gap: 9px;
}
.trx-pp-row {
  padding: 11px 13px;
  font-size: 13px;
}
.trx-pp-typo {
  gap: 14px;
}
.trx-pp-typo .trx-pp-field {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.trx-pp-typo .trx-pp-field > span {
  font-size: 12.5px;
  color: var(--trx-ink);
}
.trx-print2__ctl {
  gap: 28px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--trx-line);
  align-items: flex-end;
}
.trx-print2__previewwrap {
  position: sticky;
  top: 92px;
  align-self: start;
}
.trx-receipt {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

@media (max-width: 991px) {
  .trx-print2 {
    padding: 24px;
  }
  .trx-print2__previewwrap {
    position: static;
  }
}

/* orders channels — 3 centered cards */
.oo-page .trx-sources__grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .oo-page .trx-sources__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ======================================================================
   VOIP / AI PHONE (.vx) — same light Apple style as other pages,
   with subtle AI cues (live typing call, waveform, live dots, node graph).
   Pure CSS/JS, no images. Uses the shared trx-* tokens.
   ====================================================================== */
.vx {
  position: relative;
  background: var(--trx-bg);
  color: var(--trx-ink);
  --vx-blue: var(--trx-blue);
  --vx-ok: #1f9d57;
}

.vx-tag {
  display: inline-block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--trx-blue);
  margin-bottom: 14px;
}
.vx-h2 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--trx-ink);
  margin: 0 0 14px;
}
.vx-sub {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 19px;
  line-height: 1.45;
  color: var(--trx-sub);
  max-width: 660px;
  margin: 0 auto;
}
.vx-sec-head {
  text-align: center;
  margin-bottom: 56px;
}

/* ---------- HERO ---------- */
.vx-hero {
  padding: 108px 0 72px;
  background: var(--trx-bg);
}
.vx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-ok);
  box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.5);
  animation: vxPing 1.9s ease-out infinite;
}
@keyframes vxPing {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(31, 157, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 157, 87, 0);
  }
}
.vx-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 46px;
  margin: 0 0 28px;
}
.vx-wave span {
  width: 4px;
  border-radius: 3px;
  background: var(--trx-blue);
  height: 12px;
  animation: vxBar 1.1s ease-in-out infinite;
  opacity: 0.55;
}
@keyframes vxBar {
  0%,
  100% {
    height: 8px;
    opacity: 0.45;
  }
  50% {
    height: 40px;
    opacity: 0.9;
  }
}

/* ---------- WHY KORE (comparison) + FEATURE MATRIX ---------- */
.vx-better {
  padding: 100px 0;
  background: var(--trx-bg2);
  border-top: 1px solid var(--trx-line);
}
.vx-matrix {
  padding: 100px 0;
  background: var(--trx-bg);
  border-top: 1px solid var(--trx-line);
}
.vx-tablewrap {
  max-width: 920px;
  margin: 0 auto;
}
.vx-cmp {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
}
.vx-cmp__row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.1fr;
  align-items: center;
  border-bottom: 1px solid var(--trx-line);
}
.vx-cmp__row:last-child {
  border-bottom: 0;
}
.vx-cmp__row > span {
  padding: 15px 20px;
}
.vx-cmp__row--head {
  background: var(--trx-bg2);
}
.vx-cmp__row--head .vx-cmp__o {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--trx-sub);
}
.vx-cmp__brand {
  display: inline-block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #fff;
  background: var(--trx-blue);
  border-radius: 100px;
  padding: 6px 18px;
}
.vx-cmp__lbl {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14.5px;
  color: var(--trx-ink);
}
.vx-cmp__k {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14.5px;
  color: var(--trx-ink);
  background: rgba(0, 37, 116, 0.04);
  height: 100%;
}
.vx-cmp__row--head .vx-cmp__k {
  justify-content: flex-start;
}
.vx-cmp__o {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-sub);
}
.vx-tick {
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--vx-ok);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 10.5px;
  font-style: normal;
}
.vx-x {
  flex: none;
  font-style: normal;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: #d2d2d7;
}
.vx-mx {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
}
.vx-mx__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--trx-line);
}
.vx-mx__row > span {
  padding: 14px 20px;
}
.vx-mx__row--head {
  background: var(--trx-bg2);
}
.vx-mx__col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13.5px;
  color: var(--trx-ink);
  text-align: center;
}
.vx-mx__lbl {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  color: var(--trx-ink);
}
.vx-mx__c {
  display: flex;
  justify-content: center;
}
.vx-dashm {
  font-style: normal;
  color: #d2d2d7;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
}
.vx-mx__foot {
  padding: 15px 20px;
  background: var(--trx-bg2);
  text-align: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
}
/* reveal: rows cascade in */
.vx.rv .vx-cmp__row,
.vx.rv .vx-mx__row {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vx.rv .vx-in .vx-cmp__row,
.vx.rv .vx-in .vx-mx__row {
  opacity: 1;
  transform: none;
}
.vx-in .vx-cmp__row:nth-child(2),
.vx-in .vx-mx__row:nth-child(2) {
  transition-delay: 0.06s;
}
.vx-in .vx-cmp__row:nth-child(3),
.vx-in .vx-mx__row:nth-child(3) {
  transition-delay: 0.12s;
}
.vx-in .vx-cmp__row:nth-child(4),
.vx-in .vx-mx__row:nth-child(4) {
  transition-delay: 0.18s;
}
.vx-in .vx-cmp__row:nth-child(5),
.vx-in .vx-mx__row:nth-child(5) {
  transition-delay: 0.24s;
}
.vx-in .vx-cmp__row:nth-child(6),
.vx-in .vx-mx__row:nth-child(6) {
  transition-delay: 0.3s;
}
.vx-in .vx-cmp__row:nth-child(7),
.vx-in .vx-mx__row:nth-child(7) {
  transition-delay: 0.36s;
}
.vx-in .vx-cmp__row:nth-child(8),
.vx-in .vx-mx__row:nth-child(8) {
  transition-delay: 0.42s;
}
.vx-in .vx-cmp__row:nth-child(9),
.vx-in .vx-mx__row:nth-child(9) {
  transition-delay: 0.48s;
}
.vx-in .vx-mx__row:nth-child(10) {
  transition-delay: 0.54s;
}
.vx-in .vx-mx__row:nth-child(11) {
  transition-delay: 0.6s;
}
@media (max-width: 991px) {
  .vx-better,
  .vx-matrix {
    padding: 70px 0;
  }
  .vx-tablewrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .vx-cmp {
    min-width: 640px;
  }
  .vx-mx {
    min-width: 700px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vx.rv .vx-cmp__row,
  .vx.rv .vx-mx__row {
    opacity: 1;
    transform: none;
  }
}

/* ---------- LIVE CALL ---------- */
.vx-call {
  padding: 100px 0;
  background: var(--trx-bg2);
  border-top: 1px solid var(--trx-line);
}
.vx-call__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.vx-seg {
  display: inline-flex;
  gap: 4px;
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 4px;
}
.vx-scnbtn {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  color: var(--trx-sub);
  background: transparent;
  border: 0;
  border-radius: 100px;
  padding: 9px 22px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.vx-scnbtn:hover {
  color: var(--trx-ink);
}
.vx-scnbtn.is-active {
  color: #fff;
  background: var(--trx-blue);
  font-family: "Neuzeit Grotesk Bold";
}
.vx-call__col {
  display: flex;
  flex-direction: column;
}
.vx-call__cap {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trx-sub);
  margin-bottom: 12px;
  text-align: center;
}
.vx-call__col .vx-phone,
.vx-call__col .vx-actions {
  flex: 1;
}
.vx-call__wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.vx-phone {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 470px;
}
.vx-phone__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--trx-line);
}
.vx-phone__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #30d158;
  display: grid;
  place-items: center;
  flex: none;
}
.vx-phone__av svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}
.vx-phone__meta {
  flex: 1;
  min-width: 0;
}
.vx-phone__meta b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
}
.vx-phone__num {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: var(--trx-sub);
  font-variant-numeric: tabular-nums;
}
.vx-phone__timer {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: var(--vx-ok);
  font-variant-numeric: tabular-nums;
}
.vx-livedot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-ok);
  animation: vxPing 1.6s ease-out infinite;
}
.vx-transcript {
  flex: 1;
  overflow-y: auto;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.vx-transcript::-webkit-scrollbar {
  width: 6px;
}
.vx-transcript::-webkit-scrollbar-thumb {
  background: var(--trx-line);
  border-radius: 3px;
}
.vx-bub {
  max-width: 85%;
  display: flex;
  gap: 10px;
  animation: vxIn 0.3s ease both;
}
@keyframes vxIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.vx-bub--ai {
  align-self: flex-start;
}
.vx-bub--caller {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.vx-bub__av {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11.5px;
  color: #fff;
  background: var(--trx-blue);
}
.vx-bub__txt {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  line-height: 1.5;
  padding: 11px 15px;
  border-radius: 14px;
}
.vx-bub--ai .vx-bub__txt {
  background: rgba(0, 37, 116, 0.05);
  border: 1px solid rgba(0, 37, 116, 0.12);
  color: var(--trx-ink);
  border-bottom-left-radius: 5px;
}
.vx-bub--caller .vx-bub__txt {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  color: var(--trx-ink);
  border-bottom-right-radius: 5px;
}
.vx-bub.is-typing .vx-bub__txt::after {
  content: "▍";
  color: var(--trx-blue);
  animation: vxCaret 1s steps(2) infinite;
}
@keyframes vxCaret {
  50% {
    opacity: 0;
  }
}
.vx-actions {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vx-actions__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--trx-line);
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14.5px;
  color: var(--trx-ink);
}
.vx-actions__list {
  list-style: none;
  margin: 0;
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.vx-actitem {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-sub);
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--trx-bg2);
  animation: vxIn 0.3s ease both;
}
.vx-actitem__sp {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--trx-line);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
}
.vx-actitem.is-active {
  color: var(--trx-ink);
  background: var(--trx-bg);
  border-color: rgba(0, 37, 116, 0.3);
}
.vx-actitem.is-active .vx-actitem__sp {
  border-color: var(--trx-blue);
  border-top-color: transparent;
  animation: vxSpin 0.7s linear infinite;
}
@keyframes vxSpin {
  to {
    transform: rotate(360deg);
  }
}
.vx-actitem.is-done {
  color: var(--trx-ink);
  border-color: rgba(31, 157, 87, 0.3);
  background: rgba(31, 157, 87, 0.05);
}
.vx-actitem.is-done .vx-actitem__sp {
  background: var(--vx-ok);
  border-color: var(--vx-ok);
  animation: none;
}
.vx-actions__result {
  margin: 14px 16px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.vx-actions__result.is-show {
  opacity: 1;
  transform: none;
}
.vx-rcard {
  border-radius: 13px;
  padding: 15px;
  border: 1px solid;
}
.vx-rcard--res {
  background: rgba(0, 37, 116, 0.05);
  border-color: rgba(0, 37, 116, 0.18);
}
.vx-rcard--ord {
  background: rgba(31, 157, 87, 0.06);
  border-color: rgba(31, 157, 87, 0.22);
}
.vx-rcard__h {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14.5px;
  margin-bottom: 11px;
  color: var(--trx-ink);
}
.vx-rcard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-ok);
}
.vx-rcard__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
  padding: 4px 0;
}
.vx-rcard__row b {
  color: var(--trx-ink);
  font-family: "Neuzeit Grotesk Bold";
}

/* ---------- ONE AI, THREE JOBS ---------- */
.vx-brain {
  padding: 100px 0;
  background: var(--trx-bg);
  border-top: 1px solid var(--trx-line);
}
.vx-jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vx-brainflow {
  max-width: 880px;
  margin: 0 auto 56px;
}
.vx-brainflow__src {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vx-linkv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 0;
}
.vx-linkv span {
  width: 2px;
  height: 14px;
  background: var(--trx-blue);
  opacity: 0.3;
  animation: vxDash 1.4s linear infinite;
}
.vx-linkv span:nth-child(2) {
  animation-delay: 0.2s;
}
.vx-linkv span:nth-child(3) {
  animation-delay: 0.4s;
}
.vx-job {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 28px 26px;
  transition: transform 0.2s ease;
}
.vx-job:hover {
  transform: translateY(-2px);
}
.vx-job__k {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--trx-blue);
  margin-bottom: 14px;
}
.vx-job h3 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 20px;
  margin: 0 0 9px;
  color: var(--trx-ink);
}
.vx-job p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  line-height: 1.55;
  color: var(--trx-sub);
  margin: 0;
}

/* ---------- SETUP CONSOLE ---------- */
.vx-setup {
  padding: 100px 0;
  background: var(--trx-bg2);
  border-top: 1px solid var(--trx-line);
}
.vx-setup__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.vx-steps {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vx-steps li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.vx-steps__n {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13.5px;
  color: var(--trx-blue);
  border: 1px solid var(--trx-line);
  background: var(--trx-bg);
}
.vx-steps li b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--trx-ink);
  display: block;
}
.vx-steps li span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  color: var(--trx-sub);
}
.vx-go {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
}
.vx-go__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--trx-line);
}
.vx-go__bar b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--trx-ink);
}
.vx-go__pill {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: var(--trx-sub);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 6px 14px;
  transition: all 0.35s ease;
}
.vx-go__pill.is-live {
  color: #fff;
  background: var(--vx-ok);
  border-color: var(--vx-ok);
}
.vx-go__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vx-go__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--trx-line);
  transition: opacity 0.5s ease;
}
.vx-go__list b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 15.5px;
  color: var(--trx-ink);
}
.vx-go__list span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
}
.vx-go__tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #d2d2d7;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
  font-family: "Neuzeit Grotesk Bold";
  font-style: normal;
  transition: all 0.35s ease;
}
.vx-go__list li.is-done .vx-go__tick {
  background: var(--vx-ok);
  border-color: var(--vx-ok);
}
.vx-go__list li.is-done .vx-go__tick::after {
  content: "\2713";
}
.vx-go__foot {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 22px;
  background: var(--trx-bg2);
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14.5px;
  color: var(--trx-ink);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.vx.rv .vx-go__list li {
  opacity: 0.35;
}
.vx.rv .vx-go__list li.is-done {
  opacity: 1;
}
.vx.rv .vx-go__foot {
  opacity: 0;
  transform: translateY(6px);
}
.vx.rv .vx-go__foot.is-show {
  opacity: 1;
  transform: none;
}

/* ---------- PHONE BENTO ---------- */
.vx-feat {
  padding: 100px 0;
  background: var(--trx-bg);
  border-top: 1px solid var(--trx-line);
}
/* width:100% is load-bearing. .trx-fx carries aspect-ratio: 4/3, and with no
   width of its own the box solves the ratio from the min-height below --
   320px tall becomes 426.67px wide, wider than the grid track it sits in at
   any screen size. On a phone that spilled past the viewport and gave the
   whole page a sideways scroll. Pinned to the track, the ratio yields to
   min-height instead and the figure just gets its 320px of height. */
.vx-fx {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--trx-line);
  border-radius: 14px;
  padding: 30px;
  margin: 0;
}
.vx-fx__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.vx-fxrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vx-fxnote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-sub);
}
.vx-fx .vx-ivr {
  font-size: 14.5px;
  padding: 10px 18px;
}
.vx-fx .vx-numchip {
  font-size: 18px;
  padding: 13px 24px;
  gap: 12px;
}
.vx-fx .vx-numchip__state {
  height: 16px;
  min-width: 86px;
}
.vx-fx .vx-numchip__state i {
  font-size: 11.5px;
}
.vx-fx .vx-queue {
  font-size: 14.5px;
  padding: 11px 18px;
}
.vx-fx .vx-qav {
  width: 32px;
  height: 32px;
  font-size: 12.5px;
}
.vx-fx .vx-vmail {
  font-size: 14.5px;
  max-width: 350px;
}
.vx-fx .vx-player {
  width: 100%;
  max-width: 300px;
  padding: 12px 18px;
}
/* scene 1: porting journey + routing */
.vx-port {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vx-port__node {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: var(--trx-sub);
  border: 1px solid var(--trx-line);
  background: var(--trx-bg2);
  border-radius: 100px;
  padding: 7px 14px;
}
.vx-port__node--kore {
  color: #fff;
  background: var(--trx-blue);
  border-color: var(--trx-blue);
}
.vx-port__line {
  position: relative;
  width: 110px;
  height: 4px;
  border-radius: 3px;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
}
.vx-port__line i {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--trx-blue);
  transform-origin: left;
  transform: scaleX(0);
  animation: vxPortFill 7s ease-in-out infinite;
}
@keyframes vxPortFill {
  0% {
    transform: scaleX(0);
  }
  38%,
  92% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.vx-port__line em {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--trx-blue);
  box-shadow: 0 0 0 3px rgba(0, 37, 116, 0.15);
  animation: vxPortDot 7s ease-in-out infinite;
}
@keyframes vxPortDot {
  0% {
    left: -3%;
    opacity: 1;
  }
  36% {
    left: 94%;
    opacity: 1;
  }
  40%,
  100% {
    left: 94%;
    opacity: 0;
  }
}
.vx-routes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vx-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
  border: 1px solid var(--trx-line);
  background: var(--trx-bg2);
  border-radius: 100px;
  padding: 8px 15px;
  animation: vxRouteA 7s ease-in-out infinite;
}
.vx-route--b {
  animation-name: vxRouteB;
}
@keyframes vxRouteA {
  0%,
  48%,
  70%,
  100% {
    border-color: var(--trx-line);
    background: var(--trx-bg2);
    color: var(--trx-sub);
  }
  54%,
  64% {
    border-color: rgba(0, 37, 116, 0.35);
    background: var(--trx-bg);
    color: var(--trx-ink);
  }
}
@keyframes vxRouteB {
  0%,
  72%,
  98%,
  100% {
    border-color: var(--trx-line);
    background: var(--trx-bg2);
    color: var(--trx-sub);
  }
  78%,
  94% {
    border-color: rgba(31, 157, 87, 0.45);
    background: var(--trx-bg);
    color: var(--trx-ink);
  }
}
/* scene 2: routing result line */
.vx-menuout {
  position: relative;
  height: 22px;
  width: 280px;
  text-align: center;
}
.mo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-ink);
  opacity: 0;
  animation: vxMo 5.4s ease-in-out infinite;
}
.mo-2 {
  animation-delay: 1.8s;
}
.mo-3 {
  animation-delay: 3.6s;
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-blue);
}
@keyframes vxMo {
  0%,
  8% {
    opacity: 0;
    transform: translateY(4px);
  }
  14%,
  30% {
    opacity: 1;
    transform: none;
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-2px);
  }
}
/* scene 3: live count, hold music, now-serving */
.vx-qcount {
  position: relative;
  display: inline-block;
  min-width: 56px;
  height: 18px;
}
.qc {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: var(--trx-ink);
  opacity: 0;
  animation: vxQc 5.4s ease-in-out infinite;
}
.qc-2 {
  animation-delay: 1.8s;
}
.qc-3 {
  animation-delay: 3.6s;
}
@keyframes vxQc {
  0% {
    opacity: 0;
  }
  4%,
  33% {
    opacity: 1;
  }
  37%,
  100% {
    opacity: 0;
  }
}
.vx-qeq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 16px;
  margin-left: 6px;
}
.vx-qeq i {
  width: 3px;
  border-radius: 2px;
  background: var(--trx-blue);
  height: 5px;
  opacity: 0.6;
  animation: vxEq 1s ease-in-out infinite;
}
.vx-qeq i:nth-child(2) {
  animation-delay: 0.2s;
}
.vx-qeq i:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes vxEq {
  0%,
  100% {
    height: 5px;
  }
  50% {
    height: 14px;
  }
}
.vx-qserve {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
}
.vx-qnow {
  position: relative;
  width: 26px;
  height: 26px;
}
.qn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vx-ok);
  color: #fff;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  opacity: 0;
  animation: vxQn 5.4s ease-in-out infinite;
}
.qn-2 {
  animation-delay: 1.8s;
}
.qn-3 {
  animation-delay: 3.6s;
}
@keyframes vxQn {
  0%,
  6% {
    opacity: 0;
    transform: scale(0.6);
  }
  12%,
  32% {
    opacity: 1;
    transform: scale(1);
  }
  38%,
  100% {
    opacity: 0;
  }
}
/* scene 4: recording voicemail */
.vx-rec {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff453a;
  margin-left: 8px;
  vertical-align: middle;
  animation: vxRec 1.2s ease-in-out infinite;
}
@keyframes vxRec {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.vx-vmwave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin: 7px 0 8px;
}
.vx-vmwave i {
  width: 3px;
  border-radius: 2px;
  background: var(--trx-blue);
  opacity: 0.55;
  height: 5px;
  animation: vxEq 1.1s ease-in-out infinite;
}
.vx-vmwave i:nth-child(2n) {
  animation-delay: 0.18s;
}
.vx-vmwave i:nth-child(3n) {
  animation-delay: 0.36s;
}
.vx-fxnote--ping .vx-rdot {
  animation: vxPing 1.9s ease-out infinite;
}
/* scene 5: karaoke transcript */
.vx-karaoke {
  margin: 0;
  max-width: 330px;
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  line-height: 1.6;
  color: #b9b9c0;
}
.vx-karaoke span {
  transition: color 0.18s ease;
}
.vx-karaoke span.on {
  color: var(--trx-ink);
}
/* scene 6: incoming call + result line */
.vx-fxincoming {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: var(--trx-ink);
  border: 1px solid var(--trx-line);
  background: var(--trx-bg2);
  border-radius: 100px;
  padding: 8px 16px;
}
.vx-devout {
  position: relative;
  height: 20px;
  width: 240px;
  text-align: center;
}
.do {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
  opacity: 0;
  animation: vxDo 6.5s ease-in-out infinite;
}
.do-ans {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--vx-ok);
  animation-name: vxDoAns;
}
@keyframes vxDo {
  0%,
  4% {
    opacity: 0;
  }
  8%,
  58% {
    opacity: 1;
  }
  64%,
  100% {
    opacity: 0;
  }
}
@keyframes vxDoAns {
  0%,
  64% {
    opacity: 0;
    transform: translateY(4px);
  }
  70%,
  94% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
  }
}
.vx-numchip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 9px 16px;
  font-variant-numeric: tabular-nums;
}
.vx-numchip__state {
  position: relative;
  display: inline-block;
  min-width: 74px;
  height: 14px;
}
.vx-numchip__state i {
  position: absolute;
  left: 0;
  top: 0;
  font-style: normal;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.st-port {
  color: var(--trx-sub);
  animation: vxStPort 7s ease-in-out infinite;
}
.st-yours {
  color: var(--vx-ok);
  animation: vxStYours 7s ease-in-out infinite;
}
@keyframes vxStPort {
  0%,
  40% {
    opacity: 1;
  }
  48%,
  92% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vxStYours {
  0%,
  44% {
    opacity: 0;
    transform: scale(0.8);
  }
  52%,
  90% {
    opacity: 1;
    transform: scale(1);
  }
  96%,
  100% {
    opacity: 0;
  }
}
.vx-ivr {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: var(--trx-ink);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 7px 13px;
}
.vx-queue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-ink);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 8px 15px;
}
.vx-qav {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--trx-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10px;
  flex: none;
  animation: vxQTake 5.4s ease-in-out infinite;
}
.vx-qav:nth-child(2) {
  animation-delay: 1.8s;
}
.vx-qav:nth-child(3) {
  animation-delay: 3.6s;
}
@keyframes vxQTake {
  0%,
  100% {
    background: var(--trx-blue);
    transform: scale(1);
  }
  8%,
  20% {
    background: var(--vx-ok);
    transform: scale(1.14);
  }
  28% {
    background: var(--trx-blue);
  }
}
.vx-queue__txt {
  margin-left: 5px;
}
.vx-queue b {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--vx-ok);
}
.vx-vmail {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--trx-ink);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
}
.vx-vmail b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trx-sub);
  margin-bottom: 3px;
}
.vx-vmail em {
  font-style: normal;
}
.vx-vmail em.is-live::after {
  content: "\258D";
  color: var(--trx-blue);
  margin-left: 1px;
  animation: vxCaret 1s steps(2) infinite;
}
.vx-player {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  max-width: 230px;
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 9px 15px;
}
.vx-player i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--trx-blue);
}
.vx-player__bar {
  flex: 1;
  height: 4px;
  border-radius: 3px;
  background: var(--trx-line);
  overflow: hidden;
}
.vx-player__bar em {
  display: block;
  height: 100%;
  width: 38%;
  background: var(--trx-blue);
  border-radius: 3px;
  animation: vxFill 7s linear infinite;
}
@keyframes vxFill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.vx-card__demo--cycle .vx-ivr {
  animation: vxIvr 5.4s ease-in-out infinite;
}
.vx-card__demo--cycle .vx-ivr:nth-child(2) {
  animation-delay: 1.8s;
}
.vx-card__demo--cycle .vx-ivr:nth-child(3) {
  animation-delay: 3.6s;
}
.vx-card__demo--ringall .vx-ivr {
  animation: vxRingAll 6.5s ease-in-out infinite;
}
.vx-card__demo--ringall .vx-ivr:nth-child(2) {
  animation-delay: 0.55s;
}
.vx-card__demo--ringall .vx-ivr:nth-child(3) {
  animation-delay: 1.1s;
}
.vx-card__demo--ringall .vx-ivr:nth-child(4) {
  animation-delay: 1.65s;
}
@keyframes vxRingAll {
  0%,
  3%,
  14%,
  100% {
    border-color: var(--trx-line);
    box-shadow: none;
    transform: none;
  }
  5%,
  11% {
    border-color: #30d158;
    box-shadow: 0 0 0 4px rgba(48, 209, 88, 0.14);
    transform: translateY(-1px);
  }
}
.vx-card__demo--ringall .vx-ivr.vx-ivr--cell {
  animation:
    vxRingAll 6.5s ease-in-out 0.55s infinite,
    vxCellWin 6.5s ease-in-out infinite;
}
@keyframes vxCellWin {
  0%,
  62% {
    background: var(--trx-bg2);
    color: var(--trx-ink);
    border-color: var(--trx-line);
  }
  68%,
  92% {
    background: var(--vx-ok);
    color: #fff;
    border-color: var(--vx-ok);
  }
  98%,
  100% {
    background: var(--trx-bg2);
    color: var(--trx-ink);
    border-color: var(--trx-line);
  }
}
@keyframes vxIvr {
  0%,
  30%,
  100% {
    background: var(--trx-bg2);
    color: var(--trx-ink);
    border-color: var(--trx-line);
    box-shadow: none;
  }
  8%,
  22% {
    background: var(--trx-blue);
    color: #fff;
    border-color: var(--trx-blue);
    box-shadow: 0 0 0 5px rgba(0, 37, 116, 0.12);
  }
}
.vx-player b {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: var(--trx-sub);
  font-variant-numeric: tabular-nums;
}

/* ---------- AI TRAINING FLOW ---------- */
.vx-train {
  padding: 100px 0;
  background: var(--trx-bg2);
  border-top: 1px solid var(--trx-line);
}
.vx-sms {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 14px;
  padding: 16px 14px;
}
.vx-sms__bar {
  text-align: center;
  margin-bottom: 13px;
}
.vx-sms__bar b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
}
.vx-sms__bar span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 11.5px;
  color: var(--trx-sub);
}
.vx-sms__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vx-sms .vx-hb {
  max-width: 95%;
}
.vx-sms .vx-hb p {
  font-size: 13px;
  padding: 9px 12px;
}
.vx-sms .vx-hb--caller p {
  background: var(--trx-bg);
}
.vx-sms .vx-hb__av {
  width: 24px;
  height: 24px;
  font-size: 10px;
  border-radius: 8px;
}
@keyframes vxDash {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.85;
  }
  100% {
    opacity: 0.15;
  }
}
.vx-train__more {
  max-width: 940px;
  margin: 28px auto 0;
  text-align: center;
}
.vx-train__morelbl {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trx-sub);
  margin-bottom: 14px;
}
.vx-train__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.vx-tchip {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-ink);
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 9px 16px;
}
.vx-train__foot {
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  color: var(--trx-sub);
  margin: 22px auto 0;
  max-width: 640px;
}

/* ---------- SOFTPHONE ---------- */
.vx-soft {
  padding: 100px 0;
  background: var(--trx-bg);
  border-top: 1px solid var(--trx-line);
}
.vx-soft__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.vx-soft__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.vx-soft__list li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: var(--trx-sub);
  padding-left: 26px;
  position: relative;
}
.vx-soft__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vx-ok);
  font-family: "Neuzeit Grotesk Bold";
}
.vx-handoffboard {
  margin-top: 26px;
  max-width: 470px;
}
.vx-webphone {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
}
.vx-webphone__top {
  display: flex;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--trx-line);
  background: var(--trx-bg2);
}
.vx-webphone__top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d2d2d7;
}
.vx-webphone__body {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 360px;
}
.vx-webphone__list {
  border-right: 1px solid var(--trx-line);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vx-wp-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 11px;
  border-radius: 11px;
}
.vx-wp-item.is-active {
  background: rgba(0, 37, 116, 0.06);
  border: 1px solid rgba(0, 37, 116, 0.16);
}
.vx-wp-av {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: #fff;
  background: var(--trx-blue);
}
.vx-wp-item b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  color: var(--trx-ink);
  display: block;
}
.vx-wp-item em {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: var(--trx-sub);
  font-style: normal;
}
.vx-webphone__call {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vx-wp-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  color: var(--vx-ok);
  margin-bottom: 16px;
}
.vx-wp-name {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 22px;
  color: var(--trx-ink);
}
.vx-wp-num {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--trx-sub);
  margin-bottom: 14px;
}
.vx-wp-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin-bottom: 20px;
}
.vx-wp-wave i {
  width: 3px;
  border-radius: 3px;
  background: var(--trx-blue);
  height: 8px;
  opacity: 0.6;
  animation: vxBar 1s ease-in-out infinite;
}
.vx-wp-wave i:nth-child(odd) {
  animation-delay: 0.15s;
}
.vx-wp-wave i:nth-child(3n) {
  animation-delay: 0.3s;
}
.vx-wp-wave i:nth-child(4n) {
  animation-delay: 0.45s;
}
.vx-wp-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  width: 100%;
  max-width: 200px;
  margin-bottom: 18px;
}
.vx-wp-keys span {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: var(--trx-ink);
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 9px 0;
}
.vx-wp-ctrls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  width: 100%;
  max-width: 220px;
}
.vx-wp-c {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-ink);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 10px;
  padding: 10px 0;
  cursor: default;
}
.vx-wp-c--end {
  background: #ff4d4f;
  border-color: #ff4d4f;
  color: #fff;
}

/* ---------- CLOSING CTA ---------- */
.vx-ctaband {
  padding: 110px 0;
  background: var(--trx-bg2);
  border-top: 1px solid var(--trx-line);
  text-align: center;
}
.vx-ctaband .vx-sec-head {
  margin-bottom: 36px;
}
.vx-ctaband__actions {
  display: flex;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}
.vx-ctaband__points {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 36px 0 0;
  padding: 0;
}
.vx-ctaband__points li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  color: var(--trx-sub);
  position: relative;
  padding-left: 22px;
}
.vx-ctaband__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vx-ok);
  font-family: "Neuzeit Grotesk Bold";
}
.vx.rv .vx-ctaband__actions,
.vx.rv .vx-ctaband__points {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vx.rv .vx-in .vx-ctaband__actions,
.vx.rv .vx-in .vx-ctaband__points {
  opacity: 1;
  transform: none;
}
.vx.rv .vx-in .vx-ctaband__points {
  transition-delay: 0.12s;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .vx-hero {
    padding: 80px 0 56px;
  }
  .vx-sidecard {
    display: none;
  }
  .vx-call,
  .vx-brain,
  .vx-setup,
  .vx-feat,
  .vx-train,
  .vx-soft {
    padding: 70px 0;
  }
  .vx-call__wrap {
    grid-template-columns: 1fr;
  }
  .vx-setup__inner,
  .vx-soft__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .vx-jobs {
    grid-template-columns: repeat(2, 1fr);
  }
  .vx-brainflow__src {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .vx-jobs {
    grid-template-columns: 1fr;
  }
  .vx-webphone__body {
    grid-template-columns: 1fr;
  }
  .vx-webphone__list {
    border-right: 0;
    border-bottom: 1px solid var(--trx-line);
    flex-direction: row;
    overflow-x: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vx-wave span,
  .vx-wp-wave i,
  .vx-eco__link span,
  .vx-linkv span,
  .vx-dot,
  .vx-livedot,
  .vx-ring__pulse,
  .vx-ring__btn--accept,
  .vx-tdots i,
  .vx-player__bar em,
  .vx-card__demo--cycle .vx-ivr,
  .vx-qav,
  .vx-card__demo--ringall .vx-ivr {
    animation: none !important;
  }
  .vx-numchip__state .st-port {
    display: none;
  }
  .vx-numchip__state .st-yours {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .vx-port__line i {
    animation: none !important;
    transform: scaleX(1);
  }
  .vx-port__line em,
  .vx-route,
  .vx-qeq i,
  .vx-rec,
  .vx-vmwave i {
    animation: none !important;
  }
  .mo,
  .qc,
  .qn,
  .do {
    animation: none !important;
    opacity: 0;
  }
  .mo-3,
  .qc-1,
  .qn-1,
  .do-ans {
    opacity: 1 !important;
  }
  .vx-karaoke {
    color: var(--trx-ink);
  }
}

/* ======================================================================
   VOIP / AI PHONE — value sections (problem / cost / impact) + animations
   ====================================================================== */

/* ---------- hero load stagger ---------- */
@keyframes vxUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- scroll reveal ---------- */
.vx.rv .vx-sec-head,
.vx.rv .vx-job,
.vx.rv .vx-feattabs,
.vx.rv .vx-steps li,
.vx.rv .vx-go,
.vx.rv .vx-webphone,
.vx.rv .vx-soft__copy,
.vx.rv .vx-call__wrap,
.vx.rv .vx-call__tabs,
.vx.rv .vx-ecosrc,
.vx.rv .vx-ecoboard,
.vx.rv .vx-eco__lead,
.vx.rv .vx-why,
.vx.rv .vx-sms,
.vx.rv .vx-vs__col,
.vx.rv .vx-duocard,
.vx.rv .vx-train__more,
.vx.rv .vx-vs__save,
.vx.rv .vx-vs__fine,
.vx.rv .vx-train__foot {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vx.rv .vx-in .vx-sec-head,
.vx.rv .vx-in .vx-job,
.vx.rv .vx-in .vx-feattabs,
.vx.rv .vx-in .vx-steps li,
.vx.rv .vx-in .vx-go,
.vx.rv .vx-in .vx-webphone,
.vx.rv .vx-in .vx-soft__copy,
.vx.rv .vx-in .vx-call__wrap,
.vx.rv .vx-in .vx-call__tabs,
.vx.rv .vx-in .vx-ecosrc,
.vx.rv .vx-in .vx-ecoboard,
.vx.rv .vx-in .vx-eco__lead,
.vx.rv .vx-in .vx-why,
.vx.rv .vx-in .vx-sms,
.vx.rv .vx-in .vx-vs__col,
.vx.rv .vx-in .vx-duocard,
.vx.rv .vx-in .vx-train__more,
.vx.rv .vx-in .vx-vs__save,
.vx.rv .vx-in .vx-vs__fine,
.vx.rv .vx-in .vx-train__foot {
  opacity: 1;
  transform: none;
}
/* stagger inside grids/lists */
.vx-in .vx-job:nth-child(2),
.vx-in .vx-steps li:nth-child(2) {
  transition-delay: 0.08s;
}
.vx-in .vx-job:nth-child(3),
.vx-in .vx-steps li:nth-child(3) {
  transition-delay: 0.16s;
}
.vx-in .vx-steps li:nth-child(4) {
  transition-delay: 0.24s;
}
.vx-in .vx-steps li:nth-child(5) {
  transition-delay: 0.32s;
}
.vx-in .vx-vs__col--ai {
  transition-delay: 0.14s;
}
.vx-in .vx-vs__duo > *:nth-child(2) {
  transition-delay: 0.1s;
}
.vx-in .vx-ecosrc:nth-child(2),
.vx-in .vx-why:nth-child(2) {
  transition-delay: 0.08s;
}
.vx-in .vx-ecosrc:nth-child(3),
.vx-in .vx-why:nth-child(3) {
  transition-delay: 0.16s;
}
.vx-in .vx-why:nth-child(4) {
  transition-delay: 0.24s;
}

/* ---------- THE PROBLEM (loss vs gain boards) ---------- */
.vx-problem {
  padding: 100px 0;
  background: var(--trx-bg);
  border-top: 1px solid var(--trx-line);
}
.vx-vsboards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.vx-vsboards .vx-ecoboard {
  display: flex;
  flex-direction: column;
}
.vx-vsboards .vx-bigfoot {
  margin-top: auto;
}
.vx-board--loss .vx-ecoboard__bar b {
  color: var(--trx-sub);
}
.vx-board--gain {
  border-color: rgba(31, 157, 87, 0.4);
}
.vx-rdot--red {
  background: #c8102e;
}
.vx-boardtag {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--trx-sub);
}
.vx-stamp {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  font-style: normal;
}
.vx-stamp--miss {
  color: #c8102e;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
}
.vx-stamp--ok {
  color: var(--vx-ok);
  background: rgba(31, 157, 87, 0.1);
  border: 1px solid rgba(31, 157, 87, 0.25);
}
.vx.rv .vx-stamp {
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.vx.rv .vx-in .vx-ecorow:nth-child(2) .vx-stamp {
  transition-delay: 0.45s;
}
.vx.rv .vx-in .vx-ecorow:nth-child(3) .vx-stamp {
  transition-delay: 0.7s;
}
.vx.rv .vx-in .vx-ecorow:nth-child(4) .vx-stamp {
  transition-delay: 0.95s;
}
.vx.rv .vx-in .vx-stamp {
  opacity: 1;
  transform: scale(1);
}
.vx-bigfoot {
  position: relative;
  padding: 30px 20px 24px;
  border-top: 1px solid var(--trx-line);
  text-align: center;
  overflow: hidden;
}
.vx-spark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vx-spark__line {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.8s ease 0.4s;
}
.vx-in .vx-spark__line {
  stroke-dashoffset: 0;
}
.vx-bigfoot--loss .vx-spark__area {
  fill: rgba(200, 16, 46, 0.06);
}
.vx-bigfoot--loss .vx-spark__line {
  stroke: rgba(200, 16, 46, 0.3);
}
.vx-bigfoot--gain .vx-spark__area {
  fill: rgba(31, 157, 87, 0.07);
}
.vx-bigfoot--gain .vx-spark__line {
  stroke: rgba(31, 157, 87, 0.32);
}
.vx-bigfoot b {
  position: relative;
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.vx-bigfoot--loss b {
  color: #c8102e;
}
.vx-bigfoot--gain b {
  color: var(--vx-ok);
}
.vx-bigfoot__lbl {
  position: relative;
  display: block;
  margin-top: 7px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  color: var(--trx-sub);
}
.vx-prob__note {
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 15px;
  color: var(--trx-sub);
  max-width: 640px;
  margin: 36px auto 0;
}

/* ---------- ONE PLATFORM (ecosystem + Sendbat) ---------- */
.vx-eco {
  padding: 100px 0;
  background: var(--trx-bg2);
  border-top: 1px solid var(--trx-line);
}
.vx-eco__board {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  gap: 26px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.vx-eco__sources {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vx-ecosrc {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: 14px;
  padding: 14px 16px;
}
.vx-ecosrc__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trx-blue);
  margin-bottom: 6px;
}
.vx-ecosrc p {
  margin: 0;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-ink);
}
.vx-eco__link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.vx-eco__link span {
  width: 34px;
  height: 2px;
  background: var(--trx-blue);
  opacity: 0.3;
  animation: vxDash 1.4s linear infinite;
}
.vx-eco__link span:nth-child(2) {
  animation-delay: 0.2s;
}
.vx-eco__link span:nth-child(3) {
  animation-delay: 0.4s;
}
.vx-ecoboard {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  overflow: hidden;
}
.vx-ecoboard__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--trx-line);
}
.vx-ecoboard__bar b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 15px;
  color: var(--trx-ink);
}
.vx-ecorow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--trx-line);
}
.vx-ecorow:last-child {
  border-bottom: 0;
}
.vx-ecorow > div {
  flex: 1;
  min-width: 0;
}
.vx-ecorow b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14.5px;
  color: var(--trx-ink);
}
.vx-ecorow em {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: var(--trx-sub);
  font-style: normal;
}
.vx-ecorow i {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  color: var(--trx-sub);
  font-style: normal;
  white-space: nowrap;
}
.vx-rdot--amber {
  background: #e8a23d;
}
.vx-eco__lead {
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--trx-ink);
  max-width: 680px;
  margin: 56px auto 28px;
}
.vx-eco__lead b {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-blue);
}
.vx-whygrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vx-why {
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 24px 22px;
}
.vx-why b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--trx-ink);
  margin-bottom: 7px;
}
.vx-why p {
  margin: 0;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--trx-sub);
}
.vx-why em {
  font-style: normal;
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-blue);
}

/* Everything in this block has to sit after the base .vx-eco/.vx-why rules
   above. It used to live in the @media blocks further up the file, ahead of
   those bases, so the wide-screen declarations won on source order and none
   of it ever applied -- the eco board stayed three columns and the why grid
   stayed four, however narrow the screen got. */
@media (max-width: 991px) {
  /* Four across leaves columns so narrow the headings break a word per line. */
  .vx-whygrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vx-eco {
    padding: 70px 0;
  }

  /* The board is "source -> link -> board" side by side; stacked, the link
     between them has to lie down and its dashes turn horizontal. */
  .vx-eco__board {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vx-eco__link {
    flex-direction: row;
    justify-content: center;
  }

  .vx-eco__link span {
    width: 2px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .vx-whygrid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CHEAPER THAN STAFF ---------- */
.vx-vs {
  padding: 100px 0;
  background: var(--trx-bg);
  border-top: 1px solid var(--trx-line);
}
.vx-vs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.vx-vs__col {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 28px;
  position: relative;
}
.vx-vs__col--ai {
  background: rgba(0, 37, 116, 0.04);
  border-color: rgba(0, 37, 116, 0.22);
}
.vx-vs__badge {
  position: absolute;
  top: -12px;
  left: 28px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--trx-blue);
  border-radius: 100px;
  padding: 5px 13px;
}
.vx-vs__col h3 {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 18px;
  color: var(--trx-ink);
  margin: 0 0 12px;
}
.vx-vs__cost {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--trx-line);
}
.vx-vs__cost b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 40px;
  line-height: 1;
  color: var(--trx-ink);
}
.vx-vs__col--ai .vx-vs__cost b {
  color: var(--trx-blue);
  font-size: 34px;
}
.vx-vs__cost em {
  font-family: "Neuzeit Grotesk Regular";
  font-style: normal;
  font-size: 15px;
  color: var(--trx-sub);
}
.vx-vs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.vx-vs__list li {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  color: var(--trx-ink);
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.vx-vs__list--bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--trx-sub);
  font-family: "Neuzeit Grotesk Bold";
}
.vx-vs__list--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vx-ok);
  font-family: "Neuzeit Grotesk Bold";
}
.vx-vs__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 20px auto 0;
}
.vx-duocard {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: var(--trx-radius);
  padding: 28px;
}
.vx-duocard__h {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trx-sub);
  margin-bottom: 20px;
}
.vx-chartcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.vx-chartcard__top .vx-duocard__h {
  margin-bottom: 0;
}
.vx-seg--sm .vx-scnbtn {
  font-size: 13px;
  padding: 6px 14px;
}
.vx-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}
.vx-chart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.vx-chart__val {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--trx-ink);
  white-space: nowrap;
}
.vx-chart__col--ai .vx-chart__val {
  color: var(--trx-blue);
}
.vx-chart__val.is-pop {
  animation: vxPop 0.4s ease;
}
@keyframes vxPop {
  0% {
    transform: scale(0.85);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.vx-chart__bar {
  width: 100%;
  max-width: 84px;
  height: var(--h);
  display: flex;
  align-items: flex-end;
}
.vx-chart__bar i {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: #c8102e;
  transition: height 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s;
}
.vx-chart__col--mid .vx-chart__bar i {
  background: #e8a23d;
  transition-delay: 0.32s;
}
.vx-chart__col--ai .vx-chart__bar i {
  background: var(--trx-blue);
  transition-delay: 0.44s;
}
.vx-in .vx-chart__bar i {
  height: 100%;
}
.vx-chart.is-reset .vx-chart__bar i {
  height: 0 !important;
  transition: none !important;
}
.vx-chart__lbl {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
  text-align: center;
}
.vx-boardfoot {
  padding: 14px 20px;
  border-top: 1px solid var(--trx-line);
  background: var(--trx-bg2);
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14px;
  color: var(--trx-sub);
}
.vx-boardfoot b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 16px;
  color: var(--vx-ok);
}
.vx-vs__save {
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: clamp(18px, 2vw, 22px);
  color: var(--trx-ink);
  margin: 40px auto 0;
  max-width: 640px;
}
.vx-vs__save b {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-blue);
}
.vx-vs__fine {
  text-align: center;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-sub);
  margin: 10px auto 0;
}

@media (max-width: 991px) {
  .vx-problem,
  .vx-vs {
    padding: 70px 0;
  }
  .vx-vsboards {
    grid-template-columns: 1fr;
  }
  .vx-vs__grid {
    grid-template-columns: 1fr;
  }
  .vx-vs__duo {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vx.rv .vx-sec-head,
  .vx.rv .vx-job,
  .vx.rv .vx-feattabs,
  .vx.rv .vx-steps li,
  .vx.rv .vx-go,
  .vx.rv .vx-webphone,
  .vx.rv .vx-soft__copy,
  .vx.rv .vx-call__wrap,
  .vx.rv .vx-call__tabs,
  .vx.rv .vx-ecosrc,
  .vx.rv .vx-ecoboard,
  .vx.rv .vx-eco__lead,
  .vx.rv .vx-why,
  .vx.rv .vx-sms,
  .vx.rv .vx-vs__col,
  .vx.rv .vx-duocard,
  .vx.rv .vx-train__more,
  .vx.rv .vx-vs__save,
  .vx.rv .vx-vs__fine,
  .vx.rv .vx-train__foot {
    opacity: 1;
    transform: none;
  }
  .vx.rv .vx-stamp {
    opacity: 1;
    transform: none;
  }
  .vx-spark__line {
    transition: none;
    stroke-dashoffset: 0;
  }
  .vx-chart__bar i {
    transition: none;
    height: 100%;
  }
  .vx.rv .vx-go__list li {
    opacity: 1;
  }
  .vx.rv .vx-go__foot {
    opacity: 1;
    transform: none;
  }
  .vx.rv .vx-ctaband__actions,
  .vx.rv .vx-ctaband__points {
    opacity: 1;
    transform: none;
  }
}

/* ======================================================================
   VOIP / AI PHONE — align section structure to the other pages (trx-head look)
   ====================================================================== */
/* eyebrows now read like .trx-eyebrow */
.vx .vx-tag {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--trx-blue);
  margin-bottom: 18px;
}
/* section titles + sub match .trx-head__title / .trx-head__sub */
.vx .vx-h2 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.vx .vx-sub {
  font-size: 21px;
  line-height: 1.4;
  max-width: 640px;
}
/* centered section header block like .trx-head */
.vx .vx-sec-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.vx .vx-sec-head .vx-sub {
  margin-left: auto;
  margin-right: auto;
}

/* hero eyebrow keeps a subtle live dot but reads as a trx eyebrow */
.vx-eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.vx-hero .vx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-ok);
  box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.5);
  animation: vxPing 1.9s ease-out infinite;
}

/* ---- hero composition: iPhone on a call + outcome cards ---- */
.vx-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 30px;
}
.vx-iphone {
  position: relative;
  z-index: 3;
  width: 302px;
  background: #1d1d1f;
  border-radius: 46px;
  padding: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}
.vx-iphone__island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 14px;
  background: #1d1d1f;
  border-radius: 10px;
  z-index: 4;
}
.vx-iphone__screen {
  position: relative;
  background: var(--trx-bg);
  border-radius: 37px;
  overflow: hidden;
  padding: 52px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
}
.vx-ph-top {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  margin-bottom: 2px;
}
.vx-ph-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vx-ok);
}
.vx-ph-name {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 22px;
  color: var(--trx-ink);
}
.vx-ph-num {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12.5px;
  color: var(--trx-sub);
  font-variant-numeric: tabular-nums;
}
.vx-ph-num em {
  font-style: normal;
}
.vx-ph-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
}
.vx-ph-chat .vx-hb {
  max-width: 96%;
}
.vx-ph-chat .vx-hb p {
  font-size: 12.5px;
  padding: 9px 12px;
}
.vx-ph-chat .vx-hb__av {
  width: 24px;
  height: 24px;
  font-size: 10px;
  border-radius: 8px;
}
.vx-iphone .vx-wave {
  justify-content: center;
  gap: 3px;
  height: 32px;
  margin: 0;
  overflow: hidden;
}
.vx-iphone .vx-wave span {
  width: 3px;
}
.vx-ph-pill {
  align-self: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 12px;
  color: var(--vx-ok);
  background: rgba(31, 157, 87, 0.08);
  border: 1px solid rgba(31, 157, 87, 0.25);
  border-radius: 100px;
  padding: 7px 14px;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.vx-ph-pill.is-wait {
  opacity: 0;
  transform: translateY(6px);
}

/* ---- incoming-call overlay, typing dots, SMS toast ---- */
.vx-ring {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--trx-bg);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 18px 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.vx-ring.is-on {
  opacity: 1;
}
.vx-ring__label {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-sub);
}
.vx-ring__avwrap {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 26px 0 10px;
  display: grid;
  place-items: center;
}
.vx-ring__av {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--trx-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 28px;
  position: relative;
  z-index: 2;
}
.vx-ring__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--trx-blue);
  opacity: 0;
  animation: vxRingPulse 2s ease-out infinite;
}
.vx-ring__pulse--2 {
  animation-delay: 1s;
}
@keyframes vxRingPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.vx-ring__name {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 24px;
  color: var(--trx-ink);
}
.vx-ring__num {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-sub);
  font-variant-numeric: tabular-nums;
}
.vx-ring__btns {
  display: flex;
  gap: 62px;
  margin-top: auto;
}
.vx-ring__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.vx-ring__btn svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.vx-ring__btn--decline {
  background: #ff453a;
}
.vx-ring__btn--decline svg {
  transform: rotate(135deg);
}
.vx-ring__btn--accept {
  background: #30d158;
  animation: vxAccept 1.3s ease-in-out infinite;
}
@keyframes vxAccept {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.vx-hb.is-typing p::after {
  content: "\258D";
  color: var(--trx-blue);
  margin-left: 2px;
  animation: vxCaret 1s steps(2) infinite;
}
.vx-tdots {
  display: inline-flex;
  gap: 4px;
  padding: 2px 0;
}
.vx-tdots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--trx-sub);
  opacity: 0.35;
  animation: vxTd 1s ease-in-out infinite;
}
.vx-tdots i:nth-child(2) {
  animation-delay: 0.15s;
}
.vx-tdots i:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes vxTd {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-3px);
  }
}
.vx-toast {
  position: absolute;
  top: 46px;
  left: 10px;
  right: 10px;
  z-index: 4;
  background: rgba(245, 245, 247, 0.97);
  border: 1px solid var(--trx-line);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 12px;
  line-height: 1.4;
  color: var(--trx-ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-160%);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15),
    opacity 0.35s ease,
    visibility 0s linear 0.5s;
}
.vx-toast b {
  display: block;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--trx-sub);
  margin-bottom: 2px;
}
.vx-toast.is-in {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15),
    opacity 0.35s ease;
}
.vx-sidecard {
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}
.vx-sidecard.is-hit {
  border-color: rgba(31, 157, 87, 0.5);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.16);
}
.vx-trylive {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  color: var(--trx-ink);
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  border-radius: 100px;
  padding: 10px 19px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}
.vx-trylive:hover {
  background: var(--trx-bg);
  border-color: rgba(31, 157, 87, 0.45);
  color: var(--trx-ink);
  transform: translateY(-1px);
}
.vx-trylive b {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-ink);
}
.vx-trylive--big {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 19px;
  padding: 14px 28px;
  background: var(--trx-bg);
}
.vx-callcta {
  margin-top: 40px;
  text-align: center;
}
.vx-callcta p {
  font-family: "Neuzeit Grotesk Regular";
  font-size: 16px;
  color: var(--trx-sub);
  margin: 0 0 4px;
}
.vx-callcta .vx-trylive--big {
  margin-top: 10px;
}
.vx-sidecard {
  position: relative;
  z-index: 2;
  width: 252px;
  background: var(--trx-bg);
  border: 1px solid var(--trx-line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}
.vx-sidecard--l {
  margin-right: -26px;
  transform: rotate(-3deg) translateY(16px);
}
.vx-sidecard--r {
  margin-left: -26px;
  transform: rotate(3deg) translateY(30px);
}
.vx-sidecard__h {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 13px;
  color: var(--trx-ink);
  margin-bottom: 10px;
}
.vx-rdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-ok);
  flex: none;
}
.vx-rdot--blue {
  background: var(--trx-blue);
}
.vx-sidecard__big {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 19px;
  color: var(--trx-ink);
  margin-bottom: 8px;
}
.vx-sidecard__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vx-sidecard__rows span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13.5px;
  color: var(--trx-sub);
}
.vx-sidecard__rows span b {
  font-family: "Neuzeit Grotesk Bold";
  color: var(--trx-ink);
}
.vx-sidecard__rows .is-ok {
  color: var(--vx-ok);
  font-family: "Neuzeit Grotesk Bold";
}
.vx-sidecard__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--trx-line);
  font-family: "Neuzeit Grotesk Regular";
  font-size: 13px;
  color: var(--trx-sub);
}
.vx-sidecard__total b {
  font-family: "Neuzeit Grotesk Bold";
  font-size: 17px;
  color: var(--trx-ink);
}
.vx-hb {
  display: flex;
  gap: 10px;
  max-width: 90%;
}
.vx-hb--ai {
  align-self: flex-start;
}
.vx-hb--caller {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.vx-hb__av {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: "Neuzeit Grotesk Bold";
  font-size: 11.5px;
  color: #fff;
  background: var(--trx-blue);
}
.vx-hb p {
  margin: 0;
  font-family: "Neuzeit Grotesk Regular";
  font-size: 14.5px;
  line-height: 1.45;
  padding: 11px 15px;
  border-radius: 14px;
}
.vx-hb--ai p {
  background: rgba(0, 37, 116, 0.05);
  border: 1px solid rgba(0, 37, 116, 0.12);
  color: var(--trx-ink);
  border-bottom-left-radius: 5px;
}
.vx-hb--caller p {
  background: var(--trx-bg2);
  border: 1px solid var(--trx-line);
  color: var(--trx-ink);
  border-bottom-right-radius: 5px;
}

/* hero load stagger now targets the trx hero inner + the stage */
.vx-hero .trx-hero__inner > * {
  animation: vxUp 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.vx-hero .trx-hero__inner > *:nth-child(1) {
  animation-delay: 0.04s;
}
.vx-hero .trx-hero__inner > *:nth-child(2) {
  animation-delay: 0.12s;
}
.vx-hero .trx-hero__inner > *:nth-child(3) {
  animation-delay: 0.2s;
}
.vx-hero .trx-hero__inner > *:nth-child(4) {
  animation-delay: 0.28s;
}
.vx-hero .trx-hero__inner > *:nth-child(5) {
  animation-delay: 0.36s;
}
.vx-hero .vx-stage {
  animation: vxUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.34s both;
}

@media (max-width: 991px) {
  .vx .vx-h2 {
    font-size: 38px;
  }
  .vx .vx-sub {
    font-size: 19px;
  }
  .vx .vx-sec-head {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .vx .vx-h2 {
    font-size: 30px;
  }
  .vx-iphone {
    width: 280px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vx-hero .trx-hero__inner > *,
  .vx-hero .vx-stage {
    animation: none;
  }
}
