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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #f8f9fa;
        }

        /* ============= Header & Navigation ============= */
        .uvq6jx-header {
            background: #fff;
            border-bottom: 1px solid #eaeaea;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .uvq6jx-nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .uvq6jx-logo {
            flex-shrink: 0;
            height: 50px;
            display: flex;
            align-items: center;
        }

        .uvq6jx-logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .uvq6jx-nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
            flex: 1;
            margin-left: 60px;
        }

        .uvq6jx-nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .uvq6jx-nav-menu a:hover {
            color: #0088cc;
        }

        .uvq6jx-nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0088cc;
            transition: width 0.3s ease;
        }

        .uvq6jx-nav-menu a:hover::after {
            width: 100%;
        }

        .uvq6jx-cta-btn {
            background: linear-gradient(135deg, #0088cc 0%, #0077b6 100%);
            color: white;
            padding: 10px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin-left: 20px;
        }

        .uvq6jx-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 136, 204, 0.3);
        }

        .uvq6jx-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
        }

        .uvq6jx-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

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

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

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

        .uvq6jx-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .uvq6jx-nav-overlay.active {
            display: block;
        }

        /* ============= Hero Section ============= */
        .uvq6jx-hero {
            background: linear-gradient(135deg, #0088cc 0%, #0077b6 100%);
            color: white;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .uvq6jx-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(100px, -100px);
        }

        .uvq6jx-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(-100px, 100px);
        }

        .uvq6jx-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .uvq6jx-hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .uvq6jx-hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .uvq6jx-hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .uvq6jx-btn-primary {
            background: white;
            color: #0088cc;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .uvq6jx-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        .uvq6jx-btn-secondary {
            background: transparent;
            color: white;
            padding: 14px 32px;
            border: 2px solid white;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .uvq6jx-btn-secondary:hover {
            background: white;
            color: #0088cc;
        }

        .uvq6jx-hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .uvq6jx-stat-item {
            border-left: 3px solid white;
            padding-left: 20px;
        }

        .uvq6jx-stat-item .number {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .uvq6jx-stat-item .label {
            font-size: 14px;
            opacity: 0.85;
        }

        .uvq6jx-hero-image {
            position: relative;
            height: 400px;
        }

        .uvq6jx-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* ============= Features Section ============= */
        .uvq6jx-features {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .uvq6jx-section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .uvq6jx-section-header h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #333;
        }

        .uvq6jx-section-header p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .uvq6jx-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 100px;
        }

        .uvq6jx-feature-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 3px solid #0088cc;
        }

        .uvq6jx-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .uvq6jx-feature-card .icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .uvq6jx-feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .uvq6jx-feature-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
        }

        .uvq6jx-features-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
        }

        .uvq6jx-showcase-image {
            position: relative;
            height: 400px;
        }

        .uvq6jx-showcase-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .uvq6jx-showcase-content h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #333;
        }

        .uvq6jx-showcase-content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .uvq6jx-showcase-content ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .uvq6jx-showcase-content li {
            padding: 10px 0;
            font-size: 16px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .uvq6jx-showcase-content li::before {
            content: '✓';
            color: #0088cc;
            font-weight: 800;
            font-size: 20px;
        }

        /* ============= Stats Section ============= */
        .uvq6jx-stats-section {
            background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
            padding: 80px 20px;
            margin: 100px 0;
        }

        .uvq6jx-stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .uvq6jx-stat-block {
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .uvq6jx-stat-block:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2);
        }

        .uvq6jx-stat-block .value {
            font-size: 42px;
            font-weight: 800;
            color: #0088cc;
            margin-bottom: 10px;
        }

        .uvq6jx-stat-block .unit {
            font-size: 18px;
            color: #333;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .uvq6jx-stat-block .description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* ============= Products Section ============= */
        .uvq6jx-products {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .uvq6jx-products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uvq6jx-product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .uvq6jx-product-header {
            background: linear-gradient(135deg, #0088cc 0%, #0077b6 100%);
            color: white;
            padding: 30px;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .uvq6jx-product-header h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .uvq6jx-product-header .highlight {
            font-size: 13px;
            opacity: 0.9;
            font-weight: 600;
        }

        .uvq6jx-product-body {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .uvq6jx-product-body p {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            flex: 1;
        }

        /* ============= Scenarios Section ============= */
        .uvq6jx-scenarios {
            background: #f8f9fa;
            padding: 100px 20px;
        }

        .uvq6jx-scenarios-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .uvq6jx-scenarios-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .uvq6jx-scenario-item {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .uvq6jx-scenario-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .uvq6jx-scenario-item .icon {
            font-size: 42px;
            margin-bottom: 20px;
            display: block;
        }

        .uvq6jx-scenario-item h4 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #333;
        }

        .uvq6jx-scenario-item p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }

        /* ============= CTA Section ============= */
        .uvq6jx-cta-banner {
            background: linear-gradient(135deg, #0088cc 0%, #0077b6 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .uvq6jx-cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(100px, -100px);
            z-index: 1;
        }

        .uvq6jx-cta-banner-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .uvq6jx-cta-banner h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .uvq6jx-cta-banner p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .uvq6jx-cta-banner-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============= Testimonials Section ============= */
        .uvq6jx-testimonials {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .uvq6jx-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uvq6jx-testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border-left: 4px solid #0088cc;
        }

        .uvq6jx-testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .uvq6jx-testimonial-stars {
            color: #ffc107;
            font-size: 14px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .uvq6jx-testimonial-content {
            font-size: 15px;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.8;
            font-style: italic;
        }

        .uvq6jx-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .uvq6jx-author-avatar {
            font-size: 32px;
            width: 50px;
            height: 50px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .uvq6jx-author-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: #333;
            margin-bottom: 3px;
        }

        .uvq6jx-author-info p {
            font-size: 13px;
            color: #999;
        }

        /* ============= Tech Advantages Section ============= */
        .uvq6jx-tech {
            background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
            padding: 100px 20px;
        }

        .uvq6jx-tech-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .uvq6jx-tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uvq6jx-tech-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .uvq6jx-tech-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 136, 204, 0.2);
        }

        .uvq6jx-tech-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #333;
        }

        .uvq6jx-tech-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
        }

        /* ============= Partners Section ============= */
        .uvq6jx-partners {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .uvq6jx-partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .uvq6jx-partner-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 3px solid #0088cc;
        }

        .uvq6jx-partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .uvq6jx-partner-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #333;
        }

        .uvq6jx-partner-card .type {
            font-size: 13px;
            color: #0088cc;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .uvq6jx-partner-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* ============= News Section ============= */
        .uvq6jx-news {
            background: #f8f9fa;
            padding: 100px 20px;
        }

        .uvq6jx-news-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .uvq6jx-news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .uvq6jx-news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .uvq6jx-news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .uvq6jx-news-date {
            background: #0088cc;
            color: white;
            padding: 15px 20px;
            font-size: 13px;
            font-weight: 700;
        }

        .uvq6jx-news-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .uvq6jx-news-content h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 15px;
            color: #333;
        }

        .uvq6jx-news-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            flex: 1;
        }

        .uvq6jx-news-link {
            color: #0088cc;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            width: fit-content;
        }

        .uvq6jx-news-link:hover {
            gap: 10px;
        }

        /* ============= Footer ============= */
        .uvq6jx-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 20px 30px;
        }

        .uvq6jx-footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .uvq6jx-footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 50px;
        }

        .uvq6jx-footer-section h4 {
            font-size: 16px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

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

        .uvq6jx-footer-section li {
            margin-bottom: 12px;
        }

        .uvq6jx-footer-section a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .uvq6jx-footer-section a:hover {
            color: #0088cc;
        }

        .uvq6jx-footer-brand {
            font-size: 18px;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }

        .uvq6jx-footer-brand p {
            font-size: 14px;
            color: #999;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .uvq6jx-footer-divider {
            border-top: 1px solid #333;
            margin: 30px 0;
            padding: 30px 0 0;
        }

        .uvq6jx-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
        }

        .uvq6jx-footer-bottom p {
            color: #999;
        }

        .uvq6jx-social-links {
            display: flex;
            gap: 20px;
        }

        .uvq6jx-social-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .uvq6jx-social-links a:hover {
            color: #0088cc;
        }

        /* ============= Responsive Design ============= */
        @media (max-width: 1024px) {
            .uvq6jx-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-scenarios-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .uvq6jx-features-showcase {
                grid-template-columns: 1fr;
            }

            .uvq6jx-stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .uvq6jx-menu-toggle {
                display: flex;
                margin-left: auto;
            }

            .uvq6jx-nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                margin-left: 0;
                display: none;
                z-index: 998;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .uvq6jx-nav-menu.active {
                display: flex;
            }

            .uvq6jx-nav-menu a {
                padding: 15px 20px;
                border-bottom: 1px solid #eee;
                width: 100%;
            }

            .uvq6jx-nav-menu a::after {
                display: none;
            }

            .uvq6jx-cta-btn {
                margin-left: 0;
                width: 100%;
                text-align: center;
                border-radius: 4px;
            }

            .uvq6jx-hero {
                padding: 60px 20px;
                min-height: auto;
            }

            .uvq6jx-hero-content h1 {
                font-size: 32px;
            }

            .uvq6jx-hero-content p {
                font-size: 16px;
            }

            .uvq6jx-hero-buttons {
                flex-direction: column;
            }

            .uvq6jx-btn-primary,
            .uvq6jx-btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .uvq6jx-hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .uvq6jx-hero-image {
                height: 250px;
            }

            .uvq6jx-section-header h2 {
                font-size: 32px;
            }

            .uvq6jx-features-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-products-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-testimonials-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-tech-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-partners-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-news-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-stats-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .uvq6jx-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .uvq6jx-footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .uvq6jx-cta-banner-buttons {
                flex-direction: column;
            }

            .uvq6jx-cta-banner h2 {
                font-size: 28px;
            }

            .uvq6jx-cta-banner p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .uvq6jx-nav {
                height: 60px;
                padding: 0 15px;
            }

            .uvq6jx-logo {
                height: 40px;
            }

            .uvq6jx-hero-content h1 {
                font-size: 24px;
            }

            .uvq6jx-hero-content p {
                font-size: 14px;
            }

            .uvq6jx-section-header h2 {
                font-size: 24px;
            }

            .uvq6jx-section-header p {
                font-size: 16px;
            }

            .uvq6jx-feature-card {
                padding: 25px;
            }

            .uvq6jx-product-card {
                padding: 0;
            }

            .uvq6jx-cta-banner {
                padding: 50px 15px;
            }

            .uvq6jx-cta-banner h2 {
                font-size: 22px;
            }

            .uvq6jx-feature-card .icon {
                font-size: 36px;
            }

            .uvq6jx-scenario-item .icon {
                font-size: 32px;
            }

            .uvq6jx-stat-block .value {
                font-size: 28px;
            }
        }
    