/* =========================================================
   TourVoz SaaS Website — Pricing Page Components
   Internal v01
   Requires: global.css
   ========================================================= */

/* =========================================================
   Pricing — Plans
   Internal v02
   ========================================================= */

.tv-pricing-plans {
  position: relative;
  background: var(--tv-bg-soft);
  border-top: 1px solid var(--tv-border);
}

.tv-pricing-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.tv-pricing-heading .tv-lead {
  margin-left: auto;
  margin-right: auto;
}

.tv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.tv-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
}

.tv-plan-featured {
  border-color: rgba(105, 86, 232, 0.42);
  box-shadow:
    0 18px 50px rgba(50, 42, 120, 0.11);
}

.tv-plan-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--tv-accent),
    #9a87ff
  );
}

.tv-plan-top {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--tv-border);
}

.tv-plan-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tv-plan-name {
  margin: 0;
  color: var(--tv-ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.tv-plan-description {
  min-height: 48px;
  margin: 12px 0 0;
  color: var(--tv-muted);
  font-size: 14px;
  line-height: 1.7;
}

.tv-plan-price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 25px;
}

.tv-plan-currency {
  padding-bottom: 9px;
  color: var(--tv-ink);
  font-size: 20px;
  font-weight: 650;
}

.tv-plan-amount {
  color: var(--tv-ink);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.tv-plan-period {
  padding-bottom: 7px;
  color: var(--tv-muted);
  font-size: 13px;
}

.tv-plan-action {
  margin-top: 25px;
}

.tv-plan-action .tv-btn {
  width: 100%;
}

.tv-plan-features {
  flex: 1;
  padding-top: 26px;
}

.tv-plan-features-title {
  margin-bottom: 17px;
  color: var(--tv-ink);
  font-size: 13px;
  font-weight: 700;
}

.tv-plan-features ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-plan-features li {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: var(--tv-text);
  font-size: 14px;
  line-height: 1.55;
}

.tv-plan-features li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--tv-accent);
  font-weight: 700;
}

.tv-pricing-footnote {
  margin-top: 28px;
  color: var(--tv-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 921px) {
  .tv-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .tv-plan-description {
    min-height: 0;
  }
}

@media (max-width: 544px) {
  .tv-plan {
    padding: 26px 22px;
  }

  .tv-pricing-heading {
    margin-bottom: 38px;
  }
}

/* Pricing annual billing */
.tv-plan-annual {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;

  margin-top: 10px;

  color: var(--tv-muted);
  font-size: 13px;
  line-height: 1.5;
}

.tv-plan-annual span {
  display: inline-flex;
  align-items: center;

  padding: 4px 8px;

  border-radius: 999px;

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

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

/* =========================================================
   Pricing — Comparison Table
   Internal v03
   ========================================================= */

.tv-pricing-compare {
  background: #fff;
}

.tv-compare-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.tv-compare-heading .tv-lead {
  margin-left: auto;
  margin-right: auto;
}

.tv-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-radius-lg);
  background: #fff;
  box-shadow: var(--tv-shadow-sm);
}

.tv-compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.tv-compare-table th,
.tv-compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--tv-border);
  vertical-align: middle;
}

.tv-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  color: var(--tv-ink);
}

.tv-compare-table th:first-child,
.tv-compare-table td:first-child {
  width: 34%;
  text-align: left;
}

.tv-compare-table th:not(:first-child),
.tv-compare-table td:not(:first-child) {
  width: 22%;
  text-align: center;
}

