/* =========================================================
   TourVoz Solutions
   File: /assets/css/solutions.css
   ========================================================= */

.tv-solutions-container{
  width:min(1200px,calc(100% - 48px));
  margin:0 auto;
}

.tv-solutions-hero{
  position:relative;
  overflow:hidden;
  padding:104px 0 112px;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fbfaff 48%,
      #f6f3ff 100%
    );
}

.tv-solutions-hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.tv-solutions-hero__bg::before{
  content:"";
  position:absolute;
  top:-180px;
  right:-160px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(105,86,232,.13) 0%,
      rgba(105,86,232,0) 70%
    );
}

.tv-solutions-hero__bg::after{
  content:"";
  position:absolute;
  left:-180px;
  bottom:-260px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(244,168,90,.08) 0%,
      rgba(244,168,90,0) 72%
    );
}

.tv-solutions-hero__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(480px,.92fr);
  gap:76px;
  align-items:center;
}

.tv-solutions-hero__content{
  min-width:0;
}

.tv-solutions-eyebrow{
  display:inline-flex;
  align-items:center;
  margin-bottom:22px;
  color:#6956e8;
  font-size:12px;
  font-weight:700;
  line-height:1;
  letter-spacing:.14em;
}

.tv-solutions-hero h1{
  max-width:690px;
  margin:0;
  color:#0c1020;
  font-size:clamp(46px,4.7vw,64px);
  font-weight:750;
  line-height:1.08;
  letter-spacing:-.045em;
}

.tv-solutions-hero h1 span{
  display:block;
  margin-top:6px;
  background:
    linear-gradient(
      120deg,
      #6956e8 0%,
      #8c75f4 52%,
      #f0a85a 118%
    );
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.tv-solutions-hero__lead{
  max-width:660px;
  margin:28px 0 0;
  color:#6f7485;
  font-size:17px;
  line-height:1.85;
}

.tv-solutions-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:36px;
}

.tv-solutions-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 20px;
  border-radius:11px;
  font-size:14px;
  font-weight:650;
  line-height:1;
  text-decoration:none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tv-solutions-btn--primary{
  border:1px solid #6956e8;
  background:#6956e8;
  color:#fff;
  box-shadow:0 10px 24px rgba(105,86,232,.20);
}

.tv-solutions-btn--primary:hover{
  border-color:#5846d6;
  background:#5846d6;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(105,86,232,.26);
}

.tv-solutions-btn--secondary{
  border:1px solid #dedfea;
  background:rgba(255,255,255,.82);
  color:#25293a;
}

.tv-solutions-btn--secondary:hover{
  border-color:rgba(105,86,232,.28);
  background:#fff;
  color:#6956e8;
}

.tv-solutions-hero__proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-top:30px;
  color:#7a7f8f;
  font-size:12px;
  line-height:1.5;
}

.tv-solutions-hero__proof span{
  position:relative;
  padding-left:15px;
}

.tv-solutions-hero__proof span::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#6956e8;
  transform:translateY(-50%);
}


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

.tv-solutions-hero__visual{
  min-width:0;
}

.tv-solutions-map{
  position:relative;
  width:100%;
  min-height:510px;
  border:1px solid rgba(105,86,232,.12);
  border-radius:30px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.96),
      rgba(248,247,255,.92)
    );
  box-shadow:
    0 34px 80px rgba(28,30,55,.10),
    0 10px 30px rgba(105,86,232,.05);
}

.tv-solutions-map::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px dashed rgba(105,86,232,.10);
  border-radius:22px;
  pointer-events:none;
}

.tv-solutions-map__center{
  position:absolute;
  z-index:4;
  top:50%;
  left:50%;
  display:flex;
  align-items:center;
  gap:13px;
  min-width:190px;
  padding:17px 18px;
  border:1px solid rgba(105,86,232,.18);
  border-radius:18px;
  background:#fff;
  box-shadow:
    0 18px 42px rgba(30,32,56,.12),
    0 5px 16px rgba(105,86,232,.08);
  transform:translate(-50%,-50%);
}

.tv-solutions-map__brand-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:13px;
  background:
    linear-gradient(
      145deg,
      #7864f4,
      #5d49db
    );
  color:#fff;
  font-size:20px;
  font-weight:800;
}

.tv-solutions-map__center strong,
.tv-solutions-map__center span{
  display:block;
}

.tv-solutions-map__center strong{
  color:#0c1020;
  font-size:16px;
  font-weight:750;
}

.tv-solutions-map__center span{
  margin-top:2px;
  color:#8a8f9e;
  font-size:10px;
}

.tv-solutions-map__card{
  position:absolute;
  z-index:3;
  display:flex;
  align-items:center;
  gap:11px;
  min-width:180px;
  padding:14px 15px;
  border:1px solid #e6e7ef;
  border-radius:16px;
  background:rgba(255,255,255,.96);
  box-shadow:0 13px 30px rgba(31,34,58,.07);
}

.tv-solutions-map__card strong,
.tv-solutions-map__card span{
  display:block;
}

.tv-solutions-map__card strong{
  color:#202437;
  font-size:13px;
  font-weight:700;
}

.tv-solutions-map__card span{
  margin-top:2px;
  color:#9297a6;
  font-size:10px;
}

.tv-solutions-map__icon{
  display:flex !important;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:34px;
  height:34px;
  margin:0 !important;
  border-radius:10px;
  background:#f0edff;
  color:#6956e8 !important;
  font-size:12px !important;
  font-weight:800 !important;
}

.tv-solutions-map__card--agency{
  top:64px;
  left:38px;
}

.tv-solutions-map__card--operator{
  top:72px;
  right:34px;
}

.tv-solutions-map__card--dmc{
  right:42px;
  bottom:66px;
}

.tv-solutions-map__card--inbound{
  left:34px;
  bottom:74px;
}

.tv-solutions-map__line{
  position:absolute;
  z-index:1;
  height:1px;
  background:
    linear-gradient(
      90deg,
      rgba(105,86,232,.05),
      rgba(105,86,232,.36),
      rgba(105,86,232,.05)
    );
  transform-origin:left center;
}

