.tte-page {
  --tte-black: #121212;
  --tte-black-soft: #1b1b1d;
  --tte-red: #df2027;
  --tte-red-dark: #b71218;
  --tte-white: #ffffff;
  --tte-off-white: #f7f7f8;
  --tte-grey: #74777d;
  --tte-line: #e3e4e8;
  --tte-ink: #2d3138;
  --tte-max: 1180px;
  --tte-radius: 8px;
  --tte-shadow: 0 18px 55px rgba(14, 14, 16, 0.14);
  margin: 0;
  min-width: 320px;
  color: var(--tte-black);
  background: var(--tte-white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

.tte-page *,
.tte-page *::before,
.tte-page *::after {
  box-sizing: border-box;
}
.tte-page html {
  scroll-behavior: smooth;
}
.tte-page a {
  color: inherit;
  text-decoration: none;
}
.tte-page button,
.tte-page input,
.tte-page select,
.tte-page textarea {
  font: inherit;
}
.tte-page button {
  border: 0;
}
.tte-page img {
  max-width: 100%;
  display: block;
}
.tte-page h1,
.tte-page h2,
.tte-page h3,
.tte-page p {
  margin-top: 0;
}
.tte-page h1,
.tte-page h2,
.tte-page h3 {
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
}
.tte-page.lock {
  overflow: hidden;
}

.tte-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tte-red), #ffb21e, var(--tte-red));
  transform: scaleX(var(--tte-scroll, 0));
  transform-origin: left;
  box-shadow: 0 0 18px rgba(223, 32, 39, 0.45);
  pointer-events: none;
}

.tte-cursor-glow {
  position: fixed;
  left: var(--tte-mouse-x, 50%);
  top: var(--tte-mouse-y, 40%);
  z-index: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 32, 39, 0.12), transparent 63%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.tte-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.tte-container {
  width: min(var(--tte-max), calc(100% - 36px));
  margin-inline: auto;
}
.tte-section {
  padding: 86px 0;
  position: relative;
}
.tte-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.tte-topbar {
  display: none;
  height: 26px;
  color: rgba(255, 255, 255, 0.8);
  background: #0c0c0d;
  font-size: 9px;
  letter-spacing: 0.2px;
}
.tte-topbar-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.tte-mini-controls {
  display: flex;
  gap: 18px;
}
.tte-topbar-message {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.tte-topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tte-red);
}
.tte-event-mini {
  justify-self: end;
  font-weight: 600;
}
.tte-event-mini b {
  display: inline-grid;
  place-items: center;
  min-width: 33px;
  padding: 2px 7px;
  margin: 0 4px;
  color: #fff;
  background: var(--tte-red);
  border-radius: 20px;
}

.tte-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(12px);
  transition: 0.28s ease;
}
.tte-header.is-shrunk {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}
.tte-header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: min-height 0.28s ease;
}
.tte-header.is-shrunk .tte-header-row {
  min-height: 62px;
}

@media (min-width: 761px) {
  .tte-page {
    padding-top: 72px;
  }
  .tte-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
  }
  .tte-menu-button {
    display: none !important;
  }
}

.tte-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}
.tte-logo-img {
  display: block;
  width: 216px;
  max-width: 100%;
  height: 100px;
  object-fit: contain;
}
.tte-footer .tte-logo-img {
  width: 210px;
  height: 75px;
  filter: brightness(0) invert(1);
}
.tte-logo-symbol {
  position: relative;
  width: 53px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--tte-red);
}
.tte-logo-symbol::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--tte-red), #ff4f55);
  clip-path: polygon(0 60%, 66% 0, 100% 24%, 30% 100%);
}
.tte-logo-symbol svg {
  width: 49px;
  height: 31px;
  color: #141414;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  position: relative;
  z-index: 1;
}
.tte-logo-text {
  line-height: 0.95;
}
.tte-logo-text strong {
  display: block;
  font:
    900 16px/1 "Poppins",
    sans-serif;
  letter-spacing: 0;
}
.tte-logo-text strong em {
  color: var(--tte-red);
  font-style: normal;
}
.tte-logo-text small {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.tte-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
}
.tte-nav > a,
.tte-dropdown-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 28px 9px 24px;
  color: #252525;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.tte-nav > a::after,
.tte-dropdown-button::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 17px;
  height: 2px;
  background: var(--tte-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.tte-nav > a:hover,
.tte-dropdown-button:hover,
.tte-nav > a.is-active {
  color: var(--tte-red);
}
.tte-nav > a:hover::after,
.tte-dropdown-button:hover::after,
.tte-nav > a.is-active::after {
  transform: scaleX(1);
}
.tte-dropdown {
  position: relative;
}
.tte-dropdown-button span {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  font-size: 0;
  line-height: 0;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}
.tte-dropdown.is-open .tte-dropdown-button span {
  transform: translateY(2px) rotate(225deg);
}
@media (hover: hover) and (pointer: fine) {
  .tte-dropdown:hover .tte-dropdown-button span {
    transform: translateY(2px) rotate(225deg);
  }
}
.tte-dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  width: 205px;
  padding: 8px;
  border: 1px solid var(--tte-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--tte-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s ease;
}
.tte-dropdown.is-open .tte-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .tte-dropdown:hover .tte-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.tte-dropdown-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  font-size: 11px;
}
.tte-dropdown-menu a:hover {
  color: var(--tte-red);
  background: #fff1f2;
}

.tte-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tte-header-countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.tte-header-countdown div {
  min-width: 48px;
  padding: 8px 5px 7px;
  text-align: center;
  border-left: 1px solid var(--tte-line);
}
.tte-header-countdown b {
  display: block;
  color: var(--tte-red);
  font:
    900 15px/1 "Poppins",
    sans-serif;
}
.tte-header-countdown span {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.tte-menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--tte-line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.tte-menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
}

.tte-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.tte-btn::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -65%;
  z-index: -1;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.tte-btn:hover {
  transform: translateY(-2px);
}
.tte-btn:hover::after {
  left: 115%;
}
.tte-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ef2e35, var(--tte-red-dark));
  box-shadow: 0 12px 25px rgba(223, 32, 39, 0.26);
}
.tte-btn-primary:hover {
  box-shadow: 0 17px 32px rgba(223, 32, 39, 0.34);
}
.tte-header-cta {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  animation: tte-catalogue-pulse 1.8s infinite;
}
.tte-btn-outline {
  color: #fff;
  background: rgba(11, 11, 12, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(7px);
}

.tte-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0c1014;
}
.tte-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.05) 48%, transparent 56%),
    radial-gradient(circle at 20% 78%, rgba(255, 178, 30, 0.12), transparent 25%);
  animation: tteHeroSweep 7s ease-in-out infinite alternate;
}
.tte-hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 9, 11, 0.93) 0%,
      rgba(7, 9, 11, 0.73) 43%,
      rgba(7, 9, 11, 0.22) 76%,
      rgba(7, 9, 11, 0.18) 100%
    ),
    url("assets/img/ban-truck.png");
  background-size: cover;
  background-position: center;
  animation: tteHeroZoom 16s ease-in-out infinite alternate;
}
.tte-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 72% 58%,
    rgba(223, 32, 39, 0.1),
    transparent 32%
  );
}
.tte-hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 70%, transparent);
}
.tte-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 58px;
  padding: 78px 0 102px;
}
.tte-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
.tte-eyebrow span {
  width: 29px;
  height: 5px;
  background: var(--tte-red);
}
.tte-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}
.tte-hero-content > p {
  max-width: 635px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
}
.tte-hero-buttons {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.tte-event-card {
  position: relative;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 6px;
  background: linear-gradient(
    150deg,
    rgba(35, 43, 52, 0.82),
    rgba(60, 54, 59, 0.58)
  );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  animation: tteFloatCard 4.8s ease-in-out infinite;
}
.tte-event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent 38%
  );
  pointer-events: none;
}
.tte-event-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tte-event-countdown div {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(150deg, #ef3138, #b81218);
  box-shadow: 0 8px 18px rgba(223, 32, 39, 0.3);
}
.tte-event-countdown b {
  font:
    900 14px/1 "Poppins",
    sans-serif;
}
.tte-event-countdown span {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.tte-event-card h2 {
  margin: 18px 0 9px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}
.tte-event-card > p {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}
.tte-event-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tte-event-metrics div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}
.tte-event-metrics b {
  display: block;
  font:
    900 20px/1 "Poppins",
    sans-serif;
}
.tte-event-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  text-transform: uppercase;
}
.tte-hero-redline {
  position: absolute;
  z-index: 3;
  left: -7%;
  bottom: 105px;
  width:74%;
  height: 6px;
  background: var(--tte-red);
  transform: skewX(-24deg);
  overflow: hidden;
}
.tte-hero-redline::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  animation: tteLineShine 2.8s linear infinite;
}

.tte-stats {
  position: relative;
  z-index: 8;
  min-height: 40px;
  background: #fff;
}
.tte-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  transform: translateY(-35px);
}
.tte-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 103px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid #f0dfe1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.tte-stat-card::before,
.tte-attend-card::before,
.tte-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223, 32, 39, 0.08), transparent 36%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.tte-stat-card:hover::before,
.tte-attend-card:hover::before,
.tte-form-card:hover::before {
  opacity: 1;
}
.tte-stat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.17);
}
.tte-stat-card b {
  color: var(--tte-red);
  font:
    900 30px/1 "Poppins",
    sans-serif;
}
.tte-stat-card span {
  margin-top: 8px;
  color: #252525;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tte-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--tte-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tte-section-copy h2,
.tte-section-heading h2,
.tte-location-content h2,
.tte-registration-copy h2,
.tte-modal-card h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}
.tte-section-copy > p,
.tte-location-content > p,
.tte-registration-copy > p {
  margin: 19px 0 0;
  color: var(--tte-grey);
  font-size: 15px;
}

.tte-float-catalogue {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #da0b0b, #ff3b3b);
  color: #ffffff!important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(218, 11, 11, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: tte-catalogue-pulse 1.8s infinite;
}

.tte-float-catalogue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.tte-float-catalogue:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 30px rgba(218, 11, 11, 0.75);
  background: linear-gradient(135deg, #ff1f1f, #da0b0b);
}

@keyframes tte-catalogue-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 11, 11, 0.6), 0 6px 20px rgba(218, 11, 11, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(218, 11, 11, 0), 0 6px 20px rgba(218, 11, 11, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 11, 11, 0), 0 6px 20px rgba(218, 11, 11, 0.5);
  }
}

/* Mobile responsive */
@media (max-width: 600px) {
  .tte-float-catalogue {
    padding: 10px 16px;
    font-size: 13px;
    bottom: 18px;
    left: 14px;
  }
}
.tte-heading-line {
  width: 54px;
  height: 3px;
  margin-top: 16px;
  background: var(--tte-red);
  position: relative;
  overflow: hidden;
}
.tte-heading-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: #fff;
  opacity: 0.72;
  animation: tteLineShine 2.5s linear infinite;
}
.tte-section-heading {
  margin-bottom: 35px;
}
.tte-section-heading-center {
  text-align: center;
}
.tte-section-heading-center .tte-heading-line {
  margin-inline: auto;
}

