
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

section {
    margin: 0 !important;
    padding: 0;
    display: block;
}



body {
    font-family: 'Alibaba PuHuiTi', 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 !important;
    padding: 0 !important;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #181818;
    color: #fff;
    padding: 0.7em 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-family: 'Alibaba PuHuiTi', 'Montserrat', 'Inter', 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-family: 'Alibaba PuHuiTi', 'Montserrat', 'Inter', 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2.2em;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Alibaba PuHuiTi', 'Montserrat', 'Inter', 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.nav-link:hover, .nav-link:focus {
    color: #00b8d9;
}


.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-item-dropdown .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 160px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00b8d9;
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #000;
    min-width: 100%;
    min-height: 100%;
    display: block;
}

.hero {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin-top: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #000;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}


.rovar-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    margin: 0 !important;
    margin-top: 70px !important;
    background: #f5f5f5;
    padding: 0 !important;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rovar-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/rovar.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.rovar-content {
    position: absolute;
    top: clamp(2rem, 8vh, 4rem);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: min(1200px, 90vw);
    margin: 0;
    text-align: center;
    padding: 0 clamp(1rem, 4vw, 2rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.rovar-title-top {
    text-align: center;
    margin-bottom: clamp(1rem, 3vh, 2rem);
    margin-top: clamp(1rem, 3vh, 2rem);
}

.rovar-x3-image {
    height: auto;
    max-width: clamp(120px, 20vw, 180px);
    width: auto;
    display: inline-block;
}

.rovar-main-title {
    font-size: clamp(1.5rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #333;
    margin-bottom: clamp(0.5rem, 2vh, 1rem);
    line-height: 1.2;
    margin-top: 0;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.rovar-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #666;
    margin-bottom: clamp(0.5rem, 2vh, 1rem);
    font-weight: 400;
    margin-top: 0;
}

.rovar-button {
    display: inline-block;
    padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(1.2rem, 3vw, 1.6rem);
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.8vw, 0.8rem);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    margin-top: clamp(-1rem, -2vh, -0.5rem);
}

.rovar-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.hero-content {
    z-index: 10;
    text-align: center !important;
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 10px;
    position: relative;
    width: 100%;
    max-width: min(1200px, 90vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    text-align: center;
    font-weight: 300;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight {
    display: block;
    color: #00ff88;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #0066cc, #00ff88);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.robot-image:hover {
    transform: scale(1.05);
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}



.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.tech-features {
    display: grid;
    gap: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tech-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tech-info p {
    opacity: 0.8;
    line-height: 1.6;
}

.tech-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.about-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-values {
    display: grid;
    gap: 2rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(45deg, #0066cc, #00ff88);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.9;
}


.news {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.news-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #00ff88;
}


.careers {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.careers-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.careers-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #00ff88;
}

.job-positions h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.job-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.job-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.job-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.job-item p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.job-location {
    font-size: 0.9rem;
    color: #00ff88;
}


.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0066cc, #00ff88);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff88;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
    }
    
    .nav-item-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: none;
        width: 100%;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        text-align: left;
        display: block;
    }
    
    .dropdown-menu a:hover {
        padding-left: 2rem;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .tech-content,
    .about-content,
    .careers-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.product-card,
.news-card {
    animation: fadeInUp 0.6s ease-out;
}







.team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-member {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.member-info {
  display: flex;
  align-items: flex-start;
  gap: 2em;
}

.member-text {
  flex: 1;
}

.member-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.member-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.member-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.member-info ul {
    list-style: none;
    padding-left: 0;
}

.member-info ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.member-info ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-member {
        padding: 2rem;
    }

    .member-info h3 {
        font-size: 1.8rem;
    }

    .member-info h4 {
        font-size: 1.3rem;
    }
}


.mobile-photo {
  display: none;
}


.desktop-photo {
  display: block;
}


@media (max-width: 800px) {
  .member-info {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .member-text {
    width: 100%;
  }
  .member-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .mobile-photo {
    display: block;
    margin: 0 auto;
  }
  .desktop-photo {
    display: none;
  }
  .member-description {
    width: 100%;
  }
}




.founder-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.products-grid {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
  flex-wrap: wrap;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 2em;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2em;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5em;
  object-fit: cover;
}

.product-content h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #1a253c;
}

.product-content p {
  font-size: 1.08em;
  color: #2d3a4a;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-header h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.section-header p {
  font-size: 1.1em;
  color: #222;
  margin-bottom: 2em;
}


.about-page {
    margin-top: 90px;
    padding: 2rem 0;
}

.about-hero-section {
    margin-top: 70px;
    min-height: 100vh;
    background: url('../img/aboutus/8.png') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem 6rem;
}

.about-hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.about-hero-text {
    max-width: 600px;
    color: #fff;
    text-align: left;
}

.about-hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

.founders-section {
    background: #000;
    padding: 6rem 0;
    margin: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.founder-card {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 3rem;
    background: transparent;
}

.founder-image-wrapper {
    flex-shrink: 0;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.founder-info {
    flex: 1;
    color: #fff;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.founder-title {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.founder-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
}

.founder-description p {
    margin: 0 0 1.5rem 0;
    color: #fff;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

.team-section {
    background: #000;
    padding: 6rem 0;
    margin: 0;
}

.team-description {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

.team-photo-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.team-photo-image {
    max-width: 100%;
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .about-hero-section {
        padding: 3rem 4rem;
    }
    
    .about-hero-text h1 {
        font-size: 1.6rem;
    }
    
    .about-hero-text p {
        font-size: 1rem;
    }
    
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 0;
        min-height: auto;
        height: auto;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        justify-content: flex-start;
        align-items: flex-start;
        display: block;
        padding-top: 100vw;
        position: relative;
    }
    
    .about-hero-content {
        justify-content: center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        display: flex;
        align-items: flex-end;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    }
    
    .about-hero-text {
        max-width: 100%;
        text-align: left;
        padding-bottom: 1rem;
    }
    
    .about-hero-text h1 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .about-hero-text p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .founders-section,
    .team-section {
        padding: 3rem 0;
    }
    
    .founders-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .founder-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-title {
        font-size: 1rem;
    }
    
    .founder-description {
        font-size: 0.9rem;
    }
    
    .team-description {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .team-description p {
        font-size: 1rem;
    }
    
    .team-photo-wrapper {
        padding: 0 1rem;
    }
}

.company-intro {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: url('../img/suzhou_bay.png');
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.company-text {
    position: absolute;
    top: 2rem;
    left: 2rem;
    max-width: 500px;
    padding: 2rem;
    z-index: 2;
}

.company-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 1rem 0;
    color: #000000;
    text-align: left;
}

.founder-name {
    display: inline-block;
    border-bottom: 4px solid #a48cf0;
    padding-bottom: 2px;
}

.founder-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin-left: 2em;
}

.team-stats {
    text-align: center;
    margin: 3rem 0;
}

.team-stats p {
    font-size: 1.08em;
    line-height: 2;
    margin-bottom: 0.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-photo {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.team-photo img {
    max-width: 700px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}


.content-section {
    width: 100%;
}


.news-center {
    padding: 2rem 0;
    margin-top: 70px;
}

.news-center-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.news-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ces-card-clickable {
    cursor: pointer;
}

.news-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    z-index: 1;
}

.news-card-logo-small {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    z-index: 1;
}

.news-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.news-card-tag {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    z-index: 1;
}

.news-card-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    z-index: 1;
}

.news-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
}

.news-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: auto;
}


.news-more-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.news-more-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #1aad19, #2dc653);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 173, 25, 0.3);
}

.news-more-button:hover {
    background: linear-gradient(45deg, #179b16, #28b84a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 173, 25, 0.4);
}

.news-more-button i:first-child {
    font-size: 1.5rem;
}

.news-more-hint {
    margin-top: 1rem;
    color: #999;
    font-size: 0.9rem;
}


.ces-simple-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.ces-simple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.ces-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    padding: 1rem;
    box-sizing: border-box;
}

.ces-modal-content {
    background-color: #2a2a2a;
    margin: 1rem auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 700px;
    width: calc(100% - 2rem);
    position: relative;
    color: #fff;
    display: block;
    min-height: auto;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.ces-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.ces-modal-close:hover {
    color: #00d4ff;
}

.ces-form-title {
    color: #00d4ff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ces-form-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ces-form-group {
    margin-bottom: 1.5rem;
}

.ces-form-group label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ces-form-group input,
.ces-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.ces-form-group input:focus,
.ces-form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.ces-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: #ff4444;
}

.ces-consent-group {
    margin-top: 1.5rem;
}

.ces-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.ces-consent-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.ces-consent-text {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

.ces-consent-link {
    color: #00d4ff;
    text-decoration: underline;
}

.ces-consent-link:hover {
    color: #00b8e6;
}

.ces-captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ces-captcha-image {
    width: 120px;
    height: 50px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
}

.ces-captcha-refresh {
    background: #444;
    border: none;
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.ces-captcha-refresh:hover {
    background: #555;
}

.ces-captcha-container input {
    flex: 1;
    max-width: 150px;
}

.ces-submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #00d4ff, #00a8cc);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.ces-submit-button:hover {
    background: linear-gradient(45deg, #00b8e6, #0099bb);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}


@media (max-width: 768px) {
    .ces-modal {
        padding: 0.5rem;
    }
    
    .ces-modal-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
        max-height: calc(100vh - 1rem);
        width: calc(100% - 1rem);
    }
    
    .ces-form-title {
        font-size: 1.5rem;
    }
    
    .ces-headline {
        font-size: 1.8rem;
    }
    
    .ces-captcha-container {
        flex-wrap: wrap;
    }
    
    .ces-captcha-container input {
        max-width: 100%;
        width: 100%;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .news-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}


@media (max-width: 768px) {
    .about-page {
        margin-top: 70px;
        padding: 1rem 0;
    }
    
    .company-intro {
        margin-bottom: 2rem;
    }
    
    .company-text {
        position: absolute;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
        z-index: 2;
    }
    
    .company-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
        max-width: 100%;
    }
    
    .founder-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto 1.5rem auto;
    }
    
    .member-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .member-text {
        width: 100%;
    }
    
    .member-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .member-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .team-stats {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .team-stats p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .team-photo {
        padding: 0 1rem;
    }
    
    .team-photo img {
        max-width: 100%;
    }
    
    
    .news-center {
        margin-top: 70px;
        padding-top: 2rem;
    }
    
    .news-center-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        word-break: keep-all;
        white-space: nowrap;
    }
    
    .news-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .news-card-image {
        height: 180px;
    }
    
    .news-card-content {
        padding: 1.2rem;
    }
    
    .news-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 0.5rem 0;
    }
    
    .company-text {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 1rem;
    }
    
    .company-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .founder-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-text h3 {
        font-size: 1.6rem;
    }
    
    .member-text p {
        font-size: 0.9rem;
    }
    
    .team-stats p {
        font-size: 0.95rem;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .company-text {
        padding: 1.5rem;
    }
    
    .company-text p {
        font-size: 1.1rem;
    }
    
    .founder-photo {
        width: 180px;
        height: 180px;
    }
}


.rovar-hero {
    margin-top: 90px;
    padding: 4rem 0;
    background: #f5f5f5;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rovar-hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.rovar-title-section {
    margin-bottom: 3rem;
}

.rovar-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
}

.rovar-hero-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.rovar-robots-showcase {
    margin-top: 2rem;
}

.rovar-robots-showcase img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
}

.rovar-scenic {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

.rovar-scenic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-scenic::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/2.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.rovar-scenic-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 1200px;
    position: relative;
    margin-top: 70px;
}


.rovar-scenic-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rovar-scenic-content p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rovar-features-1 {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.rovar-features-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-features-1::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/3.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.rovar-features-1-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 70px;
}

.rovar-features-1-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rovar-text-group-1 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rovar-text-group-2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
}

.rovar-feature-text-block {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #000;
    margin: 0;
    font-weight: 600;
}

.rovar-text-line-1 {
    text-align: left;
}

.rovar-text-line-2 {
    text-align: left;
    padding-left: 3em;
}

.rovar-text-line-3 {
    text-align: right;
}

.rovar-text-line-4 {
    text-align: right;
}


.rovar-features-2 {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
    box-sizing: border-box;
}

.rovar-features-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-features-2::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/4.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.rovar-features-2-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin-top: 70px;
}

.rovar-feature-module {
    padding: 2rem 0;
    position: relative;
}

.rovar-feature-right {
    padding-right: 0 !important;
}

.rovar-feature-left {
    align-self: flex-start;
    max-width: 50%;
}

.rovar-feature-right {
    max-width: 50%;
    width: 50%;
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
    text-align: right;
}

.rovar-feature-right .rovar-feature-row-1 {
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
}

.rovar-feature-right .rovar-feature-row-1 h3 {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
    display: block;
}

.rovar-feature-right .rovar-feature-description {
    padding-left: 0;
    padding-right: 0;
    text-align: right;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.rovar-feature-row-1 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
}

.rovar-feature-icon-blue {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rovar-feature-icon-blue svg,
.rovar-feature-icon-blue img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rovar-feature-module h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    line-height: 1.4;
}

.rovar-feature-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    display: block;
    text-indent: 0;
    padding-left: calc(48px + 1.5rem);
}

.rovar-feature-divider {
    height: 1px;
    background: #fff;
    opacity: 0.3;
    margin: 0;
}

/* 新的features-3样式 - 完全重写 */
.rovar-features-3-new {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    padding: 2rem 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
    overflow: hidden;
}

.rovar-features-3-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-features-3-new::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/5.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.features-scroll-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 3;
    padding: 1rem 2rem;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.features-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.features-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.features-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.features-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 0 !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    width: max-content;
    min-width: calc(100% - 4rem);
    box-sizing: border-box;
    grid-column-gap: 0 !important;
}

.features-grid-new > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.feature-block-new {
    padding: 0.8rem 0 !important;
    margin: 0 !important;
    position: relative;
    text-align: left;
    width: 100%;
    min-width: 260px;
    max-width: 260px;
    color: #fff;
    flex-shrink: 0;
    box-sizing: border-box;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.feature-block-new + .feature-block-new {
    margin-left: -20px !important;
    padding-left: 0 !important;
}

.features-grid-new > .feature-block-new:nth-child(3) {
    margin-left: -20px !important;
}

.features-grid-new > .feature-block-new:nth-child(4) {
    margin-left: -20px !important;
}

.feature-header-new {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    flex-wrap: nowrap;
}

.feature-icon-new {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.feature-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title-new {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    flex-shrink: 0;
}

.feature-desc-new {
    text-align: left;
    padding-left: calc(36px + 0.8rem);
    padding-right: 0 !important;
    margin: 0.6rem 0;
    color: #fff;
    font-size: 9px;
    line-height: 1.5;
    opacity: 0.95;
}

.feature-list-new {
    list-style: none;
    padding: 0;
    padding-left: calc(36px + 0.8rem);
    padding-right: 0 !important;
    margin: 1rem 0 0;
    text-align: left;
}

.feature-list-new li {
    margin-bottom: 0.4rem;
}

.feature-list-new li strong {
    display: block;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: #fff;
    opacity: 0.95;
}

.feature-list-new li span {
    display: block;
    font-size: 8px;
    line-height: 1.4;
    color: #fff;
    opacity: 0.85;
}

.rovar-features-3 {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    padding: 2rem 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
    overflow: hidden;
}

.rovar-features-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-features-3::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/5.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}


.rovar-features-3-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem 2rem 1rem 2rem;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    scroll-padding-left: 2rem;
    scroll-padding-right: 2rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* 滚动条样式 */
.rovar-features-3-content::-webkit-scrollbar {
    height: 8px;
}

.rovar-features-3-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.rovar-features-3-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.rovar-features-3-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.rovar-features-3-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 0 !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    width: max-content;
    min-width: calc(100% - 4rem);
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 2rem;
}

.rovar-feature-detailed {
    padding: 1rem 0.1rem !important;
    position: relative;
    text-align: left;
    width: 100%;
    min-width: 280px;
    color: #fff;
    flex-shrink: 0;
    z-index: 1;
    box-sizing: border-box;
    scroll-margin-left: 2rem;
    scroll-margin-right: 2rem;
    margin: 0 !important;
}

.rovar-features-3-grid > .rovar-feature-detailed:first-child {
    scroll-margin-left: 2rem;
}

.rovar-feature-detailed .rovar-feature-row-1 {
    justify-content: flex-start;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
    align-items: center;
}

.rovar-features-3 .rovar-feature-icon-blue {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.rovar-feature-detailed .rovar-feature-row-1 h3 {
    color: #fff;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    margin-left: 0;
    padding-right: 0.5rem;
    word-wrap: break-word;
}

.rovar-feature-detailed .rovar-feature-description {
    text-align: left;
    padding-left: calc(36px + 0.8rem);
    padding-right: 0.1rem !important;
    margin: 0.8rem 0;
    color: #fff;
    font-size: 10px;
    line-height: 1.6;
}

.rovar-feature-points {
    list-style: none;
    padding: 0;
    padding-left: calc(36px + 0.8rem);
    padding-right: 0.1rem !important;
    margin: 1rem 0 0;
    text-align: left;
    max-width: 100%;
}

.rovar-feature-points li {
    font-size: 10px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1rem;
}

.rovar-feature-points li:last-child {
    margin-bottom: 0;
}

.rovar-feature-points li strong {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 0.2rem;
}

.rovar-feature-points li span {
    font-size: 10px;
    display: block;
    line-height: 1.5;
    color: #fff;
}


.rovar-product-showcase {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

.rovar-product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-product-showcase::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/6.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.rovar-details {
    padding: 6rem 4rem;
    background: #fff;
}

.rovar-details-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rovar-detail-panel {
    overflow: hidden;
}

.rovar-detail-panel img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rovar-companion {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

.rovar-companion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-companion-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 70px;
}

.rovar-companion-content p {
    font-size: 2rem;
    line-height: 1.6;
    margin: 0;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.rovar-companion-line-1 {
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.rovar-companion-line-2 {
    margin-top: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.rovar-use-cases {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
}

.rovar-use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-use-cases::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: url('../img/product/7.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.rovar-use-cases-grid {
    width: 100%;
    height: calc(100% - 70px);
    margin: 0;
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
    padding: 0;
}

.rovar-use-case-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: visible;
}

.rovar-use-case-label {
    position: absolute;
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    pointer-events: none;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.rovar-use-case-item:nth-child(1) .rovar-use-case-label,
.rovar-use-case-item:nth-child(2) .rovar-use-case-label {
    top: 55%;
    transform: translate(-50%, -50%);
}

.rovar-use-case-item:nth-child(3) .rovar-use-case-label,
.rovar-use-case-item:nth-child(4) .rovar-use-case-label {
    top: 45%;
    transform: translate(-50%, -50%);
}

.rovar-accessories-page {
    position: relative;
    width: 100vw;
    height: calc(100vh + 70px);
    min-height: calc(100vh + 70px);
    margin: 0 !important;
    margin-top: 0 !important;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
    overflow: hidden;
}

.rovar-accessories-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 1;
}

.rovar-accessories-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    max-height: 100%;
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
    margin-top: 70px;
}

.rovar-accessories-slogan {
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    margin: 0;
    font-weight: 700;
    line-height: 0;
    flex-shrink: 0;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.slogan-line-1 {
    display: block;
    line-height: 0.7;
    margin: 0;
    padding: 0;
}

.slogan-line-2 {
    display: block;
    position: absolute;
    left: 430px;
    transform: translateX(0);
    margin-top: 0;
    top: 1em;
    white-space: nowrap;
    text-indent: 8em;
    line-height: 0.7;
}

.rovar-accessories-slider {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
    min-height: 0;
    overflow: visible;
    flex-grow: 2;
}

.rovar-slider-container {
    width: 100%;
    overflow: visible;
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.rovar-slider-btn {
    display: none;
}

.rovar-slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    width: max-content;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.rovar-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    width: 300px;
    height: 100%;
    overflow: visible;
}

.rovar-slide.active {
    width: 400px;
}

.rovar-slide img {
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 45vh;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rovar-slide.active img {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    max-width: 400px;
}

.rovar-slide:not(.active) img {
    opacity: 0.5;
    filter: blur(3px);
    transform: scale(0.85);
}

.rovar-slider-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.rovar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.rovar-dot.active {
    background: rgba(255, 255, 255, 0.8);
    width: 12px;
    height: 12px;
}

.rovar-accessories-icons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
    flex-shrink: 0;
    padding-bottom: 0px;
    margin-top: auto;
    margin-bottom: 1rem;
}

.rovar-accessory-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.rovar-accessory-icon img {
    width: 800px;
    height: auto;
    max-width: 95%;
    max-height: 350px;
    object-fit: contain;
}

.rovar-accessory-icon span {
    font-size: 0.9rem;
    text-align: center;
}

.rovar-accessories {
    padding: 6rem 4rem;
    background: #000;
    color: #fff;
}

.rovar-accessories-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.rovar-accessories-content > p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.rovar-accessories-showcase {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.rovar-accessories-showcase img {
    width: 100%;
    height: auto;
}

.rovar-accessories-label {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rovar-colors {
    padding: 6rem 4rem;
    background: #000;
    color: #fff;
}

.rovar-colors-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.rovar-colors-content > p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.rovar-colors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.rovar-color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
        gap: 1rem;
}

.rovar-color-swatch {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.rovar-color-item span {
    font-size: 0.9rem;
    color: #ccc;
}


@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .rovar-hero {
        margin-top: 70px;
        padding: 3rem 0;
        min-height: auto;
    }
    
    .rovar-hero-title {
        font-size: 2.5rem;
    }
    
    .rovar-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .rovar-scenic {
        min-height: 500px;
        padding: 3rem 2rem;
    }
    
    .rovar-scenic-content h2 {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .rovar-scenic-content p {
        font-size: 1.2rem;
    }
    
    .rovar-features-1 {
        padding: 4rem 2rem;
    }
    
    .rovar-features-1-container {
        flex-direction: column;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .rovar-feature-text-block {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .rovar-text-group-1,
    .rovar-text-group-2 {
        align-items: flex-start;
    }
    
    .rovar-text-line-2 {
        padding-left: 0;
    }
    
    .rovar-text-line-3,
    .rovar-text-line-4 {
        text-align: left;
    }
    
    .rovar-features-2 {
        padding: 4rem 2rem;
    }
    
    .rovar-feature-module {
        padding: 1.5rem 0;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .rovar-feature-left,
    .rovar-feature-right {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .rovar-feature-module h3 {
        font-size: 1rem !important;
    }
    
    .rovar-feature-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    
    .rovar-feature-right .rovar-feature-description {
        font-size: 12px !important;
        text-align: left !important;
        padding-left: calc(40px + 1rem) !important;
    }
    
    .rovar-features-3 {
        padding: 2rem 2rem;
    }
    
    .rovar-features-3-content {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        scroll-behavior: smooth;
    }
    
    .rovar-features-3-grid {
        display: flex;
        flex-direction: row;
        gap: 0 !important;
        column-gap: 0 !important;
        row-gap: 0 !important;
        width: max-content;
        grid-template-columns: none;
        margin: 0 auto;
    }
    
    .rovar-feature-detailed {
        padding: 1.5rem 0.1rem !important;
        min-width: 100vw;
        width: 100vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0 !important;
    }
    
    .rovar-feature-detailed > * {
        max-width: 100%;
        width: 100%;
    }
    
    .rovar-feature-points {
        max-width: 100%;
    }
    
    .rovar-feature-detailed .rovar-feature-row-1 h3 {
        font-size: 18px !important;
    }
    
    .rovar-feature-detailed .rovar-feature-description {
        font-size: 11px !important;
    }
    
    .rovar-feature-points li {
        font-size: 11px !important;
    }
    
    .rovar-feature-points li strong {
        font-size: 13px !important;
    }
    
    .rovar-feature-points li span {
        font-size: 11px !important;
    }
    
    .rovar-product-showcase {
        height: 100vh;
    }
    
    .rovar-details {
        padding: 4rem 2rem;
    }
    
    .rovar-details-grid {
        grid-template-columns: 1fr;
    }
    
    .rovar-companion {
        height: 100vh;
    }
    
    .rovar-companion-content p {
        font-size: 1.5rem;
    }
    
    .rovar-use-cases {
        height: 100vh;
        padding: 3rem 2rem;
    }
    
    .rovar-use-cases::after {
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .rovar-use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .rovar-use-case-label {
        font-size: 1.2rem;
        color: #fff !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .rovar-use-case-item:nth-child(1) .rovar-use-case-label,
    .rovar-use-case-item:nth-child(2) .rovar-use-case-label {
        top: 90% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .rovar-use-case-item:nth-child(3) .rovar-use-case-label,
    .rovar-use-case-item:nth-child(4) .rovar-use-case-label {
        top: 10% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .rovar-accessories-page {
        height: calc(100vh + 70px);
        min-height: calc(100vh + 70px);
        padding: 2rem 1rem;
        justify-content: center;
    }
    
    .rovar-accessories-content {
        padding: 0.5rem 0;
        justify-content: space-between;
        gap: 0.5rem;
        margin-top: 50px;
        position: relative;
        min-height: 100vh;
    }
    
    .rovar-accessories-slogan {
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        font-size: 1.2rem;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        padding-left: 0;
        transform: translateX(-10%);
    }
    
    .rovar-accessories-slider {
        position: absolute;
        top: 250px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        margin-top: 0;
    }
    
    .slogan-line-1 {
        line-height: 0.7 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .slogan-line-2 {
        left: 0 !important;
        position: relative !important;
        transform: none !important;
        text-indent: 8em;
        top: 0.3em !important;
        line-height: 0.7 !important;
        margin-top: -0.2em !important;
    }
    
    .rovar-slider-container {
        height: 50vh;
        padding: 0;
        overflow: visible;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .rovar-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0;
        line-height: 1;
    }
    
    .rovar-slider-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.8);
    }
    
    .rovar-slider-btn-prev {
        left: 10px;
    }
    
    .rovar-slider-btn-next {
        right: 10px;
    }
    
    .rovar-slider-track {
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        display: flex;
        gap: 0;
        position: relative;
    }
    
    .rovar-slide {
        display: none;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0;
    }
    
    .rovar-slide.active {
        display: flex !important;
    }
    
    .rovar-slide img {
        max-height: 45vh;
        max-width: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        opacity: 1;
        filter: none;
        transform: none;
    }
    
    .rovar-accessories-icons {
        position: absolute;
        top: 750px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        gap: 2rem;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .rovar-accessory-icon img {
        width: 100%;
        max-width: 95%;
        max-height: 350px;
        height: auto;
    }
    
    .rovar-accessory-icon span {
        font-size: 0.9rem;
    }
    
    .rovar-accessories {
        padding: 4rem 2rem;
    }
    
    .rovar-accessories-content > p {
        font-size: 1.4rem;
    }
    
    .rovar-colors {
        padding: 4rem 2rem;
    }
    
    .rovar-colors-content > p {
        font-size: 1.4rem;
    }
    
    .rovar-colors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .rovar-color-swatch {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
    
    .rovar-hero-title {
        font-size: 2rem;
    }
    
    .rovar-hero-subtitle {
        font-size: 1rem;
    }
    
    .rovar-scenic {
        min-height: 400px;
        padding: 2rem 1rem;
    }
    
    .rovar-scenic-content h2 {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .rovar-scenic-content p {
        font-size: 1rem;
    }
    
    .rovar-features-1 {
        padding: 3rem 1rem;
    }
    
    .rovar-feature-text-block {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .rovar-text-group-1,
    .rovar-text-group-2 {
        align-items: flex-start;
    }
    
    .rovar-text-line-2 {
        padding-left: 0;
    }
    
    .rovar-text-line-3,
    .rovar-text-line-4 {
        text-align: left;
    }
    
    .rovar-features-2 {
        padding: 3rem 1rem;
    }
    
    .rovar-features-2 {
        padding: 3rem 1rem;
    }
    
    .rovar-feature-module {
        padding: 1rem 0;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .rovar-feature-left,
    .rovar-feature-right {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .rovar-feature-icon-blue {
        width: 40px;
        height: 40px;
    }
    
    .rovar-feature-module h3 {
        font-size: 0.9rem !important;
    }
    
    .rovar-feature-description {
        font-size: 11px !important;
        padding-left: calc(40px + 1rem) !important;
        line-height: 1.4 !important;
    }
    
    .rovar-feature-right .rovar-feature-description {
        font-size: 11px !important;
        padding-left: calc(40px + 1rem) !important;
        text-align: left !important;
    }
    
    .rovar-feature-right .rovar-feature-row-1 {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }
    
    .rovar-feature-right .rovar-feature-row-1 h3 {
        text-align: left !important;
    }
    
    .rovar-features-3 {
        padding: 1.5rem 1rem;
    }
    
    .rovar-features-3-content {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        scroll-behavior: smooth;
    }
    
    .rovar-features-3-grid {
        display: flex;
        flex-direction: row;
        gap: 0 !important;
        column-gap: 0 !important;
        row-gap: 0 !important;
        width: max-content;
        grid-template-columns: none;
        margin: 0 auto;
    }
    
    .rovar-feature-detailed {
        padding: 1rem 0.5rem;
        min-width: 100vw;
        width: 100vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .rovar-feature-detailed > * {
        max-width: 100%;
        width: 100%;
    }
    
    .rovar-feature-detailed .rovar-feature-row-1 h3 {
        font-size: 16px !important;
    }
    
    .rovar-feature-detailed .rovar-feature-description {
        font-size: 10px !important;
    }
    
    .rovar-feature-points {
        max-width: 100%;
    }
    
    .rovar-feature-points li {
        font-size: 10px !important;
        line-height: 1.6;
    }
    
    .rovar-feature-points li strong {
        font-size: 12px !important;
    }
    
    .rovar-feature-points li span {
        font-size: 10px !important;
    }
    
    .rovar-product-showcase {
        height: 100vh;
    }
    
    .rovar-details {
        padding: 3rem 1rem;
    }
    
    .rovar-companion {
        height: 100vh;
    }
    
    .rovar-companion-content p {
        font-size: 1.2rem;
    }
    
    .rovar-use-cases {
        height: 100vh;
        padding: 0;
    }
    
    .rovar-use-cases::after {
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .rovar-use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .rovar-use-case-label {
        font-size: 1rem;
        color: #fff !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .rovar-use-case-item:nth-child(1) .rovar-use-case-label,
    .rovar-use-case-item:nth-child(2) .rovar-use-case-label {
        top: 90% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .rovar-use-case-item:nth-child(3) .rovar-use-case-label,
    .rovar-use-case-item:nth-child(4) .rovar-use-case-label {
        top: 10% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .rovar-accessories {
        padding: 3rem 1rem;
    }
    
    .rovar-accessories-page {
        height: calc(100vh + 70px);
        min-height: calc(100vh + 70px);
        padding: 1.5rem 0.75rem;
        justify-content: center;
    }
    
    .rovar-accessories-content {
        padding: 0.5rem 0;
        justify-content: space-between;
        gap: 0.5rem;
        margin-top: 50px;
        position: relative;
        min-height: 100vh;
    }
    
    .rovar-accessories-slider {
        position: absolute;
        top: 230px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        margin-top: 0;
    }
    
    .rovar-accessories-slogan {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        padding-left: 0;
        transform: translateX(20%);
    }
    
    .slogan-line-1 {
        line-height: 0.7 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .slogan-line-2 {
        left: 0 !important;
        position: relative !important;
        transform: none !important;
        text-indent: 8em;
        top: 0.3em !important;
        line-height: 0.7 !important;
        margin-top: -0.2em !important;
    }
    
    .rovar-slider-container {
        height: 50vh;
        padding: 0;
        overflow: visible;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .rovar-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        z-index: 100;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0;
        line-height: 1;
    }
    
    .rovar-slider-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.8);
    }
    
    .rovar-slider-btn-prev {
        left: 8px;
    }
    
    .rovar-slider-btn-next {
        right: 8px;
    }
    
    .rovar-slider-track {
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        display: flex;
        gap: 0;
        position: relative;
    }
    
    .rovar-slide {
        display: none;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0;
    }
    
    .rovar-slide.active {
        display: flex !important;
    }
    
    .rovar-slide img {
        max-height: 45vh;
        max-width: 90%;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        opacity: 1;
        filter: none;
        transform: none;
    }
    
    .rovar-accessories-icons {
        position: absolute;
        top: 800px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        gap: 2rem;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .rovar-accessory-icon img {
        width: 100%;
        max-width: 95%;
        max-height: 350px;
        height: auto;
    }
    
    .rovar-accessory-icon span {
        font-size: 0.9rem;
    }
    
    .rovar-slide img {
        max-height: 60vh;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }
    
    .rovar-accessories-content > p {
        font-size: 1.2rem;
    }
    
    .rovar-colors {
        padding: 3rem 1rem;
    }
    
    .rovar-colors-content > p {
        font-size: 1.2rem;
    }
    
    .rovar-colors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rovar-color-swatch {
        width: 60px;
        height: 60px;
    }
    
    .rovar-color-item span {
        font-size: 0.8rem;
    }
}


.contact-page {
    margin-top: 70px;
    height: 100vh;
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
    overflow: hidden;
}

.company-title {
    color: #fff;
}

.company-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.company-title span {
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-info {
    color: #fff;
    text-align: left;
}

.qr-code {
    margin-bottom: 2rem;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}

.wechat-name {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.email-info {
    line-height: 2;
}

.email-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


.social-media-section {
    margin-top: 2rem;
}

.social-media-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.social-icon span {
    font-size: 0.85rem;
    font-weight: 500;
}


.map-section {
    padding: 4rem 0;
    background: #1a1a1a;
    margin: 0;
    margin-top: 2rem;
}

html[lang="zh-CN"] body:last-child section[style*="height:calc(100vh - 70px)"] {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body {
    background-color: #1a1a1a;
}

body[style*="background:linear-gradient"] {
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a1a 100%) !important;
    background-attachment: fixed !important;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.address-item p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
    margin: 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

#baidu-map {
    border-radius: 12px;
    display: block;
}

#map {
    border-radius: 12px;
    z-index: 1;
}

.map-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.map-link i {
    font-size: 1rem;
}


@media (max-width: 768px) {
    .contact-page {
        margin-top: 70px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .company-title h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .qr-code img {
        width: 120px;
        height: 120px;
    }
    
    .wechat-name {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .email-info p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    
    .social-media-icons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }
    
    .social-icon span {
        font-size: 0.75rem;
    }
    
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .address-info {
        order: 2;
    }
    
    .map-container {
        order: 1;
    }
    
    #map {
        height: 400px;
    }
    
    .map-controls {
        flex-direction: column;
    }
    
    .map-link {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .address-item h3 {
        font-size: 1.3rem;
    }
    
    .address-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 1.5rem 0.75rem;
        gap: 1.5rem;
    }
    
    .company-title h1 {
        font-size: 2rem;
    }
    
    .qr-code img {
        width: 100px;
        height: 100px;
    }
    
    .wechat-name {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .email-info p {
        font-size: 0.9rem;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .contact-page {
        padding: 3rem 4rem;
    }
    
    .company-title h1 {
        font-size: 2.8rem;
    }
    
    .qr-code img {
        width: 130px;
        height: 130px;
    }
}


@media (max-width: 768px) {
    
    section[style*="margin-top:70px"][style*="min-height:calc(100vh - 70px)"] {
        margin-top: 70px !important;
        min-height: calc(100vh - 70px) !important;
        padding: 2rem 1rem !important;
    }
    
    
    button[style*="background:#000"][style*="padding:1.5rem 4rem"] {
        padding: 1rem 2rem !important;
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    
    p[style*="color:#fff"][style*="font-size:1.2rem"] {
        font-size: 1rem !important;
    }
    
    
    section[id="jobs"] {
        padding: 3rem 0 !important;
    }
    
    
    div[style*="background:#f8f9fa"][style*="border-radius:20px"][style*="padding:3rem"] {
        padding: 1.5rem !important;
        margin-bottom: 2rem !important;
        border-radius: 16px !important;
    }
    
    
    h2[style*="font-size:2rem"][style*="font-weight:700"] {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    
    span[style*="background:#e3f2fd"],
    span[style*="background:#e8f5e8"],
    span[style*="background:#fff3e0"] {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    
    div[style*="display:flex"][style*="gap:2rem"] {
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    
    
    h3[style*="font-size:1.3rem"][style*="font-weight:600"] {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    
    ol[style*="color:#666"][style*="line-height:1.8"] {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        padding-left: 1.2rem !important;
    }
    
    
    div[style*="display:flex"][style*="gap:1rem"][style*="flex-wrap:wrap"] {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    
    button[style*="background:linear-gradient(45deg, #0066cc, #00ff88)"],
    button[style*="background:#f8f9fa"][style*="border:2px solid #e9ecef"] {
        width: 100% !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
    }
    
    
    div[style*="max-width:800px"][style*="margin:0 auto"] {
        padding: 0 1rem !important;
    }
    
    
    div[style*="display:flex"][style*="justify-content:space-between"][style*="align-items:flex-start"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    
    button[style*="background:#000"][style*="padding:1.5rem 4rem"] {
        padding: 0.8rem 1.5rem !important;
        font-size: 1.1rem !important;
    }
    
    h2[style*="font-size:2rem"][style*="font-weight:700"] {
        font-size: 1.4rem !important;
    }
    
    div[style*="background:#f8f9fa"][style*="border-radius:20px"][style*="padding:3rem"] {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    h3[style*="font-size:1.3rem"][style*="font-weight:600"] {
        font-size: 1rem !important;
    }
    
    ol[style*="color:#666"][style*="line-height:1.8"] {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    span[style*="background:#e3f2fd"],
    span[style*="background:#e8f5e8"],
    span[style*="background:#fff3e0"] {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
    
    button[style*="background:linear-gradient(45deg, #0066cc, #00ff88)"],
    button[style*="background:#f8f9fa"][style*="border:2px solid #e9ecef"] {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    button[style*="background:#000"][style*="padding:1.5rem 4rem"] {
        padding: 1.2rem 3rem !important;
        font-size: 1.3rem !important;
    }
    
    h2[style*="font-size:2rem"][style*="font-weight:700"] {
        font-size: 1.8rem !important;
    }
    
    div[style*="background:#f8f9fa"][style*="border-radius:20px"][style*="padding:3rem"] {
        padding: 2rem !important;
    }
    
    div[style*="max-width:800px"][style*="margin:0 auto"] {
        padding: 0 2rem !important;
    }
}


.language-switch {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 20px;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.language-switch:hover {
    background: #fff;
    color: #181818;
}


@media (max-width: 768px) {
    .language-switch {
        margin-left: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .nav-container {
        padding: 0 1em;
    }
}

@media (max-width: 480px) {
    .language-switch {
        margin-left: 5px;
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .features-scroll-container {
        padding: 1rem 1rem;
        scroll-padding-left: 1rem;
        scroll-padding-right: 1rem;
    }
    
    .features-grid-new {
        display: flex;
        flex-direction: row;
        gap: 0;
        column-gap: 0;
        width: max-content;
        min-width: 100%;
    }
    
    .feature-block-new {
        padding: 1.5rem 0;
        min-width: 100vw;
        width: 100vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .feature-title-new {
        font-size: 16px !important;
    }
    
    .feature-desc-new {
        font-size: 10px !important;
    }
    
    .feature-list-new li strong {
        font-size: 12px !important;
    }
    
    .feature-list-new li span {
        font-size: 10px !important;
    }
}

@media (max-width: 768px) {
    .features-scroll-container {
        padding: 1rem 1.5rem;
        scroll-padding-left: 1.5rem;
        scroll-padding-right: 1.5rem;
    }
    
    .features-grid-new {
        display: flex;
        flex-direction: row;
        gap: 0;
        column-gap: 0;
        width: max-content;
        min-width: 100%;
    }
    
    .feature-block-new {
        padding: 1.5rem 0;
        min-width: 100vw;
        width: 100vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .feature-title-new {
        font-size: 18px !important;
    }
    
    .feature-desc-new {
        font-size: 11px !important;
    }
    
    .feature-list-new li strong {
        font-size: 13px !important;
    }
    
    .feature-list-new li span {
        font-size: 11px !important;
    }
}