.tv-solutions-map__line--one{
  top:185px;
  left:175px;
  width:150px;
  transform:rotate(28deg);
}

.tv-solutions-map__line--two{
  top:180px;
  right:170px;
  width:145px;
  transform:rotate(150deg);
}

.tv-solutions-map__line--three{
  right:158px;
  bottom:182px;
  width:155px;
  transform:rotate(212deg);
}

.tv-solutions-map__line--four{
  left:167px;
  bottom:180px;
  width:155px;
  transform:rotate(-31deg);
}

.tv-solutions-map__badge{
  position:absolute;
  z-index:5;
  padding:7px 10px;
  border:1px solid rgba(105,86,232,.12);
  border-radius:999px;
  background:#fff;
  color:#6f7485;
  font-size:9px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(31,34,58,.06);
}

.tv-solutions-map__badge--tours{
  top:196px;
  left:42px;
}

.tv-solutions-map__badge--languages{
  top:226px;
  right:32px;
}

.tv-solutions-map__badge--leads{
  right:106px;
  bottom:24px;
}


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

@media (max-width: 1024px){

  .tv-solutions-hero{
    padding:88px 0 96px;
  }

  .tv-solutions-hero__grid{
    grid-template-columns:1fr;
    gap:58px;
  }

  .tv-solutions-hero__content{
    max-width:760px;
  }

  .tv-solutions-hero__visual{
    max-width:680px;
    width:100%;
  }

}

@media (max-width: 767px){

  .tv-solutions-container{
    width:min(100% - 32px,1200px);
  }

  .tv-solutions-hero{
    padding:54px 0 68px;
  }

  .tv-solutions-hero__grid{
    gap:36px;
  }

  .tv-solutions-hero__content{
    width:100%;
    max-width:none;
  }

  .tv-solutions-eyebrow{
    margin-bottom:17px;
    font-size:10px;
    letter-spacing:.13em;
  }

  .tv-solutions-hero h1{
    max-width:100%;
    font-size:36px;
    line-height:1.08;
    letter-spacing:-.04em;
  }

  .tv-solutions-hero h1 span{
    margin-top:4px;
  }

  .tv-solutions-hero__lead{
    max-width:100%;
    margin-top:20px;
    font-size:14px;
    line-height:1.75;
  }

  .tv-solutions-hero__actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:24px;
  }

  .tv-solutions-btn{
    width:100%;
    min-height:46px;
    font-size:13px;
  }

  .tv-solutions-hero__proof{
    display:flex;
    flex-wrap:wrap;
    gap:8px 18px;
    margin-top:21px;
    font-size:10px;
  }

  .tv-solutions-hero__visual{
    width:100%;
    max-width:none;
  }

  .tv-solutions-map{
    min-height:430px;
    border-radius:22px;
  }

  .tv-solutions-map::before{
    inset:14px;
    border-radius:17px;
  }

  .tv-solutions-map__center{
    top:50%;
    min-width:160px;
    padding:14px 15px;
    gap:11px;
    border-radius:16px;
  }

  .tv-solutions-map__brand-mark{
    width:40px;
    height:40px;
    border-radius:11px;
    font-size:18px;
  }

  .tv-solutions-map__center strong{
    font-size:14px;
  }

  .tv-solutions-map__center span{
    font-size:9px;
  }

  .tv-solutions-map__card{
    min-width:0;
    width:calc(50% - 25px);
    gap:9px;
    padding:11px 12px;
    border-radius:14px;
  }

  .tv-solutions-map__card--agency{
    top:30px;
    left:16px;
  }

  .tv-solutions-map__card--operator{
    top:30px;
    right:16px;
  }

  .tv-solutions-map__card--dmc{
    right:16px;
    bottom:30px;
  }

  .tv-solutions-map__card--inbound{
    left:16px;
    bottom:30px;
  }

  .tv-solutions-map__card strong{
    font-size:11px;
    line-height:1.35;
  }

  .tv-solutions-map__card span{
    margin-top:2px;
    font-size:9px;
    line-height:1.35;
  }

  .tv-solutions-map__icon{
    width:30px;
    height:30px;
    border-radius:9px;
    font-size:11px !important;
  }

  .tv-solutions-map__line,
  .tv-solutions-map__badge{
    display:none;
  }

}

@media (max-width: 480px){

  .tv-solutions-hero{
    padding:48px 0 62px;
  }

  .tv-solutions-hero h1{
    font-size:36px;
  }

  .tv-solutions-hero__lead{
    font-size:14px;
  }

  .tv-solutions-map{
    min-height:400px;
  }

  .tv-solutions-map__card{
    width:calc(50% - 21px);
    padding:10px;
  }

  .tv-solutions-map__card--agency{
    top:26px;
    left:13px;
  }

  .tv-solutions-map__card--operator{
    top:26px;
    right:13px;
  }

  .tv-solutions-map__card--dmc{
    right:13px;
    bottom:26px;
  }

  .tv-solutions-map__card--inbound{
    left:13px;
    bottom:26px;
  }

  .tv-solutions-map__center{
    min-width:152px;
  }

}

/* =========================================================
   02 — Business Types
   ========================================================= */

.tv-solutions-types{
  padding:112px 0;
  background:#ffffff;
}

.tv-solutions-section-head{
  max-width:760px;
  margin-bottom:54px;
}

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

.tv-solutions-section-head h2 span{
  display:block;
  margin-top:5px;
}

.tv-solutions-section-head > p{
  max-width:690px;
  margin:20px 0 0;
  color:#757b8d;
  font-size:15px;
  line-height:1.85;
}

.tv-solutions-types__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.tv-solutions-type-card{
  position:relative;
  min-height:370px;
  padding:30px;
  overflow:hidden;
  border:1px solid #e8e9f1;
  border-radius:24px;
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fbfaff 100%
    );
  box-shadow:0 16px 40px rgba(27,31,50,.05);
}

.tv-solutions-type-card::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-90px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(105,86,232,.10) 0%,
      rgba(105,86,232,0) 70%
    );
  pointer-events:none;
}