.tte-about {
  padding-top: 48px;
  background:
    radial-gradient(circle at 8% 28%, rgba(223, 32, 39, 0.075), transparent 24%),
    #fff;
}
.tte-about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}
.tte-organizer-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 32, 39, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f6f7f9);
  box-shadow: 0 22px 48px rgba(17, 18, 20, 0.08);
}
.tte-organizer-panel::before {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 170px;
  height: 170px;
  border: 22px solid rgba(223, 32, 39, 0.12);
  transform: rotate(45deg);
}
.tte-organizer-panel-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.tte-organizer-panel-head span {
  color: var(--tte-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.tte-organizer-panel-head b {
  color: #111214;
  font-size: 28px;
  line-height: 1.1;
}
.tte-organizer-cards {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.tte-organizer-cards article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid #e4e5e8;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
}
.tte-organizer-cards article span {
  grid-row: span 2;
  color: var(--tte-red);
  font-size: 13px;
  font-weight: 900;
}
.tte-organizer-cards article strong {
  color: #111214;
  font-size: 15px;
}
.tte-organizer-cards article p {
  margin: 0;
  color: var(--tte-grey);
  font-size: 13px;
  line-height: 1.55;
}
.tte-industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}
.tte-industry-list article {
  position: relative;
  overflow: hidden;
  min-height: 61px;
  display: grid;
  grid-template-columns: 10px 1fr 36px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #dfdfe1;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #fafafa);
  box-shadow: 0 7px 17px rgba(0, 0, 0, 0.035);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.tte-industry-list article::after,
.tte-audience-grid article::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tte-red), #ffb21e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.tte-industry-list article:hover::after,
.tte-audience-grid article:hover::after {
  transform: scaleX(1);
}
.tte-industry-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 32, 39, 0.45);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.09);
}
.tte-industry-list strong {
  font-size: 11px;
}
.tte-industry-list svg {
  width: 29px;
  height: 29px;
  justify-self: end;
  fill: none;
  stroke: #601a1d;
  stroke-width: 1.3;
}
.tte-red-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tte-red);
}

.tte-location {
  color: #fff;
  background:
    radial-gradient(
      circle at 83% 38%,
      rgba(223, 32, 39, 0.23),
      transparent 30%
    ),
    linear-gradient(110deg, #121212 0 66%, #1f1417 66% 100%);
  overflow: hidden;
}
.tte-location-angle {
  position: absolute;
  right: 13%;
  inset-block: 0;
  width: 260px;
  background: rgba(223, 32, 39, 0.13);
  transform: skewX(-17deg);
  animation: tteAngleDrift 6s ease-in-out infinite alternate;
}
.tte-location-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.tte-location-visual {
  min-height: 365px;
  position: relative;
}
.tte-location-image {
  position: absolute;
  inset: 0 25px 24px 0;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(9, 9, 10, 0.12), rgba(9, 9, 10, 0.12)),
    url("assets/img/truck-ban.jpg")
      center/cover;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tte-location-visual:hover .tte-location-image {
  transform: scale(1.025);
}
.tte-location-line {
  position: absolute;
  right: -8px;
  bottom: 47px;
  width: 67%;
  height: 7px;
  background: var(--tte-red);
  transform: skewX(-24deg);
}
.tte-image-badge {
  position: absolute;
  left: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: #fff;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 5px;
  background: rgba(16, 16, 17, 0.84);
  backdrop-filter: blur(8px);
}
.tte-image-badge svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--tte-red);
  stroke-width: 1.8;
}
.tte-image-badge span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.tte-location-content > p {
  color: rgba(255, 255, 255, 0.7);
}
.tte-location-content ul {
  display: grid;
  gap: 12px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}
.tte-location-content li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.tte-location-content li span {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--tte-red);
  box-shadow: 0 0 0 5px rgba(223, 32, 39, 0.08);
}

.tte-attend {
  background:
    linear-gradient(180deg, #fff, #fbfbfc),
    #fff;
}
.tte-attend-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.tte-attend-card {
  position: relative;
  min-height: 190px;
  padding: 20px 16px 17px;
  border: 1px solid #e5e5e7;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.tte-attend-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--tte-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}
.tte-attend-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 32, 39, 0.36);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.15);
}
.tte-attend-card:hover::after {
  transform: scaleX(1);
}
.tte-card-number {
  position: absolute;
  top: 17px;
  left: 15px;
  color: rgba(223, 32, 39, 0.17);
  font:
    900 34px/1 "Poppins",
    sans-serif;
}
.tte-attend-card > svg {
  width: 36px;
  height: 36px;
  margin-left: auto;
  display: block;
  fill: none;
  stroke: #8f1d22;
  stroke-width: 1.35;
  transition: transform 0.25s ease;
}
.tte-attend-card:hover > svg {
  transform: translateY(-3px) rotate(-4deg);
}
.tte-attend-card h3 {
  margin: 24px 0 7px;
  font-size: 14px;
  line-height: 1.12;
}
.tte-attend-card p {
  margin: 0;
  color: var(--tte-grey);
  font-size: 12px;
  line-height: 1.55;
}

.tte-categories {
  background: linear-gradient(120deg, #f3f4f7, #fff 54%, #f7f7f8);
}
.tte-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 11px;
}
.tte-category-card {
  --tte-card-image: none;
  position: relative;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  color: #fff;
  border-radius: 7px;
  background-image:
    linear-gradient(180deg, rgba(9, 9, 10, 0.08), rgba(9, 9, 10, 0.85)),
    var(--tte-card-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.tte-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.tte-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}
.tte-category-card strong,
.tte-category-card span {
  position: relative;
  z-index: 1;
}
.tte-category-card strong {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.tte-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
}
.tte-category-card:hover strong {
  transform: translateY(-4px);
}
.tte-category-card:hover::before {
  transform: scale(1.09);
}
.tte-category-card span {
  width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  font-size: 8px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}
.tte-category-card strong {
  max-width: 120px;
  font-size: 12px;
  line-height: 1.25;
}
.tte-category-red {
  background-image:
    linear-gradient(180deg, rgba(181, 17, 23, 0.45), rgba(117, 8, 13, 0.9)),
    var(--tte-card-image);
}

.tte-audience {
  color: #fff;
  background:
    radial-gradient(
      circle at 24% 20%,
      rgba(255, 255, 255, 0.025),
      transparent 30%
    ),
    linear-gradient(135deg, #151516, #1b1b1d 58%, #211618);
}
.tte-audience-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.tte-section-copy-light > p {
  color: rgba(255, 255, 255, 0.65);
}
.tte-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tte-audience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: grid;
  grid-template-columns: 7px 1fr 29px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 5px;
  background: #232325;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.tte-audience-grid article:hover {
  transform: translateX(5px);
  background: #2b2b2e;
}
.tte-audience-grid article > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tte-red);
}
.tte-audience-grid strong {
  font-size: 12px;
}
.tte-audience-grid svg {
  width: 25px;
  height: 25px;
  justify-self: end;
  fill: none;
  stroke: #8e2024;
  stroke-width: 1.35;
}

.tte-registration {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 178, 30, 0.12), transparent 22%),
    linear-gradient(180deg, #fff, #f5f6f8);
  overflow: hidden;
}
.tte-registration-shape {
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
}
.tte-registration-layout {
  position: relative;
  z-index: 1;
  display: grid;
  /* grid-template-columns: 0.82fr 1.18fr; */
  gap: 32px;
  align-items: center;
}
.tte-registration-copy {
  min-height: 350px;
  padding: 37px 34px;
  color: #fff;
  border-radius: 7px;
  background: linear-gradient(140deg, #161617 0 70%, #251719 70%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}
.tte-registration-copy::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: skewX(-18deg);
  animation: ttePanelShine 4.5s ease-in-out infinite;
}
.tte-registration-copy::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 15px solid rgba(223, 32, 39, 0.52);
  transform: rotate(45deg);
}
.tte-registration-copy h2 {
  position: relative;
  z-index: 2;
  max-width: 340px;
  font-size: clamp(30px, 3vw, 44px);
}
.tte-registration-copy > p {
  position: relative;
  z-index: 2;
  max-width: 350px;
  color: rgba(255, 255, 255, 0.67);
}
.tte-registration-copy .tte-btn {
  margin-top: 21px;
  position: relative;
  z-index: 2;
}
.tte-registration-illustration {
  position: absolute;
  right: 6px;
  bottom: 4px;
  width: 175px;
  height: 130px;
  z-index: 1;
  pointer-events: none;
}
.tte-person {
  position: absolute;
  bottom: 0;
  width: 45px;
  height: 95px;
  border-radius: 24px 24px 7px 7px;
  background: linear-gradient(180deg, #f5c49e 0 25%, #c81e25 25% 100%);
  box-shadow: inset 0 -32px #202022;
}
.tte-person::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -15px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #efc4a5;
  box-shadow: inset 0 8px #2a2221;
}
.tte-person-one {
  right: 75px;
  transform: rotate(-3deg);
  animation: ttePeopleFloat 3.8s ease-in-out infinite;
}
.tte-person-two {
  right: 12px;
  height: 107px;
  background: linear-gradient(180deg, #e9bd9d 0 25%, #e9e9ec 25% 100%);
  box-shadow: inset 0 -35px #222;
  animation: ttePeopleFloat 3.8s 0.6s ease-in-out infinite;
}
.tte-chat-bubble {
  position: absolute;
  right: 6px;
  top: 0;
  padding: 7px 9px;
  border-radius: 8px 8px 8px 0;
  color: #fff;
  background: var(--tte-red);
  font-size: 7px;
  font-weight: 800;
  animation: tteBubblePulse 2.4s ease-in-out infinite;
}

.tte-form-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #ececee;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 23px 55px rgba(0, 0, 0, 0.13);
}
.tte-form-card:hover {
  box-shadow: 0 29px 64px rgba(0, 0, 0, 0.16);
}
.tte-form-card-heading {
  margin-bottom: 20px;
}
.tte-form-card-heading h3 {
  margin: 5px 0 0;
  color: var(--tte-black);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 900;
}
.tte-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.tte-tab {
  min-height: 35px;
  padding: 0 13px;
  color: #3a3a3b;
  border-radius: 4px;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.tte-tab.is-active {
  color: #fff;
  background: var(--tte-red);
  box-shadow: 0 8px 16px rgba(223, 32, 39, 0.2);
}
.tte-form {
  display: grid;
  gap: 11px;
}
.tte-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}
.tte-form label {
  display: block;
}
.tte-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.tte-form input,
.tte-form select,
.tte-form textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  color: #222;
  border: 1px solid #dddddf;
  border-radius: 5px;
  background: #fff;
  outline: none;
  font-size: 11px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.tte-form input:focus,
.tte-form select:focus,
.tte-form textarea:focus {
  border-color: rgba(223, 32, 39, 0.65);
  box-shadow: 0 0 0 3px rgba(223, 32, 39, 0.08);
}
.tte-form textarea {
  min-height: 102px;
  resize: vertical;
}
.tte-booth-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tte-form-submit {
  width: 100%;
}

