/* =========================================================
   TourVoz Features
   Hero v01
   ========================================================= */

.tv-features-hero {
  position: relative;

  padding: 118px 0 105px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(105, 86, 232, 0.10),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfbfe 100%
    );
}

.tv-features-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(520px, 1.08fr);

  gap: 78px;
  align-items: center;
}


/* =========================================================
   Copy
   ========================================================= */

.tv-features-hero-copy {
  position: relative;
  z-index: 3;

  max-width: 650px;
}

.tv-features-hero-copy h1 {
  margin: 25px 0 0;

  color: var(--tv-ink);

  font-size: clamp(48px, 4.7vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  font-weight: 750;
}

.tv-features-hero-copy h1 .tv-gradient-text {
  display: block;

  margin-top: 4px;
}

.tv-features-hero-copy > p {
  max-width: 610px;

  margin: 27px 0 0;

  color: var(--tv-muted);

  font-size: 15px;
  line-height: 1.9;
}


/* Actions */

.tv-features-hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.tv-features-hero-primary,
.tv-features-hero-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 22px;

  border-radius: 11px;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tv-features-hero-primary {
  background: var(--tv-accent);

  color: #fff;

  box-shadow:
    0 10px 25px rgba(105, 86, 232, 0.20);
}

.tv-features-hero-primary:hover {
  background: var(--tv-accent-hover);

  color: #fff;

  transform: translateY(-2px);

  box-shadow:
    0 14px 30px rgba(105, 86, 232, 0.25);
}

.tv-features-hero-secondary {
  border: 1px solid var(--tv-border);

  background: #fff;

  color: var(--tv-ink);
}

.tv-features-hero-secondary:hover {
  border-color: rgba(105, 86, 232, 0.25);

  color: var(--tv-accent);

  transform: translateY(-2px);
}


/* Proof */

.tv-features-hero-proof {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 22px;

  margin-top: 31px;
}

.tv-features-hero-proof span {
  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--tv-muted);

  font-size: 10px;
}

.tv-features-hero-proof i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--tv-accent);

  box-shadow:
    0 0 0 4px rgba(105, 86, 232, 0.08);
}


/* =========================================================
   Capability Map
   ========================================================= */

.tv-features-hero-map {
  position: relative;

  min-height: 570px;
}

.tv-features-map-glow {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 410px;
  height: 410px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.13),
      rgba(105, 86, 232, 0.035) 50%,
      transparent 72%
    );

  pointer-events: none;
}


/* Core */

.tv-features-map-core {
  position: absolute;

  z-index: 2;

  top: 50%;
  left: 50%;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 178px;
  height: 178px;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(105, 86, 232, 0.15);
  border-radius: 44px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f5f2ff
    );

  box-shadow:
    0 28px 65px rgba(31, 27, 75, 0.13);
}

.tv-features-map-core::before {
  content: "";

  position: absolute;

  inset: 14px;

  border: 1px solid rgba(105, 86, 232, 0.09);
  border-radius: 34px;

  pointer-events: none;
}

.tv-features-map-core small {
  position: relative;

  color: var(--tv-accent);

  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.tv-features-map-core strong {
  position: relative;

  margin-top: 8px;

  color: var(--tv-ink);

  font-size: 17px;
  line-height: 1.2;
}

.tv-features-map-core span {
  position: relative;

  margin-top: 6px;

  color: var(--tv-muted);

  font-size: 10px;
}


/* Cards */

.tv-features-map-card {
  position: absolute;

  z-index: 3;

  display: grid;

  grid-template-columns: 28px 1fr;

  gap: 11px;

  width: 230px;

  padding: 17px 17px;

  border: 1px solid rgba(105, 86, 232, 0.12);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 16px 38px rgba(28, 31, 55, 0.08);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tv-features-map-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  border-radius: 8px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}

.tv-features-map-card small {
  display: block;

  color: #a0a4b0;

  font-size: 6px;
  line-height: 1;
  letter-spacing: 0.09em;
  font-weight: 750;
}

.tv-features-map-card h2 {
  margin: 6px 0 0;

  color: var(--tv-ink);

  font-size: 13px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.tv-features-map-card p {
  margin: 6px 0 0;

  color: var(--tv-muted);

  font-size: 10px;
  line-height: 1.45;
}


/* Positions */

.tv-features-map-website {
  top: 22px;
  left: 50%;

  transform: translateX(-50%);
}

.tv-features-map-tours {
  top: 155px;
  left: 0;
}

.tv-features-map-languages {
  top: 155px;
  right: 0;
}

.tv-features-map-leads {
  bottom: 35px;
  left: 35px;
}

.tv-features-map-growth {
  right: 35px;
  bottom: 35px;
}


/* Decorative connections */

.tv-features-hero-map::before,
.tv-features-hero-map::after {
  content: "";

  position: absolute;

  z-index: 1;

  top: 50%;
  left: 50%;

  border: 1px solid rgba(105, 86, 232, 0.08);
  border-radius: 50%;

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.tv-features-hero-map::before {
  width: 350px;
  height: 350px;
}

.tv-features-hero-map::after {
  width: 500px;
  height: 500px;

  border-style: dashed;
}


/* =========================================================
   Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-map-card {
    transition:
      transform 260ms ease,
      border-color 220ms ease,
      box-shadow 260ms ease;
  }

  .tv-features-map-card:not(.tv-features-map-website):hover {
    transform: translateY(-4px);

    border-color: rgba(105, 86, 232, 0.22);

    box-shadow:
      0 22px 45px rgba(28, 31, 55, 0.11);
  }

  .tv-features-map-website:hover {
    transform:
      translateX(-50%)
      translateY(-4px);

    border-color: rgba(105, 86, 232, 0.22);

    box-shadow:
      0 22px 45px rgba(28, 31, 55, 0.11);
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-hero-grid {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(460px, 1.1fr);

    gap: 42px;
  }

  .tv-features-map-card {
    width: 205px;
  }

  .tv-features-map-leads {
    left: 10px;
  }

  .tv-features-map-growth {
    right: 10px;
  }
}


@media (max-width: 921px) {

  .tv-features-hero {
    padding: 90px 0 82px;
  }

  .tv-features-hero-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .tv-features-hero-copy {
    max-width: 760px;
  }

  .tv-features-hero-copy h1 {
    max-width: 720px;
  }

  .tv-features-hero-map {
    width: 100%;
    max-width: 650px;

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-features-hero {
    padding: 72px 0 65px;
  }

  .tv-features-hero-copy h1 {
    font-size: 44px;
  }

  .tv-features-hero-map {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

    min-height: 0;
  }

  .tv-features-map-glow,
  .tv-features-hero-map::before,
  .tv-features-hero-map::after {
    display: none;
  }

  .tv-features-map-core,
  .tv-features-map-card {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    width: 100%;

    transform: none;
  }

  .tv-features-map-core {
    height: auto;

    align-items: flex-start;

    padding: 25px;

    border-radius: 18px;
  }

  .tv-features-map-core::before {
    display: none;
  }

  .tv-features-map-card {
    padding: 18px;
  }

  .tv-features-map-card p {
    font-size: 9px;
  }

  .tv-features-map-website:hover {
    transform: none;
  }
}


@media (max-width: 544px) {

  .tv-features-hero-copy h1 {
    font-size: 38px;
  }

  .tv-features-hero-actions {
    display: grid;
  }

  .tv-features-hero-primary,
  .tv-features-hero-secondary {
    width: 100%;
  }

  .tv-features-hero-proof {
    display: grid;
  }
}

/* =========================================================
   Features — Build & Manage
   Internal v01
   ========================================================= */

.tv-features-build {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(105, 86, 232, 0.06),
      transparent 27%
    ),
    var(--tv-bg-soft);

  border-top: 1px solid var(--tv-border);
}

.tv-features-build-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(520px, 1.1fr);

  gap: 90px;
  align-items: center;
}


/* =========================================================
   Copy
   ========================================================= */

.tv-features-build-copy {
  max-width: 560px;
}

.tv-features-build-copy .tv-h2 {
  max-width: 550px;
}

.tv-features-build-copy .tv-h2 .tv-gradient-text {
  display: block;
}

.tv-features-build-copy .tv-lead {
  max-width: 550px;

  margin-top: 22px;

  font-size: 15px;
  line-height: 1.85;
}


/* Points */

.tv-features-build-points {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  margin-top: 36px;

  border-top: 1px solid var(--tv-border);
}

.tv-features-build-points article {
  display: grid;

  grid-template-columns: 29px 1fr;

  gap: 11px;

  padding: 20px 18px 20px 0;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-build-points article:nth-child(even) {
  padding-left: 18px;

  border-left: 1px solid var(--tv-border);
}

.tv-features-build-points article > span {
  padding-top: 3px;

  color: var(--tv-accent);

  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.tv-features-build-points strong {
  display: block;

  color: var(--tv-ink);

  font-size: 14px;
  line-height: 1.4;
}

.tv-features-build-points p {
  margin: 7px 0 0;

  color: var(--tv-muted);

  font-size: 11px;
  line-height: 1.7;
}


/* Link */

.tv-features-build-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 28px;

  color: var(--tv-accent);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;
}

.tv-features-build-link span {
  transition: transform 180ms ease;
}

.tv-features-build-link:hover {
  color: var(--tv-accent-hover);
}

.tv-features-build-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   Product Visual
   ========================================================= */

.tv-features-build-visual {
  position: relative;

  min-height: 590px;
}

.tv-features-build-glow {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 430px;
  height: 430px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.13),
      rgba(105, 86, 232, 0.035) 50%,
      transparent 73%
    );

  pointer-events: none;
}


