/* ISPDEEP Theme Additional Styles */

/* Image Comparison Styles */
.image-comparison {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.image-comparison:active {
    cursor: grabbing;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.comparison-after {
    position: relative;
    clip-path: inset(0 50% 0 0);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #007aff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #007aff;
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

/* Enhanced Demo Section */
.demo-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.demo-comparison-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.demo-comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.demo-comparison-images {
    height: 250px;
    position: relative;
}

.demo-comparison-content {
    padding: 2rem;
}

.demo-comparison-content h4 {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.demo-comparison-content p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Team Section */
.team-member-enhanced {
    position: relative;
    overflow: hidden;
}

.team-member-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-enhanced:hover::before {
    opacity: 1;
}

.team-avatar-enhanced {
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-avatar-enhanced img {
    transition: transform 0.3s ease;
}

.team-member-enhanced:hover .team-avatar-enhanced {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.team-member-enhanced:hover .team-avatar-enhanced img {
    transform: scale(1.1);
}

/* Social Links */
.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.team-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Pricing Cards */
.pricing-card-enhanced {
    position: relative;
    overflow: hidden;
}

.pricing-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-card-enhanced:hover::before {
    left: 100%;
}

/* Notification Styles */
.notification {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Buttons */
.button-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.button-enhanced:hover::before {
    left: 100%;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #00d4ff);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card-enhanced:hover::before {
    opacity: 1;
}

.feature-icon-enhanced {
    position: relative;
    z-index: 2;
}

/* Enhanced Navigation Styles */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    min-height: 44px;
    background: transparent;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #007aff;
    background: rgba(0, 122, 255, 0.08);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.main-nav a:hover .nav-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 122, 255, 0.3));
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #00d4ff);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 80%;
}

/* Active navigation state */
.main-nav a.active {
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
}

.main-nav a.active::after {
    width: 80%;
}

.main-nav a.active .nav-icon {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #1d1d1f;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Counter Animation */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #007aff;
    display: block;
}

/* Typewriter Effect */
.typewriter-text {
    display: inline-block;
}

/* Parallax Elements */
.parallax {
    will-change: transform;
}

/* Enhanced Animations */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.stagger-animation .fade-in-up {
    transition-delay: 0s;
}

/* Image Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Page Transition */
.page-transition-overlay {
    backdrop-filter: blur(10px);
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

/* Responsive Enhancements */
/* Medium screens - tablets */
@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.mobile-open {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .main-nav a {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        border-radius: 15px;
        min-height: 56px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .main-nav a:hover {
        background: rgba(0, 122, 255, 0.12);
        transform: scale(1.02);
    }
    
    .nav-icon {
        font-size: 1.5rem;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    /* Enhanced touch targets for mobile */
    .main-nav a {
        min-height: 56px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 122, 255, 0.2);
    }
    
    .nav-icon {
        pointer-events: none;
        user-select: none;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .demo-content {
        padding: 1.5rem;
    }
    
    .demo-images {
        height: 200px;
    }
    
    .demo-comparison {
        grid-template-columns: 1fr;
    }
    
    .comparison-slider {
        display: none;
    }
    
    .image-comparison {
        cursor: default;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .button-primary,
    .button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Enhanced Navigation Accessibility */
.main-nav a:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
    background: rgba(0, 122, 255, 0.1);
}

.main-nav a:focus .nav-icon {
    transform: scale(1.1);
}

/* Keyboard navigation support */
.main-nav a:focus-visible {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-nav a {
        border: 1px solid transparent;
    }
    
    .main-nav a:hover,
    .main-nav a:focus {
        border-color: #007aff;
        background: rgba(0, 122, 255, 0.2);
    }
    
    .nav-icon {
        filter: contrast(2);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .notification {
        background: #2d2d30 !important;
        color: #f0f0f0 !important;
        border-color: #3c3c3c !important;
    }
    
    .mobile-menu-toggle span {
        background: #f0f0f0;
    }
    
    .main-nav {
        background: rgba(45, 45, 48, 0.98);
    }
    
    .main-nav a {
        color: #f0f0f0;
    }
    
    .main-nav a:hover {
        color: #007aff;
        background: rgba(0, 122, 255, 0.15);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .feature-card,
    .team-member,
    .demo-item,
    .pricing-card {
        border: 2px solid #000;
    }
    
    .button-primary,
    .button-secondary,
    .cta-button {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax {
        transform: none !important;
    }
    
    .main-nav a,
    .nav-icon,
    .main-nav a::after {
        transition: none !important;
    }
    
    .main-nav a:hover .nav-icon {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-buttons,
    .contact-form,
    .mobile-menu-toggle,
    .scroll-progress {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    .team-member,
    .feature-card,
    .pricing-card {
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* Product Showcase Styles */
.product-showcase {
    margin-top: 4rem;
    text-align: center;
}

.product-showcase h3 {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

/* Product Slideshow Styles */
.product-slideshow-container {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.product-slideshow-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 400px;
}

.product-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide.active {
    opacity: 1;
}

.product-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.product-content .product-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.product-content h4 {
    font-size: 1.5rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.product-content p {
    color: #515154;
    font-size: 1rem;
    line-height: 1.6;
}

.product-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #007aff;
    transform: scale(1.2);
}

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

.product-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.product-item h4 {
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.product-item p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Demo Section Styles */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.demo-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.demo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.demo-images {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.demo-before,
.demo-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.demo-after {
    position: relative;
}

.demo-content {
    padding: 2rem;
}

.demo-content h4 {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.demo-content p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Demo Comparison Slider Styles */
.demo-comparison {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
}
.comparison-before { clip-path: inset(0 0 0 0); }
.comparison-after { clip-path: inset(0 50% 0 0); }

.comparison-container:active {
    cursor: grabbing;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #007aff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #007aff;
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

.comparison-labels {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
}

.label-before,
.label-after {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.demo-comparison-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.demo-comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.demo-comparison-images {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.demo-comparison-content {
    padding: 2rem;
}

.demo-comparison-content h4 {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.demo-comparison-content p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Image Comparison Slider */
.image-comparison {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: grab;
    height: 100%;
}

.image-comparison:active {
    cursor: grabbing;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.comparison-after {
    position: relative;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #007aff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #007aff;
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #00d4ff);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Pricing Cards */
.pricing-card.featured {
    position: relative;
    transform: scale(1.05);
    border: 2px solid #007aff;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007aff;
    color: white;/* Product
 Showcase Styles */
.product-showcase {
    margin-top: 4rem;
    text-align: center;
}

.product-showcase h3 {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

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

.product-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.product-item h4 {
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.product-item p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #00d4ff);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Enhanced Pricing Cards */
.pricing-card.featured {
    position: relative;
    transform: scale(1.05);
    border: 2px solid #007aff;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007aff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Enhanced Button Styles */
.button-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.button-enhanced:hover::before {
    left: 100%;
}

/* Counter Animation */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #007aff;
    display: block;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    max-width: 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase h3 {
        font-size: 1.5rem;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .scroll-progress {
        height: 2px;
    }
}

/* Print Styles */
@media print {
    .scroll-progress,
    .notification,
    .mobile-menu-toggle {
        display: none !important;
    }
}/* Base Section Styles */
.section {
    padding: 4rem 0;
}

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

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

.lead-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
}

/*
 Partners Section Styles */
.partners {
    background: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
}

.partners h2 {
    font-size: 2.5rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.partners .lead-text {
    color: #515154;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: calc(200% + 2rem);
    will-change: transform;
}

.partner-logo {
    flex: 0 0 auto;
    padding: 1.25rem 1.75rem;
    margin: 0 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #007aff;
}

/* Different colors for different companies */
.partner-logo:nth-child(1) { border-top: 3px solid #1f8ce6; } /* Samsung Blue */
.partner-logo:nth-child(2) { border-top: 3px solid #0668e1; } /* Meta Blue */
.partner-logo:nth-child(3) { border-top: 3px solid #1ba784; } /* OPPO Green */
.partner-logo:nth-child(4) { border-top: 3px solid #ff6900; } /* Xiaomi Orange */
.partner-logo:nth-child(5) { border-top: 3px solid #eb0028; } /* OnePlus Red */
.partner-logo:nth-child(6) { border-top: 3px solid #ff0000; } /* Huawei Red */
.partner-logo:nth-child(7) { border-top: 3px solid #667eea; } /* Vivo Purple */
.partner-logo:nth-child(8) { border-top: 3px solid #f7ca18; } /* Realme Yellow */
.partner-logo:nth-child(9) { border-top: 3px solid #4834d4; } /* Honor Purple */
.partner-logo:nth-child(10) { border-top: 3px solid #0f4c75; } /* Motorola Blue */
.partner-logo:nth-child(11) { border-top: 3px solid #000000; } /* Nothing Black */
.partner-logo:nth-child(12) { border-top: 3px solid #2ecc71; } /* Fairphone Green */
.partner-logo:nth-child(13) { border-top: 3px solid #e74c3c; } /* TCL Red */
.partner-logo:nth-child(14) { border-top: 3px solid #000000; } /* Asus Black */
.partner-logo:nth-child(15) { border-top: 3px solid #000000; } /* Sony Black */
.partner-logo:nth-child(16) { border-top: 3px solid #a50034; } /* LG Red */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hardware acceleration for smooth animation */
.partners-track {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Pause animation on hover */
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

/* Smooth transition for animation pause/resume */
.partners-track {
    transition: animation-play-state 0.3s ease;
}

/* Visual feedback when marquee is paused */
.partners-marquee.marquee-paused .partner-logo {
    animation-play-state: paused;
}

.partners-marquee.marquee-paused::before,
.partners-marquee.marquee-paused::after {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* Alternative floating animation for some logos */
.partner-logo:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.partner-logo:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .partners {
        padding: 3rem 0;
    }
    
    .partners h2 {
        font-size: 2rem;
    }
    
    .partner-logo {
        min-width: 110px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        margin: 0 0.5rem;
        height: 50px;
    }
    
    .partners-track {
        animation-duration: 25s;
    }
    
    .partners-marquee::before,
    .partners-marquee::after {
        width: 50px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .partner-logo {
        border: 2px solid #000;
        background: #fff;
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
        transform: none;
    }
    
    .partner-logo {
        animation: none;
    }
    
    /* Static layout for reduced motion */
    .partners-marquee {
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .partners-track {
        width: auto;
        justify-content: flex-start;
        gap: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .partners {
        background: #1e1e1e;
    }
    
    .partners h2 {
        color: #f0f0f0;
    }
    
    .partners .lead-text {
        color: #b0b0b0;
    }
    
    .partner-logo {
        background: #2d2d2d;
        color: #f0f0f0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .partners-marquee::before {
        background: linear-gradient(to right, #1e1e1e, transparent);
    }
    
    .partners-marquee::after {
        background: linear-gradient(to left, #1e1e1e, transparent);
    }
}

/* Partners Danmaku Styles */
.partners-danmaku-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-danmaku {
    width: 100%;
    height: 100%;
    position: relative;
}

.partner-danmaku-item {
    position: absolute;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #1d1d1f;
    font-size: 1rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    cursor: pointer;
    z-index: 1;
}

.partner-danmaku-item.visible {
    opacity: 1;
}

.partner-danmaku-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #007aff;
    z-index: 10;
}

/* Different colors for different companies */
.partner-danmaku-item:nth-child(1) { border-left: 4px solid #1f8ce6; } /* Samsung Blue */
.partner-danmaku-item:nth-child(2) { border-left: 4px solid #0668e1; } /* Meta Blue */
.partner-danmaku-item:nth-child(3) { border-left: 4px solid #1ba784; } /* OPPO Green */
.partner-danmaku-item:nth-child(4) { border-left: 4px solid #ff6900; } /* Xiaomi Orange */
.partner-danmaku-item:nth-child(5) { border-left: 4px solid #eb0028; } /* OnePlus Red */
.partner-danmaku-item:nth-child(6) { border-left: 4px solid #ff0000; } /* Huawei Red */
.partner-danmaku-item:nth-child(7) { border-left: 4px solid #667eea; } /* Vivo Purple */
.partner-danmaku-item:nth-child(8) { border-left: 4px solid #f7ca18; } /* Realme Yellow */

/*
 Partners Stats Styles */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007aff;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: #515154;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced partner logo hover effects */
.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #007aff;
    z-index: 10;
    position: relative;
}

/* Add subtle glow effect to partner logos */
.partner-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 212, 255, 0.1));
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.partner-logo:hover::after {
    opacity: 1;
}

/* Mobile optimizations for stats */
@media (max-width: 768px) {
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Dark mode support for stats */
@media (prefers-color-scheme: dark) {
    .stat-item {
        background: #2d2d2d;
        color: #f0f0f0;
    }
    
    .stat-label {
        color: #b0b0b0;
    }
}/* T
estimonials Section Styles */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 5rem 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.testimonials .lead-text {
    color: #515154;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: rgba(0, 122, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.95rem;
    color: #007aff;
    font-weight: 500;
}

/* Add subtle animation to testimonials */
.testimonial-card {
    animation: testimonialFloat 8s ease-in-out infinite;
}

.testimonial-card:nth-child(2) {
    animation-delay: -2.7s;
}

.testimonial-card:nth-child(3) {
    animation-delay: -5.4s;
}

@keyframes testimonialFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Add gradient border effect */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007aff, #00d4ff, #007aff);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1.5rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .testimonials {
        background: linear-gradient(135deg, #1e1e1e, #2d2d30);
    }
    
    .testimonials h2 {
        color: #f0f0f0;
    }
    
    .testimonials .lead-text {
        color: #b0b0b0;
    }
    
    .testimonial-card {
        background: #2d2d2d;
        color: #f0f0f0;
    }
    
    .testimonial-content p {
        color: #e0e0e0;
    }
    
    .author-name {
        color: #f0f0f0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card {
        animation: none;
    }
    
    .testimonial-card::after {
        animation: none;
    }
}
/* Prod
uct Showcase Carousel Styles */
.product-showcase {
    margin-top: 4rem;
    text-align: center;
    overflow: hidden;
}

.product-showcase h3 {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

.product-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
}

.product-carousel-container::before,
.product-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.product-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.product-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.product-carousel-track {
    display: flex;
    animation: productCarousel 40s linear infinite;
    width: calc(200% + 4rem);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.product-item {
    flex: 0 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 320px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-item:hover::before {
    left: 100%;
}

.product-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.product-item h4 {
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.product-item p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@keyframes productCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.product-carousel-container:hover .product-carousel-track {
    animation-play-state: paused;
}

/* Smooth transition for animation pause/resume */
.product-carousel-track {
    transition: animation-play-state 0.3s ease;
}

/* Visual feedback when carousel is paused */
.product-carousel-container:hover::before,
.product-carousel-container:hover::after {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Mobile responsive styles for product carousel */
@media (max-width: 768px) {
    .product-carousel-container::before,
    .product-carousel-container::after {
        width: 50px;
    }
    
    .product-item {
        min-width: 280px;
        max-width: 300px;
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .product-carousel-track {
        animation-duration: 35s;
    }
    
    .product-image {
        max-width: 180px;
    }
    
    .product-item h4 {
        font-size: 1.125rem;
    }
    
    .product-item p {
        font-size: 0.9rem;
    }
    
    /* Enhanced touch targets for mobile */
    .product-item {
        min-height: 280px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 122, 255, 0.2);
    }
    
    .product-item:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-item {
        min-width: 290px;
        max-width: 310px;
    }
    
    .product-carousel-track {
        animation-duration: 38s;
    }
}

/* Reduced motion support for carousel */
@media (prefers-reduced-motion: reduce) {
    .product-carousel-track {
        animation: none;
        transform: none;
    }
    
    .product-carousel-container {
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .product-carousel-track {
        width: auto;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .product-item:hover {
        transform: translateY(-5px);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product-item {
        border: 2px solid #000;
        background: #fff;
    }
    
    .product-item h4 {
        color: #000;
    }
    
    .product-item p {
        color: #333;
    }
}

/* Dark mode support for product carousel */
@media (prefers-color-scheme: dark) {
    .product-carousel-container::before {
        background: linear-gradient(to right, #1e1e1e, transparent);
    }
    
    .product-carousel-container::after {
        background: linear-gradient(to left, #1e1e1e, transparent);
    }
    
    .product-item {
        background: #2d2d2d;
        color: #f0f0f0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .product-item h4 {
        color: #f0f0f0;
    }
    
    .product-item p {
        color: #b0b0b0;
    }
}/* Va
lidity Period Styling */
.validity-period {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Updated pricing card styling for new structure */
.pricing-card .price-period {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.25rem;
}

.pricing-card h3 {
    margin-bottom: 1rem;
}
/* 
========================================
   OPTIMIZED CSS FOR NEW ANIMATIONS AND COMPONENTS
   Task 9: Complete CSS optimization with hardware acceleration
   ======================================== */

/* Product Carousel Container and Animation Keyframes */
.product-showcase {
    margin-top: 4rem;
    text-align: center;
    overflow: hidden;
}

.product-showcase h3 {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

/* Product Carousel Container with Hardware Acceleration */
.product-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    padding: 2rem 0;
}

.product-carousel::before,
.product-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.product-carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.product-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* Product Track with 60fps Hardware Acceleration */
.product-track {
    display: flex;
    animation: productCarousel 40s linear infinite;
    width: calc(200% + 4rem);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}

/* Optimized Product Carousel Animation Keyframes */
@keyframes productCarousel {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Individual Product Items in Carousel */
.product-item {
    flex: 0 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    max-width: 320px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-item:hover::before {
    left: 100%;
}

.product-item:hover {
    transform: translate3d(0, -10px, 0) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-item:active {
    transform: translate3d(0, -5px, 0) scale(0.98);
    transition: all 0.1s ease;
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    will-change: transform;
}

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

.product-item h4 {
    font-size: 1.25rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.product-item p {
    color: #515154;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Pause animation on hover with smooth transition */
.product-carousel:hover .product-track {
    animation-play-state: paused;
}

.product-track {
    transition: animation-play-state 0.3s ease;
}

/* Enhanced Navigation Hover Effects and Icon Styling */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    min-height: 44px;
    background: transparent;
    will-change: transform, color, background-color;
}

.main-nav a:hover {
    color: #007aff;
    background: rgba(0, 122, 255, 0.08);
    transform: translate3d(0, -2px, 0);
}

.nav-icon {
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    will-change: transform, filter;
}

.main-nav a:hover .nav-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 122, 255, 0.3));
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007aff, #00d4ff);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    will-change: width;
}

.main-nav a:hover::after {
    width: 80%;
}

/* Active navigation state */
.main-nav a.active {
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
}

.main-nav a.active::after {
    width: 80%;
}

.main-nav a.active .nav-icon {
    transform: scale(1.1);
}

/* Enhanced Partners Marquee with Hardware Acceleration */
.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partners-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: calc(200% + 2rem);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}

/* Optimized Marquee Animation Keyframes */
@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.partner-logo {
    flex: 0 0 auto;
    padding: 1.25rem 1.75rem;
    margin: 0 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.partner-logo:hover {
    transform: translate3d(0, -3px, 0) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #007aff;
}

/* Pause marquee animation on hover */
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

.partners-track {
    transition: animation-play-state 0.3s ease;
}

/* Responsive Breakpoints for All New Components */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .product-carousel {
        padding: 3rem 0;
    }
    
    .product-item {
        min-width: 320px;
        max-width: 360px;
        padding: 2.5rem;
    }
    
    .main-nav a {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
    }
    
    .nav-icon {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
    
    .partner-logo {
        min-width: 160px;
        height: 70px;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .product-item {
        min-width: 300px;
        max-width: 340px;
    }
    
    .main-nav a {
        gap: 0.75rem;
        padding: 0.875rem 1.25rem;
    }
    
    .partner-logo {
        min-width: 150px;
        height: 65px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .product-carousel {
        padding: 2rem 0;
    }
    
    .product-item {
        min-width: 260px;
        max-width: 300px;
        padding: 1.75rem;
    }
    
    .main-nav ul {
        gap: 2rem;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .nav-icon {
        font-size: 1.125rem;
        width: 22px;
        height: 22px;
    }
    
    .partner-logo {
        min-width: 130px;
        height: 55px;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .partners-track {
        animation-duration: 35s;
    }
    
    .product-track {
        animation-duration: 45s;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .product-carousel {
        padding: 1.5rem 0;
    }
    
    .product-carousel::before,
    .product-carousel::after {
        width: 50px;
    }
    
    .product-item {
        min-width: 240px;
        max-width: 280px;
        padding: 1.5rem;
        margin: 0 0.75rem;
    }
    
    .product-item h4 {
        font-size: 1.125rem;
    }
    
    .product-item p {
        font-size: 0.875rem;
    }
    
    .product-track {
        animation-duration: 35s;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: #1d1d1f;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.mobile-open {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .main-nav a {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        border-radius: 15px;
        min-height: 56px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 122, 255, 0.2);
    }
    
    .main-nav a:hover {
        background: rgba(0, 122, 255, 0.12);
        transform: scale(1.02);
    }
    
    .nav-icon {
        font-size: 1.5rem;
        pointer-events: none;
        user-select: none;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    /* Mobile Partners */
    .partner-logo {
        min-width: 110px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        margin: 0 0.5rem;
        height: 50px;
    }
    
    .partners-track {
        animation-duration: 25s;
    }
    
    .partners-marquee::before,
    .partners-marquee::after {
        width: 50px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .product-item {
        min-width: 220px;
        max-width: 260px;
        padding: 1.25rem;
    }
    
    .product-image {
        max-width: 160px;
    }
    
    .partner-logo {
        min-width: 100px;
        height: 45px;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .main-nav a {
        font-size: 1.125rem;
        max-width: 260px;
    }
}

/* Smooth 60fps Animations with Hardware Acceleration */
.product-track,
.partners-track,
.main-nav a,
.nav-icon,
.product-item,
.partner-logo {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Fallbacks for Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    /* Disable all animations */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Static layouts for carousels */
    .product-track,
    .partners-track {
        animation: none !important;
        transform: none !important;
    }
    
    /* Convert carousels to scrollable containers */
    .product-carousel,
    .partners-marquee {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 122, 255, 0.3) transparent;
    }
    
    .product-carousel::-webkit-scrollbar,
    .partners-marquee::-webkit-scrollbar {
        height: 6px;
    }
    
    .product-carousel::-webkit-scrollbar-track,
    .partners-marquee::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 3px;
    }
    
    .product-carousel::-webkit-scrollbar-thumb,
    .partners-marquee::-webkit-scrollbar-thumb {
        background: rgba(0, 122, 255, 0.3);
        border-radius: 3px;
    }
    
    .product-track,
    .partners-track {
        width: auto;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    /* Remove hover transforms */
    .main-nav a:hover,
    .product-item:hover,
    .partner-logo:hover {
        transform: none !important;
    }
    
    .main-nav a:hover .nav-icon {
        transform: none !important;
    }
    
    /* Keep color changes for accessibility */
    .main-nav a:hover {
        color: #007aff;
        background: rgba(0, 122, 255, 0.08);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .product-item,
    .partner-logo {
        border: 2px solid #000;
        background: #fff;
    }
    
    .main-nav a {
        border: 1px solid transparent;
    }
    
    .main-nav a:hover,
    .main-nav a:focus {
        border-color: #007aff;
        background: rgba(0, 122, 255, 0.2);
    }
    
    .nav-icon {
        filter: contrast(2);
    }
    
    .product-carousel::before,
    .product-carousel::after,
    .partners-marquee::before,
    .partners-marquee::after {
        display: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .product-carousel::before {
        background: linear-gradient(to right, #1e1e1e, transparent);
    }
    
    .product-carousel::after {
        background: linear-gradient(to left, #1e1e1e, transparent);
    }
    
    .product-item {
        background: #2d2d2d;
        color: #f0f0f0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .product-item h4 {
        color: #f0f0f0;
    }
    
    .product-item p {
        color: #b0b0b0;
    }
    
    .partners-marquee::before {
        background: linear-gradient(to right, #1e1e1e, transparent);
    }
    
    .partners-marquee::after {
        background: linear-gradient(to left, #1e1e1e, transparent);
    }
    
    .partner-logo {
        background: #2d2d2d;
        color: #f0f0f0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu-toggle span {
        background: #f0f0f0;
    }
    
    .main-nav {
        background: rgba(45, 45, 48, 0.98);
    }
    
    .main-nav a {
        color: #f0f0f0;
    }
    
    .main-nav a:hover {
        color: #007aff;
        background: rgba(0, 122, 255, 0.15);
    }
}

/* Print Styles */
@media print {
    .product-carousel,
    .partners-marquee,
    .mobile-menu-toggle,
    .main-nav a::after {
        display: none !important;
    }
    
    .product-showcase,
    .partners {
        page-break-inside: avoid;
    }
}

/* Focus Styles for Accessibility */
.main-nav a:focus,
.product-item:focus,
.partner-logo:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}

.main-nav a:focus .nav-icon {
    transform: scale(1.1);
}

.main-nav a:focus-visible {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}

/* Performance Optimizations */
.product-carousel,
.partners-marquee {
    contain: layout style paint;
}

.product-track,
.partners-track {
    contain: layout style;
}

/* GPU Layer Creation for Smooth Animations */
.product-item:hover,
.partner-logo:hover,
.main-nav a:hover {
    will-change: transform, box-shadow;
}

/* Reset will-change after animations complete */
.product-item,
.partner-logo,
.main-nav a {
    will-change: auto;
}

.product-item:hover,
.partner-logo:hover,
.main-nav a:hover {
    will-change: transform, box-shadow;
}
/*
 Contact Section Styles */
.contact-info {
    margin-top: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h4 {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #515154;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #007aff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer Company Info */
.company-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.company-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.company-info a {
    color: #007aff;
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

/* Mobile responsive for contact info */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
}

/* Partners Danmaku Styles - Video Marquee Effect for Company Logos */
.partners-danmaku-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.partners-danmaku {
    position: relative;
    width: 100%;
    height: 100%;
}

.partner-danmaku-item {
    position: absolute;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #007aff;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s ease;
    z-index: 1;
    cursor: pointer;
    user-select: none;
}

.partner-danmaku-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.partner-danmaku-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
    background: #007aff;
    color: white;
    border-color: #0056b3;
}

/* Comparison Container Styles */
.comparison-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: ew-resize;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: clip-path 0.3s ease;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #007aff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: left 0.1s ease;
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #007aff;
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
}

.comparison-labels {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.label-before,
.label-after {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.label-before {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.label-after {
    background: rgba(0, 122, 255, 0.9);
    color: white;
}

/* Product Carousel Styles */
.product-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    min-height: 400px;
}

.product-carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    gap: 2rem;
    padding: 1rem 0;
}

.product-item {
    flex: 0 0 300px;
    text-align: center;
    color: white;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.product-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.product-item.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.product-item.active .product-image {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.product-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.carousel-dot.active {
    background: #007aff;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-danmaku-container {
        height: 150px;
    }

    .partner-danmaku-item {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .comparison-container {
        height: 250px;
    }

    .product-carousel-container {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .product-carousel-track {
        gap: 1rem;
    }

    .product-item {
        flex: 0 0 250px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .partners-danmaku-container {
        height: 120px;
    }

    .partner-danmaku-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .comparison-container {
        height: 200px;
    }

    .product-item {
        flex: 0 0 200px;
    }

    .product-item h4 {
        font-size: 1.2rem;
    }

    .product-item p {
        font-size: 0.9rem;
    }
}