.tv-solutions-type-card__top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:34px;
}

.tv-solutions-type-card__index{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:#f0edff;
  color:#6956e8;
  font-size:12px;
  font-weight:800;
}

.tv-solutions-type-card__tag{
  color:#9a9fad;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
}

.tv-solutions-type-card h3{
  position:relative;
  z-index:2;
  margin:0;
  color:#161a2b;
  font-size:20px;
  font-weight:750;
  line-height:1.3;
}

.tv-solutions-type-card > p{
  position:relative;
  z-index:2;
  margin:14px 0 0;
  color:#73798a;
  font-size:14px;
  line-height:1.8;
}

.tv-solutions-type-card ul{
  position:relative;
  z-index:2;
  display:grid;
  gap:11px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}

.tv-solutions-type-card li{
  position:relative;
  padding-left:19px;
  color:#4e5466;
  font-size:13px;
  line-height:1.6;
}

.tv-solutions-type-card li::before{
  content:"";
  position:absolute;
  top:.65em;
  left:0;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#6956e8;
}

@media (hover:hover){

  .tv-solutions-type-card{
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .tv-solutions-type-card:hover{
    transform:translateY(-3px);
    border-color:rgba(105,86,232,.22);
    box-shadow:0 22px 48px rgba(27,31,50,.08);
  }

}

@media (max-width: 767px){

  .tv-solutions-types{
    padding:78px 0;
  }

  .tv-solutions-section-head{
    margin-bottom:36px;
  }

  .tv-solutions-section-head h2{
    font-size:36px;
  }

  .tv-solutions-section-head > p{
    font-size:15px;
    line-height:1.75;
  }

  .tv-solutions-types__grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .tv-solutions-type-card{
    min-height:0;
    padding:24px;
    border-radius:20px;
  }

  .tv-solutions-type-card__top{
    margin-bottom:26px;
  }

  .tv-solutions-type-card h3{
    font-size:20px;
  }

}

@media (max-width: 544px){

  .tv-solutions-section-head h2{
    font-size:32px;
  }

}

/* =========================================================
   03 — Common Challenge
   ========================================================= */

.tv-solutions-challenge{
  position:relative;
  overflow:hidden;
  padding:112px 0;
  background:#f7f8fb;
  border-top:1px solid #ececf2;
  border-bottom:1px solid #ececf2;
}

.tv-solutions-challenge::before{
  content:"";
  position:absolute;
  top:-180px;
  right:-160px;
  width:500px;
  height:500px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(105,86,232,.08) 0%,
      rgba(105,86,232,0) 70%
    );
  pointer-events:none;
}

.tv-solutions-challenge__head{
  position:relative;
  z-index:2;
  max-width:820px;
}

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

.tv-solutions-challenge__head h2 span{
  color:#6956e8;
}

.tv-solutions-challenge__head > p{
  max-width:760px;
  margin:20px 0 0;
  color:#757b8d;
  font-size:15px;
  line-height:1.85;
}


/* Flow */

.tv-solutions-challenge__flow{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr);
  gap:10px;
  align-items:center;
  margin-top:58px;
  padding:30px;
  border:1px solid #e4e5ed;
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 50px rgba(27,31,50,.05);
}

.tv-solutions-challenge__item{
  position:relative;
  min-width:0;
  text-align:center;
}

.tv-solutions-challenge__number{
  position:absolute;
  top:-16px;
  right:8px;
  color:#b2b5c1;
  font-size:9px;
  font-weight:750;
  letter-spacing:.08em;
}

.tv-solutions-challenge__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  margin:0 auto 15px;
  border:1px solid #ded9ff;
  border-radius:13px;
  background:#f0edff;
  color:#6956e8;
}

.tv-solutions-challenge__icon svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.tv-solutions-challenge__item strong{
  display:block;
  color:#25293a;
  font-size:15px;
  font-weight:700;
  line-height:1.4;
}

.tv-solutions-challenge__item small{
  display:block;
  margin-top:5px;
  color:#9a9fad;
  font-size:10px;
  font-weight:650;
  line-height:1.4;
}

.tv-solutions-challenge__arrow{
  color:#c5c2df;
  font-size:16px;
  line-height:1;
}


/* Bottom Message */

.tv-solutions-challenge__bottom{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:38px;
  align-items:start;
  max-width:940px;
  margin-top:38px;
  padding-top:30px;
  border-top:1px solid #dedfe7;
}

.tv-solutions-challenge__bottom > span{
  padding-top:3px;
  color:#6956e8;
  font-size:10px;
  font-weight:750;
  line-height:1.6;
  letter-spacing:.11em;
}

.tv-solutions-challenge__bottom p{
  margin:0;
  color:#555b6d;
  font-size:14px;
  line-height:1.8;
}


/* Responsive */

@media (max-width:1024px){

  .tv-solutions-challenge__flow{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:0;
    padding:12px 26px;
  }

  .tv-solutions-challenge__item{
    padding:28px 15px;
  }

  .tv-solutions-challenge__item:nth-of-type(-n+5){
    border-bottom:1px solid #ececf2;
  }

  .tv-solutions-challenge__arrow{
    display:none;
  }

}

@media (max-width:767px){

  .tv-solutions-challenge{
    padding:78px 0;
  }

  .tv-solutions-challenge__head h2{
    font-size:36px;
  }

  .tv-solutions-challenge__head > p{
    line-height:1.75;
  }

  .tv-solutions-challenge__flow{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0;
    margin-top:38px;
    padding:0 18px;
    border-radius:20px;
  }

  .tv-solutions-challenge__item{
    position:relative;
    min-height:150px;
    padding:38px 10px 26px;
  }

  /* 2-column mobile matrix:
     vertical divider between the two columns */
  .tv-solutions-challenge__item:nth-of-type(odd){
    border-right:1px solid #ececf2;
  }

  /* horizontal dividers only between rows 1/2 and 2/3 */
  .tv-solutions-challenge__item:nth-of-type(-n+4){
    border-bottom:1px solid #ececf2;
  }

  /* keep step numbers inside each card instead of sitting on row borders */
  .tv-solutions-challenge__number{
    top:14px;
    right:14px;
    font-size:9px;
  }

  .tv-solutions-challenge__icon{
    margin-top:0;
  }

  .tv-solutions-challenge__bottom{
    grid-template-columns:1fr;
    gap:12px;
    margin-top:30px;
    padding-top:26px;
  }

}