/* Window */

.tv-features-build-window {
  position: absolute;

  z-index: 2;

  top: 32px;
  left: 0;

  width: 94%;

  overflow: hidden;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 35px 85px rgba(21, 24, 45, 0.13),
    0 10px 28px rgba(105, 86, 232, 0.06);

  transform: rotate(1deg);
}

.tv-features-build-window-top {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  padding: 13px 16px;

  border-bottom: 1px solid var(--tv-border);

  background: #fafbfc;
}

.tv-features-build-window-top > span {
  color: #969baa;

  font-size: 7px;
  letter-spacing: 0.08em;
  font-weight: 650;
}


/* Browser dots */

.tv-features-build-dots {
  display: flex;

  gap: 5px;
}

.tv-features-build-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d8dbe3;
}

.tv-features-build-dots span:first-child {
  background: #ff938c;
}

.tv-features-build-dots span:nth-child(2) {
  background: #f5c66d;
}

.tv-features-build-dots span:nth-child(3) {
  background: #75cf99;
}


/* App */

.tv-features-build-app {
  display: grid;

  grid-template-columns: 57px 1fr;

  min-height: 430px;

  background: #f8f9fc;
}


/* Sidebar */

.tv-features-build-sidebar {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 18px;

  padding: 18px 0;

  background: #111426;
}

.tv-features-build-logo {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  margin-bottom: 4px;

  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      #826fff,
      #5f4cda
    );

  color: #fff;

  font-size: 14px;
  font-weight: 800;
}

.tv-features-build-sidebar > span {
  width: 19px;
  height: 6px;

  border-radius: 99px;

  background: rgba(255, 255, 255, 0.16);
}

.tv-features-build-sidebar > span.is-active {
  background: #8e7cff;
}


/* Main */

.tv-features-build-main {
  padding: 26px 25px;
}

.tv-features-build-heading {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 18px;
}

.tv-features-build-heading small {
  display: block;

  margin-bottom: 5px;

  color: var(--tv-accent);

  font-size: 7px;
  letter-spacing: 0.1em;
  font-weight: 750;
}

.tv-features-build-heading strong {
  color: var(--tv-ink);

  font-size: 17px;
}

.tv-features-build-heading > span {
  position: relative;

  padding-left: 12px;

  color: #73798a;

  font-size: 7px;
  font-weight: 650;
}

.tv-features-build-heading > span::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 6px;
  height: 6px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #54c487;
}


/* Overview */

.tv-features-build-overview {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px;

  margin-top: 22px;
}

.tv-features-build-overview article {
  padding: 14px;

  border: 1px solid var(--tv-border);
  border-radius: 11px;

  background: #fff;
}

.tv-features-build-overview small {
  display: block;

  color: #9a9fac;

  font-size: 6px;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.tv-features-build-overview strong {
  display: block;

  margin-top: 6px;

  color: var(--tv-ink);

  font-size: 18px;
}

.tv-features-build-overview span {
  display: block;

  margin-top: 3px;

  color: #9ca1af;

  font-size: 7px;
}


/* Settings panel */

.tv-features-build-panel {
  margin-top: 13px;
  padding: 16px;

  border: 1px solid var(--tv-border);
  border-radius: 12px;

  background: #fff;
}

.tv-features-build-panel-head {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 15px;

  padding-bottom: 12px;
}

.tv-features-build-panel-head small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.tv-features-build-panel-head strong {
  display: block;

  margin-top: 5px;

  color: var(--tv-ink);

  font-size: 10px;
}

.tv-features-build-panel-head > span {
  color: var(--tv-accent);

  font-size: 7px;
  font-weight: 700;
}


/* Rows */

.tv-features-build-setting {
  display: grid;

  grid-template-columns:
    31px 1fr auto;

  gap: 10px;
  align-items: center;

  padding: 10px 0;

  border-top: 1px solid #eff0f4;
}

.tv-features-build-setting-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 31px;
  height: 31px;

  border-radius: 8px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}

.tv-features-build-setting strong {
  display: block;

  color: #4c5162;

  font-size: 8px;
}

.tv-features-build-setting small {
  display: block;

  margin-top: 3px;

  color: #a0a4b1;

  font-size: 7px;
}

.tv-features-build-setting > span {
  color: #a2a6b3;

  font-size: 9px;
}


/* =========================================================
   Floating Cards
   ========================================================= */

.tv-features-build-domain,
.tv-features-build-status {
  position: absolute;

  z-index: 5;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow:
    0 17px 40px rgba(20, 23, 44, 0.11);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* Domain */

.tv-features-build-domain {
  right: -5px;
  bottom: 52px;

  width: 205px;

  padding: 14px 16px;
}

.tv-features-build-domain > span {
  display: block;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tv-features-build-domain strong {
  display: block;

  margin-top: 6px;

  color: var(--tv-ink);

  font-size: 10px;
}

.tv-features-build-domain small {
  position: relative;

  display: block;

  margin-top: 7px;
  padding-left: 11px;

  color: #707688;

  font-size: 7px;
}

.tv-features-build-domain small::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 6px;
  height: 6px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #55c487;
}


/* Status */

.tv-features-build-status {
  left: -20px;
  bottom: 22px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 14px;
}

.tv-features-build-status > i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #55c487;

  box-shadow:
    0 0 0 5px rgba(85, 196, 135, 0.11);
}

.tv-features-build-status small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  letter-spacing: 0.08em;
  font-style: normal;
}

.tv-features-build-status strong {
  display: block;

  margin-top: 4px;

  color: var(--tv-ink);

  font-size: 9px;
}


/* =========================================================
   Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-build-window,
  .tv-features-build-domain,
  .tv-features-build-status {
    transition:
      transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms ease;
  }

  .tv-features-build-visual:hover
  .tv-features-build-window {
    transform:
      translateY(-5px)
      rotate(0.2deg);

    box-shadow:
      0 42px 95px rgba(21, 24, 45, 0.16),
      0 12px 32px rgba(105, 86, 232, 0.08);
  }

  .tv-features-build-visual:hover
  .tv-features-build-domain {
    transform: translate(5px, -4px);
  }

  .tv-features-build-visual:hover
  .tv-features-build-status {
    transform: translate(-4px, 4px);
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-build-layout {
    grid-template-columns:
      minmax(0, 0.85fr)
      minmax(460px, 1.15fr);

    gap: 50px;
  }

  .tv-features-build-status {
    left: 8px;
  }

  .tv-features-build-domain {
    right: 0;
  }
}


@media (max-width: 921px) {

  .tv-features-build-layout {
    grid-template-columns: 1fr;

    gap: 58px;
  }

  .tv-features-build-copy {
    max-width: 760px;
  }

  .tv-features-build-copy .tv-h2,
  .tv-features-build-copy .tv-lead {
    max-width: 700px;
  }

  .tv-features-build-visual {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-features-build-points {
    grid-template-columns: 1fr;
  }

  .tv-features-build-points article,
  .tv-features-build-points article:nth-child(even) {
    padding: 18px 0;

    border-left: 0;
  }

  .tv-features-build-visual {
    min-height: 500px;
  }

  .tv-features-build-window {
    width: 96%;
  }

  .tv-features-build-app {
    grid-template-columns: 42px 1fr;

    min-height: 375px;
  }

  .tv-features-build-sidebar {
    gap: 15px;
  }

  .tv-features-build-logo {
    width: 25px;
    height: 25px;

    font-size: 12px;
  }

  .tv-features-build-sidebar > span {
    width: 15px;
  }

  .tv-features-build-main {
    padding: 18px 14px;
  }

  .tv-features-build-domain {
    right: 0;
    bottom: 36px;

    width: 180px;
  }

  .tv-features-build-status {
    left: 0;
    bottom: 8px;
  }
}


@media (max-width: 544px) {

  .tv-features-build-visual {
    min-height: 460px;
  }

  .tv-features-build-domain {
    width: 165px;
  }
}

/* =========================================================
   Features — Tours & Content
   Internal v01
   ========================================================= */