.tte-footer {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, #101112, #171718 42%, #101112);
  padding: 72px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.tte-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--tte-red), #ffb21e, var(--tte-red));
  box-shadow: 0 0 28px rgba(223, 32, 39, 0.36);
}
.tte-footer::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 28px;
  width: 260px;
  height: 260px;
  border: 22px solid rgba(223, 32, 39, 0.16);
  transform: rotate(45deg);
  pointer-events: none;
}
.tte-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 35px;
}
.tte-logo-light .tte-logo-text strong {
  color: #fff;
}
.tte-footer h3 {
  margin: 0 0 15px;
  font-size: 13px;
}
.tte-footer p,
.tte-footer a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.tte-footer-brand p {
  max-width: 320px;
  margin: 17px 0 0;
}
.tte-footer-grid > div:not(.tte-footer-brand) > a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.tte-footer-grid > div:not(.tte-footer-brand) > a:hover {
  color: #fff;
  transform: translateX(3px);
}
.tte-address-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.tte-footer-grid > div:not(.tte-footer-brand) > .tte-address-row a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0;
  min-width: 0;
  line-height: 1.45;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.tte-footer-grid > div:not(.tte-footer-brand) > .tte-address-row a:hover {
  color: #fff;
  transform: translateX(3px);
}
.tte-address-row a span {
  min-width: 0;
}
.tte-footer-grid a svg {
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-top: 2px;
  fill: none;
  stroke: var(--tte-red);
  stroke-width: 1.7;
}
.tte-socials {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}
.tte-socials a {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--tte-red);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.tte-socials a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.tte-socials a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
}
.tte-social-facebook::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.1 8.1H13V6.7c0-.6.4-.8.8-.8h1.2V3.7L13.2 3.7C11.1 3.7 10 5 10 6.4v1.7H8.3v2.5H10V21h3V10.6h1.9l.2-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.1 8.1H13V6.7c0-.6.4-.8.8-.8h1.2V3.7L13.2 3.7C11.1 3.7 10 5 10 6.4v1.7H8.3v2.5H10V21h3V10.6h1.9l.2-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tte-social-linkedin::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.7 8.8H3.8V20h2.9V8.8ZM5.3 4a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4ZM20.2 13.6c0-3-1.6-5-4.1-5-1.9 0-2.7 1-3.1 1.7V8.8h-2.8V20h2.9v-5.8c0-1.6.8-2.8 2.2-2.8 1.3 0 2 1 2 2.8V20h2.9v-6.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.7 8.8H3.8V20h2.9V8.8ZM5.3 4a1.7 1.7 0 1 0 0 3.4 1.7 1.7 0 0 0 0-3.4ZM20.2 13.6c0-3-1.6-5-4.1-5-1.9 0-2.7 1-3.1 1.7V8.8h-2.8V20h2.9v-5.8c0-1.6.8-2.8 2.2-2.8 1.3 0 2 1 2 2.8V20h2.9v-6.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tte-social-instagram::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.4 3h9.2A4.4 4.4 0 0 1 21 7.4v9.2a4.4 4.4 0 0 1-4.4 4.4H7.4A4.4 4.4 0 0 1 3 16.6V7.4A4.4 4.4 0 0 1 7.4 3Zm0 2.6a1.8 1.8 0 0 0-1.8 1.8v9.2c0 1 .8 1.8 1.8 1.8h9.2c1 0 1.8-.8 1.8-1.8V7.4c0-1-.8-1.8-1.8-1.8H7.4ZM12 8.1a3.9 3.9 0 1 1 0 7.8 3.9 3.9 0 0 1 0-7.8Zm0 2.4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm4.2-2.8a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.4 3h9.2A4.4 4.4 0 0 1 21 7.4v9.2a4.4 4.4 0 0 1-4.4 4.4H7.4A4.4 4.4 0 0 1 3 16.6V7.4A4.4 4.4 0 0 1 7.4 3Zm0 2.6a1.8 1.8 0 0 0-1.8 1.8v9.2c0 1 .8 1.8 1.8 1.8h9.2c1 0 1.8-.8 1.8-1.8V7.4c0-1-.8-1.8-1.8-1.8H7.4ZM12 8.1a3.9 3.9 0 1 1 0 7.8 3.9 3.9 0 0 1 0-7.8Zm0 2.4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm4.2-2.8a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tte-socials a:hover {
  transform: translateY(-3px);
}
.tte-newsletter {
  display: flex;
  gap: 7px;
}
.tte-newsletter input {
  width: 100%;
  min-width: 0;
  height: 41px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  font-size: 10px;
}
.tte-newsletter .tte-btn {
  min-height: 41px;
  padding-inline: 14px;
}
.tte-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.tte-floating-actions {
  position: fixed;
  right: 17px;
  bottom: 17px;
  z-index: 75;
  display: grid;
  gap: 9px;
}
.tte-floating-actions a {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.23);
  transition: transform 0.2s ease;
  animation:
    tteFloatButton 3s ease-in-out infinite,
    ttePulseRing 2.6s ease-in-out infinite;
}
.tte-floating-actions a:hover {
  transform: translateY(-4px);
}
.tte-float-call {
  background: var(--tte-red);
}
.tte-float-whatsapp {
  background: #25d366;
}
.tte-float-whatsapp strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.tte-float-whatsapp::before {
  content: "";
  width: 23px;
  height: 23px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.08 0C5.5 0 .16 5.34.16 11.92c0 2.1.55 4.15 1.6 5.96L0 24l6.28-1.65a11.9 11.9 0 0 0 5.8 1.48h.01c6.58 0 11.92-5.34 11.92-11.92 0-3.18-1.24-6.18-3.49-8.43ZM12.09 21.8h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.72.98.99-3.63-.24-.37a9.84 9.84 0 0 1-1.51-5.27c0-5.46 4.44-9.9 9.91-9.9a9.84 9.84 0 0 1 7 2.9 9.84 9.84 0 0 1 2.9 7c0 5.46-4.45 9.9-9.91 9.9Zm5.43-7.42c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.64-2.04c-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.41.25-.7.25-1.29.18-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.08 0C5.5 0 .16 5.34.16 11.92c0 2.1.55 4.15 1.6 5.96L0 24l6.28-1.65a11.9 11.9 0 0 0 5.8 1.48h.01c6.58 0 11.92-5.34 11.92-11.92 0-3.18-1.24-6.18-3.49-8.43ZM12.09 21.8h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.72.98.99-3.63-.24-.37a9.84 9.84 0 0 1-1.51-5.27c0-5.46 4.44-9.9 9.91-9.9a9.84 9.84 0 0 1 7 2.9 9.84 9.84 0 0 1 2.9 7c0 5.46-4.45 9.9-9.91 9.9Zm5.43-7.42c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.64-2.04c-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.41.25-.7.25-1.29.18-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tte-floating-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.tte-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}
.tte-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.tte-modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 29px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.28s ease;
}
.tte-modal.is-open .tte-modal-card {
  transform: translateY(0) scale(1);
}
.tte-modal-card h2 {
  font-size: 30px;
}
.tte-modal-card > p {
  color: var(--tte-grey);
  font-size: 12px;
}
.tte-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid black;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.tte-modal-close svg {
  display: none;
}
.tte-modal-close::before,
.tte-modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transform: rotate(45deg);
}
.tte-modal-close::after {
  transform: rotate(-45deg);
}

.tte-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  max-width: min(480px, calc(100% - 32px));
  padding: 18px 24px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tte-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.tte-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--tte-delay, 0ms);
}
.tte-reveal-left {
  transform: translateX(-38px);
}
.tte-reveal-right {
  transform: translateX(38px);
}
.tte-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes tteHeroZoom {
  to {
    transform: scale(1.08) translateX(-1%) translateY(var(--tte-hero-drift, 0));
  }
}
@keyframes tteHeroSweep {
  from {
    transform: translateX(-4%);
    opacity: 0.72;
  }
  to {
    transform: translateX(4%);
    opacity: 1;
  }
}
@keyframes tteFloatCard {
  50% {
    transform: translateY(calc(-8px + var(--tte-card-drift, 0px)));
  }
}
@keyframes tteAngleDrift {
  to {
    transform: translateX(18px) skewX(-17deg);
  }
}
@keyframes ttePanelShine {
  0%,
  38% {
    left: -35%;
  }
  72%,
  100% {
    left: 118%;
  }
}
@keyframes tteFloatButton {
  50% {
    transform: translateY(-5px);
  }
}
@keyframes tteLineShine {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(440%);
  }
}
@keyframes ttePeopleFloat {
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}
@keyframes tteBubblePulse {
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 1120px) {
  .tte-nav {
    position: fixed;
    top: 80px;
    left: 18px;
    right: 18px;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    padding: 11px;
    border: 1px solid var(--tte-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--tte-shadow);
  }
  .tte-header.is-shrunk .tte-nav {
    top: 70px;
  }
  .tte-nav.is-open {
    display: flex;
    opacity: 1;
  }
  .tte-nav > a,
  .tte-dropdown-button {
    width: 100%;
    padding: 12px;
    text-align: left;
    border-radius: 6px;
  }
  .tte-nav > a::after,
  .tte-dropdown-button::after {
    display: none;
  }
  .tte-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 3px 0 5px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .tte-dropdown.is-open .tte-dropdown-menu {
    display: block;
  }
  .tte-menu-button {
    display: grid;
  }
  .tte-header-cta {
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
    order: -1;
  }
  .tte-hero-layout,
  .tte-about-layout,
  .tte-location-layout,
  .tte-audience-layout,
  .tte-registration-layout {
    grid-template-columns: 1fr;
  }
  .tte-hero-layout {
    gap: 30px;
  }
  .tte-event-card {
    max-width: 420px;
  }
  .tte-about-layout,
  .tte-location-layout,
  .tte-audience-layout {
    gap: 40px;
  }
  .tte-attend-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tte-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tte-registration-copy {
    min-height: 315px;
  }
  .tte-registration-copy > p {
    max-width: 320px;
  }
  .tte-registration-illustration {
    right: -6px;
    opacity: 0.82;
  }
}

@keyframes tteMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }
  .tte-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 65px;
  }
  .tte-page main,
.tte-page section,
.tte-page footer {
  max-width: 100%;
  overflow-x: clip;
}

.tte-page header {
  max-width: 100%;
  /* overflow-x: clip; -- REMOVE this for header */
}
  .tte-logo-img {
  
  width: 100px;

}
  .tte-container {
    width: min(100% - 28px, var(--tte-max));
  }
  .tte-section {
    padding: 62px 0;
  }
  .tte-topbar {
    height: 29px;
  }
  .tte-topbar-inner {
    grid-template-columns: 1fr auto;
  }
  .tte-mini-controls,
  .tte-topbar-message span:first-child,
  .tte-topbar-dot {
    display: none;
  }
  .tte-topbar-message {
    justify-self: start;
    font-size: 8px;
  }
  .tte-event-mini {
    font-size: 8px;
  }
  .tte-header-row {
    min-height: 65px;
  }
  .tte-header-countdown {
    display: none;
  }
  .tte-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 15, 16, 0.08);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.055);
  }
  .tte-menu-button {
    display: grid !important;
  }
  .tte-header-cta {
    padding: 8px 10px !important;
    font-size: 9px !important;
    height: 36px;
  }
  .tte-logo-symbol {
    width: 47px;
  }
  .tte-logo-text strong {
    font-size: 14px;
  }
  .tte-nav {
    top: 65px;
  }
  .tte-nav.is-open {
    display: flex !important;
    opacity: 1 !important;
  }
  .tte-header.is-shrunk .tte-nav {
    top: 65px;
  }
  .tte-hero {
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }
  .tte-hero-image {
    left: 0;
    right: 0;
    background-position: 58% center;
  }
  .tte-hero-layout {
    padding: 64px 0 90px;
  }
  .tte-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
    letter-spacing: 0;
  }
  .tte-hero-content > p {
    font-size: 12px;
  }
  .tte-hero-buttons {
    flex-direction: column;
  }
  .tte-hero-buttons .tte-btn {
    width: 100%;
  }
  .tte-event-card {
    width: 100%;
  }
  .tte-hero-redline {
    width: 88%;
    bottom: 49px;
  }
  .tte-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    transform: none;
  }
  .tte-stat-card {
    min-height: 95px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .tte-about {
    padding-top: 34px;
  }
  .tte-industry-list,
  .tte-audience-grid,
  .tte-form-grid {
    grid-template-columns: 1fr;
  }
  .tte-industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .tte-industry-list article {
    min-height: 82px;
    grid-template-columns: 8px 1fr;
    grid-template-rows: 1fr auto;
    gap: 6px 8px;
    padding: 12px;
  }
  .tte-industry-list svg {
    grid-column: 2;
    justify-self: end;
    width: 25px;
    height: 25px;
  }
  .tte-industry-list strong {
    font-size: 10px;
    line-height: 1.25;
  }
  .tte-location-visual {
    min-height: 310px;
  }
  .tte-location-image {
    inset-right: 0;
  }
  .tte-location-line {
    right: -12px;
  }
  .tte-attend-grid {
    grid-template-columns: 1fr;
  }
  .tte-attend-card {
    min-height: 160px;
  }
  .tte-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tte-category-card {
    min-height: 128px;
  }
  .tte-registration-copy {
    min-height: 390px;
    padding: 30px 23px;
  }
  .tte-registration-illustration {
    opacity: 0.9;
  }
  .tte-form-card {
    padding: 18px;
  }
  .tte-tabs {
    overflow-x: auto;
  }
  .tte-footer-grid {
    grid-template-columns: 1fr;
  }
  .tte-footer-bottom,
  .tte-newsletter {
    flex-direction: column;
  }
  .tte-floating-actions {
    right: 11px;
    bottom: 11px;
  }
  .tte-floating-actions a {
    width: 45px;
    height: 45px;
  }
}