@media (max-width:544px){

  .tv-solutions-challenge__head h2{
    font-size:32px;
  }

  .tv-solutions-challenge__head h2 br{
    display:none;
  }

  .tv-solutions-challenge__head h2 span{
    display:block;
    margin-top:5px;
  }

}

/* =========================================================
   04 — How TourVoz Fits
   ========================================================= */

.tv-solutions-workspace{
  position:relative;
  overflow:hidden;
  padding:112px 0;
  background:#fff;
}

.tv-solutions-workspace__head{
  max-width:820px;
}

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

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

.tv-solutions-workspace__head > p{
  max-width:740px;
  margin:20px 0 0;
  color:#757b8d;
  font-size:15px;
  line-height:1.85;
}


/* Main Panel */

.tv-solutions-workspace__panel{
  margin-top:56px;
  overflow:hidden;
  border:1px solid #e6e7ef;
  border-radius:26px;
  background:#fff;
  box-shadow:0 20px 55px rgba(27,31,50,.06);
}


/* Operations Rail */

.tv-solutions-workspace__rail{
  display:grid;
  grid-template-columns:
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr) auto
    minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:38px 34px;
  background:
    linear-gradient(
      135deg,
      #fbfaff 0%,
      #f7f8fb 100%
    );
}

.tv-solutions-workspace__step{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.tv-solutions-workspace__step-number{
  position:absolute;
  top:-17px;
  left:0;
  color:#a9adba;
  font-size:9px;
  font-weight:750;
  letter-spacing:.08em;
}

.tv-solutions-workspace__step-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:42px;
  height:42px;
  border:1px solid #ded9ff;
  border-radius:12px;
  background:#f0edff;
  color:#6956e8;
}

.tv-solutions-workspace__step-icon svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.tv-solutions-workspace__step strong,
.tv-solutions-workspace__step > div:last-child span{
  display:block;
}

.tv-solutions-workspace__step strong{
  color:#292d3e;
  font-size:13px;
  font-weight:700;
  line-height:1.45;
}

.tv-solutions-workspace__step > div:last-child span{
  margin-top:3px;
  color:#9a9fad;
  font-size:9px;
  font-weight:650;
  line-height:1.4;
}

.tv-solutions-workspace__connector{
  color:#c5c2df;
  font-size:15px;
  line-height:1;
}


/* One Workspace Summary */

.tv-solutions-workspace__summary{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:34px;
  border-top:1px solid #e7e8ef;
}

.tv-solutions-workspace__summary-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:16px;
  background:
    linear-gradient(
      145deg,
      #7864f4,
      #5d49db
    );
  color:#fff;
  box-shadow:0 10px 24px rgba(105,86,232,.18);
}

.tv-solutions-workspace__summary-mark span{
  font-size:25px;
  font-weight:800;
  letter-spacing:-.02em;
}

.tv-solutions-workspace__summary-content{
  max-width:690px;
}

.tv-solutions-workspace__label{
  display:block;
  margin-bottom:6px;
  color:#6956e8;
  font-size:9px;
  font-weight:750;
  line-height:1.4;
  letter-spacing:.12em;
}

.tv-solutions-workspace__summary-content h3{
  margin:0;
  color:#171b2c;
  font-size:20px;
  font-weight:750;
  line-height:1.35;
}

.tv-solutions-workspace__summary-content p{
  margin:8px 0 0;
  color:#74798a;
  font-size:14px;
  line-height:1.75;
}

.tv-solutions-workspace__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  color:#6956e8;
  font-size:13px;
  font-weight:700;
  text-decoration:none !important;
}
.tv-solutions-workspace__link span{
  transition:transform 180ms ease;
}

.tv-solutions-workspace__link:hover{
  color:#5846d6;
}

.tv-solutions-workspace__link:hover span {
  transform: translateX(4px);
}


/* Responsive */

@media (max-width:1024px){

  .tv-solutions-workspace__rail{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:14px;
  }

  .tv-solutions-workspace__connector{
    display:none;
  }

  .tv-solutions-workspace__step{
    display:block;
    text-align:center;
  }

  .tv-solutions-workspace__step-number{
    top:-12px;
    left:50%;
    transform:translateX(-50%);
  }

  .tv-solutions-workspace__step-icon{
    margin:0 auto 11px;
  }

}

@media (max-width:767px){

  .tv-solutions-workspace{
    padding:78px 0;
  }

  .tv-solutions-workspace__head h2{
    font-size:36px;
  }

  .tv-solutions-workspace__head > p{
    line-height:1.75;
  }

  .tv-solutions-workspace__panel{
    margin-top:38px;
    border-radius:20px;
  }

  .tv-solutions-workspace__rail{
    grid-template-columns:1fr;
    gap:0;
    padding:12px 22px;
  }

  .tv-solutions-workspace__step{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:14px;
  align-items:center;

  padding:28px 0 18px;

  text-align:left;
  border-bottom:1px solid #e7e8ef;
}

.tv-solutions-workspace__step-number{
  top:15px;
  left:56px;
  right:auto;

  transform:none;

  color:#a9adba;
  font-size:8px;
  letter-spacing:.08em;
}

  .tv-solutions-workspace__step-icon{
    margin:0;
  }

  .tv-solutions-workspace__summary{
    grid-template-columns:48px minmax(0,1fr);
    gap:16px;
    padding:26px 22px;
  }

  .tv-solutions-workspace__summary-mark{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .tv-solutions-workspace__link{
    grid-column:1 / -1;
    margin-top:4px;
  }

}

@media (max-width:544px){

  .tv-solutions-workspace__head h2{
    font-size:32px;
  }

}

/* =========================================================
   05 — Built for Lean Teams
   ========================================================= */

.tv-solutions-small-team{
  position:relative;
  overflow:hidden;
  padding:112px 0;
  background:#f7f8fb;
  border-top:1px solid #ececf2;
}

.tv-solutions-small-team::before{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-220px;
  width:540px;
  height:540px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(105,86,232,.08) 0%,
      rgba(105,86,232,0) 70%
    );
  pointer-events:none;
}