.tv-features-tours {
  position: relative;

  overflow: hidden;

  background: #fff;
}


/* =========================================================
   Heading
   ========================================================= */

.tv-features-tours-head {
  max-width: 820px;

  margin: 0 auto 68px;

  text-align: center;
}

.tv-features-tours-head .tv-h2 {
  max-width: 760px;

  margin-inline: auto;
}

.tv-features-tours-head .tv-h2 .tv-gradient-text {
  display: block;
}

.tv-features-tours-head .tv-lead {
  max-width: 720px;

  margin:
    22px
    auto
    0;

  font-size: 15px;
  line-height: 1.85;
}


/* =========================================================
   Layout
   ========================================================= */

.tv-features-tours-layout {
  display: grid;

  grid-template-columns:
    minmax(560px, 1.12fr)
    minmax(0, 0.88fr);

  gap: 88px;

  align-items: center;
}


/* =========================================================
   Visual
   ========================================================= */

.tv-features-tours-visual {
  position: relative;

  min-height: 610px;
}

.tv-features-tours-glow {
  position: absolute;

  top: 46%;
  left: 44%;

  width: 470px;
  height: 470px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.10),
      rgba(105, 86, 232, 0.025) 53%,
      transparent 74%
    );

  pointer-events: none;
}


/* Window */

.tv-features-tours-window {
  position: relative;

  z-index: 2;

  width: 94%;

  overflow: hidden;

  border:
    1px solid
    rgba(105, 86, 232, 0.13);

  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 34px 80px rgba(24, 27, 51, 0.12);
}


/* Window head */

.tv-features-tours-window-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 20px 22px;

  border-bottom:
    1px solid
    var(--tv-border);
}

.tv-features-tours-window-head > div {
  display: flex;

  align-items: center;

  gap: 11px;
}

.tv-features-tours-brand {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #826fff,
      #5f4cda
    );

  color: #fff;

  font-size: 15px;
  font-weight: 800;
}

.tv-features-tours-window-head small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  line-height: 1;
  letter-spacing: 0.09em;
  font-weight: 750;
}

.tv-features-tours-window-head strong {
  display: block;

  margin-top: 5px;

  color: var(--tv-ink);

  font-size: 15px;
}

.tv-features-tours-window-head button {
  padding: 9px 13px;

  border: 0;
  border-radius: 8px;

  background:
    var(--tv-accent);

  color: #fff;

  font-family: inherit;
  font-size: 10px;
  font-weight: 700;

  pointer-events: none;
}


/* Filters */

.tv-features-tours-filters {
  display: flex;

  gap: 7px;

  padding: 14px 22px;

  border-bottom:
    1px solid
    #f0f1f5;

  background:
    #fafbfc;
}

.tv-features-tours-filters span {
  padding: 6px 9px;

  border-radius: 6px;

  color: #8e93a2;

  font-size: 6px;
  font-weight: 650;
}

.tv-features-tours-filters span.is-active {
  background:
    var(--tv-accent-soft);

  color:
    var(--tv-accent);
}


/* List */

.tv-features-tours-list {
  padding: 8px 20px;
}

.tv-features-tour-row {
  display: grid;

  grid-template-columns:
    40px
    minmax(150px, 1fr)
    auto
    58px;

  gap: 12px;

  align-items: center;

  padding: 13px 2px;

  border-bottom:
    1px solid
    #eff0f4;
}

.tv-features-tour-row:last-child {
  border-bottom: 0;
}


/* Thumb */

.tv-features-tour-thumb {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      #f0edff,
      #faf9ff
    );

  color:
    var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}


/* Info */

.tv-features-tour-info strong {
  display: block;

  color:
    #363b4c;

  font-size: 8px;
}

.tv-features-tour-info span {
  display: block;

  margin-top: 4px;

  color:
    #a0a4b1;

  font-size: 6px;
}


/* Tags */

.tv-features-tour-tags {
  display: flex;

  gap: 5px;
}

.tv-features-tour-tags span {
  padding: 5px 7px;

  border-radius: 99px;

  background:
    #f4f5f8;

  color:
    #7c8190;

  font-size: 5px;
  line-height: 1;
}


/* Status */

.tv-features-tour-row > small {
  color:
    #a0a4b1;

  font-size: 6px;

  text-align: right;
}

.tv-features-tour-row > small.is-live {
  color:
    #4db57d;
}


/* Bottom */

.tv-features-tours-bottom {
  display: flex;

  justify-content: space-between;

  padding: 13px 22px;

  border-top:
    1px solid
    var(--tv-border);

  background:
    #fafbfc;
}

.tv-features-tours-bottom span {
  color:
    #999eac;

  font-size: 6px;
}


/* =========================================================
   Structure Card
   ========================================================= */

.tv-features-tours-structure {
  position: absolute;

  z-index: 5;

  right: -10px;
  bottom: 18px;

  width: 315px;

  padding: 17px;

  border:
    1px solid
    rgba(105, 86, 232, 0.13);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 20px 45px
    rgba(22, 25, 47, 0.11);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);
}

.tv-features-tours-structure-title {
  display: block;

  margin-bottom: 10px;

  color:
    var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tv-features-tours-structure > div {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 7px;
}

.tv-features-tours-structure article {
  padding: 10px;

  border:
    1px solid
    #eceef3;

  border-radius: 9px;

  background:
    #fafbfc;
}

.tv-features-tours-structure small {
  display: block;

  color:
    #a3a7b3;

  font-size: 5px;
  letter-spacing: 0.05em;
}

.tv-features-tours-structure strong {
  display: block;

  margin-top: 5px;

  color:
    #444959;

  font-size: 7px;
}


/* =========================================================
   Copy
   ========================================================= */

.tv-features-tours-copy {
  max-width: 510px;
}

.tv-features-tours-point {
  display: grid;

  grid-template-columns:
    34px
    1fr;

  gap: 15px;

  padding: 23px 0;

  border-bottom:
    1px solid
    var(--tv-border);
}

.tv-features-tours-point:first-child {
  padding-top: 0;
}

.tv-features-tours-point > span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 9px;

  background:
    var(--tv-accent-soft);

  color:
    var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}

.tv-features-tours-point strong {
  display: block;

  color:
    var(--tv-ink);

  font-size: 15px;
  line-height: 1.5;
}

.tv-features-tours-point p {
  margin:
    8px
    0
    0;

  color:
    var(--tv-muted);

  font-size: 12px;
  line-height: 1.8;
}


/* Link */

.tv-features-tours-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 27px;

  color:
    var(--tv-accent);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;
}

.tv-features-tours-link span {
  transition:
    transform
    180ms
    ease;
}

.tv-features-tours-link:hover {
  color:
    var(--tv-accent-hover);
}

.tv-features-tours-link:hover span {
  transform:
    translateX(4px);
}


/* =========================================================
   Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-tours-window,
  .tv-features-tours-structure {
    transition:
      transform
      350ms
      cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow
      260ms
      ease;
  }

  .tv-features-tours-visual:hover
  .tv-features-tours-window {
    transform:
      translateY(-5px);

    box-shadow:
      0 42px 92px
      rgba(24, 27, 51, 0.15);
  }

  .tv-features-tours-visual:hover
  .tv-features-tours-structure {
    transform:
      translate(4px, -5px);
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-tours-layout {
    grid-template-columns:
      minmax(500px, 1.08fr)
      minmax(0, 0.92fr);

    gap: 54px;
  }

  .tv-features-tours-structure {
    right: 0;
  }
}


@media (max-width: 921px) {

  .tv-features-tours-head {
    margin-bottom: 55px;
  }

  .tv-features-tours-layout {
    grid-template-columns:
      1fr;

    gap: 65px;
  }

  .tv-features-tours-visual {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;
  }

  .tv-features-tours-copy {
    max-width: 720px;

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-features-tours-head {
    text-align: left;
  }

  .tv-features-tours-head .tv-h2,
  .tv-features-tours-head .tv-lead {
    margin-left: 0;
  }

  .tv-features-tours-visual {
    min-height: 540px;
  }

  .tv-features-tours-window {
    width: 100%;
  }

  .tv-features-tour-row {
    grid-template-columns:
      38px
      1fr
      auto;
  }

  .tv-features-tour-tags {
    display: none;
  }

  .tv-features-tours-structure {
    right: 0;
    bottom: 8px;

    width: 280px;
  }
}


@media (max-width: 544px) {

  .tv-features-tours-visual {
    min-height: 510px;
  }

  .tv-features-tours-window-head {
    padding:
      17px
      15px;
  }

  .tv-features-tours-filters {
    padding:
      12px
      15px;

    overflow: hidden;
  }

  .tv-features-tours-list {
    padding:
      6px
      13px;
  }

  .tv-features-tours-bottom {
    padding:
      12px
      15px;
  }

  .tv-features-tours-structure {
    width: 250px;
  }

  .tv-features-tours-point {
    grid-template-columns:
      31px
      1fr;

    gap: 12px;
  }
}

/* =========================================================
   Features — Multilingual
   Internal v01
   ========================================================= */