/* Consistent header and cleaner non-photo page graphics */
.tte-nav > a.is-active {
  color: var(--tte-red);
}
.tte-nav > a.is-active::after {
  transform: scaleX(1);
}
.tte-dropdown-button.is-active {
  color: var(--tte-red);
}
.tte-dropdown-button.is-active::after {
  transform: scaleX(1);
}
.tte-nav > a.is-active:hover {
  color: var(--tte-red);
}
.tte-nav > a.is-active:hover::after {
  transform: scaleX(1);
}
.tte-inner-hero::before,
.page-about-expo .tte-inner-hero::before,
.page-organizer .tte-inner-hero::before,
.page-profile .tte-inner-hero::before,
.page-exhibitor-reg .tte-inner-hero::before,
.page-visitor-reg .tte-inner-hero::before,
.page-delegate-reg .tte-inner-hero::before,
.page-catalogue .tte-inner-hero::before,
.page-contact .tte-inner-hero::before,
.page-past .tte-inner-hero::before {
  background-image:
    radial-gradient(circle at 78% 30%, rgba(223, 32, 39, 0.28), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(255, 178, 30, 0.14), transparent 24%),
    linear-gradient(115deg, #0f1114 0%, #171a1f 52%, #26171a 100%) !important;
  background-size: auto !important;
  background-position: center !important;
}
.tte-why-card,
.page-profile .tte-category-card:nth-child(3n + 1),
.page-profile .tte-category-card:nth-child(3n + 2),
.page-profile .tte-category-card:nth-child(3n),
.tte-category-card {
  background-image:
    linear-gradient(135deg, rgba(18, 18, 18, 0.94), rgba(45, 31, 34, 0.9)),
    linear-gradient(135deg, #2b2f36, #111214) !important;
}
.tte-location-image {
  background:
    linear-gradient(135deg, rgba(223, 32, 39, 0.28), transparent 38%),
    linear-gradient(135deg, #22262c, #111214) !important;
}

.tte-live-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.tte-live-scene span {
  position: absolute;
  display: block;
}
.tte-live-convoy span {
  left: calc(-160px - var(--i) * 130px);
  bottom: calc(34px + var(--lane) * 16px);
  width: 118px;
  height: 38px;
  opacity: 0.18;
  background:
    radial-gradient(circle at 24% 100%, #fff 0 7px, transparent 8px),
    radial-gradient(circle at 78% 100%, #fff 0 7px, transparent 8px),
    linear-gradient(0deg, var(--tte-red), var(--tte-red)) 0 10px / 100% 22px no-repeat;
  clip-path: polygon(0 26%, 62% 26%, 72% 0, 88% 0, 100% 28%, 100% 78%, 0 78%);
  animation: tteSceneDrive 11s linear infinite;
  animation-delay: calc(var(--i) * -1.1s);
}
.tte-live-route span {
  left: calc(12% + var(--i) * 10%);
  top: calc(22% + var(--band) * 18%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffb21e;
  box-shadow: 0 0 0 0 rgba(255, 178, 30, 0.42);
  animation: tteScenePulse 2.2s ease-out infinite;
  animation-delay: calc(var(--i) * 0.18s);
}
.tte-live-route::before,
.tte-live-network::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), var(--tte-red), transparent);
  transform: skewY(-8deg);
  animation: tteRouteGlow 3.4s ease-in-out infinite;
}
.tte-live-tyre span {
  right: calc(5% + var(--i) * 28px);
  top: calc(18% + var(--i) * 12px);
  width: calc(78px + var(--i) * 11px);
  height: calc(78px + var(--i) * 11px);
  border: 8px solid rgba(255,255,255,.16);
  border-top-color: rgba(223, 32, 39, 0.8);
  border-radius: 50%;
  animation: tteTyreRoll calc(4s + var(--i) * .35s) linear infinite;
}
.tte-live-loading span {
  left: calc(8% + var(--i) * 13%);
  bottom: calc(18% + var(--lane) * 8%);
  width: 72px;
  height: 46px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 178, 30, .82), rgba(223,32,39,.82));
  box-shadow: inset 0 -8px rgba(0,0,0,.16), 0 18px 34px rgba(0,0,0,.22);
  animation: tteCargoLift 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * .22s);
}
.tte-live-scanner span {
  left: 0;
  right: 0;
  top: calc(18% + var(--i) * 9%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,178,30,.8), transparent);
  transform: translateX(-100%);
  animation: tteScanLine 3.6s linear infinite;
  animation-delay: calc(var(--i) * .23s);
}
.tte-live-network span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #5fb3ff;
  box-shadow: 0 0 22px rgba(95, 179, 255, 0.7);
  animation: tteScenePulse 2s ease-out infinite;
  animation-delay: calc(var(--i) * .16s);
}
.tte-live-network span:nth-child(1) { left: 12%; top: 24%; }
.tte-live-network span:nth-child(2) { left: 38%; top: 18%; }
.tte-live-network span:nth-child(3) { left: 68%; top: 28%; }
.tte-live-network span:nth-child(4) { left: 22%; top: 48%; }
.tte-live-network span:nth-child(5) { left: 52%; top: 50%; }
.tte-live-network span:nth-child(6) { left: 82%; top: 46%; }
.tte-live-network span:nth-child(7) { left: 15%; top: 70%; }
.tte-live-network span:nth-child(8) { left: 45%; top: 74%; }
.tte-live-network span:nth-child(9) { left: 74%; top: 68%; }
.tte-live-papers span {
  right: calc(9% + var(--i) * 46px);
  top: calc(16% + var(--band) * 46px);
  width: 64px;
  height: 86px;
  border-radius: 5px;
  background:
    linear-gradient(var(--tte-red), var(--tte-red)) 12px 18px / 36px 4px no-repeat,
    linear-gradient(#d8dbe1, #d8dbe1) 12px 34px / 42px 3px no-repeat,
    linear-gradient(#d8dbe1, #d8dbe1) 12px 47px / 34px 3px no-repeat,
    rgba(255,255,255,.82);
  opacity: 0.2;
  transform: rotate(calc(-8deg + var(--i) * 4deg));
  animation: ttePaperFloat 3.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * .24s);
}
.tte-live-signal span {
  right: 12%;
  top: 34%;
  width: calc(70px + var(--i) * 38px);
  height: calc(70px + var(--i) * 38px);
  border: 2px solid rgba(37, 211, 102, 0.35);
  border-radius: 50%;
  animation: tteSignalPulseContact 2.8s ease-out infinite;
  animation-delay: calc(var(--i) * .22s);
}
.tte-live-film span {
  left: calc(-90px + var(--i) * 160px);
  bottom: calc(70px + var(--lane) * 22px);
  width: 132px;
  height: 76px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.92) 0 12px, transparent 12px 22px) 0 0 / 100% 10px no-repeat,
    repeating-linear-gradient(90deg, rgba(255,255,255,.92) 0 12px, transparent 12px 22px) 0 100% / 100% 10px no-repeat,
    linear-gradient(135deg, rgba(223,32,39,.7), rgba(255,178,30,.7));
  opacity: .16;
  animation: tteSceneDrive 14s linear infinite;
  animation-delay: calc(var(--i) * -1.4s);
}

@keyframes tteSceneDrive {
  to {
    transform: translateX(calc(100vw + 520px));
  }
}
@keyframes tteScenePulse {
  to {
    box-shadow: 0 0 0 22px rgba(255, 178, 30, 0);
    transform: scale(1.18);
    opacity: .45;
  }
}
@keyframes tteRouteGlow {
  50% {
    opacity: .35;
    transform: translateY(-10px) skewY(-8deg);
  }
}
@keyframes tteCargoLift {
  50% {
    transform: translateY(-18px) rotate(-2deg);
  }
}
@keyframes tteScanLine {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 760px) {
  .tte-live-scene {
    opacity: .62;
  }
  .tte-live-tyre span,
  .tte-live-signal span,
  .tte-live-papers span {
    transform: scale(.72);
  }
}

