/**
 * Neo Landing Page Styles
 *
 * @package Laifen_Russia
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --neo-gradient: linear-gradient(91.41deg, #7B62E7 2.29%, #6A94FB 29.52%, #727BF1 60.67%);
    --neo-gradient-bg: linear-gradient(139deg, rgba(114, 123, 241, 1) 3%, rgba(106, 148, 251, 1) 40%, rgba(123, 98, 231, 1) 100%);
    --neo-purple: #7B62E7;
    --neo-blue: #6A94FB;
    --neo-text-primary: #151515;
    --neo-text-secondary: #666666;
    --neo-bg-light: #F9F6FF;
    --neo-bg-accent: #DFDDFF;
}

/* ============================================
   Global Styles
   ============================================ */
.neo-landing {
    background-color: #ffffff!important;
    color: var(--neo-text-primary);
    /* overflow-x: hidden removed - it breaks position: sticky */
    max-width: 100vw;
}

/* Prevent horizontal overflow - use clip instead of hidden to avoid breaking position: sticky */
body.page-template-neo-landing {
    overflow-x: clip;
}

/* Force hide any slider navigation buttons globally on neo-landing page */
.neo-landing button[class*="swiper-button"],
.neo-landing button[class*="slider"],
.neo-landing button[class*="prev"],
.neo-landing button[class*="next"],
.neo-landing .swiper-button-prev,
.neo-landing .swiper-button-next {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.neo-landing .lf-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (min-width: 768px) {
    .neo-landing .lf-container {
        padding: 0 50px;
    }
}

.neo-landing .section-padding {
    padding-top: clamp(40px, 8vw, 80px);
    padding-bottom: clamp(40px, 8vw, 80px);
}

/* Neo Color Text Gradient */
.neo-color,
.neo-color-text {
    background: var(--neo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Neo Title */
.neo-title {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 40px);
}

.neo-title br {
    display: block;
}

.neo-sub-title {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--neo-text-secondary);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.neo-sub-title br {
    display: block;
}
.neo-vs-subtitle .neo-sub-title {
    position: absolute;
    left: 50%;
    top: clamp(5px, 2vw, 20px);
    transform: translateX(-50%);
    font-size: clamp(10px, 1.5vw, 25px);
    color: #666;
    max-width: 800px;
    white-space: nowrap;
    color: #000000;
    font-weight: bold;
}
/* Responsive Utilities */
.neo-landing .hide-on-mobile {
    display: block;
}

.neo-landing .hide-on-desktop {
    display: none;
}

.neo-landing .mobile-only {
    display: none !important;
}

.neo-landing .desktop-only {
    display: block !important;
}

@media screen and (max-width: 767px) {
    .neo-landing .hide-on-mobile {
        display: none;
    }

    .neo-landing .hide-on-desktop {
        display: block;
    }

    .neo-landing .mobile-only {
        display: block !important;
    }

    .neo-landing .desktop-only {
        display: none !important;
    }
    .neo-vs-item-1 .neo-vs-subtitle .neo-sub-title {
        text-align: center;
        line-height: 1.3;
    }
}

/* Media Border Radius */
.neo-landing .media-b-r {
    border-radius: clamp(8px, 1vw, 16px);
}

/* ============================================
   Sticky Navigation
   ============================================ */
.neo-sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    z-index: 1000;
}

.neo-sticky-nav__wrapper {
    border-bottom: 1px solid #d5d5d5;
}

.neo-sticky-nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.neo-sticky-nav__inner {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.neo-sticky-nav__brand-title {
    font-weight: 700;
    font-size: clamp(0.804rem, 0.516rem + 1.227vw, 1.988rem);
    text-decoration: none;
}

.neo-sticky-nav__desktop-nav {
    display: none;
    flex-grow: 1;
}

.neo-sticky-nav__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 0;
    justify-content: flex-end;
}

.neo-sticky-nav__nav-item {
    display: inline-flex;
}

.neo-sticky-nav__nav-link {
    padding: 0.75rem 1rem;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.neo-sticky-nav__nav-link::after {
    content: attr(title);
    font-weight: 600;
    font-size: 14px;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.neo-sticky-nav__nav-link:hover,
.neo-sticky-nav__nav-link.active {
    font-weight: 600;
}

.neo-sticky-nav__buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.neo-sticky-nav__btn {
    display: inline-block;
    padding: 10px 24px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 24px;
}

.neo-sticky-nav__btn:hover {
    transform: translateY(-1px);
}

.neo-sticky-nav__btn--1:hover {
    background: var(--hover-bg, #ffffff) !important;
    color: var(--hover-color, #007bff) !important;
    border-color: var(--hover-border, #007bff) !important;
}

.neo-sticky-nav__btn--2:hover {
    background: var(--hover-bg) !important;
    color: var(--hover-color, #ffffff) !important;
}

.neo-sticky-nav__mobile-nav {
    display: block;
    padding: 12px 0;
    width: 100%;
    overflow: hidden;
}

.neo-sticky-nav__mobile-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 2px;
    touch-action: pan-x;
}

.neo-sticky-nav__mobile-scroll::-webkit-scrollbar {
    display: none;
}

.neo-sticky-nav__mobile-nav .neo-sticky-nav__nav-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    min-width: 100%;
}

.neo-sticky-nav__mobile-nav .neo-sticky-nav__nav-link {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media screen and (max-width: 768px) {
    .neo-sticky-nav__buttons {
        margin-left: auto;
        gap: 4px;
    }

    .neo-sticky-nav__btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media screen and (min-width: 1024px) {
    .neo-sticky-nav__desktop-nav {
        display: flex;
    }

    .neo-sticky-nav__mobile-nav {
        display: none;
    }

    .neo-sticky-nav__btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Header hidden state - for scroll behavior */
.header-section.laifen-nav-hidden {
    transform: translateY(-100%);
}

/* ============================================
   Hero Banner
   ============================================ */
.neo-hero-banner {
    position: relative;
}

/* Hide any slider navigation buttons - force hide with multiple selectors */
.neo-hero-banner .swiper-button-prev,
.neo-hero-banner .swiper-button-next,
.neo-hero-banner .hero-slider__nav,
.neo-hero-banner button[class*="prev"],
.neo-hero-banner button[class*="next"],
.neo-hero-banner .slick-prev,
.neo-hero-banner .slick-next,
section.neo-hero-banner ~ button,
.neo-hero-banner + button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Also hide any absolutely positioned buttons near hero */
.neo-hero-banner__container button[style*="position: absolute"],
.neo-hero-banner__container > button {
    display: none !important;
}

.neo-hero-banner__container {
    position: relative;
}

.neo-hero-banner__content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
}

.neo-hero-banner__subheading {
    margin-bottom: 0.5rem;
    line-height: normal;
    font-weight: 600;
    font-size: clamp(30px, 2.5vw, 60px);
    background: var(--neo-gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neo-hero-banner__heading {
    line-height: 111.765%;
    word-spacing: 0.001em;
    font-size: clamp(17px, 1.5vw, 32px);
    margin-bottom: 0;
}

.neo-hero-banner__buttons {
    display: flex;
    gap: 0 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(20px, 3vw, 40px);
}

.neo-hero-banner__buttons .button {
    height: 42px;
    padding: 0 1.5rem;
    font-size: clamp(12px, 1vw, 18px);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.neo-hero-banner__buttons .video-button {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    cursor: pointer;
}

.neo-hero-banner__buttons .buy-button {
    border: 1px solid #727BF1;
}

.neo-hero-banner__image {
    position: relative;
    width: 100%;
    line-height: 0;
}

.neo-hero-banner__image img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .neo-hero-banner__buttons .button {
        height: 32px;
        padding: 0 1.3rem;
        font-size: 11px;
    }

    .neo-hero-banner__buttons {
        margin-top: clamp(15px, 4vw, 25px);
        gap: 0.8rem;
    }

    .neo-hero-banner__content {
        top: 0.5rem;
        width: 100%;
        left: 0 !important;
        padding: 0 1rem;
        transform: translateY(0) !important;
    }
    .neo-hero-banner__subheading {
        font-size: clamp(18px, 2.5vw, 40px);
    }

    .neo-hero-banner__heading {
        font-size: clamp(12px, 1.5vw, 24px);
    }
}

/* Video Modal */
.neo-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.neo-video-modal.active {
    display: flex;
}

.neo-video-modal__container {
    position: relative;
    width: 80%;
    max-width: 1000px;
}

.neo-video-modal__container video {
    width: 100%;
    object-fit: contain;
}

.neo-video-modal__close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .neo-video-modal__container {
        width: 90%;
    }

    .neo-video-modal__close {
        top: -40px;
        right: 0;
    }
}

/* ============================================
   Features Grid
   ============================================ */
.section-neo-features {
    overflow-x: hidden;
}

.section-neo-features .section-title {
    text-align: center;
}

.section-neo-features .section-title br {
    display: none;
}

.neo-features-grid {
    display: grid;
    grid-template-columns: repeat(50, auto);
    grid-template-rows: repeat(18, auto);
    gap: 16px;
    margin-top: clamp(25px, 5vw, 50px);
    max-width: 100%;
    overflow: hidden;
}

.neo-feature-item {
    position: relative;
}

.neo-feature-item .feature-image {
    width: 100%;
    height: 100%;
}

.neo-feature-item .feature-content {
    height: 100%;
}

.neo-feature-item .feature-image_pc {
    display: block;
}

.neo-feature-item .feature-image_mb {
    display: none;
}

.neo-feature-item .feature-title {
    position: absolute;
    font-size: clamp(10px, 2vw, 20px);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.neo-feature-item .feature-title div,
.neo-feature-item .feature-title span {
    background: var(--neo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.neo-feature-item .feature-title2 {
    position: absolute;
    font-size: clamp(10px, 2vw, 20px);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

/* Feature Grid Positions - PC */
.neo-feature-item-1 { grid-column: 1 / 33; grid-row: 1 / 1; }
.neo-feature-item-1 .feature-title { left: clamp(15px, 3%, 40px); top: 50%; transform: translateY(-50%); }

.neo-feature-item-2 { grid-column: 1 / 18; grid-row: 2 / 8; }
.neo-feature-item-2 .feature-title { left: 50%; top: clamp(10px, 3%, 40px); transform: translateX(-50%); }

.neo-feature-item-3 { grid-column: 33 / 51; grid-row: 1 / 2; }
.neo-feature-item-3 .feature-title { left: clamp(10px, 5%, 40px); top: clamp(9px, 5%, 40px); }
.neo-feature-item-3 .feature-title2 { left: clamp(10px, 5%, 40px); bottom: clamp(9px, 5%, 40px); }

.neo-feature-item-4 { grid-column: 36 / 51; grid-row: 2 / 6; }
.neo-feature-item-4 .feature-title { left: clamp(10px, 3%, 40px); top: clamp(9px, 3%, 40px); font-size: clamp(9px, 2vw, 20px); }

.neo-feature-item-5 { grid-column: 18 / 36; grid-row: 2 / 8; }
.neo-feature-item-5 .feature-title { left: clamp(15px, 3%, 40px); bottom: clamp(15px, 3%, 40px); }

.neo-feature-item-6 { grid-column: 36 / 51; grid-row: 6 / 18; }
.neo-feature-item-6 .feature-title { left: 50%; top: clamp(10px, 3%, 30px); transform: translateX(-50%); text-align: center; }

.neo-feature-item-7 { grid-column: 18 / 36; grid-row: 8 / 10; }
.neo-feature-item-7 .feature-title { left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; line-height: 1.3; }
.neo-feature-item-7 .feature-title .sones { font-size: clamp(18px, 2.5vw, 50px) !important; }

.neo-feature-item-8 { grid-column: 18 / 27; grid-row: 10 / 18; }
.neo-feature-item-8 .feature-title { left: 50%; top: clamp(10px, 3%, 30px); transform: translateX(-50%); text-align: center; width: 90%; line-height: 1.3; font-size: clamp(8px, 2vw, 20px)!important;white-space: nowrap !important; }

.neo-feature-item-9 { grid-column: 27 / 36; grid-row: 10 / 18; }
.neo-feature-item-9 .feature-title { left: 50%; top: clamp(10px, 3%, 30px); transform: translateX(-50%); text-align: center; width: 90%; line-height: 1.3; font-size: clamp(8px, 2vw, 20px)!important;white-space: nowrap !important; }

.neo-feature-item-10 { grid-column: 1 / 18; grid-row: 8 / 18; }
.neo-feature-item-10 .feature-title { left: 50%; top: clamp(10px, 3%, 40px); transform: translateX(-50%); text-align: center; font-size: clamp(9px, 2vw, 20px) !important; }

/* Feature2 Tabs List Container */
.neo-feature-item .tabs-list-container {
    position: absolute;
    left: clamp(10px, 2vw, 20px);
    top: 10px;
}

.neo-feature-item .tabs-list-container .tabs-list {
    margin-bottom: clamp(8px, 1vw, 30px);
}

.neo-feature-item .tabs-list-container .neo-color-text {
    font-size: clamp(10px, 2vw, 25px);
    font-weight: 700;
}
.tabs-list-container .neo-color-text {
    font-size: clamp(10px, 2vw, 25px);
    font-weight: 700;
}
.tabs-list-container .tabs-list-text {
    font-size: clamp(5px, 1vw, 15px);
}
.neo-feature-item .tabs-list-container .neo-color-text svg {
    width: clamp(3px, 2vw, 15px);
    height: clamp(3px, 2vw, 15px);
    margin-left: clamp(2px, 1vw, 6px);
}

.neo-feature-item .tabs-list-container .tabs-list-text {
    font-size: clamp(5px, 1vw, 15px);
}

@media screen and (max-width: 768px) {
    .section-neo-features .section-title br {
        display: block;
    }

    .section-neo-features {
        padding: 0 10px;
        overflow-x: hidden;
    }

    .neo-features-grid {
        display: grid;
        grid-template-columns: repeat(30, 1fr);
        grid-template-rows: repeat(30, auto);
        gap: 8px;
    }

    .neo-feature-item .feature-image_pc { display: none; }
    .neo-feature-item .feature-image_mb { display: block; width: 100%; height: auto; }

    .neo-feature-item .feature-image {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

    /* Simplified mobile grid layout */
    .neo-feature-item-1 {
        grid-column: 1 / -1;
        grid-row: 1 / 1;
      }
      .neo-feature-item-2 {
        grid-column: 1 / 17;
        grid-row: 2 / 10;
      }
      .neo-feature-item-3 {
        grid-column: 17 / 31;
        grid-row: 2 / 4;
      }
  
      .neo-feature-item-5 {
        grid-column: 1 / 17;
        grid-row: 10 / 16;
      }
      .neo-feature-item-4 {
        grid-column: 17 / 31;
        grid-row: 4 / 11;
      }
      .neo-feature-item-6 {
        grid-column: 17 / 31;
        grid-row: 11 / 20;
      }
      .neo-feature-item-7 {
        grid-column: 17 / 31;
        grid-row: 20 / 26;
      }
      .neo-feature-item-8 {
        grid-column: 17 / 24;
        grid-row: 26 / 30;
      }
      .neo-feature-item-9 {
        grid-column: 24 / 31;
        grid-row: 26 / 30;
      }
      .neo-feature-item-10 {
        grid-column: 1 / 17;
        grid-row: 16 / 30;
      }
    .neo-feature-item-3 .feature-title { line-height: 1.1; font-size: 10px; }
    .neo-feature-item-3 .feature-title2 { line-height: 1.1; font-size: 9px; }
    .neo-feature-item-6 .feature-title br { display: none; }
    .neo-feature-item-8 .feature-title { line-height: 1.2; font-size: 9px; }
    .neo-feature-item-9 .feature-title { line-height: 1.2; font-size: 9px; }

    .neo-feature-item .feature-title2 {
        font-size: 9px;
        white-space: normal;
    }

    .neo-feature-item .tabs-list-container {
        right: clamp(6px, 1vw, 25px);
        left: initial !important;
    }

    .neo-feature-item .tabs-list-container .tabs-list {
        margin-bottom: 4px;
    }

    .neo-feature-item .tabs-list-container .neo-color-text {
        font-size: 12px;
    }
    .neo-feature-item .feature-title2 {
        font-size: 9px;
        white-space: normal;
    }
    .neo-feature-item .tabs-list-container .neo-color-text svg {
        width: 6px;
        height: 6px;
        margin-left: 2px;
    }

    .neo-feature-item-10 .feature-title {
        width: 100%;
        white-space: nowrap;
    }
}

/* ============================================
   Video Section
   ============================================ */
.neo-video-section {
    position: relative;
    overflow-x: hidden;
}

.neo-video-section__header {
    text-align: center;
    margin-bottom: clamp(25px, 5vw, 30px);
    padding: 0 30px;
}

.neo-video-section__content {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Full width video section (no container) */
.neo-video-section__content:not(.lf-container) {
    padding: 0;
}

.neo-video-section__content:not(.lf-container) .neo-video-section__wrapper {
    border-radius: 0;
}

.neo-video-section__content:not(.lf-container) .neo-video-section__wrapper video,
.neo-video-section__content:not(.lf-container) .neo-video-section__wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.neo-video-section__title-icon {
    display: inline;
    width: clamp(30px, 5vw, 60px);
}

.neo-video-section__wrapper {
    position: relative;
    border-radius: clamp(8px, 1vw, 16px);
    overflow: hidden;
    max-width: 100%;
}

.neo-video-section__wrapper video,
.neo-video-section__wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.neo-video-section__wrapper .video-feature-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.neo-video-section__content.lf-container .neo-video-section__wrapper img {
    border-radius: clamp(8px, 1vw, 16px);
}

.neo-video-section__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
    display: none !important; /* 隐藏播放按钮，因为视频已自动播放 */
}

.neo-video-section__play-button:hover {
    transform: translate(-50%, -50%);
}

.neo-video-section__play-button svg {
    width: clamp(50px, 10vw, 80px);
    height: auto;
}

/* Tabs Wrapper */
.neo-video-section .tabs-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: clamp(30px, 5vw, 150px);
}

.neo-video-section .tabs-list {
    margin-bottom: clamp(25px, 5vw, 30px);
    text-align: center;
}

.neo-video-section .tabs-list .neo-color-text {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    line-height: 1;
}

.neo-video-section .tabs-list-text {
    font-size: clamp(15px, 3vw, 24px);
}

.neo-video-section .tabs-list .neo-color-text svg {
    width: clamp(8px, 3vw, 20px);
    height: clamp(8px, 3vw, 20px);
    margin-left: 5px;
}

/* Bottom Tabs */
.neo-video-section .bottom-tabs-content {
    position: relative;
}

.neo-video-section .bottom-tabs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: clamp(10px, 3vw, 30px);
}

.neo-video-section .bottom-tabs-overlay .tab-item {
    text-align: center;
    margin-right: clamp(20px, 3vw, 40px);
}

.neo-video-section .bottom-tabs-overlay .tab-item:last-child {
    margin-right: 0 !important;
}

.neo-video-section .bottom-tabs-overlay .tab-number {
    font-size: clamp(25px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.neo-video-section .bottom-tabs-overlay .tab-text {
    font-size: clamp(12px, 2vw, 18px);
    color: #ffffff;
    font-weight: 600;
}

/* Absolute Tabs */
.neo-video-section .absolute-tabs-content {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.neo-video-section .absolute-tabs-content .tab-item {
    text-align: center;
}

.neo-video-section .absolute-tabs-content .tab-number {
    background: var(--neo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1;
    font-size: clamp(35px, 4vw, 55px);
}

.neo-video-section .absolute-tabs-content .tab-text {
    font-weight: 700;
    color: #000000;
    font-size: clamp(13px, 4vw, 18px);
}

/* Absolute Tabs 2 */
.neo-video-section .bottom-tabs-overlay2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 6vw, 200px);
    box-sizing: border-box;
}

.neo-video-section .bottom-tabs-overlay2 .tab-item {
    color: #000000;
    font-size: clamp(25px, 4vw, 40px);
}

.neo-video-section .bottom-tabs-overlay2 .tab-text {
    font-size: clamp(15px, 2vw, 20px);
    text-align: center;
}

@media screen and (max-width: 768px) {
    .neo-video-section__play-button svg {
        width: 40px;
        height: 40px;
    }
    .neo-video-section .bottom-tabs-overlay2 .tab-number br,
    .neo-video-section .bottom-tabs-overlay2 .tab-text br {
        display: none;
    }
    .neo-video-section .bottom-tabs-overlay {
        position: relative;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 10px;
        justify-content: center;
    }

    .neo-video-section .bottom-tabs-overlay .tab-item {
        margin-right: 0;
    }

    .neo-video-section .bottom-tabs-overlay .tab-number {
        font-size: 22px;
    }

    .neo-video-section .bottom-tabs-overlay .tab-text {
        font-size: 11px;
    }

    .neo-video-section__content {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        overflow: hidden;
    }

    /* Full width video section on mobile - also needs padding */
    .neo-video-section__content:not(.lf-container) {
        padding-left: 15px;
        padding-right: 15px;
    }

    .neo-video-section__wrapper {
        max-width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }

    .neo-video-section__wrapper video,
    .neo-video-section__wrapper img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }

    .neo-video-section__header {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .neo-video-section .tabs-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .neo-video-section .tabs-list {
        margin-bottom: 10px;
    }

    .neo-video-section .tabs-list .neo-color-text {
        font-size: 22px;
    }

    .neo-video-section .tabs-list-text {
        font-size: 12px;
    }

    .neo-video-section .tabs-list .neo-color-text svg {
        width: 10px;
        height: 10px;
    }

    .neo-video-section .bottom-tabs-overlay .tab-number,
    .neo-video-section .absolute-tabs-content .tab-number {
        background: var(--neo-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .neo-video-section .bottom-tabs-overlay .tab-text,
    .neo-video-section .absolute-tabs-content .tab-text {
        color: #000000 !important;
        font-weight: 700;
    }

    .neo-video-section .absolute-tabs-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 15px;
        text-align: center;
    }

    .neo-video-section .absolute-tabs-content .tab-item {
        text-align: center;
    }

    .neo-video-section .absolute-tabs-content .tab-number {
        font-size: 26px;
    }

    .neo-video-section .absolute-tabs-content .tab-text {
        font-size: 12px;
    }

    .neo-video-section .bottom-tabs-overlay2 {
        position: relative;
        top: auto !important;
        left: auto;
        transform: none !important;
        justify-content: center !important;
        gap: 20px;
        padding: 15px 10px;
    }

    .neo-video-section .bottom-tabs-overlay2 .tab-item {
        font-size: 18px;
    }

    .neo-video-section .bottom-tabs-overlay2 .tab-text {
        font-size: 11px;
    }

    .neo-video-section .bottom-tabs-content2 .tab-item-2 {
        padding-left: 20px !important;
        position: relative;
    }

    .neo-video-section .bottom-tabs-overlay2 .tab-item-2:last-child::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background-color: #000000;
    }

    .neo-feature-item-7 .feature-content .feature-image_mb {
        height: 100%;
    }
    .neo-feature-item-8 .feature-content .feature-image_mb ,.neo-feature-item-9 .feature-content .feature-image_mb {
        height: 100%;
    }
}

@media screen and (min-width: 769px) {
    .neo-video-section .neo-sub-title br {
        display: none;
    }
}

/* ============================================
   VS Comparison
   ============================================ */
.neo-vs-section {
    position: relative;
    overflow-x: hidden;
}

.neo-vs-section .neo-vs-header {
    text-align: center;
    margin-bottom: clamp(25px, 5vw, 30px);
}

.neo-vs-section .neo-vs-content {
    width: 100%;
    margin-bottom: 15px;
}

.neo-vs-section .neo-vs-wrapper {
    position: relative;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.neo-vs-section .neo-vs-item {
    position: relative;
}

.neo-vs-section .neo-vs-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.tab-item-2 .tab-number,.tab-item-1 .tab-number {
    font-weight: 700;
    align-items: center;
    line-height: 1;
    display: flex;
    justify-content: center;
}

.tab-item-2 .tab-text,.tab-item-1 .tab-text {
    align-items: center;
}
.neo-vs-section .neo-vs-icon svg {
    width: clamp(30px, 10vw, 80px);
    height: clamp(30px, 10vw, 80px);
}
.neo-vs-image, .neo-vs-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.neo-vs-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.neo-vs-section .neo-vs-image,
.neo-vs-section .neo-vs-video-wrapper {
    position: relative;
    width: 100%;
}

.neo-vs-section .neo-vs-video-wrapper {
    cursor: pointer;
}

.neo-vs-section .neo-vs-video-wrapper video {
    width: 100%;
    object-fit: cover;
}

.neo-vs-section .neo-vs-video-wrapper svg.neo-vs-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(20px, 10vw, 60px);
    height: clamp(20px, 10vw, 60px);
}

.neo-vs-section .neo-vs-subtitle .neo-sub-title {
    position: absolute;
    left: 50%;
    top: clamp(5px, 2vw, 20px);
    transform: translateX(-50%);
    font-size: clamp(10px, 1.5vw, 25px);
    max-width: 800px;
    white-space: nowrap;
    color: #000000;
    font-weight: bold;
}

.neo-vs-section .neo-vs-item-1 .neo-vs-subtitle .neo-sub-title br {
    display: none;
}

@media screen and (max-width: 768px) {
    .neo-vs-section .neo-vs-wrapper {
        gap: 10px;
    }

    .neo-vs-section .neo-vs-icon svg {
        width: 40px;
        height: 40px;
    }

    .neo-vs-section .neo-vs-item-1 .neo-vs-subtitle .neo-sub-title br {
        display: block;
    }

    .neo-vs-section .neo-vs-item-1 .neo-vs-subtitle .neo-sub-title {
        text-align: center;
        line-height: 1.3;
    }
}

/* ============================================
   Swiper Gallery
   ============================================ */
.neo-swiper-section .neo-swiper-header {
    text-align: center;
    margin-bottom: clamp(7px, 2vw, 20px);
}

.neo-swiper-section .neo-swiper-header .neo-title br {
    display: none;
}

.neo-swiper-section .neo-swiper-pagination {
    text-align: center;
    margin-bottom: clamp(20px, 2vw, 30px);
    position: relative !important;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.neo-swiper-section .pagination-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.neo-swiper-section .pagination-item.active {
    opacity: 1;
}

.neo-swiper-section .pagination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neo-swiper-section .neo-swiper {
    width: 100%;
    overflow: hidden;
}

.neo-swiper-section .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.neo-swiper-section .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.neo-swiper-section .slide-text {
    margin-top: 15px;
    text-align: center;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #000;
}

.neo-swiper-section .slide-text div {
    font-weight: bold;
}

.neo-swiper-section .swiper-video-wrapper {
    position: relative;
}

.neo-swiper-section .mb-slide-text {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    background-color: #E1DDF8;
    padding: 5px 5px 5px 50px;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

.neo-swiper-section .slide-text-img {
    position: absolute;
    left: 10px;
    bottom: 5px;
    width: 80px !important;
}

@media screen and (max-width: 768px) {
    .neo-swiper-section .neo-swiper-header .neo-title br {
        display: block;
    }

    .neo-swiper-section .neo-swiper-header {
        padding: 0 15px;
    }

    .neo-swiper-section .neo-swiper-pagination {
        gap: 8px;
        flex-wrap: wrap;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .neo-swiper-section .pagination-item {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }

    .neo-swiper-section .swiper-slide img {
        border-radius: 8px;
    }

    .neo-swiper-section .slide-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .neo-swiper-section .mb-slide-text {
        display: block;
        padding: 8px 8px 8px 45px;
        font-size: 11px;
    }

    .neo-swiper-section .slide-text-img {
        width: 50px !important;
        left: 5px;
        bottom: 3px;
    }

    .neo-swiper-section .pc-slide-text {
        display: none;
    }
}

/* ============================================
   Comparison Table
   ============================================ */
.neo-comparison-table .neo-vs-header {
    text-align: center;
    margin-bottom: clamp(25px, 5vw, 30px);
}

.neo-comparison-table .neo-vs-table-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neo-comparison-table .neo-vs-table-image {
    text-align: center;
    height: clamp(50px, 30vw, 250px);
    padding-top: clamp(10px, 1.5vw, 25px);
}

.neo-comparison-table .neo-vs-table-image img {
    height: 100%;
    object-fit: contain;
}

.neo-comparison-table .neo-vs-content-line {
    text-align: center;
    font-size: clamp(10px, 1.5vw, 25px);
    line-height: 1.4;
}

.neo-comparison-table .neo-vs-content-line br {
    display: block;
}

.neo-comparison-table .neo-vs-content-line-heading {
    height: clamp(30px, 8vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-comparison-table .neo-vs-content-line-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(50px, 8vw, 170px);
}

.neo-comparison-table .neo-vs-container-1 {
    flex: 0.7;
    background-color: var(--neo-bg-light);
    border-radius: 10px 0 0 10px;
}

.neo-comparison-table .neo-vs-container-2 {
    flex: 1;
    background-color: var(--neo-bg-accent);
    border-radius: 10px;
    padding-top: clamp(12px, 1.5vw, 35px);
    padding-bottom: clamp(12px, 1.5vw, 35px);
}

.neo-comparison-table .neo-vs-container-2 .neo-vs-table-image {
    padding-top: 0;
}

.neo-comparison-table .neo-vs-container-2 .neo-vs-content-line {
    color: #3E3CBC;
    font-weight: bold;
    padding-top: clamp(10px, 1.5vw, 25px);
    padding-bottom: clamp(10px, 1.5vw, 25px);
}

.neo-comparison-table .neo-vs-container-3 {
    flex: 0.9;
    background-color: var(--neo-bg-light);
    border-radius: 0 10px 10px 0;
}

.neo-comparison-table .neo-vs-container-3 .neo-vs-content-line {
    color: #4C4C4C;
}

.neo-comparison-table .neo-vs-container-1 .neo-vs-content-line,
.neo-comparison-table .neo-vs-container-3 .neo-vs-content-line {
    border-bottom: 1px solid var(--neo-bg-accent);
    padding-top: clamp(10px, 1.5vw, 25px);
    padding-bottom: clamp(10px, 1.5vw, 25px);
}

.neo-comparison-table .neo-vs-container-1 .neo-vs-content-line:last-child,
.neo-comparison-table .neo-vs-container-3 .neo-vs-content-line:last-child {
    border-bottom: none;
}

/* Comparison Table Mobile */
@media screen and (max-width: 768px) {
    .neo-comparison-table .neo-vs-table-wrapper {
        flex-direction: row;
        align-items: stretch;
    }

    .neo-comparison-table .neo-vs-container-1,
    .neo-comparison-table .neo-vs-container-2,
    .neo-comparison-table .neo-vs-container-3 {
        flex: 1;
    }

    .neo-comparison-table .neo-vs-table-image {
        height: 60px;
        padding-top: 8px;
    }

    .neo-comparison-table .neo-vs-table-image img {
        height: 100%;
        max-width: 100%;
    }

    .neo-comparison-table .neo-vs-content-line {
        font-size: 9px;
        padding: 6px 3px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .neo-comparison-table .neo-vs-content-line-heading {
        height: auto;
        min-height: 35px;
        font-size: 10px;
    }

    .neo-comparison-table .neo-vs-content-line-3 {
        height: auto;
        min-height: 40px;
    }

    .neo-comparison-table .neo-vs-container-2 .neo-vs-content-line {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .neo-comparison-table .neo-vs-container-1 .neo-vs-content-line,
    .neo-comparison-table .neo-vs-container-3 .neo-vs-content-line {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* ============================================
   Product Info Grid
   ============================================ */
.neo-product-info .neo-vs-header {
    text-align: center;
    margin-bottom: clamp(25px, 5vw, 30px);
}

.neo-product-info .neo-vs-product-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(10px, 3vw, 30px);
    width: 100%;
}

.neo-product-info .neo-vs-container {
    position: relative;
}

.neo-product-info .neo-vs-image-container {
    position: relative;
    width: 100%;
}

.neo-product-info .neo-vs-image {
    width: 100%;
}

.neo-product-info .neo-vs-product-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: clamp(20px, 5vw, 200px);
    font-size: clamp(10px, 2vw, 25px);
    text-align: center;
}
.neo-vs-container-2 .neo-vs-product-text {
    display: none;
}
@media screen and (min-width: 768px) {
    .neo-product-info .neo-vs-product-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .neo-product-info .neo-vs-container-1 {
        grid-column: 1;
        grid-row: 1 / span 3;
    }

    .neo-product-info .neo-vs-container-2,
    .neo-product-info .neo-vs-container-3,
    .neo-product-info .neo-vs-container-4 {
        grid-column: 2;
    }

    .neo-product-info .mobile-only {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .neo-product-info .neo-vs-product-wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    .neo-product-info .neo-vs-container-1 {
        grid-column: 1 / span 3;
        grid-row: 1;
    }

    .neo-product-info .neo-vs-container-2{
        grid-column: 1;
    }

    .neo-product-info .neo-vs-container-3{
        grid-column: 2;
    }

    .neo-product-info .neo-vs-container-4{
        grid-column: 3;
    }

    .neo-product-info .mobile-only {
        display: none;
    }
    .neo-vs-container-2 .neo-vs-product-text {
        display: block !important;
    }

    .neo-product-info .pc-only {
        display: none !important;
    }

    .neo-product-info .neo-vs-product-text {
        position: relative !important;
        transform: translateY(0) !important;
        text-align: center !important;
        right: 0 !important;
        top: 0 !important;
        left: 0 !important;
        margin-top: 10px;
        font-size: 12px;
    }

    .neo-product-info .neo-vs-image {
        border-radius: 10px;
    }
}

/* ============================================
   Award Carousel
   ============================================ */
.neo-award-section {
    margin: 0 auto;
}

.neo-award-section .swiper-container {
    padding: 50px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.neo-award-section .neo-title {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.neo-award-section .award-swiper {
    position: relative;
    overflow: visible;
    width: 100%;
    height: auto;
    min-height: 330px;
    padding-bottom: 20px;
}

.neo-award-section .award-swiper .swiper-slide {
    background-color: #F6F7F7;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 280px;
    width: 32%;
    margin-right: 8px;
}

.neo-award-section .award-swiper .swiper-slide img {
    height: 150px;
    width: auto;
    max-width: 100%;
    flex-shrink: 0;
    object-fit: contain;
}

.neo-award-section .award-title {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
    color: #000;
}

.neo-award-section .swiper-pagination {
    left: 50%;
    transform: translate(-50%, 10px);
    display: none;
}

.neo-award-section .swiper-pagination .swiper-pagination-bullet {
    margin: 0 4px;
    width: 10px;
    height: 10px;
}

.neo-award-section .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000;
}

.neo-award-section .swiper-button-next,
.neo-award-section .swiper-button-prev {
    right: 50px;
    color: #000;
    font-size: 12px;
    background-color: #919191;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.neo-award-section .swiper-button-next:after,
.neo-award-section .swiper-button-prev:after {
    font-size: 25px;
    color: #fff;
}

.neo-award-section .swiper-button-prev {
    left: 50px;
}

@media screen and (max-width: 1300px) {
    .neo-award-section .award-swiper {
        min-height: 17rem;
    }

    .neo-award-section .award-swiper .swiper-slide {
        padding: 2rem;
        min-height: 15rem;
    }

    .neo-award-section .award-swiper .swiper-slide img {
        height: 8rem;
    }

    .neo-award-section .award-swiper .swiper-slide .award-title {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1100px) {
    .neo-award-section .award-swiper {
        min-height: 14rem;
    }

    .neo-award-section .award-swiper .swiper-slide {
        min-height: 12rem;
    }

    .neo-award-section .award-swiper .swiper-slide img {
        height: 6rem;
    }
}

@media screen and (max-width: 750px) {
    .neo-award-section {
        padding: 0px 20px 50px;
    }

    .neo-award-section .neo-title {
        padding: 0 20px;
    }

    .neo-award-section .award-swiper {
        min-height: 12rem;
    }

    .neo-award-section .swiper-pagination {
        display: block;
    }

    .neo-award-section .swiper-button-prev,
    .neo-award-section .swiper-button-next {
        display: none !important;
    }

    .neo-award-section .swiper-container {
        padding: 30px 0 0;
        background-color: transparent !important;
    }

    .neo-award-section .award-swiper .swiper-slide {
        background-color: #F6F7F7;
        border-radius: 10px;
        padding: 20px 13px;
        width: calc(50% - 10px);
        min-height: 10rem;
    }

    .neo-award-section .award-swiper .swiper-slide .award-title {
        font-size: 0.8rem !important;
    }
}

/* ============================================
   Accordion FAQ
   ============================================ */
.neo-accordion-faq {
    padding: 40px 0;
}

.neo-accordion-faq__container {
    margin: 0 auto;
    padding-left: clamp(0px, 15vw, 150px);
    padding-right: clamp(0px, 15vw, 150px);
}

.neo-accordion-faq__title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.neo-accordion-faq__item {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
    margin-bottom: 0;
}

.neo-accordion-faq__item:first-child {
    border-top: 1px solid rgba(221, 221, 221, 0.5);
}

.neo-accordion-faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.neo-accordion-faq__question {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.neo-accordion-faq__icon {
    min-width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.neo-accordion-faq__item.active .neo-accordion-faq__icon {
    transform: rotate(180deg);
}

.neo-accordion-faq__content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.neo-accordion-faq__answer {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
}

.neo-accordion-faq__answer p {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
    .neo-accordion-faq {
        padding: 30px 0;
    }

    .neo-accordion-faq__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .neo-accordion-faq__title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .neo-accordion-faq__question {
        font-size: 14px;
    }

    .neo-accordion-faq__answer {
        font-size: 13px;
    }
}

/* ============================================
   Global Mobile Responsive Fixes (max-width: 767px)
   ============================================ */
@media screen and (max-width: 767px) {
    /* Global Mobile Fixes - 不在 .neo-landing 容器级别设置 overflow-x: hidden，避免破坏 position: sticky */

    .neo-landing .lf-container {
        padding: 0 15px;
        max-width: 100%;
    }

    .neo-landing .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .neo-title {
        font-size: 20px;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .neo-sub-title {
        font-size: 14px;
        padding: 0 10px;
        word-wrap: break-word;
    }

    /* Global Image and Video Fixes */
    .neo-landing img,
    .neo-landing video {
        max-width: 100%;
        height: auto;
    }

    .neo-landing section:not(.neo-sticky-nav) {
        overflow-x: hidden;
    }
}

/* ============================================
   Extra Small Mobile Fixes (max-width: 375px)
   ============================================ */
@media screen and (max-width: 375px) {
    .neo-title {
        font-size: 18px;
    }

    .neo-sub-title {
        font-size: 12px;
    }

    .neo-feature-item .feature-title {
        font-size: 10px;
    }

    .neo-video-section .tabs-list .neo-color-text {
        font-size: 20px;
    }

    .neo-video-section .tabs-list-text {
        font-size: 11px;
    }

    .neo-video-section .bottom-tabs-overlay .tab-number {
        font-size: 18px;
    }

    .neo-video-section .bottom-tabs-overlay .tab-text {
        font-size: 10px;
    }

    .neo-comparison-table .neo-vs-content-line {
        font-size: 8px;
    }

    .neo-swiper-section .pagination-item {
        width: 30px;
        height: 30px;
    }

    .neo-award-section .award-swiper .swiper-slide img {
        height: 50px;
    }

    .neo-award-section .award-title {
        font-size: 10px;
    }
}