.tv-features-multilingual {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 83% 18%,
      rgba(105, 86, 232, 0.07),
      transparent 28%
    ),
    var(--tv-bg-soft);

  border-top: 1px solid var(--tv-border);
}


/* =========================================================
   Layout
   ========================================================= */

.tv-features-multilingual-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(540px, 1.1fr);

  gap: 88px;

  align-items: center;
}


/* =========================================================
   Copy
   ========================================================= */

.tv-features-multilingual-copy {
  max-width: 570px;
}

.tv-features-multilingual-copy .tv-h2 {
  max-width: 560px;
}

.tv-features-multilingual-copy .tv-h2 .tv-gradient-text {
  display: block;
}

.tv-features-multilingual-copy .tv-lead {
  max-width: 555px;

  margin-top: 22px;

  font-size: 15px;
  line-height: 1.85;
}


/* Points */

.tv-features-multilingual-points {
  margin-top: 34px;

  border-top: 1px solid var(--tv-border);
}

.tv-features-multilingual-points article {
  display: grid;

  grid-template-columns:
    34px
    1fr;

  gap: 14px;

  padding: 18px 0;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-multilingual-points article > span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  border-radius: 8px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}

.tv-features-multilingual-points strong {
  display: block;

  color: var(--tv-ink);

  font-size: 14px;
  line-height: 1.5;
}

.tv-features-multilingual-points p {
  margin: 7px 0 0;

  color: var(--tv-muted);

  font-size: 11px;
  line-height: 1.72;
}


/* Link */

.tv-features-multilingual-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 27px;

  color: var(--tv-accent);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;
}

.tv-features-multilingual-link span {
  transition: transform 180ms ease;
}

.tv-features-multilingual-link:hover {
  color: var(--tv-accent-hover);
}

.tv-features-multilingual-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   Visual
   ========================================================= */

.tv-features-multilingual-visual {
  position: relative;

  min-height: 610px;
}

.tv-features-multilingual-glow {
  position: absolute;

  top: 47%;
  left: 50%;

  width: 470px;
  height: 470px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.14),
      rgba(105, 86, 232, 0.035) 50%,
      transparent 74%
    );

  pointer-events: none;
}


/* Workspace */

.tv-features-multilingual-workspace {
  position: absolute;

  z-index: 2;

  top: 22px;
  left: 0;

  width: 92%;

  overflow: hidden;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 34px 82px rgba(23, 26, 49, 0.13);
}

.tv-features-multilingual-workspace-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 18px 20px;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-multilingual-workspace-head > div {
  display: flex;

  align-items: center;

  gap: 11px;
}

.tv-features-multilingual-brand {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #826fff,
      #5f4cda
    );

  color: #fff;

  font-size: 15px;
  font-weight: 800;
}

.tv-features-multilingual-workspace-head small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  letter-spacing: 0.08em;
  font-weight: 750;
}

.tv-features-multilingual-workspace-head strong {
  display: block;

  margin-top: 4px;

  color: var(--tv-ink);

  font-size: 14px;
}

.tv-features-multilingual-status {
  position: relative;

  padding-left: 12px;

  color: #6e7485;

  font-size: 7px;
  font-weight: 650;
}

.tv-features-multilingual-status::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 6px;
  height: 6px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #55c487;
}


/* Source */

.tv-features-multilingual-source {
  padding: 21px;

  border-bottom: 1px solid #eff0f4;

  background: #fafbfc;
}

.tv-features-multilingual-source > span {
  display: block;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tv-features-multilingual-source strong {
  display: block;

  margin-top: 7px;

  color: var(--tv-ink);

  font-size: 14px;
}

.tv-features-multilingual-source small {
  display: block;

  margin-top: 5px;

  color: #9ca1af;

  font-size: 7px;
}


/* Market rows */

.tv-features-multilingual-markets {
  padding: 8px 20px;
}

.tv-features-multilingual-markets article {
  display: grid;

  grid-template-columns:
    40px
    1fr
    8px;

  gap: 12px;

  align-items: center;

  padding: 14px 3px;

  border-bottom: 1px solid #eff0f4;
}

.tv-features-multilingual-markets article:last-child {
  border-bottom: 0;
}

.tv-features-multilingual-lang {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 39px;
  height: 39px;

  border-radius: 10px;

  background: #f3f1ff;

  color: var(--tv-accent);

  font-size: 9px;
  font-weight: 800;
}

.tv-features-multilingual-markets article.is-primary
.tv-features-multilingual-lang {
  background: var(--tv-accent);

  color: #fff;
}

.tv-features-multilingual-markets small {
  display: block;

  color: #a1a5b2;

  font-size: 5px;
  letter-spacing: 0.07em;
}

.tv-features-multilingual-markets strong {
  display: block;

  margin-top: 4px;

  color: #424757;

  font-size: 9px;
}

.tv-features-multilingual-markets span {
  display: block;

  margin-top: 4px;

  color: #a0a4b1;

  font-size: 6px;
}

.tv-features-multilingual-markets i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #62c98e;

  box-shadow:
    0 0 0 4px rgba(98, 201, 142, 0.11);
}


/* Bottom */

.tv-features-multilingual-bottom {
  padding: 16px 20px 18px;

  border-top: 1px solid var(--tv-border);

  background: #fafbfc;
}