/* Lower-page unique section treatments */
.page-about-expo .tte-about-depth {
  background:
    linear-gradient(90deg, rgba(223, 32, 39, 0.08) 0 1px, transparent 1px) 0 0 / 54px 100%,
    linear-gradient(180deg, #fff, #f4f5f7);
  overflow: hidden;
}
.page-about-expo .tte-about-depth::after {
  content: "";
  position: absolute;
  left: -180px;
  right: 0;
  bottom: 26px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(18,18,18,.18) 45% 46%, transparent 46% 100%) 0 50% / 120px 4px repeat-x,
    linear-gradient(90deg, #1d2024, #2c3037);
  clip-path: polygon(0 45%, 100% 45%, 100% 56%, 0 56%);
  animation: tteRoadFlowLong 7s linear infinite;
}
.page-about-expo .tte-focus-list article {
  border-left: 4px solid var(--tte-red);
  background:
    linear-gradient(135deg, #fff, #f8f9fb),
    radial-gradient(circle at 96% 18%, rgba(223,32,39,.18), transparent 18%);
}
.page-about-expo .tte-focus-list article::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 52px;
  height: 22px;
  opacity: .12;
  background:
    radial-gradient(circle at 22% 100%, #111 0 5px, transparent 6px),
    radial-gradient(circle at 82% 100%, #111 0 5px, transparent 6px),
    var(--tte-red);
  clip-path: polygon(0 35%, 64% 35%, 75% 0, 90% 0, 100% 36%, 100% 75%, 0 75%);
}

.page-organizer .tte-inner-white {
  background:
    radial-gradient(circle at 10% 12%, rgba(255,178,30,.14), transparent 24%),
    linear-gradient(135deg, #f8f9fb, #fff);
}
.page-organizer .tte-inner-white::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(223,32,39,.35), transparent);
  animation: tteRouteGlow 3.4s ease-in-out infinite;
}
.page-organizer .tte-focus-list article {
  min-height: 138px;
  align-content: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 253, 0.96)) padding-box,
    linear-gradient(135deg, rgba(223,32,39,.82), rgba(255,178,30,.72), rgba(223,32,39,.24)) border-box;
  border: 1px solid transparent;
  isolation: isolate;
  box-shadow:
    0 18px 42px rgba(17, 18, 20, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.page-organizer .tte-focus-list article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 58px rgba(17, 18, 20, 0.13),
    0 0 0 4px rgba(223, 32, 39, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}
.page-organizer .tte-focus-list article::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  z-index: -1;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(223, 32, 39, 0.14), transparent 62%);
  transform: translateY(-50%) scale(0.78);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.page-organizer .tte-focus-list article::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 7px;
  border: 1px solid rgba(223, 32, 39, 0.08);
  background:
    linear-gradient(90deg, rgba(223, 32, 39, 0.16), rgba(255, 178, 30, 0.14)) left bottom / 0 3px no-repeat;
  opacity: 0.8;
  transition: background-size 0.32s ease, border-color 0.32s ease;
}
.page-organizer .tte-focus-list article:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.page-organizer .tte-focus-list article:hover::after {
  border-color: rgba(223, 32, 39, 0.18);
  background-size: 100% 3px;
}
.page-organizer .tte-focus-list article span {
  box-shadow:
    0 10px 24px rgba(223, 32, 39, 0.28),
    inset 0 -4px 10px rgba(145, 9, 15, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.page-organizer .tte-focus-list article:hover span {
  transform: scale(1.06);
  box-shadow:
    0 14px 28px rgba(223, 32, 39, 0.34),
    0 0 0 6px rgba(223, 32, 39, 0.08),
    inset 0 -4px 10px rgba(145, 9, 15, 0.22);
}
.page-organizer .tte-focus-list article span,
.page-organizer .tte-focus-list article strong {
  position: relative;
  z-index: 1;
}

.page-profile .tte-categories {
  background:
    radial-gradient(circle at 85% 18%, rgba(223,32,39,.12), transparent 20%),
    linear-gradient(135deg, #111214 0 34%, #f4f5f7 34% 100%);
}
.page-profile .tte-categories::before {
  opacity: 1;
}
.page-profile .tte-categories .tte-section-heading {
  max-width: 520px;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.page-profile .tte-categories .tte-kicker {
  color: #ff4f55;
}
.page-profile .tte-categories .tte-section-heading h2 {
  color: #fff;
  max-width: 520px;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.06;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}
.page-profile .tte-categories .tte-heading-line {
  background: #ffb21e;
}
.page-profile .tte-profile-grid {
  gap: 14px;
}
.page-profile .tte-profile-grid .tte-category-card {
  min-height: 176px;
  border: 1px solid rgba(255,255,255,.18);
}
.page-profile .tte-profile-grid .tte-category-card::after {
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform .55s ease;
}
.page-profile .tte-profile-grid .tte-category-card:hover::after {
  transform: translateX(120%) skewX(-18deg);
}
.page-profile .tte-audience {
  background:
    linear-gradient(90deg, #141516 0 54%, #231719 54% 100%);
}

.page-exhibitor-reg .tte-section-split {
  background:
    linear-gradient(90deg, #f6f7f9 0 52%, #fff 52% 100%);
}
.page-exhibitor-reg .tte-register-benefits article {
  min-height: 150px;
  align-content: start;
  border-top: 4px solid var(--tte-red);
  background:
    linear-gradient(180deg, #fff, #f7f8fa);
}
.page-exhibitor-reg .tte-register-benefits article::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(223,32,39,.22), rgba(255,178,30,.2));
  animation: tteCargoLift 3s ease-in-out infinite;
}
.page-exhibitor-reg .tte-audience .tte-pdf-grid {
  align-items: stretch;
}
.page-exhibitor-reg .tte-audience .tte-pdf-card {
  min-height: 220px;
  border-radius: 0 8px 8px 0;
  border-left: 5px solid var(--tte-red);
}

.page-visitor-reg .tte-inner-white {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,178,30,.16) 48% 52%, transparent 52% 100%) 0 0 / 120px 100%,
    #fff;
}
.page-visitor-reg .tte-pdf-card {
  border-radius: 999px;
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
}
.page-visitor-reg .tte-pdf-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.page-delegate-reg .tte-inner-white {
  background:
    radial-gradient(circle at 20% 24%, rgba(95,179,255,.18), transparent 20%),
    radial-gradient(circle at 82% 66%, rgba(223,32,39,.12), transparent 24%),
    #f8f9fb;
}
.page-delegate-reg .tte-register-benefits {
  position: relative;
}
.page-delegate-reg .tte-register-benefits::before {
  content: "";
  position: absolute;
  inset: 22px 12% auto;
  height: calc(100% - 44px);
  border: 2px dashed rgba(95,179,255,.34);
  border-radius: 18px;
  pointer-events: none;
}
.page-delegate-reg .tte-register-benefits article {
  z-index: 1;
  min-height: 128px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}

.page-catalogue .tte-inner-white {
  background:
    linear-gradient(90deg, rgba(17,18,20,.04) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(17,18,20,.04) 1px, transparent 1px) 0 0 / 42px 42px,
    #f7f8fa;
}
.page-catalogue .tte-pdf-card {
  min-height: 260px;
  border-radius: 6px;
  background:
    linear-gradient(var(--tte-red), var(--tte-red)) 24px 28px / 82px 5px no-repeat,
    linear-gradient(#d9dce2, #d9dce2) 24px 64px / 72% 4px no-repeat,
    linear-gradient(#d9dce2, #d9dce2) 24px 88px / 56% 4px no-repeat,
    #fff;
  box-shadow: 12px 14px 0 rgba(223,32,39,.08), 0 20px 44px rgba(17,18,20,.1);
}
.page-catalogue .tte-pdf-card:nth-child(2) {
  transform: rotate(1.5deg);
}
.page-catalogue .tte-pdf-card:nth-child(3) {
  transform: rotate(-1deg);
}

.page-contact .tte-inner-white {
  background:
    radial-gradient(circle at 16% 24%, rgba(37,211,102,.16), transparent 22%),
    linear-gradient(135deg, #f6f7f9, #fff);
}
.page-contact .tte-pdf-grid {
  grid-template-columns: 1fr 1.35fr 1fr;
}
.page-contact .tte-pdf-card {
  border-radius: 8px;
  border-top: 4px solid #25d366;
}
.page-contact .tte-pdf-card:nth-child(2) {
  transform: translateY(-18px);
}

.page-past .tte-inner-white .tte-section-heading {
  padding: 22px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #111214, #302126);
}
.page-past .tte-inner-white .tte-heading-line {
  background: #ffb21e;
}
.page-past .tte-why-grid {
  align-items: stretch;
}
.page-past .tte-why-card:nth-child(1) {
  transform: rotate(-1deg);
}
.page-past .tte-why-card:nth-child(2) {
  transform: translateY(22px);
}
.page-past .tte-why-card:nth-child(3) {
  transform: rotate(1deg);
}
.page-past .tte-why-card:hover {
  transform: translateY(-10px) rotate(0);
}
.tte-section-live.tte-pdf-card b,
.tte-section-live.tte-why-card span,
.tte-section-live.tte-category-card span,
.tte-section-live .tte-focus-list span {
  animation: tteLowerPop 1.1s ease both;
}
.tte-section-live.tte-pdf-card,
.tte-section-live.tte-why-card,
.tte-section-live.tte-category-card,
.tte-section-live:is(article) {
  animation: tteLowerSettle .9s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes tteRoadFlowLong {
  to {
    background-position: 240px 50%, 0 0;
  }
}
@keyframes tteLowerPop {
  0% {
    transform: scale(.78);
  }
  55% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tteLowerSettle {
  0% {
    filter: saturate(.75);
  }
  100% {
    filter: saturate(1.08);
  }
}

@media (max-width: 760px) {
  .page-about-expo .tte-pdf-grid,
  .page-profile .tte-audience .tte-about-layout,
  .page-contact .tte-pdf-grid {
    grid-template-columns: 1fr;
  }
  .page-visitor-reg .tte-pdf-card {
    border-radius: 8px;
    min-height: 160px;
  }
  .page-contact .tte-pdf-card:nth-child(2),
  .page-past .tte-why-card:nth-child(1),
  .page-past .tte-why-card:nth-child(2),
  .page-past .tte-why-card:nth-child(3),
  .page-catalogue .tte-pdf-card:nth-child(2),
  .page-catalogue .tte-pdf-card:nth-child(3) {
    transform: none;
  }
  .page-delegate-reg .tte-register-benefits::before,
  .page-about-expo .tte-about-depth::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .tte-logo-text strong {
    font-size: 12px;
  }
  .tte-logo-text small {
    font-size: 7px;
  }
  .tte-event-countdown {
    gap: 5px;
  }
  .tte-event-card {
    padding: 16px;
  }
  .tte-stats-grid {
    gap: 8px;
  }
  .tte-stat-card b {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tte-page *,
  .tte-page *::before,
  .tte-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .tte-reveal {
    opacity: 1;
    transform: none;
  }
}

.tte-inner-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #111214;
  isolation: isolate;
}
.tte-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 11, 13, 0.94), rgba(10, 11, 13, 0.68) 48%, rgba(10, 11, 13, 0.28)),
    var(--tte-inner-image);
  background-size: cover;
  background-position: center;
  animation: tteHeroZoom 16s ease-in-out infinite alternate;
}
.tte-inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  pointer-events: none;
}
.tte-inner-hero .tte-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 7%;
  top: 20%;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(223, 32, 39, 0.38);
  transform: rotate(45deg);
  animation: tteBadgeOrbit 8s ease-in-out infinite alternate;
}
.tte-inner-about {
  --tte-inner-image: url("assets/img/IMG_7363.JPG.jpeg");
}
.tte-inner-organizer {
  --tte-inner-image: url("assets/img/truck.png");
}
.tte-inner-profile {
  --tte-inner-image: url("assets/img/IMG_7363.JPG.jpeg");
}
.tte-inner-register {
  --tte-inner-image: url("assets/img/IMG_7363.JPG.jpeg");
}
.tte-inner-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 54px;
  padding: 86px 0 96px;
}
.tte-inner-copy,
.tte-inner-date-card,
.tte-inner-hero .tte-form-card {
  position: relative;
  z-index: 4;
}
.tte-inner-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5.1vw, 68px);
  line-height: 1.03;
  font-weight: 900;
}
.tte-inner-copy p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}
.tte-inner-date-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.tte-inner-date-card::after,
.tte-pdf-card::after,
.tte-focus-list article::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.tte-inner-date-card:hover::after,
.tte-pdf-card:hover::after,
.tte-focus-list article:hover::after {
  left: 120%;
}
.tte-inner-date-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223, 32, 39, 0.24), transparent 45%);
  pointer-events: none;
}
.tte-inner-date-card b {
  position: relative;
  display: block;
  color: #fff;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 900;
}
.tte-inner-date-card span {
  position: relative;
  display: block;
  margin-top: 12px;
  color: #ffb21e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tte-inner-date-card p {
  position: relative;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.tte-inner-white {
  background:
    radial-gradient(circle at 8% 20%, rgba(223, 32, 39, 0.08), transparent 25%),
    #fff;
}
.tte-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tte-pdf-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px;
  border: 1px solid #ececee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(17, 18, 20, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tte-pdf-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(17, 18, 20, 0.15);
}
.tte-pdf-card b {
  display: block;
  color: var(--tte-red);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}
