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

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

        html {
            scroll-behavior: smooth;
        }

        /* ========== Header & Navigation ========== */
        .peqx9z-header {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 136, 204, 0.15);
        }

        .peqx9z-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .peqx9z-logo {
            flex-shrink: 0;
        }

        .peqx9z-logo img {
            height: 45px;
            width: auto;
        }

        .peqx9z-nav-menu {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .peqx9z-nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .peqx9z-nav-menu a:hover {
            color: #e0f2ff;
        }

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

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

        .peqx9z-cta-btn {
            background: #fff;
            color: #0088cc;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .peqx9z-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: #f0f0f0;
        }

        .peqx9z-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .peqx9z-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

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

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

        /* ========== Hero Section ========== */
        .peqx9z-hero {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: #fff;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .peqx9z-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .peqx9z-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .peqx9z-hero-text {
            text-align: left;
        }

        .peqx9z-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .peqx9z-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .peqx9z-hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .peqx9z-btn-primary {
            background: #fff;
            color: #0088cc;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .peqx9z-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .peqx9z-btn-secondary {
            background: transparent;
            color: #fff;
            padding: 1rem 2.5rem;
            border: 2px solid #fff;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .peqx9z-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .peqx9z-hero-image {
            position: relative;
        }

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

        /* ========== Features Section ========== */
        .peqx9z-features {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }

        .peqx9z-features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .peqx9z-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .peqx9z-section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .peqx9z-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .peqx9z-feature-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .peqx9z-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.15);
            border-color: #0088cc;
        }

        .peqx9z-feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .peqx9z-feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-feature-desc {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .peqx9z-features-image {
            margin-top: 3rem;
            border-radius: 15px;
            overflow: hidden;
        }

        .peqx9z-features-image img {
            width: 100%;
            height: auto;
        }

        /* ========== Stats Section ========== */
        .peqx9z-stats {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: #fff;
            padding: 4rem 2rem;
        }

        .peqx9z-stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .peqx9z-stats-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
        }

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

        .peqx9z-stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .peqx9z-stat-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .peqx9z-stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .peqx9z-stat-unit {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .peqx9z-stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-top: 1rem;
            line-height: 1.6;
        }

        /* ========== Products Section ========== */
        .peqx9z-products {
            padding: 5rem 2rem;
            background: #fff;
        }

        .peqx9z-products-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .peqx9z-product-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
            padding: 2.5rem;
            border-radius: 15px;
            border-left: 5px solid #0088cc;
            transition: all 0.3s ease;
        }

        .peqx9z-product-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 136, 204, 0.2);
        }

        .peqx9z-product-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-product-desc {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .peqx9z-product-highlight {
            background: #0088cc;
            color: #fff;
            padding: 0.7rem 1.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
        }

        /* ========== Scenarios Section ========== */
        .peqx9z-scenarios {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }

        .peqx9z-scenarios-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .peqx9z-scenario-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .peqx9z-scenario-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.15);
        }

        .peqx9z-scenario-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .peqx9z-scenario-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-scenario-desc {
            color: #666;
            line-height: 1.8;
        }

        /* ========== Tech Advantages Section ========== */
        .peqx9z-tech {
            padding: 5rem 2rem;
            background: #fff;
        }

        .peqx9z-tech-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .peqx9z-tech-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
        }

        .peqx9z-tech-item {
            background: #f5f7fa;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #0088cc;
        }

        .peqx9z-tech-item-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-tech-item-desc {
            color: #666;
            line-height: 1.8;
        }

        .peqx9z-tech-image {
            border-radius: 15px;
            overflow: hidden;
        }

        .peqx9z-tech-image img {
            width: 100%;
            height: auto;
        }

        /* ========== Testimonials Section ========== */
        .peqx9z-testimonials {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%);
        }

        .peqx9z-testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .peqx9z-testimonial-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .peqx9z-testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.15);
        }

        .peqx9z-testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .peqx9z-testimonial-avatar {
            font-size: 2.5rem;
            margin-right: 1rem;
        }

        .peqx9z-testimonial-info {
            flex: 1;
        }

        .peqx9z-testimonial-name {
            font-weight: 700;
            color: #0088cc;
            font-size: 1.05rem;
        }

        .peqx9z-testimonial-title {
            color: #999;
            font-size: 0.9rem;
        }

        .peqx9z-testimonial-rating {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .peqx9z-testimonial-content {
            color: #666;
            line-height: 1.8;
            font-style: italic;
        }

        /* ========== News Section ========== */
        .peqx9z-news {
            padding: 5rem 2rem;
            background: #fff;
        }

        .peqx9z-news-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .peqx9z-news-card {
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        .peqx9z-news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 136, 204, 0.15);
            border-color: #0088cc;
        }

        .peqx9z-news-date {
            background: #0088cc;
            color: #fff;
            padding: 1rem;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .peqx9z-news-content {
            padding: 2rem;
        }

        .peqx9z-news-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-news-summary {
            color: #666;
            line-height: 1.7;
        }

        /* ========== Partners Section ========== */
        .peqx9z-partners {
            padding: 4rem 2rem;
            background: #f8f9fa;
        }

        .peqx9z-partners-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .peqx9z-partner-card {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .peqx9z-partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 136, 204, 0.15);
        }

        .peqx9z-partner-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 0.5rem;
        }

        .peqx9z-partner-type {
            color: #999;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .peqx9z-partner-desc {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ========== CTA Banner Section ========== */
        .peqx9z-cta-banner {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: #fff;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .peqx9z-cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .peqx9z-cta-banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .peqx9z-cta-banner-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .peqx9z-cta-banner-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .peqx9z-cta-banner-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========== Footer ========== */
        .peqx9z-footer {
            background: #1a1a1a;
            color: #fff;
            padding: 4rem 2rem 2rem;
        }

        .peqx9z-footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .peqx9z-footer-section-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #0088cc;
        }

        .peqx9z-footer-link {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

        .peqx9z-footer-link:hover {
            color: #0088cc;
            padding-left: 5px;
        }

        .peqx9z-footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 1rem;
        }

        .peqx9z-footer-desc {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .peqx9z-footer-socials {
            display: flex;
            gap: 1rem;
        }

        .peqx9z-social-link {
            width: 40px;
            height: 40px;
            background: #0088cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .peqx9z-social-link:hover {
            transform: translateY(-3px);
            background: #005fa3;
        }

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

        .peqx9z-footer-bottom p {
            margin-bottom: 0.5rem;
        }

        .peqx9z-footer-links-inline {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .peqx9z-footer-links-inline a {
            color: #999;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .peqx9z-footer-links-inline a:hover {
            color: #0088cc;
        }

        /* ========== Responsive Design ========== */
        @media (max-width: 768px) {
            .peqx9z-menu-toggle {
                display: flex;
            }

            .peqx9z-nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
                padding: 2rem;
                gap: 1.5rem;
            }

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

            .peqx9z-hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .peqx9z-hero-title {
                font-size: 2.5rem;
            }

            .peqx9z-hero-subtitle {
                font-size: 1.1rem;
            }

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

            .peqx9z-btn-primary,
            .peqx9z-btn-secondary {
                width: 100%;
            }

            .peqx9z-section-title {
                font-size: 2rem;
            }

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

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

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

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

            .peqx9z-cta-banner-title {
                font-size: 1.8rem;
            }

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

            .peqx9z-footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .peqx9z-nav {
                padding: 1rem;
            }

            .peqx9z-hero {
                padding: 2rem 1rem;
            }

            .peqx9z-hero-title {
                font-size: 1.8rem;
            }

            .peqx9z-hero-subtitle {
                font-size: 1rem;
            }

            .peqx9z-section-title {
                font-size: 1.5rem;
            }

            .peqx9z-stats-grid {
                grid-template-columns: 1fr;
            }

            .peqx9z-stat-number {
                font-size: 2.5rem;
            }

            .peqx9z-cta-banner-title {
                font-size: 1.5rem;
            }

            .peqx9z-cta-banner-subtitle {
                font-size: 1rem;
            }
        }
    