.tv-features-multilingual-bottom > span {
  display: block;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tv-features-multilingual-bottom strong {
  display: block;

  margin-top: 5px;

  color: var(--tv-ink);

  font-size: 9px;
}

.tv-features-multilingual-bottom small {
  display: block;

  margin-top: 4px;

  color: #a0a4b1;

  font-size: 6px;
}


/* =========================================================
   Floating Content Card
   ========================================================= */

.tv-features-multilingual-card {
  position: absolute;

  z-index: 5;

  right: 0;
  bottom: 26px;

  width: 275px;

  padding: 15px;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow:
    0 20px 48px rgba(22, 25, 47, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tv-features-multilingual-card > span {
  display: block;

  margin-bottom: 8px;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tv-features-multilingual-card > div {
  display: grid;

  grid-template-columns:
    27px
    1fr;

  gap: 9px;

  align-items: center;

  padding: 9px 0;

  border-top: 1px solid #eff0f4;
}

.tv-features-multilingual-card small {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  border-radius: 7px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 16px;
  font-weight: 800;
}

.tv-features-multilingual-card strong {
  color: #494e5e;

  font-size: 7px;
  line-height: 1.4;
}


/* =========================================================
   Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-multilingual-workspace,
  .tv-features-multilingual-card {
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms ease;
  }

  .tv-features-multilingual-visual:hover
  .tv-features-multilingual-workspace {
    transform: translateY(-5px);

    box-shadow:
      0 42px 92px rgba(23, 26, 49, 0.16);
  }

  .tv-features-multilingual-visual:hover
  .tv-features-multilingual-card {
    transform: translate(4px, -5px);
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-multilingual-layout {
    grid-template-columns:
      minmax(0, 0.85fr)
      minmax(500px, 1.15fr);

    gap: 54px;
  }
}


@media (max-width: 921px) {

  .tv-features-multilingual-layout {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .tv-features-multilingual-copy {
    max-width: 720px;
  }

  .tv-features-multilingual-copy .tv-h2,
  .tv-features-multilingual-copy .tv-lead {
    max-width: 700px;
  }

  .tv-features-multilingual-visual {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-features-multilingual-visual {
    min-height: 550px;
  }

  .tv-features-multilingual-workspace {
    width: 100%;
  }

  .tv-features-multilingual-card {
    right: 0;
    bottom: 10px;

    width: 245px;
  }
}


@media (max-width: 544px) {

  .tv-features-multilingual-visual {
    min-height: 520px;
  }

  .tv-features-multilingual-card {
    width: 225px;
  }

  .tv-features-multilingual-points article {
    grid-template-columns:
      31px
      1fr;

    gap: 12px;
  }
}

/* =========================================================
   Features — Leads, Engagement & Trust
   Internal v02
   ========================================================= */

.tv-features-leads {
  position: relative;
  overflow: hidden;
  background: #fff;
}


/* =========================================================
   Heading
   ========================================================= */

.tv-features-leads-head {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.tv-features-leads-head .tv-h2 {
  max-width: 800px;
  margin-inline: auto;
}

.tv-features-leads-head .tv-h2 .tv-gradient-text {
  display: block;
}

.tv-features-leads-head .tv-lead {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 15px;
  line-height: 1.85;
}


/* =========================================================
   Main Layout
   ========================================================= */

.tv-features-leads-layout {
  display: grid;

  grid-template-columns:
    minmax(575px, 1.13fr)
    minmax(0, 0.87fr);

  gap: 86px;
  align-items: center;
}


/* =========================================================
   Left Visual
   ========================================================= */

.tv-features-leads-visual {
  position: relative;
  min-height: 665px;
}

.tv-features-leads-glow {
  position: absolute;

  top: 46%;
  left: 45%;

  width: 500px;
  height: 500px;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.12),
      rgba(105, 86, 232, 0.03) 52%,
      transparent 74%
    );

  pointer-events: none;
}


/* =========================================================
   Main Leads Window
   ========================================================= */

.tv-features-leads-window {
  position: relative;
  z-index: 2;

  width: 91%;
  overflow: hidden;

  border: 1px solid rgba(105, 86, 232, 0.13);
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 34px 82px rgba(23, 26, 49, 0.13);
}


/* Header */

.tv-features-leads-window-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 18px 20px;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-leads-window-head > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tv-features-leads-brand {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #826fff,
      #5f4cda
    );

  color: #fff;

  font-size: 15px;
  font-weight: 800;
}

.tv-features-leads-window-head small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  letter-spacing: 0.08em;
  font-weight: 750;
}

.tv-features-leads-window-head strong {
  display: block;

  margin-top: 4px;

  color: var(--tv-ink);

  font-size: 14px;
}

.tv-features-leads-count {
  padding: 6px 9px;

  border-radius: 99px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 11px;
  font-weight: 750;
}


/* =========================================================
   Lead List
   ========================================================= */

.tv-features-leads-list {
  padding: 8px 18px;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-leads-list article {
  display: grid;

  grid-template-columns:
    38px
    1fr
    auto;

  gap: 11px;

  align-items: center;

  padding: 12px 8px;

  border-radius: 10px;

  border-bottom: 1px solid #eff0f4;
}

.tv-features-leads-list article:last-child {
  border-bottom: 0;
}

.tv-features-leads-list article.is-active {
  background: #faf9ff;
}

.tv-features-leads-avatar {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 7px;
  font-weight: 800;
}

.tv-features-leads-list strong {
  display: block;

  color: #414656;

  font-size: 8px;
}

.tv-features-leads-list span {
  display: block;

  margin-top: 4px;

  color: #a0a4b1;

  font-size: 6px;
}

.tv-features-leads-list small {
  padding: 4px 6px;

  border-radius: 99px;

  background: #f4f5f8;

  color: #9297a6;

  font-size: 5px;
}

.tv-features-leads-list article.is-active small {
  background: var(--tv-accent-soft);

  color: var(--tv-accent);
}


/* =========================================================
   Inquiry Detail
   ========================================================= */

.tv-features-leads-detail {
  padding: 18px 20px 21px;

  background: #fafbfc;
}

.tv-features-leads-detail small {
  display: block;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.tv-features-leads-detail strong {
  display: block;

  margin-top: 5px;

  color: var(--tv-ink);

  font-size: 10px;
}

.tv-features-leads-detail p {
  max-width: 420px;

  margin: 12px 0 0;

  color: #767c8c;

  font-size: 7px;
  line-height: 1.65;
}

.tv-features-leads-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;

  margin-top: 13px;
}

.tv-features-leads-meta span {
  padding: 5px 7px;

  border: 1px solid #e7e9ef;
  border-radius: 6px;

  background: #fff;

  color: #828797;

  font-size: 5px;
}


/* =========================================================
   Floating Card Base
   ========================================================= */

.tv-features-leads-chat,
.tv-features-leads-review,
.tv-features-leads-social {
  position: absolute;

  z-index: 5;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 20px 48px rgba(22, 25, 47, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   Live Chat
   ========================================================= */

.tv-features-leads-chat {
  right: -5px;
  top: 92px;

  width: 215px;

  padding: 15px;
}

.tv-features-leads-chat-head {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 10px;
}

.tv-features-leads-chat-head span {
  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.tv-features-leads-chat-head i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #59c989;

  box-shadow:
    0 0 0 4px rgba(89, 201, 137, 0.11);
}

.tv-features-leads-chat > strong {
  display: block;

  margin-top: 12px;

  color: #434858;

  font-size: 9px;
}

.tv-features-leads-chat > p {
  margin: 6px 0 0;

  color: #989daa;

  font-size: 6px;
  line-height: 1.6;
}

.tv-features-leads-chat-input {
  margin-top: 12px;

  padding: 8px 9px;

  border: 1px solid #eaebf0;
  border-radius: 7px;

  background: #fafbfc;

  color: #b0b4bf;

  font-size: 6px;
}


/* =========================================================
   Reviews & Testimonials
   ========================================================= */

.tv-features-leads-review {
  left: 12px;
  bottom: 8px;

  width: 245px;

  padding: 15px 16px;
}

.tv-features-leads-review-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.tv-features-leads-review-head > span {
  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.tv-features-leads-review-head > small {
  padding: 4px 7px;

  border-radius: 99px;

  background: rgba(85, 196, 135, 0.11);

  color: #3ca06d;

  font-size: 5px;
  font-weight: 750;
}

.tv-features-leads-review > strong {
  display: block;

  margin-top: 11px;

  color: #444959;

  font-size: 9px;
}

.tv-features-leads-stars {
  margin-top: 7px;

  color: #f4a85a;

  font-size: 9px;
  letter-spacing: 1px;
}

.tv-features-leads-review > p {
  margin: 8px 0 0;

  color: #858b99;

  font-size: 7px;
  line-height: 1.5;
}

.tv-features-leads-review-sources {
  display: flex;

  flex-wrap: wrap;

  gap: 5px;

  margin-top: 10px;
}

.tv-features-leads-review-sources span {
  padding: 5px 7px;

  border-radius: 99px;

  background: #f5f5f8;

  color: #777d8d;

  font-size: 5px;
  line-height: 1;
}


/* =========================================================
   Social Links
   ========================================================= */

.tv-features-leads-social {
  right: 18px;
  bottom: 42px;

  width: 215px;

  padding: 15px 16px;
}

.tv-features-leads-social-label {
  display: block;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.tv-features-leads-social > strong {
  display: block;

  margin-top: 8px;

  color: #444959;

  font-size: 8px;
  line-height: 1.45;
}

.tv-features-leads-social-icons {
  display: flex;

  align-items: center;

  gap: 7px;

  margin-top: 12px;
}

.tv-features-leads-social-icons span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  padding: 6px;

  border: 1px solid #e8e9ee;
  border-radius: 8px;

  background: #fafbfc;

  color: #555b6b;

  font-size: 7px;
  line-height: 1;
  font-weight: 750;
}

.tv-features-leads-social-icons span img {
  display: block;

  width: 15px;
  height: 15px;

  object-fit: contain;
}


/* =========================================================
   Floating Social / Trust Bubbles
   ========================================================= */

.tv-features-leads-social-bubbles {
  position: absolute;

  inset: 0;

  z-index: 7;

  pointer-events: none;
}

.tv-features-leads-social-bubble {
  position: absolute;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 9px;

  border: 1px solid rgba(105, 86, 232, 0.13);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 13px 30px rgba(22, 25, 47, 0.13),
    0 2px 8px rgba(105, 86, 232, 0.05);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tv-features-leads-social-bubble img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* Instagram */

.tv-social-instagram {
  right: 22px;
  bottom: 158px;

  animation:
    tvSocialFloatA
    5.2s
    ease-in-out
    infinite;
}


/* Facebook */

.tv-social-facebook {
  right: 122px;
  bottom: 106px;

  width: 39px;
  height: 39px;

  padding: 8px;

  animation:
    tvSocialFloatB
    5.8s
    ease-in-out
    infinite;
}


/* TikTok */

.tv-social-tiktok {
  right: -10px;
  bottom: 73px;

  width: 41px;
  height: 41px;

  padding: 8px;

  animation:
    tvSocialFloatC
    6.3s
    ease-in-out
    infinite;
}


/* Tripadvisor */

.tv-social-tripadvisor {
  left: 218px;
  bottom: 80px;

  width: 46px;
  height: 46px;

  padding: 9px;

  animation:
    tvSocialFloatB
    5.5s
    ease-in-out
    infinite
    reverse;
}


/* =========================================================
   Floating Motion
   ========================================================= */

@keyframes tvSocialFloatA {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }

}


@keyframes tvSocialFloatB {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(3px, 6px, 0);
  }

}


@keyframes tvSocialFloatC {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-3px, -5px, 0);
  }

}


/* =========================================================
   Right Copy
   ========================================================= */

.tv-features-leads-copy {
  max-width: 520px;
}

.tv-features-leads-point {
  display: grid;

  grid-template-columns:
    34px
    1fr;

  gap: 15px;

  padding: 21px 0;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-leads-point:first-child {
  padding-top: 0;
}

.tv-features-leads-point > span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 9px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}

.tv-features-leads-point strong {
  display: block;

  color: var(--tv-ink);

  font-size: 15px;
  line-height: 1.5;
}

.tv-features-leads-point p {
  margin: 8px 0 0;

  color: var(--tv-muted);

  font-size: 11.5px;
  line-height: 1.78;
}


/* =========================================================
   Link
   ========================================================= */

.tv-features-leads-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 27px;

  color: var(--tv-accent);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;
}

.tv-features-leads-link span {
  transition: transform 180ms ease;
}

.tv-features-leads-link:hover {
  color: var(--tv-accent-hover);
}

.tv-features-leads-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-leads-window,
  .tv-features-leads-chat,
  .tv-features-leads-review,
  .tv-features-leads-social {
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms ease;
  }

  .tv-features-leads-visual:hover
  .tv-features-leads-window {
    transform: translateY(-5px);

    box-shadow:
      0 42px 92px rgba(23, 26, 49, 0.16);
  }

  .tv-features-leads-visual:hover
  .tv-features-leads-chat {
    transform: translate(4px, -5px);
  }

  .tv-features-leads-visual:hover
  .tv-features-leads-review {
    transform: translate(-4px, 5px);
  }

  .tv-features-leads-visual:hover
  .tv-features-leads-social {
    transform: translate(4px, 4px);
  }

}