.tte-pdf-card span {
  display: block;
  margin-top: 10px;
  color: #171718;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.tte-pdf-card p {
  margin: 14px 0 0;
  color: var(--tte-grey);
  font-size: 13px;
}
.tte-pdf-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--tte-grey);
  font-size: 13px;
  line-height: 1.5;
}
.tte-pdf-list li {
  padding-top: 10px;
  border-top: 1px dashed rgba(17, 18, 20, 0.12);
}
.tte-pdf-list li:first-child {
  padding-top: 0;
  border-top: none;
}
.tte-pdf-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tte-pdf-list a:hover {
  color: var(--tte-red);
}
.tte-audience .tte-pdf-list li {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.tte-about-depth {
  background: linear-gradient(135deg, #f6f7f9, #fff);
}
.tte-focus-list {
  display: grid;
  gap: 12px;
}
.tte-focus-list article {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #e6e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 32px rgba(17, 18, 20, 0.07);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.tte-focus-list article:hover {
  transform: translateX(5px);
  border-color: rgba(223, 32, 39, 0.34);
}
.tte-focus-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--tte-red);
  font-size: 11px;
  font-weight: 900;
}
.tte-focus-list strong {
  font-size: 13px;
  line-height: 1.35;
}
.tte-exhibit-ribbon {
  display: flex;
  gap: 12px;
  padding: 12px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.tte-exhibit-ribbon span {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: #fff;
  border-radius: 5px;
  background: rgba(223, 32, 39, 0.82);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  animation: tteRibbonMove 18s linear infinite;
}
.tte-section-split {
  position: relative;
  overflow: hidden;
}
.tte-section-split::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: 46px;
  background: linear-gradient(135deg, transparent 48%, rgba(223, 32, 39, 0.12) 49%, rgba(223, 32, 39, 0.12) 51%, transparent 52%);
  background-size: 58px 100%;
  pointer-events: none;
}
.tte-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tte-why-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 17, 19, 0.2), rgba(16, 17, 19, 0.92)),
    var(--tte-why-image, linear-gradient(135deg, #292d33, #111214));
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.18);
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}
.tte-why-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 58px rgba(17, 18, 20, 0.25);
}
.tte-why-card span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--tte-red);
  font-size: 10px;
  font-weight: 900;
}
.tte-why-card h3 {
  margin: 56px 0 9px;
  font-size: 18px;
}
.tte-why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}
.tte-industry-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: center;
}
.tte-industry-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tte-industry-points article {
  min-height: 118px;
  padding: 18px;
  border-left: 3px solid var(--tte-red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.tte-industry-points b {
  display: block;
  color: #fff;
  font-size: 18px;
}
.tte-industry-points span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}
@keyframes tteBadgeOrbit {
  to {
    transform: translate(-18px, 22px) rotate(63deg);
  }
}
@keyframes tteRibbonMove {
  to {
    transform: translateX(-220px);
  }
}
.tte-audience .tte-focus-list article {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}
.tte-audience .tte-focus-list strong {
  color: #fff;
}
.tte-audience .tte-pdf-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}
.tte-audience .tte-pdf-card b,
.tte-audience .tte-pdf-card span {
  color: #fff;
}
.tte-audience .tte-pdf-card p {
  color: rgba(255, 255, 255, 0.66);
}
.tte-profile-grid .tte-category-card {
  --tte-card-image: linear-gradient(135deg, #24262b, #111214);
}
.tte-pdf-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}
.tte-pdf-mini div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.tte-pdf-mini b,
.tte-pdf-mini span {
  display: block;
}
.tte-pdf-mini b {
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}
.tte-pdf-mini span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.tte-register-benefits {
  grid-template-columns: repeat(4, 1fr);
}

/* Refined professional scale for inner pages */
.tte-inner-hero {
  min-height: 500px;
}
.tte-inner-hero-grid {
  padding: 70px 0 78px;
}
.tte-inner-copy h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.1;
  font-weight: 850;
}
.tte-inner-copy p {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.7;
}
.tte-inner-date-card {
  padding: 24px;
}
.tte-inner-date-card b {
  font-size: 46px;
}
.tte-section-copy h2,
.tte-section-heading h2,
.tte-location-content h2,
.tte-registration-copy h2,
.tte-modal-card h2 {
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.14;
}
.tte-section {
  padding: 72px 0;
}
.tte-industry-strip {
  gap: 52px;
}
.tte-industry-points article {
  min-height: 104px;
  padding: 16px;
}
.tte-industry-points b {
  font-size: 16px;
}
.tte-industry-points span {
  font-size: 11px;
  line-height: 1.55;
}
.tte-focus-list article {
  min-height: 66px;
}
.tte-focus-list strong {
  font-size: 12px;
}
.tte-footer-bridge-inner {
  min-height: 142px;
  padding: 30px 0;
}
.tte-footer-bridge h2 {
  max-width: 680px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.16;
}
.tte-footer-bridge p {
  font-size: 12px;
}
.tte-footer-bridge {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(223, 32, 39, 0.94), rgba(145, 9, 15, 0.96)),
    url("assets/img/ban-truck.png") center/cover;
  overflow: hidden;
}
.tte-footer-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  animation: tteGridDrift 9s linear infinite;
}
.tte-footer-bridge-inner {
  position: relative;
  z-index: 1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 80px;
}
.tte-footer-bridge h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 900;
}
.tte-footer-bridge p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.tte-live-lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px;
  background:
    linear-gradient(180deg, rgba(15, 15, 16, 0) 0%, rgba(15, 15, 16, 0.25) 18%, rgba(15, 15, 16, 0.92) 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.72) 48% 52%, transparent 52% 100%) center 42px / 170px 5px repeat-x,
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.2)) top / 100% 3px no-repeat,
    linear-gradient(90deg, var(--tte-red), #ffb21e, var(--tte-red)) bottom / 100% 7px no-repeat,
    linear-gradient(180deg, #2e3034 0%, #171819 42%, #0d0d0e 100%);
  overflow: visible;
}
.tte-live-lane::before,
.tte-live-lane::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -320px;
  width: 300px;
  height: 65px;
  background-image: url("assets/img/truck.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.18))
    drop-shadow(0 16px 18px rgba(0, 0, 0, 0.5));
  animation: tteTruckRun 30s linear infinite;
  will-change: transform;
}
.tte-live-lane::after {
  animation-delay: 9s;
  opacity: 0;
}
.tte-tilt-card {
  transform:
    perspective(900px)
    rotateX(calc(var(--tte-tilt-y, 0) * -1deg))
    rotateY(calc(var(--tte-tilt-x, 0) * 1deg))
    translateY(var(--tte-lift, 0));
}
.tte-tilt-card:hover {
  --tte-lift: -7px;
}
@keyframes ttePulseRing {
  50% {
    box-shadow:
      0 15px 34px rgba(0, 0, 0, 0.23),
      0 0 0 10px rgba(223, 32, 39, 0.12);
  }
}
@keyframes tteGridDrift {
  to {
    background-position: 84px 42px;
  }
}
@keyframes tteTruckRun {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  46% {
    transform: translateX(calc(100vw + 620px));
    opacity: 1;
  }
  47%,
  100% {
    transform: translateX(calc(100vw + 620px));
    opacity: 0;
  }
}
@media (max-width: 1120px) {
  .tte-inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tte-inner-date-card {
    max-width: 460px;
  }
  .tte-register-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .tte-why-grid,
  .tte-industry-strip {
    grid-template-columns: 1fr;
  }
  .tte-footer-bridge-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 760px) {
  .tte-inner-hero {
    min-height: auto;
  }
  .tte-inner-hero-grid {
    padding: 64px 0 78px;
  }
  .tte-inner-copy h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
  }
  .tte-inner-copy p {
    font-size: 12px;
    line-height: 1.65;
  }
  .tte-pdf-grid,
  .tte-pdf-mini,
  .tte-register-benefits {
    grid-template-columns: 1fr;
  }
  .tte-focus-list article {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }
  .tte-inner-hero .tte-container::before {
    width: 96px;
    height: 96px;
    border-width: 14px;
    right: -20px;
    top: 58px;
  }
  .tte-exhibit-ribbon {
    margin-top: 22px;
  }
  .tte-why-grid,
  .tte-industry-points {
    grid-template-columns: 1fr;
  }
  .tte-why-card {
    min-height: 176px;
  }
  .tte-why-card h3 {
    margin-top: 42px;
  }
  .tte-footer {
    padding-top: 56px;
  }
  .tte-footer-bridge-inner {
    min-height: 176px;
    padding-bottom: 122px;
  }
  .tte-footer-bridge h2 {
    font-size: clamp(24px, 8vw, 32px);
  }
}

/* Premium inner pages */
.expo-inner-page {
  --inner-red: #df2027;
  --inner-black: #111214;
  --inner-ink: #292d33;
  --inner-muted: #727780;
  --inner-line: #e7e8ec;
  margin: 0;
  min-width: 320px;
  color: var(--inner-ink);
  background: #f6f7f9;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
.expo-inner-page *,
.expo-inner-page *::before,
.expo-inner-page *::after {
  box-sizing: border-box;
}
.expo-inner-page a {
  color: inherit;
  text-decoration: none;
}
.inner-container {
  width: min(1180px, calc(100% - 38px));
  margin-inline: auto;
}
.inner-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 18, 20, 0.92);
  backdrop-filter: blur(16px);
}
.inner-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.inner-logo {
  display: grid;
  gap: 2px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.inner-logo span {
  font-size: 17px;
}
.inner-logo b {
  color: var(--inner-red);
}
.inner-logo small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 2px;
}
.inner-nav nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.inner-nav nav a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}
.inner-nav nav a:hover,
.inner-nav nav a.active {
  color: #fff;
  background: rgba(223, 32, 39, 0.18);
}
.inner-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(135deg, #ef3138, #b81218);
  box-shadow: 0 15px 30px rgba(223, 32, 39, 0.28);
  font-size: 12px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.inner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(223, 32, 39, 0.36);
}
.inner-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}
.inner-hero,
.registration-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111214;
}
.inner-hero::before,
.registration-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 18, 20, 0.92), rgba(17, 18, 20, 0.66)),
    var(--inner-hero-image);
  background-size: cover;
  background-position: center;
  animation: innerZoom 18s ease-in-out infinite alternate;
}
.inner-hero::after,
.registration-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.about-hero {
  --inner-hero-image: url("assets/img/ban-truck.png");
}
.organizer-hero {
  --inner-hero-image: url("assets/img/truck.png");
}
.profile-hero {
  --inner-hero-image: url("assets/img/ban-truck.png");
}
.registration-hero {
  --inner-hero-image: url("assets/img/truck.png");
}
.inner-hero-grid,
.registration-grid {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 58px;
  padding: 86px 0;
}
.inner-hero-copy h1,
.registration-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 900;
}
.inner-hero-copy p,
.registration-copy p {
  max-width: 670px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}