.tv-compare-plan {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tv-compare-plan strong {
  font-size: 16px;
  color: var(--tv-ink);
}

.tv-compare-plan span {
  font-size: 12px;
  color: var(--tv-muted);
}

.tv-compare-feature {
  color: var(--tv-text);
  font-size: 14px;
  font-weight: 500;
}

.tv-compare-value {
  color: var(--tv-text);
  font-size: 14px;
}

.tv-compare-check {
  color: var(--tv-accent);
  font-size: 17px;
  font-weight: 700;
}

.tv-compare-muted {
  color: #b0b4c0;
}

.tv-compare-section td {
  padding-top: 24px;
  padding-bottom: 12px;
  background: var(--tv-bg-soft);
  color: var(--tv-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tv-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.tv-compare-cta {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 921px) {
  .tv-compare-wrap {
    margin-left: -4px;
    margin-right: -4px;
  }
}

/* =========================================================
   Pricing — Workflow
   Internal v07
   ========================================================= */

.tv-workflow {
  background: #fff;
  overflow: hidden;
}

.tv-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
}

.tv-workflow-copy .tv-lead {
  max-width: 620px;
}

.tv-workflow-steps {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.tv-workflow-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--tv-border);
}

.tv-workflow-step:last-child {
  border-bottom: 0;
}

.tv-workflow-index {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

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

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

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

.tv-workflow-step h3 {
  margin: 0;
  color: var(--tv-ink);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 650;
}

.tv-workflow-step p {
  margin: 7px 0 0;
  color: var(--tv-muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.tv-workflow-visual {
  position: relative;
  min-width: 0;
}

.tv-product-stack {
  position: relative;

  width: 100%;
  min-height: 610px;

  padding: 34px 10px 26px;

  cursor: default;
}

/* Soft SaaS background glow */

.tv-product-stack::before {
  content: "";

  position: absolute;
  top: 7%;
  left: 3%;

  width: 94%;
  height: 85%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at center,
      rgba(105, 86, 232, 0.14) 0%,
      rgba(105, 86, 232, 0.06) 38%,
      rgba(105, 86, 232, 0) 72%
    );

  filter: blur(12px);
  pointer-events: none;
}

/* Shared screenshot card */

.tv-product-card {
  position: absolute;

  padding: 10px;

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

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 245, 255, 0.98)
    );

  box-shadow:
    0 28px 65px rgba(20, 24, 45, 0.12),
    0 8px 24px rgba(105, 86, 232, 0.06);

  transform-origin: center;

  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    right 420ms cubic-bezier(0.22, 1, 0.36, 1),
    bottom 420ms cubic-bezier(0.22, 1, 0.36, 1),
    left 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.tv-product-card img {
  display: block;

  width: 100%;
  height: auto;

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

  background: #fff;
}

/* =========================================================
   Default — stacked cards
   ========================================================= */

/* Front-end website */

.tv-product-card-front {
  z-index: 1;

  top: 8px;
  left: 12%;

  width: 78%;

  transform:
    translateY(-6px)
    rotate(2.8deg)
    scale(0.97);
}

/* Back-end dashboard */

.tv-product-card-admin {
  z-index: 3;

  right: 0;
  bottom: 22px;

  width: 86%;

  transform:
    rotate(-1.4deg);
}

/* =========================================================
   Hover — Wider Fan Open
   ========================================================= */

.tv-product-stack:hover .tv-product-card-front {
  top: -52px;
  left: -8%;

  width: 70%;

  transform:
    translate(-22px, -18px)
    rotate(-8deg)
    scale(0.96);

  box-shadow:
    0 38px 78px rgba(20, 24, 45, 0.15),
    0 12px 30px rgba(105, 86, 232, 0.09);
}

.tv-product-stack:hover .tv-product-card-admin {
  right: -12%;
  bottom: -34px;

  width: 76%;

  transform:
    translate(34px, 22px)
    rotate(7deg)
    scale(0.97);

  box-shadow:
    0 38px 78px rgba(20, 24, 45, 0.16),
    0 12px 30px rgba(105, 86, 232, 0.09);
}

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

.tv-product-label {
  position: absolute;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

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

  background: rgba(255, 255, 255, 0.96);
  color: var(--tv-accent);

  box-shadow:
    0 12px 28px rgba(20, 24, 45, 0.1);

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

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

  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.tv-product-label-front {
  right: -18px;
  bottom: 24px;
}

.tv-product-label-admin {
  right: 18px;
  bottom: -18px;
}

.tv-product-label-icon {
  font-size: 15px;
  line-height: 1;
}

.tv-product-label-dot {
  display: block;

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: var(--tv-accent);
}

/* label hover movement */

.tv-product-stack:hover .tv-product-label-front {
  transform: translate(-4px, -2px);
}

.tv-product-stack:hover .tv-product-label-admin {
  transform: translate(5px, 4px);
}

/* =========================================================
   Floating no-code badge
   ========================================================= */

.tv-product-float-note {
  position: absolute;
  z-index: 5;

  right: -8px;
  top: 49%;

  padding: 11px 15px;

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

  background: rgba(255, 255, 255, 0.95);
  color: var(--tv-ink);

  box-shadow:
    0 14px 34px rgba(20, 24, 45, 0.11);

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

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

  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.tv-product-stack:hover .tv-product-float-note {
  transform: translateX(12px) translateY(-8px);
}

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

@media (max-width: 1100px) {
  .tv-workflow-grid {
    gap: 48px;
  }

  .tv-product-stack {
    min-height: 540px;
  }
}

@media (max-width: 921px) {
  .tv-workflow-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .tv-workflow-visual {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .tv-product-stack {
    min-height: 620px;
  }
}

/* Touch devices:
   keep a naturally opened layout because hover is unreliable */

@media (hover: none) {
  .tv-product-card-front {
    top: -12px;
    left: 3%;

    width: 75%;

    transform:
      rotate(-3.5deg);
  }

  .tv-product-card-admin {
    right: 0;
    bottom: 2px;

    width: 82%;

    transform:
      rotate(2.8deg);
  }
}

@media (max-width: 640px) {
  .tv-product-stack {
    min-height: 470px;
    padding-top: 18px;
  }

  .tv-product-card-front {
    top: 0;
    left: 3%;
    width: 82%;

    transform:
      rotate(-3deg);
  }

  .tv-product-card-admin {
    right: 1%;
    bottom: 12px;
    width: 87%;

    transform:
      rotate(2.3deg);
  }

  .tv-product-float-note {
    right: 5px;
    top: 47%;
  }

  .tv-product-label-front {
    right: 8px;
    bottom: 12px;
  }

  .tv-product-label-admin {
    right: 10px;
    bottom: -15px;
  }
}

@media (max-width: 544px) {
  .tv-workflow-step {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .tv-product-stack {
    min-height: 390px;
  }

  .tv-product-label {
    padding: 8px 10px;
    font-size: 10px;
  }

  .tv-product-float-note {
    padding: 8px 10px;
    font-size: 10px;
  }
}

/* =========================================================
   Pricing — Why TourVoz
   Internal v08
   ========================================================= */

.tv-why {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(105, 86, 232, 0.07),
      transparent 32%
    ),
    #f8f8fb;
}

.tv-why-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.tv-why-head .tv-lead {
  max-width: 660px;
}

/* Grid */

.tv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Card */

.tv-why-card {
  position: relative;
  overflow: hidden;

  min-height: 390px;
  padding: 28px;

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

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

  box-shadow:
    0 10px 30px rgba(20, 24, 45, 0.035);

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

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

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

  box-shadow:
    0 24px 55px rgba(20, 24, 45, 0.08);
}

/* Featured first card */

.tv-why-card-featured {
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f7f5ff 100%
    );

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

/* Top */

.tv-why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 48px;
}

.tv-why-number {
  color: #a1a7b5;

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

.tv-why-tag {
  padding: 7px 10px;

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

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

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

/* Icon */

.tv-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin-bottom: 24px;

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

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

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

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

/* Copy */

.tv-why-card h3 {
  margin: 0;

  color: var(--tv-ink);

  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tv-why-card p {
  margin: 14px 0 0;

  color: var(--tv-muted);

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

/* Proof chips */

.tv-why-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 28px;
}

.tv-why-proof span {
  padding: 7px 9px;

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

  background: #fff;
  color: #687083;

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

/* Responsive */

@media (max-width: 921px) {
  .tv-why-grid {
    grid-template-columns: 1fr;
  }

  .tv-why-card {
    min-height: 0;
  }

  .tv-why-card-top {
    margin-bottom: 34px;
  }
}

@media (max-width: 544px) {
  .tv-why-head {
    margin-bottom: 36px;
  }

  .tv-why-card {
    padding: 23px;
    border-radius: 18px;
  }

  .tv-why-card h3 {
    font-size: 19px;
  }
}

/* =========================================================
   Pricing — FAQ
   Internal v09
   ========================================================= */

.tv-pricing-faq {
  position: relative;

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

.tv-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 88px;
  align-items: start;
}

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

.tv-faq-intro {
  position: sticky;
  top: 120px;
}

.tv-faq-intro .tv-lead {
  max-width: 500px;
}

.tv-faq-side-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;

  max-width: 430px;
  margin-top: 42px;
  padding: 20px;

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

  background: var(--tv-bg-soft);
}

.tv-faq-side-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

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

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

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

.tv-faq-side-note strong {
  display: block;

  color: var(--tv-ink);
  font-size: 14px;
  font-weight: 700;
}

.tv-faq-side-note p {
  margin: 5px 0 0;

  color: var(--tv-muted);
  font-size: 12px;
  line-height: 1.7;
}

.tv-faq-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 10px;

  color: var(--tv-accent);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.tv-faq-text-link:hover {
  color: var(--tv-accent-hover);
}

/* =========================================================
   FAQ Items
   ========================================================= */

.tv-faq-list {
  border-top: 1px solid var(--tv-border);
}

.tv-faq-item {
  border-bottom: 1px solid var(--tv-border);
}

.tv-faq-item summary {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  min-height: 82px;
  padding: 20px 4px;

  color: var(--tv-ink);

  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;

  cursor: pointer;

  list-style: none;
}

.tv-faq-item summary h3 {
  flex: 1;
  min-width: 0;

  margin: 0;

  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.tv-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus / minus */

.tv-faq-toggle {
  position: relative;
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

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

  background: #fff;

  transition:
    background var(--tv-transition),
    border-color var(--tv-transition);
}

.tv-faq-toggle::before,
.tv-faq-toggle::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 11px;
  height: 1.5px;

  border-radius: 999px;

  background: var(--tv-ink);

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

  transition:
    transform 220ms ease,
    background 220ms ease;
}

.tv-faq-toggle::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.tv-faq-item[open] .tv-faq-toggle {
  border-color: #ded9ff;
  background: var(--tv-accent-soft);
}

.tv-faq-item[open] .tv-faq-toggle::before,
.tv-faq-item[open] .tv-faq-toggle::after {
  background: var(--tv-accent);
}

.tv-faq-item[open] .tv-faq-toggle::after {
  transform:
    translate(-50%, -50%)
    rotate(0deg);
}

/* Answer */

.tv-faq-answer {
  max-width: 690px;
  padding: 0 54px 24px 4px;
}

.tv-faq-answer p {
  margin: 0;

  color: var(--tv-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* hover */

.tv-faq-item summary:hover {
  color: var(--tv-accent);
}

.tv-faq-item summary:hover .tv-faq-toggle {
  border-color: #d6d0ff;
}

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

@media (max-width: 921px) {
  .tv-faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tv-faq-intro {
    position: static;
  }

  .tv-faq-side-note {
    max-width: 560px;
  }
}

@media (max-width: 544px) {
  .tv-faq-layout {
    gap: 36px;
  }

  .tv-faq-item summary {
    min-height: 72px;
    padding: 17px 0;

    font-size: 15px;
  }

  .tv-faq-answer {
    padding:
      0
      42px
      20px
      0;
  }

  .tv-faq-side-note {
    grid-template-columns: 38px 1fr;
    padding: 17px;
  }

  .tv-faq-side-icon {
    width: 36px;
    height: 36px;
  }
}

/* =========================================================
   Pricing — Final CTA
   Internal v11
   ========================================================= */

.tv-final-cta {
  background: #fff;
  padding-top: 40px;
}

.tv-final-cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 40px;
  min-height: 470px;
  padding: 72px 76px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d1020 0%, #12162b 52%, #171333 100%);
  box-shadow: 0 34px 90px rgba(18, 20, 40, .16);
}

.tv-final-cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tv-final-cta-glow-one {
  top: -180px;
  right: 5%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(113, 91, 255, .34) 0%, rgba(113, 91, 255, .11) 42%, transparent 70%);
  filter: blur(8px);
}

.tv-final-cta-glow-two {
  left: 28%;
  bottom: -300px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(178, 127, 255, .16) 0%, transparent 68%);
}

.tv-final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.tv-final-cta-eyebrow {
  margin-bottom: 18px;
  color: #9d8cff;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: .14em;
}

.tv-final-cta-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 750;
  letter-spacing: -.045em;
}

.tv-final-cta-content p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(235, 237, 248, .68);
  font-size: 16px;
  line-height: 1.75;
}

.tv-final-cta-actions,
.tv-final-cta-trust {
  display: flex;
  flex-wrap: wrap;
}

.tv-final-cta-actions {
  gap: 12px;
  margin-top: 32px;
}

.tv-final-cta-primary,
.tv-final-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 11px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tv-final-cta-primary {
  border: 1px solid #735fff;
  background: linear-gradient(135deg, #765fff, #6551e8);
  color: #fff;
  box-shadow: 0 12px 30px rgba(105, 86, 232, .3);
}

.tv-final-cta-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(105, 86, 232, .4);
}

.tv-final-cta-primary span {
  transition: transform 220ms ease;
}

.tv-final-cta-primary:hover span {
  transform: translateX(3px);
}

.tv-final-cta-secondary {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.tv-final-cta-secondary:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transform: translateY(-2px);
}

.tv-final-cta-trust {
  gap: 22px;
  margin-top: 26px;
}

.tv-final-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(232, 234, 245, .58);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 550;
}

.tv-final-cta-trust i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(126, 106, 255, .15);
  color: #a697ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.tv-final-cta-mark {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 310px;
  justify-self: end;
}

.tv-final-cta-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(160, 145, 255, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tv-final-cta-orbit-one { width: 300px; height: 300px; }
.tv-final-cta-orbit-two { width: 225px; height: 225px; border-color: rgba(160, 145, 255, .22); }
.tv-final-cta-orbit-three { width: 150px; height: 150px; border-color: rgba(160, 145, 255, .3); }

.tv-final-cta-logo {
  position: absolute;
  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-final-cta-logo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.tv-final-cta-orbit-one::before,
.tv-final-cta-orbit-two::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #8975ff;
  box-shadow: 0 0 20px rgba(137, 117, 255, .75);
}

.tv-final-cta-orbit-one::before {
  top: 35px;
  right: 42px;
  width: 8px;
  height: 8px;
}

.tv-final-cta-orbit-two::before {
  left: 12px;
  bottom: 54px;
  width: 6px;
  height: 6px;
}

@media (max-width: 921px) {
  .tv-final-cta-box {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 60px 52px;
  }

  .tv-final-cta-mark {
    position: absolute;
    right: -65px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    opacity: .48;
  }

  .tv-final-cta-content {
    max-width: 680px;
  }
}

@media (max-width: 544px) {
  .tv-final-cta {
    padding-top: 20px;
  }

  .tv-final-cta-box {
    padding: 44px 24px 40px;
    border-radius: 22px;
  }

  .tv-final-cta-content h2 {
    font-size: 38px;
  }

  .tv-final-cta-content p {
    font-size: 14px;
  }

  .tv-final-cta-actions,
  .tv-final-cta-trust {
    display: grid;
  }

  .tv-final-cta-primary,
  .tv-final-cta-secondary {
    width: 100%;
  }

  .tv-final-cta-trust {
    gap: 10px;
  }

  .tv-final-cta-mark {
    right: -130px;
    bottom: -120px;
    opacity: .3;
  }
}