/* =========================================================
   Responsive — 1100
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-leads-layout {
    grid-template-columns:
      minmax(500px, 1.08fr)
      minmax(0, 0.92fr);

    gap: 54px;
  }

  .tv-features-leads-review {
    left: 0;
  }

  .tv-features-leads-social {
    right: 0;
  }

}


/* =========================================================
   Responsive — 921
   ========================================================= */

@media (max-width: 921px) {

  .tv-features-leads-head {
    margin-bottom: 55px;
  }

  .tv-features-leads-layout {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .tv-features-leads-visual {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;
  }

  .tv-features-leads-copy {
    max-width: 720px;

    margin-inline: auto;
  }

}


/* =========================================================
   Responsive — 640
   ========================================================= */

@media (max-width: 640px) {

  .tv-features-leads-head {
    text-align: left;
  }

  .tv-features-leads-head .tv-h2,
  .tv-features-leads-head .tv-lead {
    margin-left: 0;
  }

  .tv-features-leads-visual {
    min-height: 640px;
  }

  .tv-features-leads-window {
    width: 100%;
  }

  .tv-features-leads-chat {
    right: 0;
    top: 112px;

    width: 180px;
  }

  .tv-features-leads-review {
    left: 0;
    bottom: 5px;

    width: 220px;
  }

  .tv-features-leads-social {
    right: 0;
    bottom: 38px;

    width: 185px;
  }

  .tv-features-leads-social-bubble {
    width: 36px;
    height: 36px;

    padding: 7px;
  }

  .tv-social-instagram {
    right: 8px;
    bottom: 146px;
  }

  .tv-social-facebook {
    right: 92px;
    bottom: 92px;

    width: 33px;
    height: 33px;
  }

  .tv-social-tiktok {
    right: -2px;
    bottom: 62px;

    width: 34px;
    height: 34px;
  }

  .tv-social-tripadvisor {
    left: 190px;
    bottom: 76px;

    width: 37px;
    height: 37px;
  }

}


/* =========================================================
   Responsive — 544
   ========================================================= */

@media (max-width: 544px) {

  .tv-features-leads-visual {
    min-height: 615px;
  }

  .tv-features-leads-window-head {
    padding: 16px 15px;
  }

  .tv-features-leads-list {
    padding: 7px 12px;
  }

  .tv-features-leads-detail {
    padding: 16px 15px 18px;
  }

  .tv-features-leads-chat {
    width: 165px;
  }

  .tv-features-leads-review {
    width: 205px;

    padding: 13px 14px;
  }

  .tv-features-leads-social {
    width: 165px;

    padding: 13px 14px;
  }

  .tv-features-leads-social-icons {
    gap: 5px;
  }

  .tv-features-leads-social-icons span {
    width: 24px;
    height: 24px;

    padding: 5px;

    border-radius: 7px;

    font-size: 6px;
  }

  .tv-features-leads-social-icons span img {
    width: 13px;
    height: 13px;
  }

  .tv-social-instagram {
    right: 6px;
    bottom: 136px;
  }

  .tv-social-facebook {
    right: 78px;
    bottom: 84px;
  }

  .tv-social-tiktok {
    right: 0;
    bottom: 54px;
  }

  .tv-social-tripadvisor {
    left: 172px;
    bottom: 70px;
  }

  .tv-features-leads-point {
    grid-template-columns:
      31px
      1fr;

    gap: 12px;
  }

}


/* =========================================================
   Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tv-features-leads-social-bubble {
    animation: none !important;
  }

}

/* =========================================================
   Features — Growth & Operations
   Internal v01
   ========================================================= */

.tv-features-operations {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(105, 86, 232, 0.065),
      transparent 28%
    ),
    var(--tv-bg-soft);

  border-top: 1px solid var(--tv-border);
}


/* =========================================================
   Layout
   ========================================================= */

.tv-features-operations-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(540px, 1.1fr);

  gap: 88px;

  align-items: center;
}


/* =========================================================
   Copy
   ========================================================= */

.tv-features-operations-copy {
  max-width: 570px;
}

.tv-features-operations-copy .tv-h2 {
  max-width: 560px;
}

.tv-features-operations-copy .tv-h2 .tv-gradient-text {
  display: block;
}

.tv-features-operations-copy .tv-lead {
  max-width: 555px;

  margin-top: 22px;

  font-size: 15px;
  line-height: 1.85;
}


/* Points */

.tv-features-operations-points {
  margin-top: 34px;

  border-top: 1px solid var(--tv-border);
}

.tv-features-operations-points article {
  display: grid;

  grid-template-columns:
    34px
    1fr;

  gap: 14px;

  padding: 18px 0;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-operations-points article > span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  border-radius: 8px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 8px;
  font-weight: 800;
}

.tv-features-operations-points strong {
  display: block;

  color: var(--tv-ink);

  font-size: 14px;
  line-height: 1.5;
}

.tv-features-operations-points p {
  margin: 7px 0 0;

  color: var(--tv-muted);

  font-size: 11px;
  line-height: 1.72;
}


/* =========================================================
   Visual
   ========================================================= */

.tv-features-operations-visual {
  position: relative;

  min-height: 600px;
}

.tv-features-operations-glow {
  position: absolute;

  top: 47%;
  left: 50%;

  width: 470px;
  height: 470px;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.13),
      rgba(105, 86, 232, 0.035) 51%,
      transparent 74%
    );

  pointer-events: none;
}


/* Window */

.tv-features-operations-window {
  position: absolute;

  z-index: 2;

  top: 28px;
  left: 0;

  width: 93%;

  overflow: hidden;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 34px 82px rgba(23, 26, 49, 0.13);
}


/* Header */

.tv-features-operations-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 19px 20px;

  border-bottom: 1px solid var(--tv-border);
}

.tv-features-operations-head > div {
  display: flex;

  align-items: center;

  gap: 11px;
}

.tv-features-operations-brand {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 10px;

  background:
    linear-gradient(
      145deg,
      #826fff,
      #5f4cda
    );

  color: #fff;

  font-size: 15px;
  font-weight: 800;
}

.tv-features-operations-head small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  letter-spacing: 0.08em;
  font-weight: 750;
}

.tv-features-operations-head strong {
  display: block;

  margin-top: 4px;

  color: var(--tv-ink);

  font-size: 14px;
}

.tv-features-operations-account {
  padding: 6px 9px;

  border-radius: 99px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 6px;
  font-weight: 750;
}


/* =========================================================
   Tool Grid
   ========================================================= */

.tv-features-operations-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px;

  padding: 20px;

  background: #fafbfc;
}

.tv-features-operations-card {
  display: grid;

  grid-template-columns:
    36px
    1fr
    auto;

  gap: 11px;

  align-items: center;

  min-height: 108px;

  padding: 15px;

  border: 1px solid #e9ebf1;
  border-radius: 13px;

  background: #fff;
}