.inner-kicker,
.form-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffb21e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}
.hero-dashboard,
.zone-card,
.premium-form-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}
.hero-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
}
.hero-dashboard div,
.benefit-rail div {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 18px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
}
.hero-dashboard b,
.benefit-rail b,
.zone-card b {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.hero-dashboard span,
.benefit-rail span,
.zone-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.inner-section {
  position: relative;
  padding: 86px 0;
  background: #fff;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: start;
}
.section-title h2 {
  margin: 0;
  color: var(--inner-black);
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.07;
  font-weight: 900;
}
.section-title.narrow {
  max-width: 760px;
  margin-bottom: 34px;
}
.feature-stack {
  display: grid;
  gap: 13px;
}
.feature-stack.compact {
  grid-template-columns: repeat(3, 1fr);
}
.feature-panel,
.process-card,
.mosaic-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-panel {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--inner-line);
  background: linear-gradient(135deg, #fff, #f7f8fa);
  box-shadow: 0 18px 38px rgba(17, 18, 20, 0.09);
}
.feature-panel:hover,
.process-card:hover,
.mosaic-tile:hover {
  transform: translateY(-6px);
}
.feature-panel span {
  color: var(--inner-red);
  font-size: 13px;
  font-weight: 900;
}
.feature-panel h3 {
  margin: 10px 0 7px;
  font-size: 19px;
}
.feature-panel p,
.process-card p,
.mosaic-tile span,
.zone-card p {
  margin: 0;
  color: var(--inner-muted);
  font-size: 13px;
}
.dark-inner {
  color: #fff;
  background:
    radial-gradient(circle at 72% 22%, rgba(223, 32, 39, 0.22), transparent 28%),
    linear-gradient(135deg, #111214, #202125);
}
.dark-inner .section-title h2,
.dark-inner .feature-panel h3 {
  color: #fff;
}
.dark-inner .feature-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}
.dark-inner .feature-panel p {
  color: rgba(255, 255, 255, 0.66);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-card {
  min-height: 175px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
}
.process-card b {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
.process-card p {
  color: rgba(255, 255, 255, 0.68);
}
.process-grid.light .process-card {
  border-color: var(--inner-line);
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 18, 20, 0.08);
}
.process-grid.light .process-card b {
  color: var(--inner-red);
}
.process-grid.light .process-card p {
  color: var(--inner-muted);
}
.zone-card {
  padding: 30px;
}
.zone-card b {
  display: block;
  color: #ffb21e;
  font-size: 82px;
}
.zone-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
}
.premium-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 176px;
  gap: 13px;
}
.mosaic-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0.1), rgba(17, 18, 20, 0.88)),
    url("assets/img/ban-truck.png") center/cover;
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.18);
}
.mosaic-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}
.mosaic-tile.wide {
  grid-column: span 2;
}
.mosaic-tile small {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  background: var(--inner-red);
  border-radius: 4px;
  padding: 5px 8px;
  font-weight: 900;
}
.mosaic-tile strong {
  font-size: 18px;
  line-height: 1.15;
}
.mosaic-tile span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
}
.registration-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
}
.benefit-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.premium-form-card {
  padding: 28px;
  color: var(--inner-black);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.95);
}
.premium-form-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.1;
}
.premium-form-card form {
  display: grid;
  gap: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.premium-form-card input,
.premium-form-card select,
.premium-form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #dddfe5;
  border-radius: 6px;
  background: #fff;
  outline: none;
  font: inherit;
  font-size: 12px;
}
.premium-form-card textarea {
  min-height: 106px;
  resize: vertical;
}
.premium-form-card input:focus,
.premium-form-card select:focus,
.premium-form-card textarea:focus {
  border-color: rgba(223, 32, 39, 0.62);
  box-shadow: 0 0 0 4px rgba(223, 32, 39, 0.08);
}
.submit-cta {
  width: 100%;
}
.inner-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #111214;
}
.footer-simple {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.inner-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  padding: 12px 16px;
  color: #fff;
  border-radius: 7px;
  background: #111214;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px);
  transition: 0.25s ease;
}
.inner-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.expo-inner-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.expo-inner-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes innerZoom {
  to {
    transform: scale(1.08);
  }
}
@media (max-width: 980px) {
  .inner-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
  .inner-nav nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .inner-hero-grid,
  .registration-grid,
  .editorial-grid,
  .feature-stack.compact {
    grid-template-columns: 1fr;
  }
  .inner-hero-grid,
  .registration-grid {
    min-height: auto;
    padding: 68px 0;
  }
  .premium-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid,
  .benefit-rail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .inner-container {
    width: min(100% - 28px, 1180px);
  }
  .inner-nav nav a {
    white-space: nowrap;
  }
  .inner-hero-copy h1,
  .registration-copy h1 {
    font-size: 39px;
  }
  .hero-dashboard,
  .premium-mosaic,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .mosaic-tile.large,
  .mosaic-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .premium-form-card {
    padding: 21px;
  }
}

/* Unique page personalities: shared header/footer, different body stories */
.page-about-expo .tte-inner-hero::before {
  background-image:
    linear-gradient(90deg, rgba(10, 11, 13, 0.9), rgba(10, 11, 13, 0.58) 50%, rgba(10, 11, 13, 0.2)),
    url("assets/img/ban-truck.png");
  background-position: center right;
}
.page-about-expo .tte-inner-hero {
  background:
    linear-gradient(180deg, #101214, #151719);
}
.page-about-expo .tte-inner-hero::after {
  opacity: 0.24;
  background-size: 72px 72px;
  animation: tteGridDrift 11s linear infinite;
}
.page-about-expo .tte-inner-date-card::before {
  background: conic-gradient(from 120deg, rgba(223, 32, 39, 0.5), transparent, rgba(255, 178, 30, 0.35), transparent);
  animation: tteSpinGlow 7s linear infinite;
}

.page-organizer .tte-inner-hero {
  background:
    radial-gradient(circle at 82% 35%, rgba(255, 178, 30, 0.2), transparent 20%),
    #111214;
}
.page-organizer .tte-inner-hero::after {
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(223, 32, 39, 0.34) 43% 45%, transparent 45% 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 150px 100%, 48px 48px;
  animation: tteLaneSlide 8s linear infinite;
}
.page-organizer .tte-industry-points article {
  transform-origin: left center;
  animation: tteCardBreathe 4.5s ease-in-out infinite;
}
.page-organizer .tte-industry-points article:nth-child(2),
.page-organizer .tte-industry-points article:nth-child(4) {
  animation-delay: 0.7s;
}

.page-profile .tte-category-grid {
  perspective: 1100px;
}
.page-profile .tte-category-card {
  min-height: 164px;
  transform-style: preserve-3d;
}
.page-profile .tte-category-card:nth-child(3n + 1) {
  background-image:
    linear-gradient(180deg, rgba(10, 11, 13, 0.14), rgba(10, 11, 13, 0.88)),
    url("assets/img/ban-truck.png");
}
.page-profile .tte-category-card:nth-child(3n + 2) {
  background-image:
    linear-gradient(180deg, rgba(10, 11, 13, 0.14), rgba(10, 11, 13, 0.88)),
    url("assets/img/truck.png");
}
.page-profile .tte-category-card:nth-child(3n) {
  background-image:
    linear-gradient(180deg, rgba(10, 11, 13, 0.14), rgba(10, 11, 13, 0.88)),
    url("assets/img/ban-truck.png");
}

.page-exhibitor-reg .tte-inner-hero::after,
.page-visitor-reg .tte-inner-hero::after,
.page-delegate-reg .tte-inner-hero::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.08) 38px 40px),
    linear-gradient(120deg, transparent 0 38%, rgba(223, 32, 39, 0.24) 38% 39%, transparent 39%);
  animation: tteRoadFlow 5.5s linear infinite;
}
.page-exhibitor-reg .tte-form-card {
  border-top: 5px solid var(--tte-red);
}
.page-visitor-reg .tte-form-card {
  border-top: 5px solid #ffb21e;
}
.page-delegate-reg .tte-form-card {
  border-top: 5px solid #5fb3ff;
}
.page-visitor-reg .tte-pdf-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 7px solid rgba(223, 32, 39, 0.18);
  border-radius: 50%;
  animation: tteTyreRoll 2.8s linear infinite;
}
.page-delegate-reg .tte-focus-list article {
  border-left: 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--tte-red), #5fb3ff) border-box;
  border: 1px solid transparent;
}

.page-catalogue .tte-form-card {
  transform: none;
  box-shadow: 12px 14px 0 rgba(223, 32, 39, 0.1), 0 26px 56px rgba(0, 0, 0, 0.18);
}
.page-catalogue .tte-form-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 58px;
  height: 76px;
  border-radius: 4px;
  background:
    linear-gradient(var(--tte-red), var(--tte-red)) 12px 18px / 34px 4px no-repeat,
    linear-gradient(#ddd, #ddd) 12px 32px / 28px 3px no-repeat,
    linear-gradient(#ddd, #ddd) 12px 43px / 34px 3px no-repeat,
    #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  animation: none;
}

.page-contact .tte-pdf-mini div {
  position: relative;
  overflow: hidden;
}
.page-contact .tte-pdf-mini div::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: tteSignalPulse 1.8s ease-out infinite;
}
.page-contact .tte-form-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.96)),
    radial-gradient(circle at 90% 10%, rgba(37, 211, 102, 0.16), transparent 24%);
}