.tv-solutions-small-team__layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(500px,1.06fr);
  gap:76px;
  align-items:center;
}

.tv-solutions-small-team__copy{
  max-width:620px;
}

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

.tv-solutions-small-team__copy h2 .tv-gradient-text{
  display:block;
  margin-top:5px;
}

.tv-solutions-small-team__copy > p{
  max-width:610px;
  margin:20px 0 0;
  color:#757b8d;
  font-size:15px;
  line-height:1.85;
}


/* Points */

.tv-solutions-small-team__points{
  display:grid;
  margin-top:34px;
  border-top:1px solid #dedfe7;
}

.tv-solutions-small-team__point{
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:14px;
  padding:19px 0;
  border-bottom:1px solid #dedfe7;
}

.tv-solutions-small-team__point > span{
  padding-top:2px;
  color:#6956e8;
  font-size:9px;
  font-weight:750;
  line-height:1.5;
  letter-spacing:.08em;
}

.tv-solutions-small-team__point strong{
  display:block;
  color:#25293a;
  font-size:15px;
  font-weight:700;
  line-height:1.45;
}

.tv-solutions-small-team__point p{
  margin:7px 0 0;
  color:#74798a;
  font-size:13px;
  line-height:1.75;
}


/* Principle */

.tv-solutions-small-team__principle{
  margin-top:28px;
  padding:18px 20px;
  border:1px solid rgba(105,86,232,.14);
  border-radius:16px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.96),
      rgba(247,244,255,.9)
    );
}

.tv-solutions-small-team__principle > span{
  display:block;
  margin-bottom:7px;
  color:#6956e8;
  font-size:9px;
  font-weight:750;
  letter-spacing:.11em;
}

.tv-solutions-small-team__principle p{
  margin:0;
  color:#626879;
  font-size:13px;
  line-height:1.75;
}

.tv-solutions-small-team__principle strong{
  color:#292d3e;
  font-weight:700;
}


/* Visual */

.tv-solutions-small-team__visual{
  min-width:0;
}

.tv-solutions-team-stage{
  overflow:hidden;
  border:1px solid rgba(105,86,232,.14);
  border-radius:26px;
  background:#fff;
  box-shadow:
    0 28px 70px rgba(27,31,50,.08),
    0 8px 24px rgba(105,86,232,.04);
}

.tv-solutions-team-stage__top{
  padding:26px 28px;
  border-bottom:1px solid #e8e9f0;
  background:
    linear-gradient(
      135deg,
      #fbfaff,
      #f5f2ff
    );
}

.tv-solutions-team-stage__top span{
  display:block;
  color:#6956e8;
  font-size:9px;
  font-weight:750;
  letter-spacing:.12em;
}

.tv-solutions-team-stage__top strong{
  display:block;
  max-width:500px;
  margin-top:7px;
  color:#171b2c;
  font-size:20px;
  font-weight:750;
  line-height:1.35;
}


/* Levels */

.tv-solutions-team-stage__levels{
  padding:28px 28px 24px;
}

.tv-solutions-team-level{
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  gap:16px;
  align-items:center;
  padding:17px 18px;
  border:1px solid #e7e8ef;
  border-radius:16px;
  background:#fff;
}

.tv-solutions-team-level.is-primary{
  border-color:rgba(105,86,232,.24);
  background:
    linear-gradient(
      135deg,
      #faf9ff,
      #f4f1ff
    );
  box-shadow:0 12px 28px rgba(105,86,232,.07);
}

.tv-solutions-team-level__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:13px;
  background:#f0edff;
  color:#6956e8;
}

.tv-solutions-team-level__icon svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.tv-solutions-team-level span{
  display:block;
  color:#9a9fad;
  font-size:8px;
  font-weight:750;
  letter-spacing:.1em;
}

.tv-solutions-team-level strong{
  display:block;
  margin-top:4px;
  color:#25293a;
  font-size:15px;
  font-weight:700;
  line-height:1.35;
}

.tv-solutions-team-level small{
  display:block;
  margin-top:3px;
  color:#8a8f9e;
  font-size:10px;
  line-height:1.45;
}

.tv-solutions-team-stage__line{
  width:1px;
  height:22px;
  margin-left:41px;
  background:
    linear-gradient(
      to bottom,
      rgba(105,86,232,.12),
      rgba(105,86,232,.42)
    );
}


/* Foundation */

.tv-solutions-team-stage__foundation{
  margin:0 28px 28px;
  padding:20px;
  border:1px solid #e7e8ef;
  border-radius:18px;
  background:#fafbfc;
}

.tv-solutions-team-stage__foundation-label{
  display:block;
  margin-bottom:14px;
  color:#6956e8;
  font-size:9px;
  font-weight:750;
  letter-spacing:.11em;
}

.tv-solutions-team-stage__foundation-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.tv-solutions-team-stage__foundation-grid > div{
  min-width:0;
  padding:12px 10px;
  border:1px solid #e9eaf0;
  border-radius:12px;
  background:#fff;
}

.tv-solutions-team-stage__foundation-grid strong{
  display:block;
  color:#2d3142;
  font-size:11px;
  font-weight:700;
  line-height:1.4;
}

.tv-solutions-team-stage__foundation-grid span{
  display:block;
  margin-top:4px;
  color:#9499a8;
  font-size:9px;
  line-height:1.45;
}


/* Bottom */

.tv-solutions-team-stage__bottom{
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  gap:22px;
  align-items:start;
  padding:22px 28px 26px;
  border-top:1px solid #e8e9f0;
  background:
    linear-gradient(
      135deg,
      #fafbfc,
      #f8f7ff
    );
}

.tv-solutions-team-stage__bottom span{
  padding-top:2px;
  color:#6956e8;
  font-size:9px;
  font-weight:750;
  line-height:1.5;
  letter-spacing:.1em;
}

