/* =========================================================
   TourVoz Homepage
   Hero
   Internal v01
   ========================================================= */

.tv-home-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 102px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(105, 86, 232, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 58% 80%,
      rgba(244, 168, 90, 0.07),
      transparent 28%
    ),
    #fff;
}

.tv-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(12, 16, 32, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(12, 16, 32, 0.025) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.32),
      transparent 78%
    );
}

.tv-home-hero-inner {
  position: relative;
  z-index: 2;

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

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


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

.tv-home-hero-copy {
  max-width: 650px;
}

.tv-home-hero-title {
  margin: 0;

  color: var(--tv-ink);

  font-size: clamp(48px, 5.6vw, 74px);
  line-height: 1.07;
  letter-spacing: -0.05em;
  font-weight: 750;
}

.tv-home-hero-title .tv-gradient-text {
  display: inline-block;
}

.tv-home-hero-lead {
  max-width: 640px;

  margin: 27px 0 0;

  color: var(--tv-muted);

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

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

  gap: 12px;

  margin-top: 34px;
}

.tv-home-hero-actions .tv-btn {
  min-width: 132px;
}

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

  gap: 10px 18px;

  margin-top: 28px;
}

.tv-home-hero-proof span {
  position: relative;

  padding-left: 15px;

  color: #7a8090;

  font-size: 11px;
  line-height: 1.6;
  font-weight: 550;
}

.tv-home-hero-proof span::before {
  content: "";

  position: absolute;
  top: 7px;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

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


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

.tv-home-hero-visual {
  position: relative;

  min-height: 610px;
}

.tv-home-hero-visual::before {
  content: "";

  position: absolute;

  top: 9%;
  right: 3%;

  width: 88%;
  height: 78%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.17) 0%,
      rgba(105, 86, 232, 0.07) 42%,
      transparent 72%
    );

  filter: blur(14px);
}

.tv-home-ui-card {
  position: absolute;

  overflow: hidden;

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

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

  box-shadow:
    0 30px 75px rgba(18, 22, 42, 0.14),
    0 10px 30px rgba(105, 86, 232, 0.07);
}


/* Main dashboard */

.tv-home-ui-card-main {
  z-index: 3;

  top: 40px;
  right: 0;

  width: 88%;

  transform: rotate(1.8deg);
}

.tv-home-ui-window {
  padding: 11px;
}

.tv-home-ui-window-top {
  display: flex;
  align-items: center;

  gap: 6px;

  padding: 6px 5px 13px;
}

.tv-home-ui-window-top span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d7dae4;
}

.tv-home-ui-window-top span:first-child {
  background: #ff938c;
}

.tv-home-ui-window-top span:nth-child(2) {
  background: #f7c66d;
}

.tv-home-ui-window-top span:nth-child(3) {
  background: #75cf99;
}

.tv-home-ui-dashboard {
  display: grid;

  grid-template-columns: 58px 1fr;

  min-height: 390px;

  overflow: hidden;

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

  background: #f8f9fc;
}

.tv-home-ui-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 18px;

  padding: 18px 0;

  background: #111426;
}

.tv-home-ui-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  margin-bottom: 5px;

  border-radius: 9px;

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

  color: #fff;

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

.tv-home-ui-sidebar > span {
  width: 20px;
  height: 6px;

  border-radius: 99px;

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

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

.tv-home-ui-content {
  padding: 24px;
}

.tv-home-ui-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;
}

.tv-home-ui-heading small {
  display: block;

  margin-bottom: 5px;

  color: #8a8fa0;

  font-size: 9px;
}

.tv-home-ui-heading strong {
  color: var(--tv-ink);

  font-size: 18px;
}

.tv-home-ui-button {
  padding: 7px 10px;

  border-radius: 8px;

  background: var(--tv-accent);

  color: #fff;

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

.tv-home-ui-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 22px;
}

.tv-home-ui-stat {
  padding: 14px;

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

  background: #fff;
}

.tv-home-ui-stat small {
  display: block;

  color: #9297a7;

  font-size: 8px;
}

.tv-home-ui-stat strong {
  display: block;

  margin-top: 6px;

  color: var(--tv-ink);

  font-size: 18px;
}

.tv-home-ui-panel {
  margin-top: 14px;
  padding: 15px;

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

  background: #fff;
}

.tv-home-ui-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 10px;
}

.tv-home-ui-panel-head strong {
  color: var(--tv-ink);

  font-size: 10px;
}