.tv-features-operations-card.is-featured {
  border-color: rgba(105, 86, 232, 0.18);

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #faf8ff
    );
}

.tv-features-operations-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border-radius: 10px;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 9px;
  font-weight: 800;
}

.tv-features-operations-card small {
  display: block;

  color: #a0a4b1;

  font-size: 5px;
  letter-spacing: 0.07em;
  font-weight: 750;
}

.tv-features-operations-card strong {
  display: block;

  margin-top: 4px;

  color: #424757;

  font-size: 9px;
}

.tv-features-operations-card p {
  margin: 5px 0 0;

  color: #a0a4b1;

  font-size: 6px;
  line-height: 1.5;
}

.tv-features-operations-arrow {
  color: #adb1bd;

  font-size: 10px;
}


/* =========================================================
   Bottom Bar
   ========================================================= */

.tv-features-operations-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 17px 20px;

  border-top: 1px solid var(--tv-border);
}

.tv-features-operations-bottom small {
  display: block;

  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.tv-features-operations-bottom strong {
  display: block;

  margin-top: 5px;

  color: #494e5e;

  font-size: 8px;
}

.tv-features-operations-bottom > span {
  color: #999eac;

  font-size: 6px;
}


/* =========================================================
   Floating Team Card
   ========================================================= */

.tv-features-operations-team {
  position: absolute;

  z-index: 5;

  right: 0;
  bottom: 32px;

  width: 205px;

  padding: 15px;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 20px 48px rgba(22, 25, 47, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tv-features-operations-team > span {
  color: var(--tv-accent);

  font-size: 6px;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.tv-features-operations-team-avatars {
  display: flex;

  margin-top: 11px;
}

.tv-features-operations-team-avatars i {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 31px;
  height: 31px;

  margin-left: -5px;

  border: 2px solid #fff;
  border-radius: 50%;

  background: var(--tv-accent-soft);

  color: var(--tv-accent);

  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.tv-features-operations-team-avatars i:first-child {
  margin-left: 0;
}

.tv-features-operations-team strong {
  display: block;

  margin-top: 10px;

  color: #444959;

  font-size: 8px;
}

.tv-features-operations-team small {
  display: block;

  margin-top: 4px;

  color: #a0a4b1;

  font-size: 6px;
}


/* =========================================================
   Floating Support
   ========================================================= */

.tv-features-operations-support {
  position: absolute;

  z-index: 5;

  left: -15px;
  bottom: 13px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 12px 14px;

  border: 1px solid rgba(105, 86, 232, 0.14);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 17px 40px rgba(20, 23, 44, 0.11);
}

.tv-features-operations-support > i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #55c487;

  box-shadow:
    0 0 0 5px rgba(85, 196, 135, 0.11);
}

.tv-features-operations-support small {
  display: block;

  color: #a0a4b1;

  font-size: 6px;
  letter-spacing: 0.08em;
}

.tv-features-operations-support strong {
  display: block;

  margin-top: 4px;

  color: var(--tv-ink);

  font-size: 8px;
}


/* =========================================================
   Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-operations-window,
  .tv-features-operations-team,
  .tv-features-operations-support {
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms ease;
  }

  .tv-features-operations-visual:hover
  .tv-features-operations-window {
    transform: translateY(-5px);

    box-shadow:
      0 42px 92px rgba(23, 26, 49, 0.16);
  }

  .tv-features-operations-visual:hover
  .tv-features-operations-team {
    transform: translate(4px, -5px);
  }

  .tv-features-operations-visual:hover
  .tv-features-operations-support {
    transform: translate(-4px, 4px);
  }
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-operations-layout {
    grid-template-columns:
      minmax(0, 0.85fr)
      minmax(500px, 1.15fr);

    gap: 54px;
  }

  .tv-features-operations-support {
    left: 0;
  }
}


@media (max-width: 921px) {

  .tv-features-operations-layout {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .tv-features-operations-copy {
    max-width: 720px;
  }

  .tv-features-operations-copy .tv-h2,
  .tv-features-operations-copy .tv-lead {
    max-width: 700px;
  }

  .tv-features-operations-visual {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-features-operations-visual {
    min-height: 555px;
  }

  .tv-features-operations-window {
    width: 100%;
  }

  .tv-features-operations-grid {
    gap: 8px;

    padding: 14px;
  }

  .tv-features-operations-card {
    grid-template-columns:
      32px
      1fr;

    min-height: 100px;

    padding: 13px;
  }

  .tv-features-operations-arrow {
    display: none;
  }

  .tv-features-operations-icon {
    width: 32px;
    height: 32px;
  }

  .tv-features-operations-team {
    right: 0;
    bottom: 24px;

    width: 185px;
  }

  .tv-features-operations-support {
    left: 0;
    bottom: 5px;
  }
}


@media (max-width: 544px) {

  .tv-features-operations-visual {
    min-height: 525px;
  }

  .tv-features-operations-grid {
    grid-template-columns: 1fr;
  }

  .tv-features-operations-card {
    min-height: 82px;
  }

  .tv-features-operations-team {
    width: 170px;
  }

  .tv-features-operations-points article {
    grid-template-columns:
      31px
      1fr;

    gap: 12px;
  }
}

/* =========================================================
   Features — Final CTA
   Dual Orbit Motion
   Internal v03
   ========================================================= */

.tv-features-final-section {
  position: relative;

  background: #fff;

  padding:
    24px
    0
    110px;
}


/* =========================================================
   Main Panel
   ========================================================= */

.tv-features-final {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(300px, 0.65fr);

  gap: 50px;

  align-items: center;

  min-height: 500px;

  padding:
    68px
    72px;

  overflow: hidden;

  border:
    1px solid
    rgba(105, 86, 232, 0.13);

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #111426 0%,
      #171a30 57%,
      #211b45 100%
    );

  box-shadow:
    0 32px 85px
    rgba(19, 21, 41, 0.16);
}


/* =========================================================
   Background Glow
   ========================================================= */

.tv-features-final-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.tv-features-final-glow-one {
  top: -185px;
  right: 105px;

  width: 440px;
  height: 440px;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.29),
      transparent 69%
    );
}

.tv-features-final-glow-two {
  left: -150px;
  bottom: -215px;

  width: 430px;
  height: 430px;

  background:
    radial-gradient(
      circle,
      rgba(244, 168, 90, 0.09),
      transparent 69%
    );
}


/* =========================================================
   Left Copy
   ========================================================= */

.tv-features-final-copy {
  position: relative;

  z-index: 10;

  max-width: 820px;
}


.tv-features-final-eyebrow {
  display: inline-block;

  color: #aaa0ff;

  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 800;
}


.tv-features-final-copy h2 {
  max-width: 820px;

  margin:
    22px
    0
    0;

  color: #fff;

  font-size:
    clamp(
      38px,
      3.35vw,
      49px
    );

  line-height: 1.14;

  letter-spacing: -0.045em;

  font-weight: 750;
}


.tv-features-final-copy h2 span {
  display: block;

  margin-top: 4px;

  white-space: nowrap;

  color: #b8aeff;
}


.tv-features-final-copy > p {
  max-width: 650px;

  margin:
    25px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.64
    );

  font-size: 14px;
  line-height: 1.85;
}


/* =========================================================
   CTA Buttons
   ========================================================= */

.tv-features-final-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}


.tv-features-final-primary,
.tv-features-final-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding:
    0
    22px;

  border-radius: 11px;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}


.tv-features-final-primary {
  background: #fff;

  color: #16182b;
}


.tv-features-final-primary:hover {
  color: var(--tv-accent);

  transform:
    translateY(-2px);
}


.tv-features-final-primary > span {
  transition:
    transform
    180ms
    ease;
}


.tv-features-final-primary:hover > span {
  transform:
    translateX(3px);
}


.tv-features-final-secondary {
  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.18
    );

  background:
    rgba(
      255,
      255,
      255,
      0.055
    );

  color: #fff;
}


.tv-features-final-secondary:hover {
  border-color:
    rgba(
      255,
      255,
      255,
      0.31
    );

  background:
    rgba(
      255,
      255,
      255,
      0.095
    );

  color: #fff;

  transform:
    translateY(-2px);
}


/* =========================================================
   Right Visual
   ========================================================= */

.tv-features-final-visual {
  position: relative;

  z-index: 3;

  width: 100%;

  min-height: 340px;

  isolation: isolate;
}


/* =========================================================
   Decorative Rings
   ========================================================= */

.tv-features-final-ring {
  position: absolute;

  top: 50%;
  left: 50%;

  transform:
    translate(
      -50%,
      -50%
    );

  border-radius: 50%;

  pointer-events: none;
}