.tv-solutions-team-stage__bottom p{
  margin:0;
  color:#6f7485;
  font-size:13px;
  line-height:1.7;
}


/* Responsive */

@media (max-width:1024px){

  .tv-solutions-small-team__layout{
    grid-template-columns:1fr;
    gap:52px;
  }

  .tv-solutions-small-team__copy{
    max-width:760px;
  }

  .tv-solutions-small-team__visual{
    max-width:720px;
  }

}

@media (max-width:767px){

  .tv-solutions-small-team{
    padding:78px 0;
  }

  .tv-solutions-small-team__copy h2{
    font-size:36px;
  }

  .tv-solutions-small-team__copy > p{
    line-height:1.75;
  }

  .tv-solutions-small-team__layout{
    gap:40px;
  }

  .tv-solutions-team-stage{
    border-radius:20px;
  }

  .tv-solutions-team-stage__top{
    padding:22px;
  }

  .tv-solutions-team-stage__levels{
    padding:22px 22px 20px;
  }

  .tv-solutions-team-stage__foundation{
    margin:0 22px 22px;
  }

  .tv-solutions-team-stage__foundation-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .tv-solutions-team-stage__bottom{
    grid-template-columns:1fr;
    gap:8px;
    padding:20px 22px 22px;
  }

}

@media (max-width:544px){

  .tv-solutions-small-team__copy h2{
    font-size:32px;
  }

  .tv-solutions-team-level{
    padding:15px;
  }

  .tv-solutions-team-level__icon{
    width:42px;
    height:42px;
  }

  .tv-solutions-team-stage__foundation{
    padding:16px;
  }

}

/* =========================================================
   06 — FAQ / Business Fit
   ========================================================= */

.tv-solutions-faq{
  position:relative;
  overflow:hidden;
  padding:112px 0;
  background:#fff;
}

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


/* Section Head */

.tv-solutions-faq__head{
  position:relative;
  z-index:2;
  max-width:850px;
  margin-bottom:52px;
}

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

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

.tv-solutions-faq__head > p{
  max-width:700px;
  margin:20px 0 0;
  color:#757b8d;
  font-size:15px;
  line-height:1.85;
}


/* =========================================================
   FAQ List
   Unified with Pricing FAQ
   ========================================================= */

.tv-solutions-faq__list{
  position:relative;
  z-index:2;

  max-width:960px;

  border-top:1px solid #e4e5ec;
}

.tv-solutions-faq__item{
  border-bottom:1px solid #e4e5ec;
}


/* Question */

.tv-solutions-faq__item summary{
  position:relative;

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

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

  color:#0c1020;

  cursor:pointer;
  list-style:none;
}

.tv-solutions-faq__item summary::-webkit-details-marker{
  display:none;
}

.tv-solutions-faq__item summary::marker{
  display:none;
  content:"";
}

.tv-solutions-faq__item summary h3{
  flex:1;
  min-width:0;

  margin:0;

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


/* Plus / Minus */

.tv-solutions-faq__item summary i{
  position:relative;
  flex:0 0 auto;

  display:block;

  width:34px;
  height:34px;

  border:1px solid #e2e3eb;
  border-radius:10px;

  background:#fff;

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

.tv-solutions-faq__item summary i::before,
.tv-solutions-faq__item summary i::after{
  content:"";

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

  width:11px;
  height:1.5px;

  border-radius:999px;

  background:#0c1020;

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

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

.tv-solutions-faq__item summary i::after{
  transform:
    translate(-50%,-50%)
    rotate(90deg);
}

.tv-solutions-faq__item[open] summary i{
  border-color:#ded9ff;
  background:#f0edff;
}

.tv-solutions-faq__item[open] summary i::before,
.tv-solutions-faq__item[open] summary i::after{
  background:#6956e8;
}

.tv-solutions-faq__item[open] summary i::after{
  transform:
    translate(-50%,-50%)
    rotate(0deg);
}

/* Active / Open */

.tv-solutions-faq__item[open] summary h3{
  color:#6956e8;
}

.tv-solutions-faq__item[open] summary i{
  border-color:#ded9ff;
  background:#f0edff;
}

.tv-solutions-faq__item[open] summary i::before,
.tv-solutions-faq__item[open] summary i::after{
  background:#6956e8;
}

/* Answer */

.tv-solutions-faq__answer{
  max-width:790px;

  padding:
    0
    54px
    24px
    4px;
}

.tv-solutions-faq__answer p{
  margin:0;

  color:#707687;
  font-size:14px;
  line-height:1.8;
}


/* Hover */

@media (hover:hover){

  .tv-solutions-faq__item summary:hover h3{
    color:#6956e8;
  }

  .tv-solutions-faq__item summary:hover i{
    border-color:#d6d0ff;
  }

}


/* Responsive */

@media (max-width:767px){

  .tv-solutions-faq{
    padding:78px 0;
  }

  .tv-solutions-faq__head{
    margin-bottom:38px;
  }

  .tv-solutions-faq__head h2{
    font-size:36px;
  }

  .tv-solutions-faq__head > p{
    line-height:1.75;
  }

  .tv-solutions-faq__item summary{
    min-height:72px;
    padding:17px 0;
  }

  .tv-solutions-faq__item summary h3{
    font-size:15px;
    line-height:1.5;
  }

  .tv-solutions-faq__answer{
    padding:
      0
      42px
      20px
      0;
  }

}


@media (max-width:544px){

  .tv-solutions-faq__head h2{
    font-size:32px;
  }

}

/* =========================================================
   07 — Final CTA
   ========================================================= */

.tv-solutions-final-cta{
  position:relative;
  overflow:hidden;
  padding:0 0 112px;
  background:#fff;
}


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

.tv-solutions-final-cta__panel{
  position:relative;
  display:grid;
  grid-template-columns:
    minmax(0,1.30fr)
    minmax(320px,.70fr);
  gap:56px;
  align-items:center;
  min-height:500px;
  padding:68px 72px;
  overflow:hidden;
  border:1px solid rgba(105,86,232,.13);
  border-radius:32px;
  background:
    linear-gradient(
      135deg,
      #111426 0%,
      #171a30 57%,
      #211b45 100%
    );
  box-shadow:
    0 32px 85px rgba(19,21,41,.16);
}


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

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

.tv-solutions-final-cta__glow--one{
  top:-185px;
  right:105px;
  width:440px;
  height:440px;
  background:
    radial-gradient(
      circle,
      rgba(105,86,232,.29),
      transparent 69%
    );
}

.tv-solutions-final-cta__glow--two{
  left:-150px;
  bottom:-215px;
  width:430px;
  height:430px;
  background:
    radial-gradient(
      circle,
      rgba(244,168,90,.09),
      transparent 69%
    );
}


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

.tv-solutions-final-cta__content{
  position:relative;
  z-index:10;
  max-width:820px;
}

.tv-solutions-final-cta__content .tv-solutions-eyebrow{
  color:#aaa0ff;
}

.tv-solutions-final-cta__content h2{
  max-width:820px;
  margin:22px 0 0;
  color:#fff;
  font-size:clamp(38px,3.35vw,49px);
  font-weight:750;
  line-height:1.14;
  letter-spacing:-.045em;
}

.tv-solutions-final-cta__content h2 .tv-gradient-text{
  display:block;
  margin-top:4px;
}

.tv-solutions-final-cta__content > p{
  max-width:650px;
  margin:25px 0 0;
  color:rgba(255,255,255,.64);
  font-size:14px;
  line-height:1.85;
}


/* =========================================================
   CTA Buttons
   ========================================================= */

.tv-solutions-final-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:32px;
}

.tv-solutions-final-cta__primary,
.tv-solutions-final-cta__secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 22px;
  border-radius:11px;
  font-size:12px;
  font-weight:700;
  line-height:1;
  text-decoration:none !important;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.tv-solutions-final-cta__primary{
  background:#fff;
  color:#16182b;
}

.tv-solutions-final-cta__primary:hover{
  color:#6956e8;
  transform:translateY(-2px);
}

.tv-solutions-final-cta__primary > span{
  transition:transform 180ms ease;
}

.tv-solutions-final-cta__primary:hover > span{
  transform:translateX(3px);
}

.tv-solutions-final-cta__secondary{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.055);
  color:#fff;
}

.tv-solutions-final-cta__secondary:hover{
  border-color:rgba(255,255,255,.31);
  background:rgba(255,255,255,.095);
  color:#fff;
  transform:translateY(-2px);
}


/* =========================================================
   Meta
   ========================================================= */

.tv-solutions-final-cta__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-top:24px;
}