.tv-home-ui-panel-head span {
  color: var(--tv-accent);

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

.tv-home-ui-row {
  display: grid;

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

  gap: 9px;
  align-items: center;

  padding: 10px 0;

  border-top: 1px solid #eff0f4;
}

.tv-home-ui-row i {
  width: 27px;
  height: 27px;

  border-radius: 7px;

  background:
    linear-gradient(
      145deg,
      #e9e5ff,
      #f8f6ff
    );
}

.tv-home-ui-row strong {
  display: block;

  color: #303447;

  font-size: 8px;
}

.tv-home-ui-row small {
  display: block;

  margin-top: 2px;

  color: #a0a4b2;

  font-size: 7px;
}

.tv-home-ui-row > span {
  color: #777d90;

  font-size: 7px;
}


/* Travel website preview */

.tv-home-ui-card-site {
  z-index: 2;

  left: 0;
  bottom: 8px;

  width: 55%;

  transform:
    rotate(-5.5deg)
    translateY(8px);
}

.tv-home-ui-site-image {
  height: 145px;

  background:
    linear-gradient(
      rgba(15, 18, 35, 0.08),
      rgba(15, 18, 35, 0.24)
    ),
    linear-gradient(
      135deg,
      #d9d1ff 0%,
      #efecff 42%,
      #f9d7b4 100%
    );
}

.tv-home-ui-site-copy {
  padding: 18px 20px 20px;
}

.tv-home-ui-site-copy span {
  color: var(--tv-accent);

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

.tv-home-ui-site-copy strong {
  display: block;

  margin-top: 7px;

  color: var(--tv-ink);

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

.tv-home-ui-site-copy p {
  margin: 6px 0 0;

  color: var(--tv-muted);

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


/* Floating chips */

.tv-home-ui-float {
  position: absolute;
  z-index: 5;

  display: flex;
  align-items: center;

  gap: 8px;

  padding: 10px 13px;

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

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

  color: #454a5c;

  box-shadow:
    0 14px 32px rgba(24, 27, 45, 0.1);

  font-size: 10px;
  font-weight: 650;

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

.tv-home-ui-float-language {
  top: 16px;
  left: 3%;
}

.tv-home-ui-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--tv-accent);

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

.tv-home-ui-float-lead {
  right: -4%;
  bottom: 26px;

  gap: 10px;

  white-space: nowrap;
  width: max-content;
  min-width: max-content;
}

.tv-home-ui-float-lead > span {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 24px;

  width: 24px;
  height: 24px;

  border-radius: 8px;

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

  color: var(--tv-accent);

  font-size: 9px;
  line-height: 1;
  font-weight: 800;
}


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

@media (hover: hover) {

  .tv-home-ui-card-main,
  .tv-home-ui-card-site,
  .tv-home-ui-float {
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease;
  }

  .tv-home-hero-visual:hover .tv-home-ui-card-main {
    transform:
      translate(8px, -6px)
      rotate(3deg);

    box-shadow:
      0 38px 88px rgba(18, 22, 42, 0.17),
      0 12px 34px rgba(105, 86, 232, 0.09);
  }

  .tv-home-hero-visual:hover .tv-home-ui-card-site {
    transform:
      translate(-8px, 5px)
      rotate(-7deg);
  }

  .tv-home-hero-visual:hover .tv-home-ui-float-language {
    transform: translate(-4px, -5px);
  }

  .tv-home-hero-visual:hover .tv-home-ui-float-lead {
    transform: translate(6px, 5px);
  }
}


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

@media (max-width: 1100px) {

  .tv-home-hero-inner {
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(460px, 1.05fr);

    gap: 48px;
  }

  .tv-home-hero-title {
    font-size: clamp(44px, 5vw, 62px);
  }

  .tv-home-hero-visual {
    min-height: 560px;
  }
}


@media (max-width: 921px) {

  .tv-home-hero {
    padding: 72px 0 84px;
  }

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

    gap: 54px;
  }

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

  .tv-home-hero-title {
    max-width: 720px;
  }

  .tv-home-hero-visual {
    width: 100%;
    max-width: 720px;

    min-height: 600px;

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-home-hero {
    padding: 58px 0 66px;
  }

  .tv-home-hero-title {
    font-size: 43px;
  }

  .tv-home-hero-lead {
    font-size: 15px;
    line-height: 1.75;
  }

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

  .tv-home-hero-actions .tv-btn {
    width: 100%;
  }

  .tv-home-hero-proof {
    display: grid;

    gap: 9px;
  }

  .tv-home-hero-visual {
    min-height: 440px;
  }

  .tv-home-ui-card-main {
    top: 32px;

    width: 94%;
  }

  .tv-home-ui-dashboard {
    grid-template-columns: 42px 1fr;

    min-height: 320px;
  }

  .tv-home-ui-sidebar {
    gap: 15px;

    padding-top: 14px;
  }

  .tv-home-ui-logo {
    width: 25px;
    height: 25px;

    font-size: 13px;
  }

  .tv-home-ui-sidebar > span {
    width: 15px;
  }

  .tv-home-ui-content {
    padding: 16px;
  }

  .tv-home-ui-heading strong {
    font-size: 15px;
  }

  .tv-home-ui-stats {
    gap: 6px;
  }

  .tv-home-ui-stat {
    padding: 10px;
  }

  .tv-home-ui-stat strong {
    font-size: 15px;
  }

  .tv-home-ui-row {
    grid-template-columns: 22px 1fr;
  }

  .tv-home-ui-row > span {
    display: none;
  }

  .tv-home-ui-row i {
    width: 22px;
    height: 22px;
  }

  .tv-home-ui-card-site {
    width: 58%;

    bottom: 0;
  }

  .tv-home-ui-site-image {
    height: 95px;
  }

  .tv-home-ui-float {
    padding: 8px 10px;

    font-size: 8px;
  }

  .tv-home-ui-float-language {
    top: 2px;
    left: 0;
  }

  .tv-home-ui-float-lead {
    right: 0;
    bottom: 22px;
  }
}


@media (max-width: 544px) {

  .tv-home-hero-title {
    font-size: 39px;
  }

  .tv-home-hero-visual {
    min-height: 400px;
  }

  .tv-home-ui-card-site {
    width: 62%;
  }
}

/* =========================================================
   Homepage — Growth Foundation
   Internal v02
   ========================================================= */

.tv-home-foundation {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(105, 86, 232, 0.07),
      transparent 26%
    ),
    var(--tv-bg-soft);

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

.tv-home-foundation-head {
  max-width: 850px;
}

.tv-home-foundation-head .tv-h2 {
  max-width: 800px;
}

.tv-home-foundation-head .tv-lead {
  max-width: 780px;

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


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

.tv-home-foundation-grid {
  display: grid;

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

  gap: 20px;

  margin-top: 58px;
}


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

.tv-home-foundation-card {
  position: relative;

  min-height: 360px;

  padding: 32px;

  overflow: hidden;
}

.tv-home-foundation-card-featured {
  background:
    radial-gradient(
      circle at 90% 4%,
      rgba(105, 86, 232, 0.12),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #ffffff 0%,
      #faf9ff 100%
    );

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

.tv-home-foundation-card::after {
  content: "";

  position: absolute;

  right: -55px;
  bottom: -65px;

  width: 170px;
  height: 170px;

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

  pointer-events: none;
}


/* =========================================================
   Icon
   ========================================================= */

.tv-home-foundation-icon {
  display: flex;

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

  width: 48px;
  height: 48px;

  border: 1px solid #ded9ff;
  border-radius: 14px;

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

.tv-home-foundation-icon svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   Index
   ========================================================= */

.tv-home-foundation-index {
  position: absolute;

  top: 34px;
  right: 32px;

  color: #adb1bd;

  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
}


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

.tv-home-foundation-card h3 {
  max-width: 430px;

  margin-top: 48px;

  font-size: 20px;
}

.tv-home-foundation-card p {
  max-width: 500px;

  margin: 16px 0 0;

  color: var(--tv-muted);

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

.tv-home-foundation-tag {
  position: absolute;

  left: 32px;
  bottom: 30px;

  display: inline-flex;

  padding: 7px 10px;

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

  background: #fff;

  color: #707688;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.tv-home-foundation-link {
  position: absolute;

  left: 32px;
  bottom: 32px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--tv-accent);

  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.tv-home-foundation-link span {
  transition: transform 180ms ease;
}

.tv-home-foundation-link:hover {
  color: var(--tv-accent-hover);
}

.tv-home-foundation-link:hover span {
  transform: translateX(3px);
}


/* =========================================================
   Bottom statement
   ========================================================= */

.tv-home-foundation-bottom {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 30px;
  align-items: center;

  margin-top: 48px;
}

.tv-home-foundation-bottom-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--tv-border),
      rgba(105, 86, 232, 0.3)
    );
}

.tv-home-foundation-bottom p {
  margin: 0;

  color: var(--tv-muted);

  font-size: 12px;
  line-height: 1.6;

  white-space: nowrap;
}

.tv-home-foundation-bottom strong {
  color: var(--tv-ink);
  font-weight: 700;
}


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

@media (max-width: 921px) {

  .tv-home-foundation-grid {
    gap: 16px;

    margin-top: 46px;
  }

  .tv-home-foundation-card {
    min-height: 380px;

    padding: 28px;
  }

  .tv-home-foundation-index {
    top: 30px;
    right: 28px;
  }

  .tv-home-foundation-tag,
  .tv-home-foundation-link {
    left: 28px;
  }
}


@media (max-width: 720px) {

  .tv-home-foundation-grid {
    grid-template-columns: 1fr;
  }

  .tv-home-foundation-card {
    min-height: 0;

    padding-bottom: 84px;
  }

  .tv-home-foundation-bottom {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .tv-home-foundation-bottom p {
    white-space: normal;
  }
}


@media (max-width: 544px) {

  .tv-home-foundation-grid {
    margin-top: 36px;
  }

  .tv-home-foundation-card {
    padding: 24px 22px 78px;

    border-radius: 18px;
  }

  .tv-home-foundation-index {
    top: 27px;
    right: 22px;
  }

  .tv-home-foundation-card h3 {
    margin-top: 38px;

    font-size: 19px;
  }

  .tv-home-foundation-card p {
    font-size: 13px;
  }

  .tv-home-foundation-tag,
  .tv-home-foundation-link {
    left: 22px;
    bottom: 24px;
  }
}
/* =========================================================
   Homepage — Tours & Content
   Internal v03
   ========================================================= */

.tv-home-tours {
  position: relative;
  overflow: hidden;

  background: #fff;
}

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

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

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


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

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

  min-height: 620px;
}

.tv-home-tours-visual::before {
  content: "";

  position: absolute;

  width: 430px;
  height: 430px;

  top: 60px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.12),
      rgba(105, 86, 232, 0.04) 46%,
      transparent 72%
    );

  filter: blur(10px);
}


/* Browser */

.tv-home-tours-browser {
  position: absolute;

  z-index: 2;

  top: 35px;
  left: 0;

  width: 91%;

  overflow: hidden;

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

  background: #fff;

  box-shadow:
    0 32px 80px rgba(20, 24, 45, 0.13),
    0 8px 25px rgba(105, 86, 232, 0.06);

  transform: rotate(-1.3deg);
}

.tv-home-tours-browser-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-home-browser-dots {
  display: flex;

  gap: 5px;
}

.tv-home-browser-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d6d9e1;
}

.tv-home-browser-dots span:first-child {
  background: #ff938c;
}

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

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

.tv-home-browser-label {
  color: #989dab;

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


/* App */

.tv-home-tours-app {
  display: grid;

  grid-template-columns: 55px 1fr;

  min-height: 420px;

  background: #f8f9fc;
}

.tv-home-tours-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 18px;

  padding: 18px 0;

  background: #111426;
}

.tv-home-tours-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  margin-bottom: 5px;

  border-radius: 9px;

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

  color: #fff;

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

.tv-home-tours-sidebar > span {
  width: 19px;
  height: 6px;

  border-radius: 99px;

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

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


/* Main */

.tv-home-tours-main {
  padding: 25px 24px;
}

.tv-home-tours-toolbar {
  display: flex;

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

  gap: 20px;
}

.tv-home-tours-toolbar small {
  display: block;

  margin-bottom: 5px;

  color: var(--tv-accent);

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

.tv-home-tours-toolbar strong {
  color: var(--tv-ink);

  font-size: 17px;
}

.tv-home-tours-add {
  padding: 7px 10px;

  border-radius: 8px;

  background: var(--tv-accent);

  color: #fff;

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


/* Tour rows */

.tv-home-tour-list {
  display: grid;

  gap: 9px;

  margin-top: 22px;
}

.tv-home-tour-item {
  display: grid;

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

  gap: 13px;
  align-items: center;

  padding: 10px;

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

  background: #fff;
}

.tv-home-tour-item.is-featured {
  border-color: rgba(105, 86, 232, 0.2);

  box-shadow:
    0 8px 20px rgba(105, 86, 232, 0.05);
}

.tv-home-tour-thumb {
  position: relative;

  height: 63px;

  overflow: hidden;

  border-radius: 9px;
}

.tv-home-tour-thumb-one {
  background:
    linear-gradient(
      145deg,
      #e2d9ff,
      #c9bdfb 55%,
      #f4d4b1
    );
}

.tv-home-tour-thumb-two {
  background:
    linear-gradient(
      145deg,
      #d8e1f0,
      #c9d2e6 48%,
      #e5c5a9
    );
}

.tv-home-tour-thumb-three {
  background:
    linear-gradient(
      145deg,
      #eed8c8,
      #d7b7a3 50%,
      #c5b3e9
    );
}

.tv-home-tour-thumb span {
  position: absolute;

  left: 7px;
  bottom: 7px;

  padding: 4px 5px;

  border-radius: 5px;

  background: rgba(17, 20, 38, 0.78);

  color: #fff;

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

.tv-home-tour-info > strong {
  display: block;

  color: #303447;

  font-size: 10px;
}

.tv-home-tour-meta {
  display: flex;

  gap: 8px;

  margin-top: 5px;
}

.tv-home-tour-meta span {
  color: #9a9ead;

  font-size: 7px;
}

.tv-home-tour-status {
  display: flex;

  align-items: center;

  gap: 5px;

  margin-top: 7px;

  color: #6e7485;

  font-size: 7px;
}

.tv-home-tour-status i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #52bd83;
}

.tv-home-tour-status.is-draft i {
  background: #c5c8d0;
}

.tv-home-tour-langs {
  display: flex;

  gap: 4px;
}

.tv-home-tour-langs span {
  display: flex;

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

  min-width: 23px;
  height: 23px;

  padding: 0 5px;

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

  background: #faf9ff;

  color: var(--tv-accent);

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


/* =========================================================
   Front-end tour preview
   ========================================================= */

.tv-home-tour-preview {
  position: absolute;

  z-index: 4;

  right: 0;
  bottom: 15px;

  width: 48%;

  overflow: hidden;

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

  background: #fff;

  box-shadow:
    0 25px 60px rgba(18, 22, 42, 0.15);

  transform: rotate(4deg);
}

.tv-home-tour-preview-image {
  position: relative;

  height: 130px;

  background:
    linear-gradient(
      rgba(16, 19, 35, 0.04),
      rgba(16, 19, 35, 0.18)
    ),
    linear-gradient(
      135deg,
      #d8d0fb 0%,
      #eee8ff 44%,
      #f3c89f 100%
    );
}

.tv-home-tour-preview-image span {
  position: absolute;

  left: 14px;
  bottom: 12px;

  padding: 5px 7px;

  border-radius: 6px;

  background: rgba(17, 20, 38, 0.78);

  color: #fff;

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

.tv-home-tour-preview-copy {
  padding: 16px;
}

.tv-home-tour-preview-copy small {
  color: var(--tv-accent);

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

.tv-home-tour-preview-copy strong {
  display: block;

  margin-top: 6px;

  color: var(--tv-ink);

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

.tv-home-tour-preview-copy p {
  margin: 7px 0 0;

  color: var(--tv-muted);

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

.tv-home-tour-preview-button {
  display: inline-flex;

  margin-top: 10px;
  padding: 6px 9px;

  border-radius: 6px;

  background: var(--tv-accent);

  color: #fff;

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


/* Floating label */

.tv-home-tour-float {
  position: absolute;

  z-index: 5;

  left: 7px;
  bottom: 43px;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 10px 13px;

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

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

  color: #555a6d;

  box-shadow:
    0 15px 35px rgba(20, 24, 45, 0.1);

  font-size: 9px;
  font-weight: 650;

  white-space: nowrap;
}

.tv-home-tour-float > span {
  display: flex;

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

  width: 20px;
  height: 20px;

  border-radius: 7px;

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

  color: var(--tv-accent);

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


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

.tv-home-tours-copy {
  max-width: 560px;
}

.tv-home-tours-copy .tv-h2 {
  max-width: 560px;
}

.tv-home-tours-copy .tv-lead {
  margin-top: 22px;

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

.tv-home-tours-points {
  display: grid;

  gap: 0;

  margin-top: 34px;

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

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

  grid-template-columns: 34px 1fr;

  gap: 14px;

  padding: 19px 0;

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

.tv-home-tours-point-number {
  padding-top: 2px;

  color: var(--tv-accent);

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

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

  color: var(--tv-ink);

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

.tv-home-tours-point p {
  margin: 7px 0 0;

  color: var(--tv-muted);

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

.tv-home-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-home-tours-link span {
  transition: transform 180ms ease;
}

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

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


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

@media (hover: hover) {

  .tv-home-tours-browser,
  .tv-home-tour-preview {
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease;
  }

  .tv-home-tours-visual:hover .tv-home-tours-browser {
    transform:
      translate(-5px, -4px)
      rotate(-2deg);
  }

  .tv-home-tours-visual:hover .tv-home-tour-preview {
    transform:
      translate(7px, -5px)
      rotate(5.5deg);
  }
}


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

@media (max-width: 1050px) {

  .tv-home-tours-layout {
    grid-template-columns:
      minmax(460px, 1fr)
      minmax(0, 0.9fr);

    gap: 55px;
  }
}


@media (max-width: 921px) {

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

    gap: 55px;
  }

  .tv-home-tours-copy {
    max-width: 760px;
  }

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

    margin-inline: auto;

    order: 2;
  }
}


@media (max-width: 640px) {

  .tv-home-tours-visual {
    min-height: 500px;
  }

  .tv-home-tours-browser {
    width: 96%;
  }

  .tv-home-tours-app {
    grid-template-columns: 42px 1fr;

    min-height: 360px;
  }

  .tv-home-tours-sidebar {
    gap: 14px;

    padding-top: 14px;
  }

  .tv-home-tours-main {
    padding: 18px 14px;
  }

  .tv-home-tour-item {
    grid-template-columns: 58px 1fr;

    gap: 10px;
  }

  .tv-home-tour-thumb {
    height: 54px;
  }

  .tv-home-tour-langs {
    display: none;
  }

  .tv-home-tour-preview {
    width: 53%;
  }

  .tv-home-tour-preview-image {
    height: 100px;
  }

  .tv-home-tour-float {
    bottom: 24px;
  }
}


@media (max-width: 544px) {

  .tv-home-tours-visual {
    min-height: 455px;
  }

  .tv-home-tour-preview {
    width: 57%;
  }

  .tv-home-tour-float {
    font-size: 8px;
  }
}

/* =========================================================
   Homepage — Multilingual
   Internal v01
   ========================================================= */

.tv-home-multilingual {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(105, 86, 232, 0.075),
      transparent 31%
    ),
    var(--tv-bg-soft);

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

.tv-home-multilingual-head {
  max-width: 860px;

  margin: 0 auto;

  text-align: center;
}

.tv-home-multilingual-head .tv-h2 {
  max-width: 820px;

  margin-inline: auto;
}

.tv-home-multilingual-head .tv-lead {
  max-width: 820px;

  margin-inline: auto;

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


/* =========================================================
   Main Stage
   ========================================================= */

.tv-home-multilingual-stage {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(300px, 0.8fr)
    105px
    minmax(0, 1.45fr);

  gap: 0;
  align-items: center;

  max-width: 1100px;

  margin: 66px auto 0;
  padding: 42px;

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

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97),
      rgba(251, 250, 255, 0.97)
    );

  box-shadow:
    0 28px 80px rgba(22, 25, 45, 0.07);
}


/* =========================================================
   Source Workspace
   ========================================================= */

.tv-home-language-source {
  position: relative;
  z-index: 2;

  overflow: hidden;

  border: 1px solid #e5e2f6;
  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 18px 45px rgba(25, 28, 48, 0.08);
}

.tv-home-language-source-top {
  display: flex;

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

  gap: 15px;

  padding: 16px 17px;

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

  background: #fafaff;
}

.tv-home-language-source-brand {
  display: flex;

  align-items: center;

  gap: 10px;
}

.tv-home-language-source-logo {
  display: flex;

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

  width: 31px;
  height: 31px;

  border-radius: 9px;

  background:
    linear-gradient(
      145deg,
      #806dff,
      #5d4bd6
    );

  color: #fff;

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

.tv-home-language-source-brand small {
  display: block;

  color: var(--tv-accent);

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

.tv-home-language-source-brand strong {
  display: block;

  margin-top: 5px;

  color: var(--tv-ink);

  font-size: 10px;
}

.tv-home-language-source-status {
  position: relative;

  padding-left: 10px;

  color: #687083;

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

.tv-home-language-source-status::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 5px;
  height: 5px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #4fc381;
}


/* Source content */

.tv-home-language-source-content {
  padding: 23px 20px 21px;
}

.tv-home-language-label {
  color: var(--tv-accent);

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

.tv-home-language-tour-title {
  margin: 8px 0 0;

  color: var(--tv-ink);

  font-size: 16px;
  line-height: 1.35;
}

.tv-home-language-fields {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;

  margin-top: 20px;
}

.tv-home-language-fields > div {
  padding: 10px;

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

  background: #fafbfc;
}

.tv-home-language-fields span {
  display: block;

  color: #a0a5b2;

  font-size: 6px;
}

.tv-home-language-fields strong {
  display: block;

  margin-top: 5px;

  color: #545a6d;

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


/* Language pills */

.tv-home-language-available {
  margin-top: 23px;
  padding-top: 18px;

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

.tv-home-language-available > span {
  display: block;

  margin-bottom: 10px;

  color: #8e93a1;

  font-size: 7px;
}

.tv-home-language-pills {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;
}

.tv-home-language-pills strong {
  display: inline-flex;

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

  min-width: 32px;
  height: 27px;

  padding: 0 8px;

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

  background: #faf9ff;

  color: #6e668f;

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

.tv-home-language-pills strong.is-active {
  border-color: var(--tv-accent);

  background: var(--tv-accent);

  color: #fff;
}


/* =========================================================
   Flow
   ========================================================= */

.tv-home-language-flow {
  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  width: 100%;
}

.tv-home-language-flow-line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(105, 86, 232, 0.18),
      rgba(105, 86, 232, 0.55)
    );
}

.tv-home-language-flow-core {
  display: flex;

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

  width: 29px;
  height: 29px;

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

  background: #fff;

  box-shadow:
    0 6px 18px rgba(105, 86, 232, 0.13);
}

.tv-home-language-flow-core i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

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


/* =========================================================
   Market Cards
   ========================================================= */

.tv-home-language-markets {
  position: relative;

  z-index: 2;

  display: grid;

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

  gap: 10px;
}

.tv-home-market-card {
  position: relative;

  overflow: hidden;

  min-height: 275px;

  border: 1px solid #e6e3f4;
  border-radius: 15px;

  background: #fff;

  box-shadow:
    0 12px 30px rgba(24, 28, 48, 0.06);

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

.tv-home-market-card.is-primary {
  transform: translateY(-12px);

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

  box-shadow:
    0 20px 42px rgba(105, 86, 232, 0.1);
}

.tv-home-market-card-top {
  display: flex;

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

  gap: 8px;

  padding: 11px 12px;

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

  background: #fafaff;
}

.tv-home-market-code {
  display: inline-flex;

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

  width: 27px;
  height: 23px;

  border-radius: 6px;

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

  color: var(--tv-accent);

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

.tv-home-market-url {
  color: #9a9eaa;

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


/* Preview */

.tv-home-market-preview {
  min-height: 190px;

  padding: 28px 13px 17px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(244, 168, 90, 0.17),
      transparent 30%
    ),
    linear-gradient(
      160deg,
      #ffffff 0%,
      #faf9ff 100%
    );
}

.tv-home-market-preview > span {
  color: var(--tv-accent);

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

.tv-home-market-preview strong {
  display: block;

  margin-top: 11px;

  color: var(--tv-ink);

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

.tv-home-market-preview p {
  margin: 10px 0 0;

  color: var(--tv-muted);

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


/* Market footer */

.tv-home-market-footer {
  display: flex;

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

  gap: 8px;

  padding: 10px 12px;

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

.tv-home-market-footer span {
  color: #74798a;

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

.tv-home-market-footer i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #55c487;
}


/* Hover */

@media (hover: hover) {

  .tv-home-market-card:hover {
    transform: translateY(-6px);

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

    box-shadow:
      0 20px 42px rgba(105, 86, 232, 0.09);
  }

  .tv-home-market-card.is-primary:hover {
    transform: translateY(-17px);
  }
}


/* =========================================================
   Floating Labels
   ========================================================= */

.tv-home-language-float {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 9px 12px;

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

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

  color: #666c7d;

  box-shadow:
    0 13px 30px rgba(20, 24, 45, 0.09);

  font-size: 8px;
  font-weight: 650;

  white-space: nowrap;
}

.tv-home-language-float span {
  color: var(--tv-accent);

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

.tv-home-language-float-one {
  left: 18px;
  bottom: 18px;
}

.tv-home-language-float-two {
  right: 18px;
  top: 18px;
}


/* =========================================================
   Bottom Points
   ========================================================= */

.tv-home-multilingual-bottom {
  display: grid;

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

  max-width: 1100px;

  margin: 42px auto 0;

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

.tv-home-multilingual-point {
  display: grid;

  grid-template-columns: 32px 1fr;

  gap: 13px;

  padding: 25px 27px;
}

.tv-home-multilingual-point + .tv-home-multilingual-point {
  border-left: 1px solid var(--tv-border);
}

.tv-home-multilingual-point > span {
  padding-top: 2px;

  color: var(--tv-accent);

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

.tv-home-multilingual-point strong {
  display: block;

  color: var(--tv-ink);

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

.tv-home-multilingual-point p {
  margin: 8px 0 0;

  color: var(--tv-muted);

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


/* =========================================================
   Bottom Action
   ========================================================= */

.tv-home-multilingual-action {
  display: flex;

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

  gap: 30px;

  max-width: 1100px;

  margin: 28px auto 0;
}

.tv-home-multilingual-action p {
  margin: 0;

  color: var(--tv-muted);

  font-size: 12px;
}

.tv-home-multilingual-action p strong {
  color: var(--tv-ink);
}

.tv-home-multilingual-action a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--tv-accent);

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

  text-decoration: none;

  white-space: nowrap;
}

.tv-home-multilingual-action a span {
  transition: transform 180ms ease;
}

.tv-home-multilingual-action a:hover {
  color: var(--tv-accent-hover);
}

.tv-home-multilingual-action a:hover span {
  transform: translateX(4px);
}


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

@media (max-width: 1050px) {

  .tv-home-multilingual-stage {
    grid-template-columns:
      minmax(260px, 0.8fr)
      70px
      minmax(0, 1.4fr);

    padding: 32px;
  }

  .tv-home-market-preview {
    padding-inline: 11px;
  }
}


@media (max-width: 921px) {

  .tv-home-multilingual-stage {
    grid-template-columns: 1fr;

    gap: 28px;

    max-width: 720px;
  }

  .tv-home-language-source {
    width: 72%;

    margin: 0 auto;
  }

  .tv-home-language-flow {
    width: 1px;
    height: 50px;

    margin: -5px auto;

    flex-direction: column;
  }

  .tv-home-language-flow-line {
    width: 1px;
    height: auto;

    background:
      linear-gradient(
        180deg,
        rgba(105, 86, 232, 0.18),
        rgba(105, 86, 232, 0.55)
      );
  }

  .tv-home-language-markets {
    width: 100%;
  }

  .tv-home-language-float-one {
    bottom: auto;
    top: 22px;
  }

  .tv-home-multilingual-bottom {
    max-width: 720px;
  }
}


@media (max-width: 720px) {

  .tv-home-multilingual-stage {
    padding: 25px 20px;
  }

  .tv-home-language-source {
    width: 88%;
  }

  .tv-home-language-markets {
    grid-template-columns: 1fr;
  }

  .tv-home-market-card {
    min-height: 0;
  }

  .tv-home-market-card.is-primary {
    transform: none;
  }

  .tv-home-market-preview {
    min-height: 150px;
  }

  .tv-home-language-float {
    display: none;
  }

  .tv-home-multilingual-bottom {
    grid-template-columns: 1fr;
  }

  .tv-home-multilingual-point {
    padding: 22px 0;
  }

  .tv-home-multilingual-point + .tv-home-multilingual-point {
    border-left: 0;
    border-top: 1px solid var(--tv-border);
  }

  .tv-home-multilingual-action {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }
}


@media (max-width: 544px) {

  .tv-home-multilingual-stage {
    margin-top: 42px;

    border-radius: 20px;
  }

  .tv-home-language-source {
    width: 100%;
  }

  .tv-home-language-fields {
    grid-template-columns: 1fr;
  }

  .tv-home-multilingual-head {
    text-align: left;
  }
}

/* =========================================================
   Homepage — Why TourVoz / Comparison
   Internal v01
   ========================================================= */

.tv-home-compare {
  position: relative;

  overflow: hidden;

  background: #fff;
}

.tv-home-compare-head {
  max-width: 790px;
}

.tv-home-compare-head .tv-lead {
  max-width: 790px;

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


/* =========================================================
   Comparison Stage
   ========================================================= */

.tv-home-compare-stage {
  position: relative;

  display: grid;

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

  gap: 22px;

  margin-top: 58px;
}


/* =========================================================
   Traditional / General SaaS
   ========================================================= */

.tv-home-compare-option {
  position: relative;

  padding: 31px;

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

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fafbfc 100%
    );
}

.tv-home-compare-option-top {
  display: flex;

  align-items: center;

  gap: 14px;
}

.tv-home-compare-option-icon {
  display: flex;

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

  flex: 0 0 auto;

  width: 46px;
  height: 46px;

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

  background: #f7f8fa;

  color: #7b8190;
}

.tv-home-compare-option-icon svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tv-home-compare-option-top small {
  display: block;

  color: #a1a5b0;

  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 750;
}

.tv-home-compare-option-top h3 {
  margin: 7px 0 0;

  color: var(--tv-ink);

  font-size: 18px;
  line-height: 1.25;
}

.tv-home-compare-summary {
  max-width: 510px;

  margin: 24px 0 0;

  color: var(--tv-muted);

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


/* Comparison items */

.tv-home-compare-items {
  display: grid;

  margin-top: 27px;

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

.tv-home-compare-items > div {
  display: grid;

  grid-template-columns: 29px 1fr;

  gap: 11px;

  padding: 15px 0;

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

.tv-home-compare-items span {
  padding-top: 2px;

  color: #a2a6b1;

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

.tv-home-compare-items p {
  margin: 0;

  color: #646a7a;

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


/* =========================================================
   VS
   ========================================================= */

.tv-home-compare-vs {
  position: absolute;

  z-index: 4;

  top: 50%;
  left: 50%;

  display: flex;

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

  width: 42px;
  height: 42px;

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

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

  background: #15192a;

  color: #fff;

  box-shadow:
    0 9px 24px rgba(20, 24, 42, 0.13);

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


/* =========================================================
   TourVoz Solution
   ========================================================= */

.tv-home-compare-tourvoz {
  position: relative;

  display: grid;

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

  gap: 60px;
  align-items: center;

  margin-top: 22px;
  padding: 46px;

  overflow: hidden;

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

  background:
    radial-gradient(
      circle at 91% 7%,
      rgba(105, 86, 232, 0.15),
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 100%,
      rgba(244, 168, 90, 0.11),
      transparent 27%
    ),
    linear-gradient(
      145deg,
      #fbfaff 0%,
      #ffffff 60%
    );

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


/* Brand */

.tv-home-compare-tourvoz-brand {
  display: flex;

  align-items: center;

  gap: 12px;
}

.tv-home-compare-tourvoz-brand > span {
  display: flex;

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

  width: 40px;
  height: 40px;

  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      #806dff,
      #5d4bd6
    );

  color: #fff;

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

.tv-home-compare-tourvoz-brand small {
  display: block;

  color: var(--tv-accent);

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

.tv-home-compare-tourvoz-brand strong {
  display: block;

  margin-top: 4px;

  color: #646a7b;

  font-size: 9px;
}


/* TourVoz copy */

.tv-home-compare-tourvoz-copy h3 {
  max-width: 520px;

  margin: 27px 0 0;

  color: var(--tv-ink);

  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.tv-home-compare-tourvoz-copy h3 span {
  color: var(--tv-accent);
}

.tv-home-compare-tourvoz-copy > p {
  max-width: 530px;

  margin: 18px 0 0;

  color: var(--tv-muted);

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


/* =========================================================
   Tourism Workspace
   ========================================================= */

.tv-home-compare-tourvoz-system {
  padding: 22px;

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

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

  box-shadow:
    0 18px 45px rgba(27, 30, 52, 0.07);
}

.tv-home-compare-system-label {
  padding-bottom: 14px;

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

  color: var(--tv-accent);

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

.tv-home-compare-system-grid {
  display: grid;

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

  margin-top: 15px;
}

.tv-home-compare-system-grid > div {
  position: relative;

  min-height: 108px;

  padding: 15px 13px;
}

.tv-home-compare-system-grid > div:nth-child(1),
.tv-home-compare-system-grid > div:nth-child(2),
.tv-home-compare-system-grid > div:nth-child(4),
.tv-home-compare-system-grid > div:nth-child(5) {
  border-right: 1px solid var(--tv-border);
}

.tv-home-compare-system-grid > div:nth-child(-n+3) {
  border-bottom: 1px solid var(--tv-border);
}

.tv-home-compare-system-grid span {
  display: block;

  color: #aaaeb9;

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

.tv-home-compare-system-grid strong {
  display: block;

  margin-top: 14px;

  color: var(--tv-ink);

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

.tv-home-compare-system-grid small {
  display: block;

  margin-top: 5px;

  color: var(--tv-muted);

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


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

.tv-home-compare-bottom {
  display: flex;

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

  gap: 30px;

  margin-top: 30px;
}

.tv-home-compare-bottom p {
  margin: 0;

  color: var(--tv-muted);

  font-size: 12px;
}

.tv-home-compare-bottom p strong {
  color: var(--tv-ink);
}

.tv-home-compare-bottom a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--tv-accent);

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

  text-decoration: none;

  white-space: nowrap;
}

.tv-home-compare-bottom a span {
  transition: transform 180ms ease;
}

.tv-home-compare-bottom a:hover {
  color: var(--tv-accent-hover);
}

.tv-home-compare-bottom a:hover span {
  transform: translateX(4px);
}


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

@media (max-width: 1000px) {

  .tv-home-compare-tourvoz {
    grid-template-columns: 1fr;

    gap: 38px;
  }
}


@media (max-width: 720px) {

  .tv-home-compare-stage {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .tv-home-compare-vs {
    top: 50%;
  }

  .tv-home-compare-option {
    padding: 25px 22px;
  }

  .tv-home-compare-tourvoz {
    padding: 30px 24px;
  }

  .tv-home-compare-system-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .tv-home-compare-system-grid > div {
    border-right: 0 !important;
    border-bottom: 0 !important;
  }

  .tv-home-compare-system-grid > div:nth-child(odd) {
    border-right: 1px solid var(--tv-border) !important;
  }

  .tv-home-compare-system-grid > div:nth-child(-n+4) {
    border-bottom: 1px solid var(--tv-border) !important;
  }

  .tv-home-compare-bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }
}


@media (max-width: 544px) {

  .tv-home-compare-stage {
    margin-top: 40px;
  }

  .tv-home-compare-option {
    border-radius: 18px;
  }

  .tv-home-compare-tourvoz {
    border-radius: 20px;
  }

  .tv-home-compare-tourvoz-copy h3 {
    font-size: 23px;
  }

  .tv-home-compare-tourvoz-system {
    padding: 16px;
  }

  .tv-home-compare-system-grid > div {
    min-height: 100px;

    padding: 13px 10px;
  }
}

/* =========================================================
   Homepage — Leads & Engagement
   Internal v01
   ========================================================= */

.tv-home-leads {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 38%,
      rgba(105, 86, 232, 0.07),
      transparent 30%
    ),
    var(--tv-bg-soft);

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

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

  grid-template-columns:
    minmax(0, 1fr)
    minmax(500px, 1fr);

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


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

.tv-home-leads-copy {
  max-width: 650px;
}

.tv-home-leads-copy .tv-h2 {
  max-width: 650px;
}

.tv-home-leads-copy .tv-lead {
  margin-top: 22px;

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

.tv-home-leads-points {
  display: grid;

  margin-top: 34px;

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

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

  grid-template-columns: 34px 1fr;

  gap: 14px;

  padding: 19px 0;

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

.tv-home-leads-point > span {
  padding-top: 2px;

  color: var(--tv-accent);

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

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

  color: var(--tv-ink);

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

.tv-home-leads-point p {
  margin: 7px 0 0;

  color: var(--tv-muted);

  font-size: 13px;
  line-height: 1.75;
}

.tv-home-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-home-leads-link span {
  transition: transform 180ms ease;
}

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

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


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

.tv-home-leads-visual {
  position: relative;

  min-height: 610px;
}

.tv-home-leads-visual::before {
  content: "";

  position: absolute;

  top: 40px;
  left: 50%;

  width: 430px;
  height: 430px;

  transform: translateX(-50%);

  border-radius: 50%;

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

  filter: blur(12px);
}


/* =========================================================
   Leads App
   ========================================================= */

.tv-home-leads-app {
  position: absolute;

  z-index: 2;

  top: 45px;
  right: 0;

  width: 88%;

  overflow: hidden;

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

  background: #fff;

  box-shadow:
    0 30px 75px rgba(19, 23, 43, 0.13),
    0 10px 30px rgba(105, 86, 232, 0.06);

  transform: rotate(1.2deg);
}

.tv-home-leads-app-top {
  display: flex;

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

  gap: 20px;

  padding: 22px 24px;

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

  background: #fafaff;
}

.tv-home-leads-app-top small {
  display: block;

  color: var(--tv-accent);

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

.tv-home-leads-app-top strong {
  display: block;

  margin-top: 6px;

  color: var(--tv-ink);

  font-size: 16px;
}

.tv-home-leads-badge {
  padding: 7px 10px;

  border-radius: 8px;

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

  color: var(--tv-accent);

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


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

.tv-home-leads-list {
  display: grid;

  gap: 0;

  padding: 10px 22px 22px;
}

.tv-home-lead-item {
  display: grid;

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

  gap: 12px;
  align-items: start;

  padding: 18px 2px;

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

.tv-home-lead-item:last-child {
  border-bottom: 0;
}

.tv-home-lead-avatar {
  display: flex;

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

  width: 38px;
  height: 38px;

  border-radius: 11px;

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

  color: var(--tv-accent);

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

.tv-home-lead-info strong {
  display: block;

  color: var(--tv-ink);

  font-size: 11px;
}

.tv-home-lead-info > span {
  display: block;

  margin-top: 3px;

  color: var(--tv-accent);

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

.tv-home-lead-info p {
  max-width: 330px;

  margin: 8px 0 0;

  color: var(--tv-muted);

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

.tv-home-lead-item > small {
  padding: 5px 7px;

  border-radius: 6px;

  background: #f1f2f5;

  color: #797f8f;

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

.tv-home-lead-item.is-new > small {
  background: #eeeaff;

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


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

.tv-home-leads-chat {
  position: absolute;

  z-index: 4;

  left: 0;
  bottom: 40px;

  width: 47%;

  overflow: hidden;

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

  background: #fff;

  box-shadow:
    0 22px 55px rgba(20, 24, 44, 0.14);

  transform: rotate(-3.2deg);
}

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

  align-items: center;

  gap: 9px;

  padding: 13px 14px;

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

  background: #fafaff;
}

.tv-home-leads-chat-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #50c284;

  box-shadow:
    0 0 0 4px rgba(80, 194, 132, 0.1);
}

.tv-home-leads-chat-head strong {
  display: block;

  color: var(--tv-ink);

  font-size: 9px;
}

.tv-home-leads-chat-head small {
  display: block;

  margin-top: 2px;

  color: #8c92a0;

  font-size: 6px;
}

.tv-home-leads-chat-body {
  display: grid;

  gap: 8px;

  padding: 15px;
}

.tv-home-chat-message {
  max-width: 88%;

  padding: 9px 10px;

  border-radius: 10px;

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

.tv-home-chat-message.is-visitor {
  justify-self: start;

  background: #f3f4f7;

  color: #636979;
}

.tv-home-chat-message.is-brand {
  justify-self: end;

  background: var(--tv-accent);

  color: #fff;
}


/* =========================================================
   Review
   ========================================================= */

.tv-home-leads-review {
  position: absolute;

  z-index: 5;

  right: 5px;
  bottom: 4px;

  width: 43%;

  padding: 17px;

  border: 1px solid rgba(244, 168, 90, 0.22);
  border-radius: 16px;

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

  box-shadow:
    0 20px 45px rgba(25, 28, 48, 0.1);

  transform: rotate(3.5deg);
}

.tv-home-leads-stars {
  color: #e5a14f;

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

.tv-home-leads-review p {
  margin: 10px 0 0;

  color: #4f5566;

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

.tv-home-leads-review span {
  display: block;

  margin-top: 10px;

  color: #999eaa;

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


/* =========================================================
   Floating Notification
   ========================================================= */

.tv-home-leads-float {
  position: absolute;

  z-index: 6;

  top: 17px;
  left: 8%;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 9px 12px;

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

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

  color: #646a7b;

  box-shadow:
    0 13px 30px rgba(20, 24, 44, 0.09);

  font-size: 8px;
  font-weight: 650;

  white-space: nowrap;
}

.tv-home-leads-float span {
  display: flex;

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

  width: 21px;
  height: 21px;

  border-radius: 7px;

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

  color: var(--tv-accent);

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


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

@media (hover: hover) {

  .tv-home-leads-app,
  .tv-home-leads-chat,
  .tv-home-leads-review {
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease;
  }

  .tv-home-leads-visual:hover .tv-home-leads-app {
    transform:
      translate(5px, -5px)
      rotate(2deg);
  }

  .tv-home-leads-visual:hover .tv-home-leads-chat {
    transform:
      translate(-5px, 5px)
      rotate(-4.5deg);
  }

  .tv-home-leads-visual:hover .tv-home-leads-review {
    transform:
      translate(6px, -4px)
      rotate(5deg);
  }
}


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

@media (max-width: 1050px) {

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

    gap: 55px;
  }
}


@media (max-width: 921px) {

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

    gap: 55px;
  }

  .tv-home-leads-copy {
    max-width: 760px;
  }

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

    margin-inline: auto;
  }
}


@media (max-width: 640px) {

  .tv-home-leads-visual {
    min-height: 500px;
  }

  .tv-home-leads-app {
    width: 95%;
  }

  .tv-home-leads-chat {
    width: 53%;
  }

  .tv-home-leads-review {
    width: 48%;
  }
}


@media (max-width: 544px) {

  .tv-home-leads-visual {
    min-height: 465px;
  }

  .tv-home-leads-chat {
    width: 58%;
  }

  .tv-home-leads-review {
    width: 53%;
  }

  .tv-home-leads-float {
    left: 0;
  }
}

/* =========================================================
   Home — Product Philosophy
   ========================================================= */

.tv-home-philosophy{
  position:relative;
  overflow:hidden;
  padding:112px 0;
  background:#f7f8fb;
}

.tv-home-philosophy::before{
  content:"";
  position:absolute;
  top:-220px;
  right:-180px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(105,86,232,.07) 0%,
      rgba(105,86,232,0) 70%
    );
  pointer-events:none;
}

.tv-home-philosophy__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(420px,1.05fr);
  gap:84px;
  align-items:start;
}

.tv-home-philosophy__copy{
  max-width:650px;
}

.tv-home-philosophy__copy h2{
  margin:0;
  color:#0c1020;
  font-size:clamp(34px,4vw,50px);
  font-weight:750;
  line-height:1.12;
  letter-spacing:-.035em;
}

.tv-home-philosophy__copy h2 .tv-gradient-text{
  display:block;
  margin-top:5px;
}

.tv-home-philosophy__copy > p{
  max-width:610px;
  margin:22px 0 0;
  color:#73798a;
  font-size:15px;
  line-height:1.85;
}


/* Principles */

.tv-home-philosophy__principles{
  border-top:1px solid #dedfe7;
}

.tv-home-philosophy__item{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:20px;
  padding:25px 0;
  border-bottom:1px solid #dedfe7;
}

.tv-home-philosophy__item > span{
  padding-top:4px;
  color:#6956e8;
  font-size:10px;
  font-weight:800;
  line-height:1;
  letter-spacing:.08em;
}

.tv-home-philosophy__item strong{
  display:block;
  color:#25293a;
  font-size:16px;
  font-weight:700;
  line-height:1.45;
}

.tv-home-philosophy__item p{
  max-width:520px;
  margin:7px 0 0;
  color:#7a8090;
  font-size:13px;
  line-height:1.75;
}

.tv-home-philosophy__link{
  display:inline-flex;
  align-items:center;
  gap:9px;

  margin-top:24px;

  color:var(--tv-accent);

  font-size:12px;
  font-weight:700;
  line-height:1.5;

  text-decoration:none;
}

.tv-home-philosophy__link span{
  transition:transform 180ms ease;
}

.tv-home-philosophy__link:hover{
  color:var(--tv-accent-hover);
}

.tv-home-philosophy__link:hover span{
  transform:translateX(4px);
}


/* Responsive */

@media (max-width:1024px){

  .tv-home-philosophy__grid{
    grid-template-columns:1fr;
    gap:52px;
  }

  .tv-home-philosophy__copy{
    max-width:760px;
  }

  .tv-home-philosophy__principles{
    max-width:760px;
  }

}

@media (max-width:767px){

  .tv-home-philosophy{
    padding:78px 0;
  }

  .tv-home-philosophy__copy h2{
    font-size:36px;
  }

  .tv-home-philosophy__copy > p{
    line-height:1.75;
  }

}

@media (max-width:544px){

  .tv-home-philosophy__copy h2{
    font-size:32px;
  }

  .tv-home-philosophy__item{
    grid-template-columns:30px minmax(0,1fr);
    gap:12px;
    padding:22px 0;
  }

  .tv-home-philosophy__item strong{
    font-size:15px;
  }

}

/* =========================================================
   Homepage — Real Product / One Workspace
   Internal v02
   ========================================================= */

.tv-home-workspace {
  position: relative;
  overflow: hidden;

  background: #fff;
}

.tv-home-workspace-head {
  max-width: 900px;

  margin-inline: auto;

  text-align: center;
}

.tv-home-workspace-head .tv-h2 {
  max-width: 880px;

  margin-inline: auto;
}

.tv-home-workspace-head .tv-lead {
  max-width: 820px;

  margin-inline: auto;

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


/* =========================================================
   Real Product Screenshot
   ========================================================= */

.tv-home-workspace-product {
  position: relative;

  max-width: 1120px;

  margin: 66px auto 0;
}

.tv-home-workspace-product::before {
  content: "";

  position: absolute;

  z-index: 0;

  top: 6%;
  left: 7%;

  width: 86%;
  height: 88%;

  border-radius: 42px;

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

  filter: blur(28px);

  pointer-events: none;
}

.tv-home-workspace-screenshot {
  position: relative;

  z-index: 2;

  overflow: hidden;

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

  background: #fff;

  box-shadow:
    0 38px 95px rgba(18, 22, 42, 0.14),
    0 12px 35px rgba(105, 86, 232, 0.07);
}

.tv-home-workspace-screenshot img {
  display: block;

  width: 100%;
  height: auto;

  margin: 0;
}


/* =========================================================
   Floating Labels
   ========================================================= */

.tv-home-workspace-float {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 14px;

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

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

  box-shadow:
    0 16px 40px rgba(19, 23, 43, 0.11);

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

.tv-home-workspace-float > span {
  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: 9px;
  font-weight: 800;
}

.tv-home-workspace-float small {
  display: block;

  color: #a0a4b0;

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

.tv-home-workspace-float strong {
  display: block;

  margin-top: 4px;

  color: var(--tv-ink);

  font-size: 9px;
}

.tv-home-workspace-float-left {
  left: -24px;
  bottom: 56px;
}

.tv-home-workspace-float-right {
  right: -22px;
  top: 68px;
}


/* =========================================================
   Capability Groups
   ========================================================= */

.tv-home-workspace-groups {
  display: grid;

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

  max-width: 1120px;

  margin: 58px auto 0;

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

.tv-home-workspace-groups article {
  display: grid;

  grid-template-columns: 28px 1fr;

  gap: 12px;

  padding: 30px 24px;
}

.tv-home-workspace-groups article + article {
  border-left: 1px solid var(--tv-border);
}

.tv-home-workspace-groups article > span {
  padding-top: 2px;

  color: var(--tv-accent);

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

.tv-home-workspace-groups small {
  display: block;

  color: #a0a4b0;

  font-size: 7px;
  line-height: 1.2;
  letter-spacing: 0.07em;
  font-weight: 750;
}

.tv-home-workspace-groups h3 {
  margin: 9px 0 0;

  color: var(--tv-ink);

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

.tv-home-workspace-groups p {
  margin: 10px 0 0;

  color: var(--tv-muted);

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


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

.tv-home-workspace-bottom {
  display: flex;

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

  gap: 30px;

  max-width: 1120px;

  margin: 30px auto 0;
}

.tv-home-workspace-bottom p {
  margin: 0;

  color: var(--tv-muted);

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

.tv-home-workspace-bottom p strong {
  color: var(--tv-ink);
}

.tv-home-workspace-bottom a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--tv-accent);

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

  text-decoration: none;

  white-space: nowrap;
}

.tv-home-workspace-bottom a span {
  transition: transform 180ms ease;
}

.tv-home-workspace-bottom a:hover {
  color: var(--tv-accent-hover);
}

.tv-home-workspace-bottom a:hover span {
  transform: translateX(4px);
}


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

@media (hover: hover) {

  .tv-home-workspace-screenshot {
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease;
  }

  .tv-home-workspace-product:hover
  .tv-home-workspace-screenshot {
    transform: translateY(-5px);

    box-shadow:
      0 45px 105px rgba(18, 22, 42, 0.16),
      0 14px 40px rgba(105, 86, 232, 0.09);
  }
}


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

@media (max-width: 1100px) {

  .tv-home-workspace-float-left {
    left: 15px;
  }

  .tv-home-workspace-float-right {
    right: 15px;
  }
}


@media (max-width: 921px) {

  .tv-home-workspace-product {
    margin-top: 52px;
  }

  .tv-home-workspace-groups {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .tv-home-workspace-groups article {
    border-left: 0 !important;
  }

  .tv-home-workspace-groups article:nth-child(even) {
    border-left:
      1px solid var(--tv-border) !important;
  }

  .tv-home-workspace-groups article:nth-child(-n+2) {
    border-bottom:
      1px solid var(--tv-border);
  }
}


@media (max-width: 720px) {

  .tv-home-workspace-screenshot {
    border-radius: 18px;
  }

  .tv-home-workspace-float {
    display: none;
  }

  .tv-home-workspace-groups {
    grid-template-columns: 1fr;
  }

  .tv-home-workspace-groups article {
    padding: 24px 0;

    border-left: 0 !important;
  }

  .tv-home-workspace-groups article:nth-child(even) {
    border-left: 0 !important;
  }

  .tv-home-workspace-groups article + article {
    border-top:
      1px solid var(--tv-border);
  }

  .tv-home-workspace-groups article:nth-child(-n+2) {
    border-bottom: 0;
  }

  .tv-home-workspace-bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }
}


@media (max-width: 544px) {

  .tv-home-workspace-head {
    text-align: left;
  }

  .tv-home-workspace-product {
    margin-top: 40px;
  }

  .tv-home-workspace-screenshot {
    border-radius: 15px;
  }
}

/* =========================================================
   Homepage — Final CTA
   Internal v02
   ========================================================= */

.tv-home-final-cta {
  padding: 88px 0 96px;
  background: #fff;
}

.tv-home-final-cta-panel {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(280px, 0.55fr);

  gap: 48px;
  align-items: center;

  min-height: 510px;
  padding: 68px 72px;

  overflow: hidden;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #111426 0%,
      #171a31 52%,
      #201d43 100%
    );

  box-shadow:
    0 35px 90px rgba(18, 21, 40, 0.17);
}


/* Glow */

.tv-home-final-cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tv-home-final-cta-glow-one {
  top: -180px;
  right: -80px;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      circle,
      rgba(105, 86, 232, 0.42),
      rgba(105, 86, 232, 0.08) 48%,
      transparent 72%
    );
}

.tv-home-final-cta-glow-two {
  left: 20%;
  bottom: -260px;

  width: 500px;
  height: 500px;

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


/* Copy */

.tv-home-final-cta-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 790px;
}

.tv-home-final-cta-eyebrow {
  display: inline-flex;
  align-items: center;

  padding: 7px 10px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;

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

  color: #b9b0ff;

  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 750;
}

.tv-home-final-cta-content h2 {
  width: 100%;
  max-width: 790px;

  margin: 27px 0 0;

  color: #fff;

  font-size: clamp(40px, 3.75vw, 55px);
  line-height: 1.13;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.tv-home-final-cta-content h2 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #a99cff,
      #d5cbff 54%,
      #f1bc83
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.tv-home-final-cta-content > p {
  max-width: 650px;

  margin: 25px 0 0;

  color: rgba(255, 255, 255, 0.66);

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


/* Buttons */

.tv-home-final-cta-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.tv-home-final-cta-primary,
.tv-home-final-cta-secondary {
  display: inline-flex;

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

  gap: 9px;

  min-height: 48px;

  padding: 0 21px;

  border-radius: 11px;

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

  text-decoration: none;

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

.tv-home-final-cta-primary {
  background: var(--tv-accent);
  color: #fff;
}

.tv-home-final-cta-primary:hover {
  background: var(--tv-accent-hover);
  color: #fff;

  transform: translateY(-2px);
}

.tv-home-final-cta-primary span{
    transition:transform 180ms ease;
}

.tv-home-final-cta-primary:hover span{
      transform:translateX(3px);
}
    
    
    
.tv-home-final-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);

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

  color: #fff;
}

.tv-home-final-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);

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

  color: #fff;

  transform: translateY(-2px);
}


/* Proof */

.tv-home-final-cta-proof {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 22px;

  margin-top: 30px;
}

.tv-home-final-cta-proof span {
  display: flex;
  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.53);

  font-size: 10px;
}

.tv-home-final-cta-proof i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #9b8cff;

  box-shadow:
    0 0 0 4px rgba(155, 140, 255, 0.1);
}


/* =========================================================
   TourVoz Brand Visual
   ========================================================= */

.tv-home-final-cta-mark {
  position: relative;
  z-index: 2;

  width: 320px;
  height: 320px;

  margin-inline: auto;
}


/* Real Brand Mark */

.tv-home-final-cta-brand {
  position: absolute;
  z-index: 4;

  top: 50%;
  left: 50%;

  display: flex;

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

  width: 132px;
  height: 132px;

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

  border-radius: 50%;

  filter:
    drop-shadow(
      0 26px 40px rgba(58, 55, 210, 0.32)
    );
}

.tv-home-final-cta-brand img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* Orbits */

.tv-home-final-cta-orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;

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

.tv-home-final-cta-orbit-one {
  width: 225px;
  height: 225px;
}

.tv-home-final-cta-orbit-two {
  width: 310px;
  height: 310px;

  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.07);
}


/* Chips */

.tv-home-final-cta-chip {
  position: absolute;
  z-index: 5;

  padding: 8px 11px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;

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

  color: rgba(255, 255, 255, 0.72);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.12);

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

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

.tv-home-final-cta-chip-one {
  top: 39px;
  right: 23px;
}

.tv-home-final-cta-chip-two {
  right: 0;
  bottom: 67px;
}

.tv-home-final-cta-chip-three {
  left: -3px;
  bottom: 87px;
}


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

@media (max-width: 1100px) {

  .tv-home-final-cta-panel {
    grid-template-columns:
      minmax(0, 1.35fr)
      minmax(250px, 0.65fr);

    gap: 32px;

    padding-inline: 52px;
  }

  .tv-home-final-cta-content h2 {
    font-size: clamp(39px, 4.2vw, 50px);
  }
}


@media (max-width: 921px) {

  .tv-home-final-cta-panel {
    grid-template-columns: 1fr;

    gap: 44px;

    padding: 58px 48px;
  }

  .tv-home-final-cta-content {
    max-width: 760px;
  }

  .tv-home-final-cta-content h2 {
    max-width: 760px;
  }

  .tv-home-final-cta-content h2 span {
    white-space: normal;
  }

  .tv-home-final-cta-mark {
    width: 280px;
    height: 280px;
  }

  .tv-home-final-cta-brand {
    width: 118px;
    height: 118px;
  }

  .tv-home-final-cta-orbit-one {
    width: 200px;
    height: 200px;
  }

  .tv-home-final-cta-orbit-two {
    width: 270px;
    height: 270px;
  }
}


@media (max-width: 640px) {

  .tv-home-final-cta {
    padding: 64px 0 72px;
  }

  .tv-home-final-cta-panel {
    min-height: 0;

    padding: 42px 28px;

    border-radius: 22px;
  }

  .tv-home-final-cta-content h2 {
    font-size: 38px;
  }

  .tv-home-final-cta-actions {
    display: grid;
  }

  .tv-home-final-cta-primary,
  .tv-home-final-cta-secondary {
    width: 100%;
  }

  .tv-home-final-cta-mark {
    width: 245px;
    height: 245px;
  }

  .tv-home-final-cta-brand {
    width: 102px;
    height: 102px;
  }

  .tv-home-final-cta-orbit-one {
    width: 175px;
    height: 175px;
  }

  .tv-home-final-cta-orbit-two {
    width: 235px;
    height: 235px;
  }
}


@media (max-width: 544px) {

  .tv-home-final-cta-content h2 {
    font-size: 34px;
  }

  .tv-home-final-cta-content h2 span {
    white-space: normal;
  }

  .tv-home-final-cta-proof {
    display: grid;
  }

  .tv-home-final-cta-mark {
    display: none;
  }
}