.page-past .tte-why-grid {
  grid-template-columns: 1.25fr 0.9fr 1.05fr;
}
.page-past .tte-why-card {
  min-height: 250px;
}
.page-past .tte-why-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 10px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 14px, transparent 14px 26px);
  opacity: 0.32;
}
.page-past .tte-pdf-card {
  background:
    linear-gradient(135deg, #fff, #f8f8f8);
  border-style: dashed;
}

.page-about-expo .tte-pdf-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}
.page-about-expo .tte-pdf-card:first-child {
  min-height: 250px;
  background:
    radial-gradient(circle at 88% 18%, rgba(223, 32, 39, 0.18), transparent 24%),
    linear-gradient(135deg, #fff, #f6f7f9);
}
.page-organizer .tte-focus-list {
  grid-template-columns: repeat(2, 1fr);
}
.page-organizer .tte-focus-list article {
  min-height: 112px;
}
.page-profile .tte-inner-white {
  background:
    linear-gradient(90deg, #fff 0 58%, #f3f4f7 58% 100%);
}
.page-exhibitor-reg .tte-inner-hero-grid,
.page-visitor-reg .tte-inner-hero-grid {
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1fr);
}
.page-exhibitor-reg .tte-form-card,
.page-visitor-reg .tte-form-card {
  transform: translateY(18px);
}
.page-visitor-reg .tte-pdf-grid {
  grid-template-columns: .85fr 1.3fr .85fr;
}
.page-delegate-reg .tte-register-benefits {
  grid-template-columns: repeat(2, 1fr);
}
.page-catalogue .tte-pdf-grid {
  grid-template-columns: .95fr .95fr 1.3fr;
}
.page-contact .tte-pdf-card {
  min-height: 170px;
}
.page-contact .tte-pdf-card:nth-child(2) {
  grid-column: span 1;
  background:
    linear-gradient(135deg, #111214, #2a1b1d);
  color: #fff;
}
.page-contact .tte-pdf-card:nth-child(2) b,
.page-contact .tte-pdf-card:nth-child(2) span,
.page-contact .tte-pdf-card:nth-child(2) p {
  color: #fff;
}
.page-past .tte-inner-white {
  background:
    repeating-linear-gradient(90deg, rgba(17,18,20,.035) 0 16px, transparent 16px 34px),
    #fff;
}
.page-past .tte-audience {
  background:
    linear-gradient(135deg, #111214, #202125 50%, #141719);
}
.page-about-expo .tte-footer-bridge {
  background:
    linear-gradient(135deg, rgba(223, 32, 39, 0.94), rgba(255, 178, 30, 0.74)),
    url("assets/img/ban-truck.png") center/cover;
}
.page-catalogue .tte-footer-bridge,
.page-contact .tte-footer-bridge {
  background:
    linear-gradient(135deg, #171718, #342326);
}

.page-catalogue .tte-inner-white {
  padding: 64px 0 74px;
}
.page-catalogue .tte-pdf-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}
.page-catalogue .tte-pdf-card,
.page-catalogue .tte-pdf-card:nth-child(2),
.page-catalogue .tte-pdf-card:nth-child(3) {
  min-height: 210px;
  padding: 28px 26px;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background:
    linear-gradient(90deg, var(--tte-red), #ffb21e) 0 0 / 100% 5px no-repeat,
    radial-gradient(circle at 92% 18%, rgba(223, 32, 39, 0.08), transparent 24%),
    #fff;
  box-shadow: 0 18px 42px rgba(17, 18, 20, 0.09);
}
.page-catalogue .tte-pdf-card::after {
  display: none;
}
.page-catalogue .tte-pdf-card b {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 6px;
  color: #fff;
  background: var(--tte-red);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}
.page-catalogue .tte-pdf-card span {
  margin-top: 22px;
  color: #171718;
  font-size: 18px;
  line-height: 1.2;
  text-transform: none;
}
.page-catalogue .tte-pdf-card p {
  max-width: 360px;
  margin-top: 12px;
  line-height: 1.55;
  font-size: 14px;
}
.page-catalogue .tte-footer-bridge-inner {
  min-height: 150px;
  padding: 34px 0 66px;
}

@media (max-width: 760px) {
  .page-catalogue .tte-pdf-grid {
    grid-template-columns: 1fr;
  }
  .page-catalogue .tte-pdf-card,
  .page-catalogue .tte-pdf-card:nth-child(2),
  .page-catalogue .tte-pdf-card:nth-child(3) {
    min-height: 168px;
  }
}

.tte-inner-hero::before {
  transform-origin: center;
}
.tte-inner-copy::after {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--tte-red), #ffb21e);
  transform: skewX(-20deg);
  animation: tteLinePulse 2.4s ease-in-out infinite;
}

.page-about-expo .tte-inner-hero-grid::after,
.page-organizer .tte-inner-hero-grid::after,
.page-profile .tte-inner-hero-grid::after,
.page-exhibitor-reg .tte-inner-hero-grid::after,
.page-visitor-reg .tte-inner-hero-grid::after,
.page-delegate-reg .tte-inner-hero-grid::after,
.page-catalogue .tte-inner-hero-grid::after,
.page-contact .tte-inner-hero-grid::after,
.page-past .tte-inner-hero-grid::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 28px;
  z-index: -1;
  pointer-events: none;
}
.page-about-expo .tte-inner-hero-grid::after {
  width: 310px;
  height: 88px;
  background:
    radial-gradient(circle at 23% 80%, #101112 0 13px, #fff 14px 19px, transparent 20px),
    radial-gradient(circle at 78% 80%, #101112 0 13px, #fff 14px 19px, transparent 20px),
    linear-gradient(0deg, #df2027 0 44px, transparent 45px),
    linear-gradient(135deg, transparent 0 55%, #fff 56% 100%);
  clip-path: polygon(0 45%, 58% 45%, 68% 8%, 86% 8%, 100% 45%, 100% 78%, 0 78%);
  opacity: 0.22;
  animation: tteConvoyGhost 9s linear infinite;
}
.page-organizer .tte-inner-hero-grid::after {
  width: 340px;
  height: 160px;
  background:
    radial-gradient(circle, rgba(255, 178, 30, 0.8) 0 5px, transparent 6px) 0 0 / 58px 58px,
    linear-gradient(90deg, transparent, rgba(223, 32, 39, 0.6), transparent) center / 100% 4px no-repeat;
  opacity: 0.34;
  animation: tteRoutePulse 4.2s ease-in-out infinite;
}
.page-profile .tte-inner-hero-grid::after {
  width: 230px;
  height: 230px;
  border: 26px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(223, 32, 39, 0.7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.06);
  animation: tteTyreRoll 6s linear infinite;
}
.page-exhibitor-reg .tte-inner-hero-grid::after {
  width: 300px;
  height: 120px;
  background:
    linear-gradient(#fff, #fff) 0 55px / 100% 4px no-repeat,
    linear-gradient(90deg, rgba(223, 32, 39, 0.72), rgba(255, 178, 30, 0.64)) 0 0 / 100% 100%;
  clip-path: polygon(0 28%, 74% 28%, 88% 0, 100% 0, 100% 72%, 0 72%);
  opacity: 0.18;
  animation: tteConvoyGhost 7s linear infinite reverse;
}
.page-visitor-reg .tte-inner-hero-grid::after {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0 12%, rgba(255, 178, 30, 0.74) 12% 18%, transparent 18% 30%, rgba(223, 32, 39, 0.68) 30% 36%, transparent 36% 100%);
  opacity: 0.26;
  animation: tteSpinGlow 9s linear infinite;
}
.page-delegate-reg .tte-inner-hero-grid::after {
  width: 320px;
  height: 220px;
  background:
    radial-gradient(circle at 18% 35%, #ffb21e 0 6px, transparent 7px),
    radial-gradient(circle at 52% 65%, #df2027 0 6px, transparent 7px),
    radial-gradient(circle at 84% 28%, #5fb3ff 0 6px, transparent 7px),
    linear-gradient(25deg, transparent 0 30%, rgba(255,255,255,.35) 30% 31%, transparent 31% 100%),
    linear-gradient(-19deg, transparent 0 45%, rgba(255,255,255,.28) 45% 46%, transparent 46% 100%);
  opacity: 0.4;
  animation: tteRoutePulse 3.8s ease-in-out infinite;
}
.page-catalogue .tte-inner-hero-grid::after {
  width: 210px;
  height: 270px;
  border-radius: 8px;
  background:
    linear-gradient(var(--tte-red), var(--tte-red)) 28px 42px / 122px 8px no-repeat,
    linear-gradient(#d7d9de, #d7d9de) 28px 78px / 150px 5px no-repeat,
    linear-gradient(#d7d9de, #d7d9de) 28px 102px / 126px 5px no-repeat,
    linear-gradient(#d7d9de, #d7d9de) 28px 126px / 154px 5px no-repeat,
    rgba(255,255,255,.88);
  box-shadow: 24px 24px 0 rgba(223,32,39,.18);
  opacity: 0.18;
  transform: rotate(8deg);
  animation: ttePaperFloat 4s ease-in-out infinite;
}
.page-contact .tte-inner-hero-grid::after {
  width: 250px;
  height: 250px;
  border: 2px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(37, 211, 102, 0.08), 0 0 0 58px rgba(223, 32, 39, 0.06);
  animation: tteSignalPulseContact 2.6s ease-out infinite;
}
.page-past .tte-inner-hero-grid::after {
  width: 390px;
  height: 128px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, #fff 0 24px, transparent 24px 36px) 0 0 / 100% 16px no-repeat,
    repeating-linear-gradient(90deg, #fff 0 24px, transparent 24px 36px) 0 100% / 100% 16px no-repeat,
    linear-gradient(90deg, rgba(223, 32, 39, 0.8), rgba(255, 178, 30, 0.74));
  opacity: 0.16;
  animation: tteFilmMove 10s linear infinite;
}

@keyframes tteSpinGlow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes tteLaneSlide {
  to {
    background-position: 300px 0, 48px 48px;
  }
}
@keyframes tteCardBreathe {
  50% {
    transform: translateY(-4px) scale(1.012);
  }
}
@keyframes tteRoadFlow {
  to {
    background-position: 120px 0, 220px 0;
  }
}
@keyframes tteTyreRoll {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ttePaperFloat {
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}
@keyframes tteSignalPulse {
  to {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
}
@keyframes tteLinePulse {
  50% {
    width: 140px;
    opacity: 0.72;
  }
}
@keyframes tteConvoyGhost {
  from {
    transform: translateX(40px);
  }
  to {
    transform: translateX(-180px);
  }
}
@keyframes tteRoutePulse {
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 0.55;
  }
}
@keyframes tteSignalPulseContact {
  to {
    transform: scale(1.16);
    opacity: 0;
  }
}
@keyframes tteFilmMove {
  to {
    background-position: 72px 0, -72px 100%, 0 0;
  }
}

@media (max-width: 760px) {
  .page-past .tte-why-grid {
    grid-template-columns: 1fr;
  }
  .page-catalogue .tte-form-card {
    transform: none;
  }
  .page-about-expo .tte-pdf-grid,
  .page-organizer .tte-focus-list,
  .page-exhibitor-reg .tte-inner-hero-grid,
  .page-visitor-reg .tte-inner-hero-grid,
  .page-visitor-reg .tte-pdf-grid,
  .page-delegate-reg .tte-register-benefits,
  .page-catalogue .tte-pdf-grid {
    grid-template-columns: 1fr;
  }
  .page-exhibitor-reg .tte-form-card {
    transform: none;
  }
  .tte-booth-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-visitor-reg .tte-form-card {
    transform: none;
  }
  .page-about-expo .tte-inner-hero-grid::after,
  .page-organizer .tte-inner-hero-grid::after,
  .page-profile .tte-inner-hero-grid::after,
  .page-exhibitor-reg .tte-inner-hero-grid::after,
  .page-visitor-reg .tte-inner-hero-grid::after,
  .page-delegate-reg .tte-inner-hero-grid::after,
  .page-catalogue .tte-inner-hero-grid::after,
  .page-contact .tte-inner-hero-grid::after,
  .page-past .tte-inner-hero-grid::after {
    right: -90px;
    bottom: 8px;
    transform: scale(0.62);
  }
}

/* Final image pass: keep every image-ready section visual. */
.tte-inner-hero::before,
.page-about-expo .tte-inner-hero::before,
.page-organizer .tte-inner-hero::before,
.page-profile .tte-inner-hero::before,
.page-exhibitor-reg .tte-inner-hero::before,
.page-visitor-reg .tte-inner-hero::before,
.page-delegate-reg .tte-inner-hero::before,
.page-catalogue .tte-inner-hero::before,
.page-contact .tte-inner-hero::before,
.page-past .tte-inner-hero::before {
  background-image:
    linear-gradient(90deg, rgba(8, 9, 11, 0.9), rgba(8, 9, 11, 0.56) 54%, rgba(8, 9, 11, 0.18)),
    var(--tte-inner-image, url("assets/img/IMG_7363.JPG.jpeg")) !important;
  background-size: cover !important;
  background-position: center right !important;
}
.tte-category-card,
.tte-why-card,
.page-profile .tte-category-card:nth-child(3n + 1),
.page-profile .tte-category-card:nth-child(3n + 2),
.page-profile .tte-category-card:nth-child(3n) {
  background-image:
    linear-gradient(180deg, rgba(10, 11, 13, 0.18), rgba(10, 11, 13, 0.9)),
    var(--tte-card-image, var(--tte-why-image, url("assets/img/IMG_7363.JPG.jpeg"))) !important;
  background-size: cover !important;
  background-position: center !important;
}
.tte-hero-image,
.tte-location-image,
.tte-footer-bridge,
.mosaic-tile {
  background-image:
    linear-gradient(180deg, rgba(17, 18, 20, 0.12), rgb(17 18 20 / 0%)), var(--tte-section-image, url(assets/img/truck-ban.jpg)) !important;
  background-size: cover !important;
  background-position: center !important;
}
.tte-hero-image {
  --tte-section-image: url("assets/img/truck-ban.jpg");
}
.tte-location-image,
.tte-footer-bridge {
  --tte-section-image: url("assets/img/hoee.png");
}
.mosaic-tile:nth-child(2n),
.tte-category-card:nth-child(2n),
.tte-why-card:nth-child(2n) {
  --tte-card-image: url("assets/img/12.avif");
  --tte-why-image: url("assets/img/12.avif");
  --tte-section-image: url("assets/img/12.avif");
}
.mosaic-tile:nth-child(2n + 1),
.tte-category-card:nth-child(2n + 1),
.tte-why-card:nth-child(2n + 1) {
  --tte-card-image: url("assets/img/2.jpeg");
  --tte-why-image: url("assets/img/2.jpeg");
  --tte-section-image: url("assets/img/2.jpeg");
}
.mosaic-tile:nth-child(3n),
.tte-category-card:nth-child(3n),
.tte-why-card:nth-child(3n) {
  --tte-card-image: url("assets/img/8.webp");
  --tte-why-image: url("assets/img/8.webp");
  --tte-section-image: url("assets/img/8.webp");
}
.mosaic-tile:nth-child(4n),
.tte-category-card:nth-child(4n),
.tte-why-card:nth-child(4n) {
  --tte-card-image: url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=900&q=80");
  --tte-why-image: url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=900&q=80");
  --tte-section-image: url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=900&q=80");
}

/* Remove the boxed ribbon/button UI shown in the supplied screenshot */
.tte-inner-hero .tte-exhibit-ribbon,
.tte-inner-hero .tte-hero-buttons,
.tte-inner-copy::after {
  display: none !important;
}

/* Homepage banner readability on light truck artwork */
.tte-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.72) 0%, rgba(8, 9, 11, 0.48) 34%, rgba(8, 9, 11, 0.12) 58%, transparent 100%),
    radial-gradient(circle at 24% 50%, rgba(223, 32, 39, 0.14), transparent 34%);
}
.tte-hero-content {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}
.tte-hero h1 {
  color: #fff;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.78);
}
.tte-hero-content > p,
.tte-eyebrow {
  color: rgba(255, 255, 255, 0.94);
}