.tv-solutions-final-cta__meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.52);
  font-size:10px;
  line-height:1.5;
}

.tv-solutions-final-cta__meta i{
  display:block;
  flex:0 0 auto;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#8e7cff;
}


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

.tv-solutions-final-cta__visual{
  position:relative;
  z-index:3;
  width:100%;
  min-height:340px;
  isolation:isolate;
}


/* =========================================================
   Decorative Rings
   ========================================================= */

.tv-solutions-final-cta__ring{
  position:absolute;
  top:50%;
  left:50%;
  border-radius:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.tv-solutions-final-cta__ring--inner{
  width:236px;
  height:236px;
  border:1px solid rgba(255,255,255,.11);
  box-shadow:
    inset 0 0 50px rgba(105,86,232,.035);
}

.tv-solutions-final-cta__ring--outer{
  width:320px;
  height:320px;
  border:1px dashed rgba(255,255,255,.085);
}


/* =========================================================
   Center Brand
   ========================================================= */

.tv-solutions-final-cta__brand{
  position:absolute;
  z-index:20;
  top:50%;
  left:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  width:154px;
  height:154px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  background:rgba(255,255,255,.055);
  box-shadow:
    0 25px 65px rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.tv-solutions-final-cta__brand-halo{
  position:absolute;
  inset:-17px;
  border:1px solid rgba(255,255,255,.055);
  border-radius:50%;
  pointer-events:none;
}

.tv-solutions-final-cta__brand img{
  position:relative;
  z-index:2;
  display:block;
  width:104px;
  height:104px;
  object-fit:contain;
  animation:
    tvSolutionsBrandBreath
    6s
    ease-in-out
    infinite;
}


/* =========================================================
   Orbit Base
   ========================================================= */

.tv-solutions-final-cta__orbit{
  position:absolute;
  z-index:12;
  top:50%;
  left:50%;
  border-radius:50%;
  pointer-events:none;
  will-change:transform;
}


/* =========================================================
   Outer Orbit
   Travel Agency + Tour Operator
   ========================================================= */

.tv-solutions-final-cta__orbit--outer{
  width:320px;
  height:320px;
  margin:-160px 0 0 -160px;
  animation:
    tvSolutionsOuterOrbit
    30s
    linear
    infinite;
}

.tv-solutions-final-cta__orbit--outer-two{
  animation-delay:-15s;
}


/* =========================================================
   Inner Orbit
   DMC + Inbound
   ========================================================= */

.tv-solutions-final-cta__orbit--inner{
  width:236px;
  height:236px;
  margin:-118px 0 0 -118px;
  animation:
    tvSolutionsInnerOrbit
    24s
    linear
    infinite;
}

.tv-solutions-final-cta__orbit--inner-two{
  animation-delay:-12s;
}


/* =========================================================
   Orbit Chips
   ========================================================= */

.tv-solutions-final-cta__chip{
  position:absolute;
  top:0;
  left:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 11px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.075);
  box-shadow:
    0 8px 25px rgba(0,0,0,.10);
  color:rgba(255,255,255,.78);
  font-size:6px;
  line-height:1;
  letter-spacing:.09em;
  font-weight:750;
  white-space:nowrap;
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  will-change:transform;
}


/* Outer Chip Counter Rotation */

.tv-solutions-final-cta__orbit--outer
.tv-solutions-final-cta__chip{
  animation:
    tvSolutionsOuterChip
    30s
    linear
    infinite;
}

.tv-solutions-final-cta__orbit--outer-two
.tv-solutions-final-cta__chip{
  animation-delay:-15s;
}


/* Inner Chip Counter Rotation */

.tv-solutions-final-cta__orbit--inner
.tv-solutions-final-cta__chip{
  animation:
    tvSolutionsInnerChip
    24s
    linear
    infinite;
}

.tv-solutions-final-cta__orbit--inner-two
.tv-solutions-final-cta__chip{
  animation-delay:-12s;
}


/* =========================================================
   Orbit Animations
   ========================================================= */

@keyframes tvSolutionsOuterOrbit{

  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }

}

