@media (max-width: 1420px) {
  .hero-section {
    grid-template-columns: none;
    min-height: 0;
  }
  .hero-intro {
    min-height: 0;
    padding: 90px 40px;
  }
  .hero-intro-inner {
    width: 100%;
  }
  .before-after-tabs {
    overflow-x: auto;
  }
  .before-after-cards {
    justify-content: space-evenly;
    gap: 20px;
  }
  .pipeline-stat-value {
    font-size: 38px;
  }
  .future-image-text {
    top: 88px;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1420px) AND (min-width: 1081px) {
  .channels-label .framed-text-label {
    font-size: 14px;
  }
}
@media (max-width: 1080px) {
  .container {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .site-header-inner {
    min-height: 68px;
    padding: 12px 20px;
  }

  .site-header-nav,
  .site-header-actions > .site-header-action-clear {
    display: none;
  }

  .site-header-actions {
    gap: 24px;
  }

  .site-header-toggle {
    display: flex;
  }

  .menu-open .site-header-toggle-open {
    display: none;
  }

  .menu-open .site-header-toggle-close {
    display: block;
  }

  .site-header-mobile-panel {
    position: fixed;
    top: var(--mobile-nav-top, 68px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 20px calc(env(safe-area-inset-bottom) + 24px);
    border-bottom: 1px solid var(--ai-border);
    background: var(--ai-surface);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.3s;
  }

  .menu-open .site-header-mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .site-header-mobile-link {
    color: var(--ai-black);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.28px;
  }

  .site-header-mobile-sub-link {
    padding-left: 16px;
    font-size: 18px;
    color: var(--ai-text-soft);
  }

  .site-header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .site-header-mobile-actions .site-header-action {
    flex: 1 1 0;
  }

  .text-content {
    padding-top: 100px;
  }

  .usp-section {
    padding: 60px 0;
  }

  .usp-head {
    justify-content: flex-start;
    padding: 0 40px;
  }

  .usp-title {
    text-align: left;
  }

  .usp-slider {
    margin-top: 60px;
    padding-left: 40px;
  }

  .usp-grid {
    display: flex;
    gap: 0;
    background: transparent;
  }

  .usp-card {
    width: 280px;
    height: 302px;
    border: 1px solid var(--ai-border);
    border-radius: 4px;
  }

  .usp-card-inner {
    padding: 23px 20px;
  }

  .mood-banner-section {
    height: 595px;
  }
  .mood-banner-title {
    right: 40px;
  }
  .pipeline-progress-bars {
    gap: 4px;
  }
  .data-revenue-fade {
    bottom: 0;
    left: 0;
    right: 0;
  }
  .demo-section {
    height: 1183px;
  }

  .demo-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: none;
    padding: 60px 40px 32px;
  }

  .demo-title,
  .demo-text {
    display: block;
    width: 100%;
    margin: 0;
    color: var(--central-black);
  }

  .demo-video {
    width: calc(100% - 80px);
    height: 424px;
    margin-top: 0;
  }

  .demo-image-box {
    height: 774px;
  }

  .demo-image {
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .demo-image-text {
    top: 453px;
    width: 746px;
    max-width: calc(100% - 88px);
  }

  .customer-section {
    padding-top: 60px;
  }

  .customer-head {
    justify-content: flex-start;
    padding: 0 40px 60px;
  }

  .customer-title {
    width: 100%;
    text-align: left;
  }

  .customer-grid {
    display: block;
    border-bottom: 0;
    background: transparent;
    border: none;
  }

  .customer-card {
    display: block;
    height: auto;
    padding: 0 40px;
    border-bottom: 1px solid var(--central-black);
  }

  .customer-card:first-child {
    border-top: 1px solid var(--central-black);
  }

  .customer-card-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 24px 0;
  }

  .customer-card-icon {
    display: flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    color: var(--central-black);
  }

  .customer-card-icon svg {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
  }

  .customer-card.is-open .customer-card-icon svg {
    transform: rotate(180deg);
  }

  .customer-card-body {
    display: flex;
    height: auto;
    gap: 80px;
    max-height: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, padding-bottom 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .customer-card.is-open .customer-card-body {
    max-height: 1000px;
    padding-bottom: 30px;
    opacity: 1;
    transform: translateY(0);
  }

  .customer-card-text {
    margin-top: 0;
  }

  .customer-card-link {
    min-height: 55px;
    font-size: 16px;
    line-height: 22px;
  }

  .newsletter-section {
    min-height: 654px;
  }

  .newsletter-bg:before,
  .newsletter-bg:after {
    display: none;
  }

  .newsletter-inner {
    min-height: 654px;
    justify-content: center;
    gap: 53px;
    padding: 60px 20px;
  }

  .newsletter-title {
    width: 100%;
  }

  .newsletter-card {
    width: 630px;
    max-width: 100%;
    margin-top: 0;
    padding: 32px 40px;
    background: rgba(248, 243, 241, 0.03);
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .newsletter-input,
  .newsletter-submit {
    width: 100%;
    height: 55px;
  }

  .newsletter-input {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
  }

  .newsletter-submit {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }

  .newsletter-bottom {
    width: 454px;
    max-width: 100%;
    margin-top: 0;
  }

  .site-footer {
    min-height: 861px;
  }

  .site-footer-bg-logo {
    width: 836px;
    max-width: 100%;
    height: 173px;
    opacity: 0.09;
  }

  .site-footer-inner {
    display: flex;
    min-height: 861px;
    flex-direction: column;
    gap: 32px;
    padding: 60px 20px 20px;
  }

  .site-footer-brand {
    gap: 16px;
  }

  .site-footer-text {
    width: 366px;
    margin-top: 0;
  }

  .site-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .site-footer-column {
    width: 100%;
    gap: 16px;
    padding-bottom: 0;
    border-bottom: 1px solid var(--shade-brand-black-400);
  }

  .site-footer-column-toggle {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    color: var(--central-white);
  }

  .site-footer-column-icon {
    display: block;
    width: 16px;
    height: 16px;
    color: var(--central-neon-tide);
    transition: transform 0.3s;
  }

  .site-footer-column.is-open .site-footer-column-icon {
    transform: rotate(180deg);
  }

  .site-footer-column-items {
    display: flex;
    gap: 16px;
    width: 100%;
    max-height: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, padding-bottom 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .site-footer-column.is-open .site-footer-column-items {
    max-height: 500px;
    padding-bottom: 24px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-footer-link {
    width: 100%;
    white-space: normal;
  }

  .site-footer-connect {
    gap: 8px;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .site-footer-column-title {
    display: flex;
    height: 40px;
    align-items: center;
  }

  .site-footer-bottom {
    position: static;
    width: 100%;
    margin-top: 0;
  }
  .site-footer-copyright {
    text-align: center;
  }

  .steps-section {
    min-height: 0;
    padding: 60px 0;
  }

  .steps-head {
    align-items: flex-start;
    gap: 24px;
    padding: 0 40px;
    text-align: left;
  }

  .steps-title,
  .steps-text {
    width: 100%;
  }

  .steps-body {
    display: block;
    margin-top: 38px;
  }

  .steps-list--desktop,
  .steps-media--desktop {
    display: none;
  }

  .steps-mobile-flow {
    --steps-mobile-padding: 40px;
    position: relative;
    display: block;
    padding: 0 var(--steps-mobile-padding);
  }

  .steps-item {
    padding: 0;
  }

  .steps-mobile-flow .steps-item + .steps-media-item {
    margin-top: 58px;
  }

  .steps-mobile-flow .steps-media-item + .steps-item {
    margin-top: 16px;
  }

  .steps-card {
    height: 74px;
  }

  .steps-list-progress {
    top: 74px;
    bottom: 74px;
    left: calc(50% - 0.5px);
  }
  .steps-card-icon {
    transform: rotate(90deg);
  }

  .steps-card-content {
    font-size: 38px;
    line-height: 45px;
  }

  .steps-media-item {
    min-height: 462px;
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
  }

  .steps-media-image {
    max-height: 462px;
  }

  .data-revenue-section {
    padding: 60px 40px;
  }

  .data-revenue-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 0 32px;
  }

  .data-revenue-title,
  .data-revenue-text {
    width: 100%;
  }

  .data-revenue-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .data-revenue-panel {
    min-height: 625px;
  }

  .data-revenue-rows {
    width: 630px;
    max-width: calc(100% - 124px);
  }

  .data-revenue-row {
    grid-template-columns: minmax(0, 182px) 178px 118px;
    gap: 74px;
  }

  .data-revenue-studio-flow {
    padding-top: 124px;
  }

  .future-item.is-active {
    display: block;
  }

  .future-media {
    min-height: 0;
    height: 665px;
  }

  .future-image-text {
    top: 83px;
    left: 50%;
    width: 556px;
    max-width: calc(100% - 80px);
    min-height: 198px;
    transform: translateX(-50%);
  }

  .future-content {
    padding: 60px 40px;
  }

  .future-title {
    max-width: none;
    margin-bottom: 40px;
  }

  .future-text {
    max-width: none;
  }

  .channels-section {
    padding: 60px 0 0;
  }

  .channels-head {
    display: block;
    min-height: 0;
    padding: 0 40px 32px;
  }

  .channels-title {
    width: 100%;
    margin: 0;
  }

  .channels-copy {
    width: 100%;
    gap: 23px;
    margin-top: 24px;
  }

  .channels-link {
    min-height: 55px;
    padding: 15px 12px;
    font-size: 16px;
    line-height: 22px;
  }

  .channels-slider {
    width: calc(100% - 80px);
  }

  .channels-grid {
    display: flex;
  }

  .channels-slide {
    width: 100%;
  }

  .channels-panel {
    height: 560px;
    border-top: 0;
    border-left: 0;
    background-position: center -62px;
  }

  .channels-panel-inner {
    top: 79px;
  }

  .channels-label {
    bottom: 78px;
  }

  .channels-pagination {
    display: flex;
    height: 50px;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    color: var(--shade-brand-black-100);
  }

  .channels-pagination-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }

  .channels-pagination-item.is-active {
    color: var(--central-black);
  }

  .channels-pagination-line {
    display: block;
    width: 55px;
    height: 1px;
    background: var(--central-black);
  }

  .customers-crawlers-section {
    padding: 60px 40px;
  }

  .customers-crawlers-item {
    padding: 0;
  }

  .customers-crawlers-head {
    min-height: 0;
    gap: 20px;
    padding: 20px 0 28px;
  }

  .customers-crawlers-text {
    margin-top: 0;
  }

  .customers-crawlers-icons {
    margin-top: 0;
  }

  .customers-crawlers-tabs {
    width: 100%;
    max-width: none;
    min-height: 112px;
    background: transparent;
    grid-template-columns: 1fr;
  }

  .customers-crawlers-tab {
    min-height: 44px;
    background: transparent;
  }

  .customers-crawlers-media {
    height: auto;
    margin-top: 12px;
    border-radius: 4px;
  }

  .pipeline-section {
    padding: 60px 40px;
  }

  .pipeline-head {
    min-height: 0;
    gap: 24px;
    margin-bottom: 32px;
  }

  .pipeline-workspace {
    display: flex;
    width: 754px;
    max-width: 100%;
    flex-direction: column;
  }

  .pipeline-left {
    width: 100%;
    flex-direction: column-reverse;
    gap: 6px;
  }

  .pipeline-stats {
    height: 128px;
  }

  .pipeline-stat-value {
    font-size: 38px;
    line-height: 45px;
  }

  .pipeline-verified-panel {
    min-height: 236px;
    gap: 33px;
    padding: 24px 20px;
  }

  .pipeline-current {
    height: 151px;
    align-items: center;
  }

  .pipeline-current-svg {
    width: 151px;
    height: 388px;
    transform: rotate(90deg);
  }

  .pipeline-output-panel {
    width: 100%;
    min-height: 526px;
    padding: 24px 20px;
  }

  .pipeline-output-card {
    min-height: 147px;
    padding: 18px 0;
  }

  .pipeline-progress {
    max-width: 754px;
    margin-top: 18px;
  }

  .pipeline-progress-labels {
    padding: 0;
  }

  .before-after-section {
    min-height: 0;
  }

  .before-after-title {
    padding: 32px 40px;
    min-height: 0;
  }

  .before-after-tabs {
    padding: 0;
    gap: 0;
    border: none;
    gap: 15px;
    height: 195px;
    background: #fff;
  }
  .before-after-tab.is-active,
  .before-after-tab:hover {
    border-width: 1px;
    border-style: solid;
  }
  .before-after-tab.is-active .before-after-tab-image,
  .before-after-tab:hover .before-after-tab-image {
    padding: 0 1px 1px 1px;
  }
  .before-after-tab {
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .before-after-content {
    padding: 36px 0 0 0;
  }

  .before-after-cards {
    display: block;
    width: auto;
    transform: none;
  }

  .before-after-card {
    display: none;
    padding-top: 0;
  }

  .before-after-card.is-mobile-active {
    display: block;
  }

  .before-after-card-label {
    display: none;
  }

  .before-after-card-inner {
    min-height: 510px;
    border-radius: 12px 12px 0 0;
    max-width: 496px;
    margin: 0 auto;
  }

  .before-after-card-title {
    margin-bottom: 17px;
    text-align: left;
  }

  .before-after-attribute-row {
    min-height: 39px;
  }

  .before-after-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
    background: var(--Central-Signal-Fire, #ff5842);
  }

  .before-after-switch-button {
    display: inline-flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .before-after-switch-button.is-active {
    background: #bf4738;
  }

  .before-after-switch-button svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
  .hero-stats {
    position: relative;
  }

  .hero-marker--desktop,
  .hero-marker--mobile {
    display: none;
  }

  .hero-marker--tablet {
    display: block;
  }

  .hero-enriched {
    position: absolute;
    right: 0;
    bottom: -21px;
    border-radius: 18px;
  }

  .hero-stat {
    width: 97px;
    min-height: 97px;
    justify-content: flex-start;
  }
  .hero-stat strong {
    font-size: 40px;
    letter-spacing: -3px;
  }
  .hero-stat span {
    font-size: 12px;
  }
  .hero-tab-module-product {
    width: 200px;
  }
  .hero-tab-module {
    min-width: 175px;
  }
  .hero-tab-module-attributes.is-compact {
    width: 175px;
  }
  .hero-attribute-row-4 {
    grid-template-columns: 40px 40px 20px minmax(0, 1fr);
  }
  .hero-attribute-row-3 {
    grid-template-columns: 40px 45px minmax(0, 1fr);
  }
  .usp-card-text {
    min-height: 110px;
  }
  .before-after-top {
    grid-template-columns: none;
  }
  .hero-stage {
    min-height: 0;
  }
  .hero-stage-image {
    position: static;
    height: auto;
}
.hero-marker svg {
    height: 100%;
    width: 100%;
}
}

@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header-action-primary {
    gap: 3px;
    min-height: 49px;
    padding: 12px 12px 12px 16px;
  }

  .site-header-mobile-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header-mobile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .usp-section {
    padding: 60px 0;
  }

  .usp-head {
    padding: 0 20px;
  }

  .usp-slider {
    margin-top: 32px;
    padding-left: 20px;
  }

  .usp-card {
    border-radius: 0;
  }

  .usp-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px 0 0;
    color: #b9b9b9;
  }

  .usp-pagination-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }

  .usp-pagination-item.is-active {
    color: var(--ai-black);
  }

  .usp-pagination-line {
    display: block;
    width: 55px;
    height: 1px;
    background: var(--ai-black);
  }

  .mood-banner-section:after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }

  .demo-section {
    height: 951px;
  }

  .demo-content {
    gap: 24px;
    padding: 60px 20px 32px;
  }

  .demo-video {
    width: calc(100% - 40px);
    height: 219px;
    margin-top: 0;
  }

  .demo-image-box {
    height: 550px;
  }

  .demo-image-text {
    top: 211px;
    width: 100%;
    max-width: none;
    padding: 0 20px;
  }

  .customer-head {
    padding: 0 20px 60px;
  }

  .customer-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .customer-card-body {
    gap: 40px;
  }

  .customer-card-link {
    width: 100%;
    max-width: 260px;
  }

  .newsletter-section {
    min-height: 730px;
  }

  .newsletter-inner {
    min-height: 730px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .newsletter-card {
    padding: 32px 40px;
  }

  .newsletter-input,
  .newsletter-submit {
    font-size: 18px;
    line-height: 25px;
  }

  .newsletter-input {
    font-weight: 400;
  }

  .newsletter-submit {
    font-weight: 500;
  }

  .newsletter-bottom {
    width: 100%;
  }

  .site-footer {
    min-height: 772px;
  }

  .site-footer-bg-logo {
    width: 427px;
    height: 88px;
  }

  .site-footer-inner {
    min-height: 772px;
    padding-top: 32px;
  }

  .site-footer-text {
    width: 100%;
  }

  .site-footer-socials {
    padding-bottom: 0;
  }

  .site-footer-copyright {
    white-space: normal;
  }

  .steps-head {
    padding: 0 20px;
  }

  .steps-item {
    padding: 0;
  }

  .steps-mobile-flow {
    --steps-mobile-padding: 20px;
  }

  .steps-card-content {
    gap: 10px;
    font-size: 32px;
    line-height: 38px;
  }

  .steps-media-item {
    min-height: 0;
    padding: 0 0px 48px;
  }

  .steps-media-image {
    max-height: 578px;
  }

  .data-revenue-section {
    padding: 60px 0 0;
  }

  .hero-section {
    display: block;
    min-height: 0;
    background: var(--central-signal-fire);
  }

  .hero-intro {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: var(--h3-line-height, 38px);
  }

  .hero-text {
    margin-top: 24px;
    font-size: 18px;
    line-height: var(--body-xl-line-height, 25px);
  }

  .hero-form {
    align-items: stretch;
    margin-top: 24px;
    flex-direction: column;
  }
  .hero-demo-link {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-data-open {
    position: absolute;
    right: 0;
    bottom: 60px;
    left: 0;
    display: inline-flex;
    width: max-content;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 10px 14px;
    border: 0;
    border-radius: 4px;
    background: var(--central-neon-tide);
    color: var(--central-black);
  }

  .hero-data-modal-open {
    overflow: hidden;
  }

  .hero-data-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: -1;
    display: block;
    height: 0;
    padding: 61px 20px 0;
    overflow: auto;
    background: var(--central-black);
    color: var(--central-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, z-index 0s linear 0.3s, height 0s linear 0.3s;
  }

  .hero-section.is-data-open .hero-data-wrap {
    bottom: 0;
    z-index: 120;
    height: 100dvh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, z-index 0s, height 0s;
  }

  .hero-input {
    max-width: none;
  }

  .hero-marker--desktop,
  .hero-marker--tablet {
    display: none;
  }

  .hero-marker--mobile {
    display: block;
  }

  .hero-data-wrap {
    padding: 61px 20px 0;
  }

  .hero-data-close {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 2;
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--central-white);
  }

  .hero-data-wrap .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
  }

  .hero-data-wrap .hero-stat {
        width: auto;
        padding: 6px;
        border-radius: 0;
        aspect-ratio: 1 / 1;
        min-height: 0;
  }

  .hero-data-wrap .hero-enriched {
    display: none;
  }

  .hero-data-wrap .hero-table {
    margin-top: 17px;
  }

  .hero-data-wrap .hero-table-tabs {
    display: none;
  }

  .hero-data-wrap .hero-table-card {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero-data-wrap .hero-table-card > .hero-table-panel {
    min-height: var(--hero-table-panel-height, auto);
  }

  .hero-data-wrap .hero-table-panel {
    position: absolute;
    inset: 0;
    display: block;
    height: auto;
    overflow: visible;
  }

  .hero-data-wrap .hero-table-panel.is-active {
    position: relative;
    inset: auto;
  }

  .hero-data-wrap .hero-mobile-tab-pager {
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    width: calc(100% + 80px);
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 32px -40px 0;
    padding: 12px 20px calc(env(safe-area-inset-bottom) + 12px);
    border-top: 1px solid var(--central-neon-tide);
    background: var(--central-neon-tide);
    color: var(--central-black);
  }

  .hero-mobile-tab-arrow {
    display: flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
  }

  .hero-mobile-tab-arrow svg {
    width: 10px;
    height: 18px;
  }

  .hero-mobile-tab-title {
    min-width: 0;
    flex: 1 1 auto;
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .hero-data-wrap .hero-tab-modules {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-data-wrap .is-two-columns .hero-attributes-list {
    display: block;
  }

  .hero-data-wrap .hero-tab-module,
  .hero-data-wrap .hero-tab-module-product,
  .hero-data-wrap .hero-tab-module-attributes.is-compact,
  .hero-data-wrap .hero-tab-module-text,
  .hero-data-wrap .is-faq {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hero-data-wrap .hero-product-card {
    grid-template-columns: none;
    gap: 17px;
  }

  .hero-product-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

  .hero-data-wrap .hero-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .hero-data-wrap .hero-product-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-top: 0;
  }

  .hero-data-wrap .hero-product-thumbs img {
    width: 100%;
    aspect-ratio: 82 / 85;
    height: auto;
  }

  .hero-data-wrap .hero-table-heading {
    font-size: 14px;
  }

  .hero-data-wrap .hero-table-lines {
    font-size: 14px;
    line-height: 19px;
  }

  .hero-data-wrap .hero-table-description,
  .hero-data-wrap .hero-table-text {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
  }

  .hero-data-wrap .hero-attribute-row,
  .hero-data-wrap .hero-attribute-row-4,
  .hero-data-wrap .hero-attribute-row-3,
  .hero-data-wrap .hero-attribute-row-2 {
    gap: 20px;
    min-height: 59px;
    padding: 8px 0;
    border-bottom: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .hero-data-wrap .hero-attribute-row-4 {
    grid-template-columns: 64px 70px 32px minmax(0, 1fr);
  }

  .hero-data-wrap .hero-attribute-row-3 {
    grid-template-columns: 64px 70px minmax(0, 1fr);
  }

  .hero-data-wrap .hero-attribute-row-2 {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .hero-widget {
    display: none;
  }

  .usp-title {
    font-size: 32px;
    line-height: 38px;
  }

  .data-revenue-head {
    padding: 0 20px 32px;
  }

  .data-revenue-panel {
    min-height: 0;
  }

  .data-revenue-readiness {
    padding: 24px 0px;
  }

  .data-revenue-label {
    position: static;
    justify-content: center;
    transform: none;
    display: flex;
  }

  .framed-text-label {
    font-size: 14px;
  }

  .data-revenue-rows {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }

  .data-revenue-row {
    grid-template-columns: minmax(0, 137px) minmax(0, 100px) 90px;
    gap: 9px;
    min-height: 80px;
  }

  .data-revenue-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .data-revenue-icon img {
    width: 18px;
    height: 18px;
  }

  .data-revenue-source {
    gap: 12px;
  }

  .data-revenue-source-title {
    width: 80px;
  }

  .data-revenue-progress {
    gap: 7px;
  }

  .data-revenue-progress-track {
    width: 57px;
  }

  .data-revenue-action {
    min-height: 36px;
    padding: 10px 8px;
  }

  .data-revenue-fade {
    height: 158px;
  }

  .data-revenue-panel {
    position: absolute;
    inset: 20px;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .data-revenue-panel.is-active {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .data-revenue-tabs {
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--central-black);
    border-radius: 4px;
  }
  .data-revenue-body {
    position: relative;
    background: #fff;
    padding: 20px;
  }

  .data-revenue-tab {
    display: flex;
    min-width: 0;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    padding: 9px 2px;
    gap: 2px;
    border-radius: 4px;
    color: #373737;
    text-align: center;
    font-size: 14px;
    background: var(--Central-Beige, #F8F3F1);
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .data-revenue-tab.is-active {
    background: var(--central-black);
    color: var(--central-white);
  }

  .future-media {
    height: 665px;
  }

  .future-image-text {
    display: none;
  }

  .future-content {
    padding: 32px 20px 60px;
  }

  .future-title {
    margin-bottom: 32px;
  }

  .future-text h1,
  .future-text h2,
  .future-text h3,
  .future-text h4,
  .future-text h5,
  .future-text h6 {
    font-size: 16px;
    line-height: 22px;
  }

  .future-text p + h1,
  .future-text p + h2,
  .future-text p + h3,
  .future-text p + h4,
  .future-text p + h5,
  .future-text p + h6,
  .future-text ul + h1,
  .future-text ul + h2,
  .future-text ul + h3,
  .future-text ul + h4,
  .future-text ul + h5,
  .future-text ul + h6,
  .future-text ol + h1,
  .future-text ol + h2,
  .future-text ol + h3,
  .future-text ol + h4,
  .future-text ol + h5,
  .future-text ol + h6 {
    margin-top: 32px;
  }

  .channels-section {
    padding-top: 60px;
  }

  .channels-head {
    padding: 0 20px 32px;
  }

  .channels-copy {
    margin-top: 24px;
  }

  .channels-slider {
width: calc(100% - 40px);
        padding: 0;
  }

  .channels-panel {
    height: 560px;
    background-position: center -62px;
  }

  .channels-label {
        bottom: 37px;
        max-width: calc(100% - 10px);
        width: max-content;
  }

  .channels-label .framed-text-label {
    font-size: 14px;
    line-height: 19px;
    white-space: normal;
  }

  .channels-pagination {
    padding: 0 20px;
  }

  .customers-crawlers-section {
    padding: 60px 20px;
  }

  .customers-crawlers-item {
    padding: 0;
  }

  .customers-crawlers-head {
    align-items: flex-start;
    gap: 24px;
    padding: 0 0 32px;
    text-align: left;
  }

  .customers-crawlers-title,
  .customers-crawlers-text {
    width: 100%;
  }

  .customers-crawlers-text {
    font-weight: 500;
  }

  .customers-crawlers-icons {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .customers-crawlers-icon {
    width: 47px;
    height: 47px;
  }

  .customers-crawlers-icon img {
    width: 27px;
    height: 27px;
  }

  .customers-crawlers-tabs {
    display: flex;
    min-height: 0;
    gap: 8px;
  }

  .customers-crawlers-tab {
    flex: 1 1 0;
    gap: 8px;
    min-height: 46px;
    padding: 9px;
    font-size: 17px;
  }

  .customers-crawlers-tab span > span {
   display: none;
  }
.customers-crawlers-tab:not(.is-active) svg {
    opacity: 1;
}
  .customers-crawlers-media {
    margin-top: 14px;
  }

  .pipeline-section {
    padding: 60px 20px;
  }

  .pipeline-head {
    gap: 24px;
    margin-bottom: 43px;
  }

  .pipeline-title {
    max-width: 360px;
  }

  .pipeline-workspace {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }

  .pipeline-left {
    width: 100%;
    flex-direction: column-reverse;
    gap: 6px;
  }

  .pipeline-stats {
    position: static;
    width: 100%;
    height: 128px;
    gap: 2px;
  }

  .pipeline-stat-value {
    font-size: 32px;
    line-height: 38px;
  }
  span.pipeline-stat-label {
    min-height: 26px;
  }
  .pipeline-output-grid {
    grid-template-columns: none;
  }

  .pipeline-stat-label {
    font-weight: 600;
  }

  .pipeline-verified-panel {
    min-height: 336px;
    gap: 19px;
    padding: 24px 20px;
  }

  .pipeline-label .framed-text-label {
    font-size: 14px;
    line-height: 19px;
  }

  .pipeline-row {
    grid-template-columns: 68px minmax(0, 1fr) 40px;
    gap: 0;
    min-height: 46px;
    font-size: 14px;
    line-height: 19px;
  }

  .pipeline-current-svg {
    width: 151px;
    height: 388px;
    transform: rotate(90deg);
  }

  .pipeline-output-panel {
    width: 100%;
    min-height: 516px;
    padding: 24px 20px;
  }

  .pipeline-output-grid {
    gap: 0 27px;
  }

  .pipeline-output-card {
    min-height: 0;
    padding: 18px 0;
  }
  .pipeline-output-line {
    display: none;
  }

  .pipeline-output-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
  }

  .pipeline-progress {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
  }

  .pipeline-progress-bars {
    gap: 0;
    justify-content: space-between;
    width: calc(200% + 12px);
  }

  .pipeline-progress-labels span:first-child {
    left: 0px;
  }

  .pipeline-progress-labels span:nth-child(2) {
    left: 60%;
  }

  .pipeline-progress-bar:nth-child(2n) {
    display: none;
  }

  .pipeline-progress-labels span:last-child {
    right: 0px;
  }

  .pipeline-progress-labels span {
    font-size: 12px;
    line-height: auto;
    white-space: nowrap;
  }

  .before-after-section {
    min-height: 0;
  }

  .pipeline-progress-labels {
    margin-top: 2px;
  }
  .before-after-top {
    display: block;
  }

  .before-after-title {
    padding: 28px 20px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .before-after-tabs {
    gap: 0;
    overflow-x: auto;
    padding: 0;
    height: auto;
  }

  .before-after-tab {
    width: 160px;
    min-width: 160px;
    height: 214px;
    gap: 15px;
  }

  .before-after-tab-image {
    width: 160px;
    height: 162px;
  }

  .before-after-cards {
    display: block;
    width: auto;
    transform: none;
    padding: 0 20px;
  }

  .before-after-switch {
    margin-top: 80px;
  }

  .before-after-card {
    display: none;
    padding-top: 0;
  }

  .before-after-card.is-mobile-active {
    display: block;
  }

  .before-after-card-inner {
    min-height: 452px;
  }

  .before-after-card-label {
    position: static;
    width: auto;
    min-height: 36px;
    transform: none;
    border-radius: 0;
  }

  .mood-banner-title {
    right: 20px;
    bottom: auto;
    top: 34px;
  }
  .mood-banner-title .h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .steps-title {
    font-size: 32px;
    line-height: 38px;
  }
      .data-revenue-studio-flow {
        padding-top: 30px;
    }
}