.tv-features-final-ring-inner {
  width: 236px;
  height: 236px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.11
    );

  box-shadow:
    inset
    0
    0
    50px
    rgba(
      105,
      86,
      232,
      0.035
    );
}


.tv-features-final-ring-outer {
  width: 320px;
  height: 320px;

  border:
    1px dashed
    rgba(
      255,
      255,
      255,
      0.085
    );
}


/* =========================================================
   Center Brand
   ========================================================= */

.tv-features-final-brand {
  position: absolute;

  z-index: 20;

  top: 50%;
  left: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 154px;
  height: 154px;

  transform:
    translate(
      -50%,
      -50%
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );

  border-radius: 50%;

  background:
    rgba(
      255,
      255,
      255,
      0.055
    );

  box-shadow:
    0
    25px
    65px
    rgba(
      0,
      0,
      0,
      0.22
    );

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);
}


.tv-features-final-brand-halo {
  position: absolute;

  inset: -17px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.055
    );

  border-radius: 50%;

  pointer-events: none;
}


.tv-features-final-brand img {
  position: relative;

  z-index: 2;

  display: block;

  width: 104px;
  height: 104px;

  object-fit: contain;
}


/* =========================================================
   Orbit Base
   ========================================================= */

.tv-features-final-orbit {
  position: absolute;

  z-index: 12;

  top: 50%;
  left: 50%;

  border-radius: 50%;

  pointer-events: none;

  will-change: transform;
}


/* =========================================================
   Outer Orbit
   TOURS + LANGUAGES
   ========================================================= */

.tv-features-final-orbit-outer {
  width: 320px;
  height: 320px;

  margin:
    -160px
    0
    0
    -160px;

  animation:
    tvFeaturesOuterOrbit
    30s
    linear
    infinite;
}


.tv-features-final-orbit-outer-two {
  animation-delay: -15s;
}


/* =========================================================
   Inner Orbit
   LEADS + WEBSITE
   ========================================================= */

.tv-features-final-orbit-inner {
  width: 236px;
  height: 236px;

  margin:
    -118px
    0
    0
    -118px;

  animation:
    tvFeaturesInnerOrbit
    24s
    linear
    infinite;
}


.tv-features-final-orbit-inner-two {
  animation-delay: -12s;
}


/* =========================================================
   Orbit Chips
   ========================================================= */

.tv-features-final-orbit
.tv-features-final-chip {
  position: absolute;

  top: 0;
  left: 50%;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 28px;

  padding:
    0
    11px;

  transform:
    translate(
      -50%,
      -50%
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.14
    );

  border-radius: 999px;

  background:
    rgba(
      255,
      255,
      255,
      0.075
    );

  box-shadow:
    0
    8px
    25px
    rgba(
      0,
      0,
      0,
      0.10
    );

  color:
    rgba(
      255,
      255,
      255,
      0.78
    );

  font-size: 6px;
  line-height: 1;
  letter-spacing: 0.09em;
  font-weight: 750;

  white-space: nowrap;

  backdrop-filter:
    blur(9px);

  -webkit-backdrop-filter:
    blur(9px);

  will-change: transform;
}


/* Outer chip counter rotation */

.tv-features-final-orbit-outer
.tv-features-final-chip {
  animation:
    tvFeaturesOuterChip
    30s
    linear
    infinite;
}


.tv-features-final-orbit-outer-two
.tv-features-final-chip {
  animation-delay: -15s;
}


/* Inner chip counter rotation */

.tv-features-final-orbit-inner
.tv-features-final-chip {
  animation:
    tvFeaturesInnerChip
    24s
    linear
    infinite;
}


.tv-features-final-orbit-inner-two
.tv-features-final-chip {
  animation-delay: -12s;
}


/* =========================================================
   Orbit Animations
   ========================================================= */

@keyframes tvFeaturesOuterOrbit {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(360deg);
  }

}


@keyframes tvFeaturesOuterChip {

  from {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(0deg);
  }

  to {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(-360deg);
  }

}


/* Inner ring rotates opposite direction */

@keyframes tvFeaturesInnerOrbit {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(-360deg);
  }

}


@keyframes tvFeaturesInnerChip {

  from {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(0deg);
  }

  to {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(360deg);
  }

}


/* =========================================================
   Brand Breathing
   ========================================================= */

.tv-features-final-brand img {
  animation:
    tvFeaturesBrandBreath
    6s
    ease-in-out
    infinite;
}


@keyframes tvFeaturesBrandBreath {

  0%,
  100% {
    transform:
      scale(1);
  }

  50% {
    transform:
      scale(1.025);
  }

}


/* =========================================================
   Desktop Hover
   ========================================================= */

@media (hover: hover) {

  .tv-features-final-brand {
    transition:
      box-shadow
      300ms
      ease;
  }

  .tv-features-final:hover
  .tv-features-final-brand {
    box-shadow:
      0
      30px
      72px
      rgba(
        0,
        0,
        0,
        0.27
      );
  }

}


/* =========================================================
   Responsive — 1100
   ========================================================= */

@media (max-width: 1100px) {

  .tv-features-final {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(260px, 0.85fr);

    gap: 38px;

    padding:
      60px
      52px;
  }


  .tv-features-final-copy h2 {
    font-size: 43px;
  }


  .tv-features-final-copy h2 span {
    white-space: normal;
  }


  .tv-features-final-ring-outer,
  .tv-features-final-orbit-outer {
    width: 290px;
    height: 290px;
  }


  .tv-features-final-orbit-outer {
    margin:
      -145px
      0
      0
      -145px;
  }


  .tv-features-final-ring-inner,
  .tv-features-final-orbit-inner {
    width: 215px;
    height: 215px;
  }


  .tv-features-final-orbit-inner {
    margin:
      -107.5px
      0
      0
      -107.5px;
  }

}


/* =========================================================
   Responsive — 921
   ========================================================= */

@media (max-width: 921px) {

  .tv-features-final {
    grid-template-columns:
      1fr;

    gap: 40px;

    padding:
      58px
      48px;
  }


  .tv-features-final-copy {
    max-width: 720px;
  }


  .tv-features-final-visual {
    width: 100%;
    max-width: 520px;

    min-height: 350px;

    margin-inline: auto;
  }

}


/* =========================================================
   Responsive — 640
   ========================================================= */

@media (max-width: 640px) {

  .tv-features-final-section {
    padding-bottom: 80px;
  }


  .tv-features-final {
    min-height: auto;

    padding:
      48px
      28px;

    border-radius: 24px;
  }


  .tv-features-final-copy h2 {
    font-size: 38px;
  }


  .tv-features-final-copy > p {
    font-size: 13px;
  }


  .tv-features-final-visual {
    min-height: 320px;
  }


  .tv-features-final-ring-outer,
  .tv-features-final-orbit-outer {
    width: 270px;
    height: 270px;
  }


  .tv-features-final-orbit-outer {
    margin:
      -135px
      0
      0
      -135px;
  }


  .tv-features-final-ring-inner,
  .tv-features-final-orbit-inner {
    width: 200px;
    height: 200px;
  }


  .tv-features-final-orbit-inner {
    margin:
      -100px
      0
      0
      -100px;
  }


  .tv-features-final-brand {
    width: 135px;
    height: 135px;
  }


  .tv-features-final-brand img {
    width: 90px;
    height: 90px;
  }

}


/* =========================================================
   Responsive — 544
   ========================================================= */

@media (max-width: 544px) {

  .tv-features-final {
    padding:
      42px
      22px;
  }


  .tv-features-final-copy h2 {
    font-size: 34px;
  }


  .tv-features-final-actions {
    display: grid;

    grid-template-columns:
      1fr;
  }


  .tv-features-final-primary,
  .tv-features-final-secondary {
    width: 100%;
  }


  .tv-features-final-visual {
    min-height: 285px;
  }


  .tv-features-final-ring-outer,
  .tv-features-final-orbit-outer {
    width: 235px;
    height: 235px;
  }


  .tv-features-final-orbit-outer {
    margin:
      -117.5px
      0
      0
      -117.5px;
  }


  .tv-features-final-ring-inner,
  .tv-features-final-orbit-inner {
    width: 174px;
    height: 174px;
  }


  .tv-features-final-orbit-inner {
    margin:
      -87px
      0
      0
      -87px;
  }


  .tv-features-final-brand {
    width: 118px;
    height: 118px;
  }


  .tv-features-final-brand img {
    width: 78px;
    height: 78px;
  }


  .tv-features-final-orbit
  .tv-features-final-chip {
    min-height: 25px;

    padding:
      0
      9px;

    font-size: 5px;
  }

}


/* =========================================================
   Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tv-features-final-orbit,
  .tv-features-final-orbit
  .tv-features-final-chip,
  .tv-features-final-brand img {
    animation: none !important;
  }

}