@keyframes tvSolutionsOuterChip{

  from{
    transform:
      translate(-50%,-50%)
      rotate(0deg);
  }

  to{
    transform:
      translate(-50%,-50%)
      rotate(-360deg);
  }

}

@keyframes tvSolutionsInnerOrbit{

  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(-360deg);
  }

}

@keyframes tvSolutionsInnerChip{

  from{
    transform:
      translate(-50%,-50%)
      rotate(0deg);
  }

  to{
    transform:
      translate(-50%,-50%)
      rotate(360deg);
  }

}


/* =========================================================
   Brand Breathing
   ========================================================= */

@keyframes tvSolutionsBrandBreath{

  0%,
  100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.025);
  }

}


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

@media (hover:hover){

  .tv-solutions-final-cta__brand{
    transition:box-shadow 300ms ease;
  }

  .tv-solutions-final-cta__panel:hover
  .tv-solutions-final-cta__brand{
    box-shadow:
      0 30px 72px rgba(0,0,0,.27);
  }

}


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

@media (max-width:1100px){

  .tv-solutions-final-cta__panel{
    grid-template-columns:
      minmax(0,1.15fr)
      minmax(260px,.85fr);
    gap:38px;
    padding:60px 52px;
  }

  .tv-solutions-final-cta__content h2{
    font-size:43px;
  }

  .tv-solutions-final-cta__ring--outer,
  .tv-solutions-final-cta__orbit--outer{
    width:290px;
    height:290px;
  }

  .tv-solutions-final-cta__orbit--outer{
    margin:-145px 0 0 -145px;
  }

  .tv-solutions-final-cta__ring--inner,
  .tv-solutions-final-cta__orbit--inner{
    width:215px;
    height:215px;
  }

  .tv-solutions-final-cta__orbit--inner{
    margin:-107.5px 0 0 -107.5px;
  }

}


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

@media (max-width:921px){

  .tv-solutions-final-cta__panel{
    grid-template-columns:1fr;
    gap:40px;
    padding:58px 48px;
  }

  .tv-solutions-final-cta__content{
    max-width:720px;
  }

  .tv-solutions-final-cta__visual{
    width:100%;
    max-width:520px;
    min-height:350px;
    margin-inline:auto;
  }

}


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

@media (max-width:640px){

  .tv-solutions-final-cta{
    padding-bottom:80px;
  }

  .tv-solutions-final-cta__panel{
    min-height:auto;
    padding:48px 28px;
    border-radius:24px;
  }

  .tv-solutions-final-cta__content h2{
    font-size:38px;
  }

  .tv-solutions-final-cta__content > p{
    font-size:13px;
  }

  .tv-solutions-final-cta__visual{
    min-height:320px;
  }

  .tv-solutions-final-cta__ring--outer,
  .tv-solutions-final-cta__orbit--outer{
    width:270px;
    height:270px;
  }

  .tv-solutions-final-cta__orbit--outer{
    margin:-135px 0 0 -135px;
  }

  .tv-solutions-final-cta__ring--inner,
  .tv-solutions-final-cta__orbit--inner{
    width:200px;
    height:200px;
  }

  .tv-solutions-final-cta__orbit--inner{
    margin:-100px 0 0 -100px;
  }

  .tv-solutions-final-cta__brand{
    width:135px;
    height:135px;
  }

  .tv-solutions-final-cta__brand img{
    width:90px;
    height:90px;
  }

}


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

@media (max-width:544px){

  .tv-solutions-final-cta__panel{
    padding:42px 22px;
  }

  .tv-solutions-final-cta__content h2{
    font-size:34px;
  }

  .tv-solutions-final-cta__actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    width:100%;
  }

  .tv-solutions-final-cta__primary,
  .tv-solutions-final-cta__secondary{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-width:0;
    text-align:center;
  }

  .tv-solutions-final-cta__primary{
    gap:14px;
    padding-left:22px;
    padding-right:22px;
  }

  .tv-solutions-final-cta__primary > span{
    position:static;
    margin:0;
    transform:none;
  }

  .tv-solutions-final-cta__primary:hover > span{
    transform:translateX(3px);
  }

  .tv-solutions-final-cta__meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px 14px;
    margin-top:20px;
  }

  .tv-solutions-final-cta__meta span{
    flex:0 1 auto;
    gap:5px;
    white-space:normal;
    font-size:9px;
  }

  .tv-solutions-final-cta__meta i{
    width:4px;
    height:4px;
  }

  .tv-solutions-final-cta__visual{
    min-height:285px;
  }

  .tv-solutions-final-cta__ring--outer,
  .tv-solutions-final-cta__orbit--outer{
    width:235px;
    height:235px;
  }

  .tv-solutions-final-cta__orbit--outer{
    margin:-117.5px 0 0 -117.5px;
  }

  .tv-solutions-final-cta__ring--inner,
  .tv-solutions-final-cta__orbit--inner{
    width:174px;
    height:174px;
  }

  .tv-solutions-final-cta__orbit--inner{
    margin:-87px 0 0 -87px;
  }

  .tv-solutions-final-cta__brand{
    width:118px;
    height:118px;
  }

  .tv-solutions-final-cta__brand img{
    width:78px;
    height:78px;
  }

  .tv-solutions-final-cta__chip{
    min-height:25px;
    padding:0 9px;
    font-size:5px;
  }

}


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

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

  .tv-solutions-final-cta__orbit,
  .tv-solutions-final-cta__chip,
  .tv-solutions-final-cta__brand img{
    animation:none !important;
  }

}