Blog

<!DOCTYPE html>
<html lang="vi">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Team Pro - Pre - Plus | Dịch Vụ Premium #1 Việt Nam</title>
    <meta name="description"
        content="Team Pro cung cấp dịch vụ premium chất lượng cao: ChatGPT, Netflix, Spotify, Canva Pro với giá tốt nhất thị trường">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
        rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #00d4ff;
            --primary-purple: #8B5CF6;
            --primary-green: #10B981;
            --primary-orange: #F59E0B;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(0, 212, 255, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Advanced Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background:
                radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0f 0%, #050508 100%);
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 70%;
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-30px) rotate(120deg);
            }

            66% {
                transform: translateY(-60px) rotate(240deg);
            }
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0f 0%, #050508 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            animation: pulse 2s infinite;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(0, 212, 255, 0.2);
            border-top: 3px solid var(--primary-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(25px);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-menu li a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-menu li a:hover {
            color: var(--primary-blue);
            background: rgba(0, 212, 255, 0.1);
        }

        .nav-menu li a.active {
            color: var(--primary-blue);
            background: rgba(0, 212, 255, 0.15);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
        }

        .hero-content {
            max-width: 1000px;
            z-index: 2;
            animation: fadeInUp 1.2s ease;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: var(--primary-blue);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
            }

            to {
                box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
            }
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, #ffffff 30%, var(--primary-purple) 60%, var(--primary-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero .subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            color: white;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
        }

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

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-green);
            display: block;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Page Content */
        .page-content {
            display: none;
            min-height: 100vh;
            padding: 120px 0 50px;
        }

        .page-content.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

        .page-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .service-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 212, 255, 0.5);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--primary-blue);
        }

        .service-price {
            font-size: 1.3rem;
            color: var(--primary-green);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        .service-btn {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
        }

        /* Pricing Table */
        .pricing-container {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            backdrop-filter: blur(20px);
            margin: 3rem 0;
        }

        .pricing-header {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            padding: 2rem;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pricing-table th {
            background: rgba(0, 212, 255, 0.1);
            font-weight: 700;
            color: var(--primary-blue);
        }

        .pricing-table tr:hover {
            background: rgba(0, 212, 255, 0.05);
        }

        .price-monthly {
            color: var(--primary-green);
            font-weight: 700;
        }

        .price-yearly {
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .contact-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
        }

        .contact-card.le-hung-tien {
            --gradient: linear-gradient(90deg, var(--primary-blue), #0099cc);
        }

        .contact-card.nguyen-hoang-duy {
            --gradient: linear-gradient(90deg, var(--primary-purple), #A855F7);
        }

        .contact-card.mai-phuc-tri {
            --gradient: linear-gradient(90deg, var(--primary-green), #059669);
        }

        .contact-card.nguyen-trong-tien {
            --gradient: linear-gradient(90deg, var(--primary-orange), #D97706);
        }

        .contact-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 4px solid rgba(255, 255, 255, 0.1);
        }

        .contact-card.le-hung-tien .contact-avatar {
            background: linear-gradient(45deg, var(--primary-blue), #0099cc);
        }

        .contact-card.nguyen-hoang-duy .contact-avatar {
            background: linear-gradient(45deg, var(--primary-purple), #A855F7);
        }

        .contact-card.mai-phuc-tri .contact-avatar {
            background: linear-gradient(45deg, var(--primary-green), #059669);
        }

        .contact-card.nguyen-trong-tien .contact-avatar {
            background: linear-gradient(45deg, var(--primary-orange), #D97706);
        }

        .contact-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .contact-role {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .contact-info {
            margin-bottom: 2rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .zalo-number {
            color: var(--primary-blue);
            font-weight: 700;
            font-family: 'Courier New', monospace;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 15px;
            margin: 1.5rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .zalo-btn {
            background: linear-gradient(45deg, #0068FF, #0084FF);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .zalo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 104, 255, 0.4);
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .benefit-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-card h4 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        /* Software Details Pages */
        .software-detail {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            margin: 2rem 0;
        }

        .software-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .software-logo {
            width: 100px;
            height: 100px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
        }

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

        .feature-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary-blue);
        }

        .feature-item h5 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h4 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-blue);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .fab:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem 0;
                border-top: 1px solid var(--border-color);
            }

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

            .nav-menu li {
                width: 100%;
                text-align: center;
            }

            .nav-menu li a {
                display: block;
                padding: 1rem;
                width: 100%;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .software-header {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Animation Classes */
        .animate-in {
            animation: slideInUp 0.8s ease forwards;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
        }

        .hidden {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }

        @media (max-width: 768px) {

            .container,
            .nav-container {
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .service-card,
            .contact-card,
            .benefit-card {
                padding: 1.5rem;
            }
        }
    </style>

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <style>
        body.light-mode {
            --dark-bg: #ffffff;
            --darker-bg: #f7f7f7;
            --card-bg: rgba(0, 0, 0, 0.05);
            --text-primary: #000000;
            --text-secondary: #555555;
        }

        .theme-toggle-btn {
            position: fixed;
            top: 100px;
            right: 30px;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            border: none;
            color: #fff;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .theme-toggle-btn:hover {
            transform: scale(1.1);
        }

        html {
            scroll-behavior: smooth;
        }

        #scrollToTopBtn {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
            border: none;
            color: #fff;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        #scrollToTopBtn:hover {
            transform: scale(1.1);
        }
    </style>

    <style>
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 1rem;
            }

            .nav-menu li a {
                padding: 0.3rem 0.6rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                gap: 0.5rem;
            }

            .nav-menu li a {
                padding: 0.2rem 0.4rem;
                font-size: 0.85rem;
            }

            .logo-text {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 0.5rem;
            }

            .nav-menu li a {
                font-size: 1rem;
                padding: 0.8rem 0;
            }

            .nav-container {
                padding: 1rem;
            }

            .header {
                padding-bottom: 1rem;
            }
        }
    </style>
</head>

<body>
    <!-- Background Animation -->
    <div class="bg-animation"></div>
    <div class="floating-shapes">
        <div class="shape"></div>
        <div class="shape"></div>
        <div class="shape"></div>
    </div>

    <!-- Loading Screen -->
    <div class="loading-screen" id="loadingScreen">
        <div class="loading-logo">TEAM PRO</div>
        <div class="loading-spinner"></div>
        <p style="margin-top: 1rem; color: var(--text-secondary);">Đang tải website siêu chuyên nghiệp...</p>
    </div>

    <!-- Header -->
    <header class="header" id="header">
        <div class="nav-container">
            <div class="logo" onclick="showPage('home')">
                <div class="logo-icon" style="padding:0; box-shadow: 0 0 10px rgba(0, 212, 255, 0.7);">
  <img src="c:\Users\Admin\Downloads\b44a804b99bd10e349ac.jpg" alt="Logo PRO PRE PLUS"
       style="width:100%; height:100%; object-fit:contain; border-radius:12px;
              border:2px solid rgba(0,212,255,0.8); image-rendering: auto;" />
</div>



                <div class="logo-text">Team Pro</div>
            </div>
            <nav>
                <ul class="nav-menu" id="navMenu">
                    <li><a href="#" onclick="showPage('home')" class="nav-link">🏠 Trang Chủ</a></li>
                    <li><a href="#" onclick="showPage('services')" class="nav-link">⚡ Dịch Vụ</a></li>
                    <li><a href="#" onclick="showPage('pricing')" class="nav-link">💰 Bảng Giá</a></li>
                    <li><a href="#" onclick="showPage('software-details')" class="nav-link">🔧 Chi Tiết</a></li>
                    <li><a href="#" onclick="showPage('benefits')" class="nav-link">🎯 Lợi Ích</a></li>
                    <li><a href="#" onclick="showPage('about')" class="nav-link">ℹ️ Giới Thiệu</a></li>
                    <li><a href="#" onclick="showPage('contact')" class="nav-link">📞 Liên Hệ</a></li>
                </ul>
                <button class="mobile-menu-btn" onclick="toggleMobileMenu()">☰</button>
            </nav>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero" id="home">
        <div class="hero-content">
            <div class="hero-badge">🔥 #1 Dịch Vụ Premium Việt Nam</div>
            <h1>Team Pro - Pre - Plus</h1>
            <p class="subtitle">Cung cấp dịch vụ Premium chất lượng cao với giá cạnh tranh nhất thị trường. Hơn 1000+
                khách hàng tin tưởng!</p>
            <div class="cta-buttons">
                <a href="#" class="btn btn-primary" onclick="showPage('services')">🚀 Khám Phá Dịch Vụ</a>
                <a href="#" class="btn btn-secondary" onclick="openZalo('0795201808')">💬 Chat Ngay</a>
            </div>
            <div class="hero-stats">
                <div class="stat-item">
                    <span class="stat-number">1000+</span>
                    <span class="stat-label">Khách hàng hài lòng</span>
                </div>
                <div class="stat-item">
                    <span class="stat-number">25+</span>
                    <span class="stat-label">Dịch vụ premium</span>
                </div>
                <div class="stat-item">
                    <span class="stat-number">24/7</span>
                    <span class="stat-label">Hỗ trợ khách hàng</span>
                </div>
                <div class="stat-item">
                    <span class="stat-number">99.9%</span>
                    <span class="stat-label">Uptime đảm bảo</span>
                </div>
                <div class="stat-item">
                        <span class="stat-number">2 năm</span>
                        <span class="stat-label">Kinh nghiệm phục vụ</span>
                </div>
                <div class="stat-item">
                        <span class="stat-number">5⭐</span>
                        <span class="stat-label">Rating trung bình</span>
                </div>
            </div>
        </div>
    </section>

    <!-- Services Page -->
    <div class="page-content" id="services">
        <div class="container">
            <div class="page-header">
                <h2 class="page-title">Dịch Vụ Của Chúng Tôi</h2>
                <p class="page-subtitle">Khám phá bộ sưu tập đầy đủ các dịch vụ premium hàng đầu với giá cả không thể
                    tốt hơn</p>
            </div>

            <div class="services-grid">
                <!-- AI & Năng suất -->
                <div class="service-card" onclick="showServiceDetails('ai')">
                    <div class="service-icon">🤖</div>
                    <h3>AI & Năng suất</h3>
                    <div class="service-price">Từ 9.000đ/tháng</div>
                    <p class="service-description">Sức mạnh AI hàng đầu thế giới trong tầm tay bạn</p>
                    <ul class="service-features">
                        <li>ChatGPT Plus - GPT-4o mạnh mẽ nhất</li>
                        <li>Gemini Pro + 2TB Google Drive miễn phí</li>
                        <li>Perplexity Pro - Tìm kiếm AI thông minh</li>
                        <li>ChatGPT Add Pro - Tư duy sâu</li>
                    </ul>
                    <button class="service-btn">Xem Chi Tiết</button>
                </div>

                <!-- Entertainment -->
                <div class="service-card" onclick="showServiceDetails('entertainment')">
                    <div class="service-icon">🎬</div>
                    <h3>Giải trí cao cấp</h3>
                    <div class="service-price">Từ 24.000đ/tháng</div>
                    <p class="service-description">Giải trí không giới hạn với chất lượng cao nhất</p>
                    <ul class="service-features">
                        <li>Netflix Premium 4K - 4 thiết bị</li>
                        <li>Spotify Premium - Không quảng cáo</li>
                        <li>YouTube Premium - Phát nền, tải về</li>
                        <li>Hỗ trợ chia sẻ tài khoản gia đình</li>
                    </ul>
                    <button class="service-btn">Xem Chi Tiết</button>
                </div>

                <!-- Thiết kế & Sáng tạo -->
                <div class="service-card" onclick="showServiceDetails('design')">
                    <div class="service-icon">🎨</div>
                    <h3>Thiết kế & Sáng tạo</h3>
                    <div class="service-price">Từ 5.000đ/tháng</div>
                    <p class="service-description">Công cụ thiết kế chuyên nghiệp cho mọi nhu cầu sáng tạo</p>
                    <ul class="service-features">
                        <li>Canva Pro - Thiết kế đồ họa chuyên nghiệp</li>
                        <li>Figma Edu - UI/UX Design tool</li>
                        <li>Notion Edu - Quản lý dự án, ghi chú</li>
                        <li>Template và font premium không giới hạn</li>
                    </ul>
                    <button class="service-btn">Xem Chi Tiết</button>
                </div>

                <!-- Tạo video AI -->
                <div class="service-card" onclick="showServiceDetails('video')">
                    <div class="service-icon">📹</div>
                    <h3>Tạo video AI</h3>
                    <div class="service-price">Từ 89.000đ/tháng</div>
                    <p class="service-description">Tạo video AI chuyên nghiệp chỉ với văn bản</p>
                    <ul class="service-features">
                        <li>Kling AI - Text to Video mạnh nhất</li>
                        <li>Gamma Plus/Pro - Tạo trình bày AI</li>
                        <li>Tạo video chất lượng 4K</li>
                        <li>Xuất file không watermark</li>
                    </ul>
                    <button class="service-btn">Xem Chi Tiết</button>
                </div>

                <!-- Công cụ chuyên nghiệp -->
                <div class="service-card" onclick="showServiceDetails('tools')">
                    <div class="service-icon">🛠️</div>
                    <h3>Công cụ chuyên nghiệp</h3>
                    <div class="service-price">Từ 5.000đ/tháng</div>
                    <p class="service-description">Bộ công cụ chuyên dụng cho doanh nghiệp và cá nhân</p>
                    <ul class="service-features">
                        <li>Capcut Pro - Chỉnh sửa video chuyên nghiệp</li>
                        <li>Avira VPN Pro - Bảo mật tuyệt đối</li>
                        <li>Camscanner Edu - Quét tài liệu PDF</li>
                        <li>Mate Pro - AI dịch thuật thông minh</li>
                    </ul>
                    <button class="service-btn">Xem Chi Tiết</button>
                </div>

                <!-- Education -->
                <div class="service-card" onclick="showServiceDetails('education')">
                    <div class="service-icon">📚</div>
                    <h3>Giáo dục cao cấp</h3>
                    <div class="service-price">Từ 5.000đ/tháng</div>
                    <p class="service-description">Nâng cao kiến thức với công nghệ học tập hiện đại</p>
                    <ul class="service-features">
                        <li>Super Duolingo - Học ngoại ngữ không giới hạn</li>
                        <li>Gói Edu với giá sinh viên ưu đãi</li>
                        <li>Truy cập không giới hạn tất cả tính năng</li>
                        <li>Chứng chỉ học tập chính thức</li>
                    </ul>
                    <button class="service-btn">Xem Chi Tiết</button>
                </div>
            </div>
        </div>
    </div>

    <!-- Pricing Page -->
    <div class="page-content" id="pricing">
        <div class="container">
            <div class="page-header">
                <h2 class="page-title">Bảng Giá Chi Tiết</h2>
                <p class="page-subtitle">Giá cả minh bạch, cạnh tranh nhất thị trường với chất lượng đảm bảo</p>
            </div>

            <div class="pricing-container">
                <div class="pricing-header">
                    <h3>Bảng Giá Tổng Hợp - Cập Nhật 01/08/2025</h3>
                    <p>Tất cả giá đã bao gồm VAT và phí dịch vụ</p>
                </div>
                <table class="pricing-table">
                    <thead>
                        <tr>
                            <th>Phần mềm</th>
                            <th>Mô tả</th>
                            <th>Giá (tháng)</th>
                            <th>Giá (năm)</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><strong>ChatGPT Add Pro</strong></td>
                            <td>Tự duy, suy luận Pro</td>
                            <td class="price-monthly">84.000đ</td>
                            <td>—</td>
                        </tr>
                        <tr>
                            <td><strong>ChatGPT Plus</strong></td>
                            <td>Truy cập GPT-4o</td>
                            <td class="price-monthly">349.000đ</td>
                            <td class="price-yearly">3.249.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Gemini Pro (TẶNG 2TB Drive)</strong></td>
                            <td>Trợ lý AI thông minh</td>
                            <td class="price-monthly">24.000đ</td>
                            <td class="price-yearly">269.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Perplexity Pro</strong></td>
                            <td>Tìm kiếm AI bằng AI</td>
                            <td class="price-monthly">9.000đ</td>
                            <td class="price-yearly">49.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Netflix Premium</strong></td>
                            <td>Xem phim 4K, 4 thiết bị</td>
                            <td class="price-monthly">45.000đ</td>
                            <td class="price-yearly">525.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Spotify Premium</strong></td>
                            <td>Nghe nhạc không quảng cáo</td>
                            <td class="price-monthly">39.000đ</td>
                            <td class="price-yearly">439.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>YouTube Premium</strong></td>
                            <td>Không quảng cáo, phát nền</td>
                            <td class="price-monthly">24.000đ</td>
                            <td class="price-yearly">269.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Gamma Plus</strong></td>
                            <td>Tạo trình bày AI, xuất file đẹp</td>
                            <td class="price-monthly">169.000đ</td>
                            <td>—</td>
                        </tr>
                        <tr>
                            <td><strong>Gamma Pro</strong></td>
                            <td>Toàn bộ tính năng Gamma</td>
                            <td class="price-monthly">269.000đ</td>
                            <td>—</td>
                        </tr>
                        <tr>
                            <td><strong>Capcut Pro</strong></td>
                            <td>Dựng video chuyên nghiệp</td>
                            <td class="price-monthly">49.000đ</td>
                            <td class="price-yearly">569.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Canva Pro</strong></td>
                            <td>Thiết kế chuyên nghiệp</td>
                            <td class="price-monthly">19.000đ</td>
                            <td class="price-yearly">199.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Super Duolingo</strong></td>
                            <td>Học ngoại ngữ không giới hạn</td>
                            <td class="price-monthly">12.000đ</td>
                            <td class="price-yearly">139.000đ</td>
                        </tr>
                        <tr>
                            <td><strong>Kling Standard (660 Credit)</strong></td>
                            <td>Tạo video cơ bản</td>
                            <td class="price-monthly">89.000đ</td>
                            <td>—</td>
                        </tr>
                        <tr>
                            <td><strong>Kling Pro (3000 Credit)</strong></td>
                            <td>Tạo nhiều video hơn</td>
                            <td class="price-monthly">299.000đ</td>
                            <td>—</td>
                        </tr>
                        <tr>
                            <td><strong>Kling Pre (8000 Credit)</strong></td>
                            <td>Gói lớn cho agency</td>
                            <td class="price-monthly">499.000đ</td>
                            <td>—</td>
                        </tr>
                    </tbody>
                </table>
            </div>

            <div
                style="text-align: center; margin-top: 3rem; padding: 2rem; background: var(--card-bg); border-radius: 20px; border: 1px solid var(--border-color);">
                <h3 style="color: var(--primary-blue); margin-bottom: 1rem;">🎉 Khuyến Mãi Đặc Biệt</h3>
                <p style="font-size: 1.1rem; margin-bottom: 1rem;">✨ Mua 6 tháng tặng 1 tháng</p>
                <p style="font-size: 1.1rem; margin-bottom: 2rem;">🔥 Mua 12 tháng tặng 3 tháng + Bonus VIP</p>
                <a href="#" class="btn btn-primary" onclick="showPage('contact')">💬 Liên Hệ Đặt Hàng Ngay</a>
            </div>
        </div>
    </div>

    <!-- Software Details Page -->
    <div class="page-content" id="software-details">
        <div class="container">
            <div class="page-header">
                <h2 class="page-title">Chi Tiết Phần Mềm</h2>
                <p class="page-subtitle">Tìm hiểu sâu về tính năng và lợi ích của từng dịch vụ</p>
            </div>

            <!-- ChatGPT Plus -->
            <div class="software-detail">
                <div class="software-header">
                    <div class="software-logo">🤖</div>
                    <div>
                        <h3>ChatGPT Plus - GPT-4o</h3>
                        <p style="color: var(--primary-green); font-weight: 700; font-size: 1.2rem;">349.000đ/tháng</p>
                        <p style="color: var(--text-secondary);">AI mạnh mẽ nhất thế giới từ OpenAI</p>
                    </div>
                </div>
                <div class="feature-list">
                    <div class="feature-item">
                        <h5>🧠 Trí tuệ nhân tạo GPT-4o</h5>
                        <p>Phiên bản mới nhất với khả năng tư duy logic vượt trội, hiểu ngữ cảnh sâu sắc</p>
                    </div>
                    <div class="feature-item">
                        <h5>💬 Chat không giới hạn</h5>
                        <p>Trò chuyện tự do với AI, không bị giới hạn số lượng tin nhắn</p>
                    </div>
                    <div class="feature-item">
                        <h5>📊 Advanced Data Analysis</h5>
                        <p>Phân tích dữ liệu, tạo biểu đồ, xử lý file Excel/CSV chuyên nghiệp</p>
                    </div>
                    <div class="feature-item">
                        <h5>🎨 DALL-E 3 tích hợp</h5>
                        <p>Tạo hình ảnh AI chất lượng cao từ mô tả văn bản</p>
                    </div>
                    <div class="feature-item">
                        <h5>🌐 Browsing với Bing</h5>
                        <p>Tìm kiếm thông tin real-time trên internet</p>
                    </div>
                    <div class="feature-item">
                        <h5>🔌 Custom GPTs</h5>
                        <p>Truy cập hàng nghìn GPT chuyên biệt cho từng lĩnh vực</p>
                    </div>
                </div>
            </div>

            <!-- Gemini Pro -->
            <div class="software-detail">
                <div class="software-header">
                    <div class="software-logo" style="background: linear-gradient(45deg, #4285F4, #DB4437);">💎</div>
                    <div>
                        <h3>Gemini Pro + 2TB Google Drive</h3>
                        <p style="color: var(--primary-green); font-weight: 700; font-size: 1.2rem;">24.000đ/tháng</p>
                        <p style="color: var(--text-secondary);">AI từ Google với bonus 2TB lưu trữ</p>
                    </div>
                </div>
                <div class="feature-list">
                    <div class="feature-item">
                        <h5>🚀 Google Gemini AI Engine</h5>
                        <p>Trí tuệ nhân tạo mạnh mẽ từ Google, đối thủ xứng tầm của GPT-4</p>
                    </div>
                    <div class="feature-item">
                        <h5>☁️ 2TB Google Drive miễn phí</h5>
                        <p>Lưu trữ không giới hạn cho ảnh, video, tài liệu với tốc độ cao</p>
                    </div>
                    <div class="feature-item">
                        <h5>🔍 Tích hợp Google Search</h5>
                        <p>Truy cập thông tin real-time từ Google Search</p>
                    </div>
                    <div class="feature-item">
                        <h5>📱 Đồng bộ đa nền tảng</h5>
                        <p>Sử dụng trên web, mobile, tích hợp với Google Workspace</p>
                    </div>
                    <div class="feature-item">
                        <h5>🌍 Hỗ trợ đa ngôn ngữ</h5>
                        <p>Hiểu và trả lời bằng hơn 100 ngôn ngữ khác nhau</p>
                    </div>
                    <div class="feature-item">
                        <h5>🔒 Bảo mật Google</h5>
                        <p>Được bảo vệ bởi hệ thống bảo mật hàng đầu của Google</p>
                    </div>
                </div>
            </div>

            <!-- Netflix Premium -->
            <div class="software-detail">
                <div class="software-header">
                    <div class="software-logo" style="background: linear-gradient(45deg, #E50914, #221F1F);">🎬</div>
                    <div>
                        <h3>Netflix Premium 4K</h3>
                        <p style="color: var(--primary-green); font-weight: 700; font-size: 1.2rem;">45.000đ/tháng</p>
                        <p style="color: var(--text-secondary);">Streaming premium chất lượng 4K Ultra HD</p>
                    </div>
                </div>
                <div class="feature-list">
                    <div class="feature-item">
                        <h5>🎯 4K Ultra HD + HDR</h5>
                        <p>Chất lượng hình ảnh tuyệt đối với công nghệ Dolby Vision</p>
                    </div>
                    <div class="feature-item">
                        <h5>📱 4 thiết bị cùng lúc</h5>
                        <p>Đăng nhập Netflix trên 4 thiết bị khác nhau</p>
                    </div>
                    <div class="feature-item">
                        <h5>📥 Tải về xem offline</h5>
                        <p>Download phim/series để xem khi không có internet</p>
                    </div>
                    <div class="feature-item">
                        <h5>🌍 Kho nội dung toàn cầu</h5>
                        <p>Truy cập hàng nghìn bộ phim, series từ khắp thế giới</p>
                    </div>
                    <div class="feature-item">
                        <h5>🎭 Netflix Originals</h5>
                        <p>Nội dung độc quyền chỉ có trên Netflix</p>
                    </div>
                    <div class="feature-item">
                        <h5>👥 Profile gia đình</h5>
                        <p>Tạo tối đa 5 profile với gợi ý nội dung cá nhân hóa</p>
                    </div>
                </div>
            </div>

            <!-- Canva Pro -->
            <div class="software-detail">
                <div class="software-header">
                    <div class="software-logo" style="background: linear-gradient(45deg, #00C4CC, #7B68EE);">🎨</div>
                    <div>
                        <h3>Canva Pro</h3>
                        <p style="color: var(--primary-green); font-weight: 700; font-size: 1.2rem;">19.000đ/tháng</p>
                        <p style="color: var(--text-secondary);">Thiết kế đồ họa chuyên nghiệp</p>
                    </div>
                </div>
                <div class="feature-list">
                    <div class="feature-item">
                        <h5>🎭 100M+ mẫu thiết kế</h5>
                        <p>Kho template khổng lồ cho mọi nhu cầu thiết kế</p>
                    </div>
                    <div class="feature-item">
                        <h5>📸 Premium stock photos</h5>
                        <p>Truy cập hàng triệu ảnh stock chất lượng cao</p>
                    </div>
                    <div class="feature-item">
                        <h5>✂️ Background Remover AI</h5>
                        <p>Xóa phông nền tự động bằng AI chỉ với 1 click</p>
                    </div>
                    <div class="feature-item">
                        <h5>🎬 Video editor</h5>
                        <p>Chỉnh sửa video chuyên nghiệp với hiệu ứng đẹp</p>
                    </div>
                    <div class="feature-item">
                        <h5>☁️ Cloud storage 1TB</h5>
                        <p>Lưu trữ và đồng bộ thiết kế trên mọi thiết bị</p>
                    </div>
                    <div class="feature-item">
                        <h5>👥 Team collaboration</h5>
                        <p>Chia sẻ và cộng tác thiết kế với team</p>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Benefits Page -->
    <div class="page-content" id="benefits">
        <div class="container">
            <div class="page-header">
                <h2 class="page-title">Tại Sao Chọn Team Pro?</h2>
                <p class="page-subtitle">Những lợi ích vượt trội khi sử dụng dịch vụ của chúng tôi</p>
            </div>

            <div class="benefits-grid">
                <div class="benefit-card">
                    <div class="benefit-icon">💰</div>
                    <h4>Giá Cả Cạnh Tranh Nhất</h4>
                    <p>Tiết kiệm đến 70% so với mua lẻ. Giá tốt nhất thị trường với chất lượng đảm bảo</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">⚡</div>
                    <h4>Kích Hoạt Siêu Nhanh</h4>
                    <p>Nhận tài khoản trong vòng 5-10 phút sau khi thanh toán. Hỗ trợ 24/7</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">🛡️</div>
                    <h4>Bảo Hành Trọn Đời</h4>
                    <p>Đổi mới miễn phí khi có sự cố. Cam kết uptime 99.9%</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">🎯</div>
                    <h4>Tài Khoản Riêng Biệt</h4>
                    <p>Không share, không bị kick. Tài khoản 100% thuộc về bạn</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">💎</div>
                    <h4>Chất Lượng Premium</h4>
                    <p>Tất cả tính năng cao cấp, không giới hạn. Trải nghiệm tuyệt vời nhất</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">🔒</div>
                    <h4>Bảo Mật Tuyệt Đối</h4>
                    <p>Thông tin khách hàng được mã hóa và bảo vệ an toàn tuyệt đối</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">🎁</div>
                    <h4>Khuyến Mãi Hấp Dẫn</h4>
                    <p>Tặng thêm tháng sử dụng, bonus VIP cho khách hàng thân thiết</p>
                </div>

                <div class="benefit-card">
                    <div class="benefit-icon">👑</div>
                    <h4>VIP Support</h4>
                    <p>Đội ngũ support chuyên nghiệp, nhiệt tình hỗ trợ mọi lúc mọi nơi</p>
                </div>
            </div>

            <!-- Success Stories -->
            <div style="margin: 4rem 0;">
                <h3 style="text-align: center; color: var(--primary-blue); margin-bottom: 2rem; font-size: 2rem;">📈 Câu
                    Chuyện Thành Công</h3>
                <div class="benefits-grid" style="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));">
                    <div class="benefit-card" style="text-align: left;">
                        <h4 style="color: var(--primary-green);">Anh Minh - Freelancer</h4>
                        <p>"Dùng ChatGPT Plus bên Team Pro, làm việc x3 lần nhanh 😎. Giá rẻ mà chất lượng thì khỏi chê luôn á."</p>
                        <div style="color: var(--primary-orange);">⭐⭐⭐⭐⭐ 5/5</div>
                    </div>
                    <div class="benefit-card" style="text-align: left;">
                        <h4 style="color: var(--primary-green);">Chị Lan - Designer</h4>
                        <p>"Canva Pro có 19k/tháng thôi á. Rẻ hơn 500k mỗi tháng so vs mua chính hãng đó."</p>
                        <div style="color: var(--primary-orange);">⭐⭐⭐⭐⭐ 5/5</div>
                    </div>
                    <div class="benefit-card" style="text-align: left;">
                        <h4 style="color: var(--primary-green);">Team Editor</h4>
                        <p>"Nguyên team mình 20 người xài dịch vụ Team này. Tiết kiệm cả chục triệu/năm luôn ấy. Dịch vụ mượt, support cực nhanh!"</p>
                        <div style="color: var(--primary-orange);">⭐⭐⭐⭐⭐ 5/5</div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- About Page -->
    <div class="page-content" id="about">
        <div class="container">
            <div class="page-header">
                <h2 class="page-title">Về Team Pro - Pre - Plus</h2>
                <p class="page-subtitle">Đội ngũ chuyên nghiệp với sứ mệnh mang công nghệ cao cấp đến gần hơn với mọi
                    người</p>
            </div>

            <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin: 4rem 0;">
                <div>
                    <h3 style="color: var(--primary-blue); margin-bottom: 1.5rem; font-size: 1.8rem;">🚀 Câu Chuyện Của
                        Chúng Tôi</h3>
                    <p style="margin-bottom: 1.5rem; line-height: 1.8;">
                        Team Pro được thành lập với sứ mệnh đơn giản: <strong>Democratize Premium Technology</strong> -
                        Làm cho công nghệ cao cấp trở nên dễ tiếp cận với mọi người. Chúng tôi tin rằng mọi người đều
                        xứng đáng được trải nghiệm những công cụ tốt nhất mà không phải lo lắng về chi phí.
                    </p>
                    <p style="margin-bottom: 1.5rem; line-height: 1.8;">
                        Từ năm 2024, chúng tôi đã phục vụ hơn <strong>1000+ khách hàng</strong> trên toàn quốc,
                        từ sinh viên, freelancer đến các doanh nghiệp lớn. Với phương châm <em>"Chất lượng cao - Giá cả
                            hợp lý"</em>,
                        Team Pro đã trở thành địa chỉ tin cậy hàng đầu trong lĩnh vực cung cấp dịch vụ premium.
                    </p>
                </div>
                <div style="text-align: center;">
                    <div
                        style="width: 300px; height: 300px; background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple)); border-radius: 20px; margin: 0 auto; display: flex; align-items: center; justify-content: center; font-size: 4rem; box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);">
                        🏆
                    </div>
                    <p style="margin-top: 1rem; color: var(--primary-green); font-weight: 700;">#1 Premium Service
                        Provider Vietnam</p>
                </div>
            </div>

            <div
                style="background: var(--card-bg); border-radius: 20px; padding: 3rem; border: 1px solid var(--border-color); margin: 4rem 0;">
                <h3 style="color: var(--primary-blue); margin-bottom: 2rem; text-align: center; font-size: 1.8rem;">🎯
                    Tầm Nhìn & Sứ Mệnh</h3>
                <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;">
                    <div style="text-align: center;">
                        <h4 style="color: var(--primary-green); margin-bottom: 1rem;">👁️ Tầm Nhìn</h4>
                        <p>Trở thành nền tảng #1 Việt Nam cung cấp dịch vụ premium với giá cả hợp lý nhất</p>
                    </div>
                    <div style="text-align: center;">
                        <h4 style="color: var(--primary-purple); margin-bottom: 1rem;">🎯 Sứ Mệnh</h4>
                        <p>Làm cho công nghệ cao cấp trở nên dễ tiếp cận, giúp mọi người nâng cao chất lượng cuộc sống
                        </p>
                    </div>
                    <div style="text-align: center;">
                        <h4 style="color: var(--primary-orange); margin-bottom: 1rem;">💝 Giá Trị</h4>
                        <p>Chất lượng - Tin cậy - Minh bạch - Khách hàng là trung tâm</p>
                    </div>
                </div>
            </div>

            <div style="text-align: center; margin: 4rem 0;">
                <h3 style="color: var(--primary-blue); margin-bottom: 2rem; font-size: 1.8rem;">📊 Thống Kê Ấn Tượng
                </h3>
                <div class="hero-stats" style="max-width: 1000px; margin: 0 auto;">
                    <div class="stat-item">
                        <span class="stat-number">1000+</span>
                        <span class="stat-label">Khách hàng tin tưởng</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">25+</span>
                        <span class="stat-label">Dịch vụ premium</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">99.9%</span>
                        <span class="stat-label">Tỷ lệ hài lòng</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">24/7</span>
                        <span class="stat-label">Hỗ trợ không ngừng</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">5⭐</span>
                        <span class="stat-label">Rating trung bình</span>
                    </div>
                    <div class="stat-item">
                        <span class="stat-number">2 năm</span>
                        <span class="stat-label">Kinh nghiệm phục vụ</span>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Contact Page -->
    <div class="page-content" id="contact">
        <div class="container">
            <div class="page-header">
                <h2 class="page-title">Liên Hệ Với Chúng Tôi</h2>
                <p class="page-subtitle">Đội ngũ chuyên nghiệp sẵn sàng hỗ trợ bạn 24/7</p>
            </div>

            <div class="contact-grid">
                <!-- Lê Hùng Tiến -->
                <div class="contact-card le-hung-tien" onclick="openZalo('0795201808')">
                   <div class="contact-avatar">
  <img src="c:\Users\Admin\Downloads\LHT.jpg" alt="LÊ HÙNG TIẾN" style="width:100%; height:100%; border-radius:50%; object-fit:cover;" />
</div>
                    <h3 class="contact-name">Lê Hùng Tiến</h3>
                    <p class="contact-role">👑 Chủ Team - CEO & Founder</p>
                    <div class="contact-info">
                        <p>📱 Zalo: <span class="zalo-number">0795201808</span></p>
                        <p>💳 STK: 29020899999999</p>
                        <p>🏦 VietQR - Napas 247</p>
                    </div>
                    <div class="qr-code">
                        <svg width="180" height="180" viewBox="0 0 180 180">
                            <rect width="180" height="180" fill="white" />
                            <!-- QR Code pattern for Lê Hùng Tiến -->
                            <g fill="black">
                                <!-- Corner squares -->
                                <rect x="10" y="10" width="50" height="50" />
                                <rect x="120" y="10" width="50" height="50" />
                                <rect x="10" y="120" width="50" height="50" />
                                <!-- Inner squares -->
                                <rect x="20" y="20" width="30" height="30" fill="white" />
                                <rect x="130" y="20" width="30" height="30" fill="white" />
                                <rect x="20" y="130" width="30" height="30" fill="white" />
                                <rect x="25" y="25" width="20" height="20" />
                                <rect x="135" y="25" width="20" height="20" />
                                <rect x="25" y="135" width="20" height="20" />
                                <!-- Data pattern -->
                                <rect x="70" y="10" width="10" height="10" />
                                <rect x="90" y="10" width="10" height="10" />
                                <rect x="70" y="30" width="10" height="10" />
                                <rect x="90" y="30" width="10" height="10" />
                                <rect x="70" y="50" width="10" height="10" />
                                <rect x="90" y="50" width="10" height="10" />
                                <!-- More pattern... -->
                                <rect x="10" y="70" width="10" height="10" />
                                <rect x="30" y="70" width="10" height="10" />
                                <rect x="50" y="70" width="10" height="10" />
                                <rect x="70" y="70" width="10" height="10" />
                                <rect x="90" y="70" width="10" height="10" />
                                <rect x="110" y="70" width="10" height="10" />
                                <rect x="130" y="70" width="10" height="10" />
                                <rect x="150" y="70" width="10" height="10" />
                                <rect x="170" y="70" width="10" height="10" />
                            </g>
                            <text x="90" y="95" text-anchor="middle" fill="blue" font-size="8"
                                font-weight="bold">LHT</text>
                        </svg>
                    </div>
                    <div class="contact-buttons">
                        <a href="javascript:void(0)" onclick="openZalo('0795201808')" class="zalo-btn">
                            💬 Chat Zalo
                        </a>
                    </div>
                </div>

                <!-- Nguyễn Hoàng Duy -->
                <div class="contact-card nguyen-hoang-duy" onclick="openZalo('0949468637')">
                    <div class="contact-avatar">
  <img src="c:\Users\Admin\Downloads\NHD.jpg" alt="NGUYỄN HOÀNG DUY" style="width:100%; height:100%; border-radius:50%; object-fit:cover;" />
</div>
                    <h3 class="contact-name">Nguyễn Hoàng Duy</h3>
                    <p class="contact-role">🚀 Co-Founder & Technical Director</p>
                    <div class="contact-info">
                        <p>📱 Zalo: <span class="zalo-number">0949468637</span></p>
                        <p>💳 STK: 22050899999999</p>
                        <p>🏦 VietQR - Napas 247</p>
                    </div>
                    <div class="qr-code">
                        <svg width="180" height="180" viewBox="0 0 180 180">
                            <rect width="180" height="180" fill="white" />
                            <g fill="black">
                                <!-- Corner squares -->
                                <rect x="10" y="10" width="50" height="50" />
                                <rect x="120" y="10" width="50" height="50" />
                                <rect x="10" y="120" width="50" height="50" />
                                <!-- Inner squares -->
                                <rect x="20" y="20" width="30" height="30" fill="white" />
                                <rect x="130" y="20" width="30" height="30" fill="white" />
                                <rect x="20" y="130" width="30" height="30" fill="white" />
                                <rect x="25" y="25" width="20" height="20" />
                                <rect x="135" y="25" width="20" height="20" />
                                <rect x="25" y="135" width="20" height="20" />
                                <!-- Different pattern for NHD -->
                                <rect x="80" y="10" width="10" height="10" />
                                <rect x="100" y="10" width="10" height="10" />
                                <rect x="80" y="30" width="10" height="10" />
                                <rect x="100" y="30" width="10" height="10" />
                                <rect x="80" y="50" width="10" height="10" />
                                <rect x="100" y="50" width="10" height="10" />
                                <rect x="20" y="80" width="10" height="10" />
                                <rect x="40" y="80" width="10" height="10" />
                                <rect x="60" y="80" width="10" height="10" />
                                <rect x="80" y="80" width="10" height="10" />
                                <rect x="100" y="80" width="10" height="10" />
                                <rect x="120" y="80" width="10" height="10" />
                                <rect x="140" y="80" width="10" height="10" />
                                <rect x="160" y="80" width="10" height="10" />
                            </g>
                            <text x="90" y="95" text-anchor="middle" fill="purple" font-size="8"
                                font-weight="bold">NHD</text>
                        </svg>
                    </div>
                    <div class="contact-buttons">
                        <a href="javascript:void(0)" onclick="openZalo('0949468637')" class="zalo-btn">
                            💬 Chat Zalo
                        </a>
                    </div>
                </div>

                <!-- Mai Phúc Trí -->
                <div class="contact-card mai-phuc-tri" onclick="openZalo('0336570595')">
                    <div class="contact-avatar">
  <img src="c:\Users\Admin\Downloads\MPT.jpg" alt="MAI PHÚC TRÍ" style="width:100%; height:100%; border-radius:50%; object-fit:cover;" />
</div>

                    <h3 class="contact-name">Mai Phúc Trí</h3>
                    <p class="contact-role">🔧 Technical Lead & Support Manager</p>
                    <div class="contact-info">
                        <p>📱 Zalo: <span class="zalo-number">0336570595</span></p>
                        <p>💳 STK: 2811089999999</p>
                        <p>🏦 VietQR - Napas 247</p>
                    </div>
                    <div class="qr-code">
                        <svg width="180" height="180" viewBox="0 0 180 180">
                            <rect width="180" height="180" fill="white" />
                            <g fill="black">
                                <!-- Corner squares -->
                                <rect x="10" y="10" width="50" height="50" />
                                <rect x="120" y="10" width="50" height="50" />
                                <rect x="10" y="120" width="50" height="50" />
                                <!-- Inner squares -->
                                <rect x="20" y="20" width="30" height="30" fill="white" />
                                <rect x="130" y="20" width="30" height="30" fill="white" />
                                <rect x="20" y="130" width="30" height="30" fill="white" />
                                <rect x="25" y="25" width="20" height="20" />
                                <rect x="135" y="25" width="20" height="20" />
                                <rect x="25" y="135" width="20" height="20" />
                                <!-- Pattern for MPT -->
                                <rect x="75" y="15" width="10" height="10" />
                                <rect x="95" y="15" width="10" height="10" />
                                <rect x="75" y="35" width="10" height="10" />
                                <rect x="95" y="35" width="10" height="10" />
                                <rect x="75" y="55" width="10" height="10" />
                                <rect x="95" y="55" width="10" height="10" />
                                <rect x="15" y="75" width="10" height="10" />
                                <rect x="35" y="75" width="10" height="10" />
                                <rect x="55" y="75" width="10" height="10" />
                                <rect x="75" y="75" width="10" height="10" />
                                <rect x="95" y="75" width="10" height="10" />
                                <rect x="115" y="75" width="10" height="10" />
                                <rect x="135" y="75" width="10" height="10" />
                                <rect x="155" y="75" width="10" height="10" />
                            </g>
                            <text x="90" y="95" text-anchor="middle" fill="green" font-size="8"
                                font-weight="bold">MPT</text>
                        </svg>
                    </div>
                    <div class="contact-buttons">
                        <a href="javascript:void(0)" onclick="openZalo('0336570595')" class="zalo-btn">
                            💬 Chat Zalo
                        </a>
                    </div>
                </div>

                <!-- Nguyễn Trọng Tiến -->
                <div class="contact-card nguyen-trong-tien" onclick="openZalo('0799966487')">
                    <div class="contact-avatar">
  <img src="c:\Users\Admin\Downloads\NTT.jpg" alt="NGUYỄN TRỌNG TIẾN" style="width:100%; height:100%; border-radius:50%; object-fit:cover;" />
</div>
                    <h3 class="contact-name">Nguyễn Trọng Tiến</h3>
                    <p class="contact-role">💼 Sales Manager & Customer Success</p>
                    <div class="contact-info">
                        <p>📱 Zalo: <span class="zalo-number">0799966487</span></p>
                        <p>💳 STK: 15120899999999</p>
                        <p>🏦 VietQR - Napas 247</p>
                    </div>
                    <div class="qr-code">
                        <svg width="180" height="180" viewBox="0 0 180 180">
                            <rect width="180" height="180" fill="white" />
                            <g fill="black">
                                <!-- Corner squares -->
                                <rect x="10" y="10" width="50" height="50" />
                                <rect x="120" y="10" width="50" height="50" />
                                <rect x="10" y="120" width="50" height="50" />
                                <!-- Inner squares -->
                                <rect x="20" y="20" width="30" height="30" fill="white" />
                                <rect x="130" y="20" width="30" height="30" fill="white" />
                                <rect x="20" y="130" width="30" height="30" fill="white" />
                                <rect x="25" y="25" width="20" height="20" />
                                <rect x="135" y="25" width="20" height="20" />
                                <rect x="25" y="135" width="20" height="20" />
                                <!-- Pattern for NTT -->
                                <rect x="85" y="15" width="10" height="10" />
                                <rect x="105" y="15" width="10" height="10" />
                                <rect x="85" y="35" width="10" height="10" />
                                <rect x="105" y="35" width="10" height="10" />
                                <rect x="85" y="55" width="10" height="10" />
                                <rect x="105" y="55" width="10" height="10" />
                                <rect x="25" y="85" width="10" height="10" />
                                <rect x="45" y="85" width="10" height="10" />
                                <rect x="65" y="85" width="10" height="10" />
                                <rect x="85" y="85" width="10" height="10" />
                                <rect x="105" y="85" width="10" height="10" />
                                <rect x="125" y="85" width="10" height="10" />
                                <rect x="145" y="85" width="10" height="10" />
                                <rect x="165" y="85" width="10" height="10" />
                            </g>
                            <text x="90" y="95" text-anchor="middle" fill="orange" font-size="8"
                                font-weight="bold">NTT</text>
                        </svg>
                    </div>
                    <div class="contact-buttons">
                        <a href="javascript:void(0)" onclick="openZalo('0799966487')" class="zalo-btn">
                            💬 Chat Zalo
                        </a>
                    </div>
                </div>
                <!-- Kế toán Võ Ngọc Thảo Vy -->
                <div class="contact-card">
    <div class="contact-avatar" style="box-shadow: 0 0 12px rgba(0,212,255,0.6); border: 2px solid rgba(0,212,255,0.8);">
      <img src="c:\Users\Admin\Downloads\VNTV.jpg" alt="Kế Toán Võ Ngọc Thảo Vy"
               style="width:100%; height:100%; border-radius:50%; object-fit:cover;" />
        </div>
        <div class="contact-name">Võ Ngọc Thảo Vy</div>
        <div class="contact-role">Kế toán Team Pro</div>
        <p>Số tài khoản:<br><strong>1039635213 – Vietcombank</strong></p>
        <p>Zalo: <span class="zalo-number">0907665629</span></p>
        <button class="service-btn" onclick="openZalo('0907665629')">💬 Liên hệ Zalo</button>
      </div>
    </div>
  </div>
</div>
            </div>

            <!-- Payment Info -->
            <div
                style="text-align: center; margin-top: 4rem; padding: 3rem; background: var(--card-bg); border-radius: 20px; border: 1px solid var(--border-color);">
                <h3 style="color: var(--primary-blue); margin-bottom: 2rem; font-size: 1.8rem;">💳 Thông Tin Thanh Toán
                </h3>

                <div
                    style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem;">
                    <div style="background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 15px;">
                        <h4 style="color: var(--primary-green); margin-bottom: 1rem;">🏦 Chuyển Khoản</h4>
                        <p>Ngân hàng: <strong>VietQR - Napas 247</strong></p>
                        <p>Hỗ trợ tất cả ngân hàng Việt Nam</p>
                    </div>
                    <div style="background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 15px;">
                        <h4 style="color: var(--primary-blue); margin-bottom: 1rem;">⚡ Xử Lý Nhanh</h4>
                        <p>Kích hoạt trong <strong>5-10 phút</strong></p>
                        <p>Sau khi thanh toán thành công</p>
                    </div>
                    <div style="background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 15px;">
                        <h4 style="color: var(--primary-purple); margin-bottom: 1rem;">🛡️ Bảo Mật</h4>
                        <p>Thông tin <strong>100% bảo mật</strong></p>
                        <p>Không lưu trữ thông tin thẻ</p>
                    </div>
                </div>

                <div
                    style="background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple)); padding: 2rem; border-radius: 15px; color: white;">
                    <h4 style="margin-bottom: 1rem;">🎯 Quy Trình Đặt Hàng Đơn Giản</h4>
                    <p style="margin-bottom: 0.5rem;">1️⃣ Liên hệ Zalo để tư vấn dịch vụ</p>
                    <p style="margin-bottom: 0.5rem;">2️⃣ Chuyển khoản theo hướng dẫn</p>
                    <p style="margin-bottom: 0.5rem;">3️⃣ Nhận tài khoản trong 5-10 phút</p>
                    <p>4️⃣ Sử dụng và được hỗ trợ 24/7</p>
                </div>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="footer">
        <div class="footer-content">
            <div class="footer-section">
                <h4>🚀 Team Pro</h4>
                <p style="color: var(--text-secondary); margin-bottom: 1rem;">
                    Cung cấp dịch vụ premium chất lượng cao với giá cả cạnh tranh nhất thị trường
                </p>
                <div style="display: flex; gap: 1rem;">
                    <a href="javascript:void(0)" onclick="openZalo('0795201808')"
                        style="background: var(--primary-blue); padding: 0.5rem; border-radius: 8px; color: white; text-decoration: none;">Zalo</a>
                    <a href="mailto:contact@teampro.vn"
                        style="background: var(--primary-green); padding: 0.5rem; border-radius: 8px; color: white; text-decoration: none;">Email</a>
                </div>
            </div>

            <div class="footer-section">
                <h4>⚡ Dịch Vụ</h4>
                <a href="javascript:void(0)" onclick="showPage('services')">AI & Năng suất</a>
                <a href="javascript:void(0)" onclick="showPage('services')">Giải trí cao cấp</a>
                <a href="javascript:void(0)" onclick="showPage('services')">Thiết kế & Sáng tạo Tools</a>
                <a href="javascript:void(0)" onclick="showPage('services')">Tạo video AI</a>
                <a href="javascript:void(0)" onclick="showPage('services')">Công cụ chuyên nghiệp</a>
                <a href="javascript:void(0)" onclick="showPage('services')">Giáo dục cao cấp</a>
            </div>

            <div class="footer-section">
                <h4>📞 Liên Hệ</h4>
                <a href="javascript:void(0)" onclick="openZalo('0795201808')">Lê Hùng Tiến - 0795201808</a>
                <a href="javascript:void(0)" onclick="openZalo('0949468637')">Nguyễn Hoàng Duy - 0949468637</a>
                <a href="javascript:void(0)" onclick="openZalo('0336570595')">Mai Phúc Trí - 0336570595</a>
                <a href="javascript:void(0)" onclick="openZalo('0799966487')">Nguyễn Trọng Tiến - 0799966487</a>
                <a href="javascript:void(0)" onclick="openZalo('0907665629')">Võ Ngọc Thảo Vy - 0907665629</a>
            </div>

            <div class="footer-section">
                <h4>ℹ️ Thông Tin</h4>
                <a href="javascript:void(0)" onclick="showPage('about')">Về chúng tôi</a>
                <a href="javascript:void(0)" onclick="showPage('benefits')">Tại sao chọn chúng tôi</a>
                <a href="javascript:void(0)" onclick="showPage('pricing')">Bảng giá</a>
                <a href="javascript:void(0)" onclick="showPage('software-details')">Chi tiết phần mềm</a>
                <p style="color: var(--text-secondary); font-size: 0.9rem; margin-top: 1rem;">
                    ⏰ Hỗ trợ 24/7<br>
                    🛡️ Bảo hành trọn đời<br>
                    ⚡ Kích hoạt 5-10 phút
                </p>
            </div>
        </div>

        <div class="footer-bottom">
            <p>&copy; 2025 <strong>Team Pro - Pre - Plus</strong>. All rights reserved.</p>
            <p style="margin-top: 0.5rem;">
                Chính chủ: <strong style="color: var(--primary-blue);">Lê Hùng Tiến</strong> |
                Hotline: <strong style="color: var(--primary-green);">0795201808</strong>
            </p>
            <p style="font-size: 0.9rem; opacity: 0.8; margin-top: 1rem;">
                🏆 #1 Premium Service Provider Vietnam |
                💎 1000+ Khách hàng tin tưởng |
                ⭐ 99.9% Hài lòng
            </p>
        </div>
    </footer>

    <!-- Floating Action Button -->
    <div class="fab" onclick="showPage('contact')" title="Liên hệ ngay">
        💬
    </div>

    <!-- JavaScript -->
    <script>
        // Global variables
        let currentPage = 'home';

        // Loading screen
        window.addEventListener('load', function () {
            setTimeout(function () {
                document.getElementById('loadingScreen').classList.add('hidden');
            }, 1500);
        });

        // Navigation functions
        function showPage(pageId) {
            // Update current page
            currentPage = pageId;

            // Hide hero section
            const hero = document.getElementById('home');
            if (pageId === 'home') {
                hero.style.display = 'flex';
                // Hide all page contents
                document.querySelectorAll('.page-content').forEach(page => {
                    page.classList.remove('active');
                });
            } else {
                hero.style.display = 'none';
                // Show selected page
                document.querySelectorAll('.page-content').forEach(page => {
                    page.classList.remove('active');
                });
                document.getElementById(pageId).classList.add('active');
            }

            // Update navigation active state
            document.querySelectorAll('.nav-link').forEach(link => {
                link.classList.remove('active');
            });

            // Find and highlight active nav link
            const activeLink = document.querySelector(`[onclick="showPage('${pageId}')"]`);
            if (activeLink) {
                activeLink.classList.add('active');
            }

            // Smooth scroll to top
            window.scrollTo({ top: 0, behavior: 'smooth' });

            // Close mobile menu
            document.getElementById('navMenu').classList.remove('active');

            // Animate page content
            setTimeout(() => {
                const activeContent = document.querySelector('.page-content.active, .hero');
                if (activeContent) {
                    activeContent.querySelectorAll('.service-card, .contact-card, .benefit-card, .software-detail').forEach((el, index) => {
                        el.style.animationDelay = `${index * 0.1}s`;
                        el.classList.add('animate-in');
                    });
                }
            }, 100);
        }

        // Mobile menu toggle
        function toggleMobileMenu() {
            const navMenu = document.getElementById('navMenu');
            navMenu.classList.toggle('active');
        }

        // Open Zalo chat
        function openZalo(phoneNumber) {
            const message = encodeURIComponent(`Xin chào! Tôi muốn tìm hiểu về các dịch vụ premium của Team Pro. Vui lòng tư vấn cho tôi.`);
            const zaloUrl = `https://zalo.me/${phoneNumber}?text=${message}`;
            window.open(zaloUrl, '_blank');
        }

        // Service details modal
        function showServiceDetails(serviceType) {
            const services = {
                'ai': {
                    title: '🤖 AI & Năng suất Services',
                    description: 'Sức mạnh AI hàng đầu thế giới trong tầm tay bạn',
                    items: [
                        '• ChatGPT Plus (GPT-4o) - 349.000đ/tháng: AI mạnh mẽ nhất, chat không giới hạn',
                        '• ChatGPT Add Pro - 84.000đ/tháng: Tư duy sâu, suy luận logic vượt trội',
                        '• Gemini Pro + 2TB Drive - 24.000đ/tháng: AI Google + lưu trữ khổng lồ',
                        '• Perplexity Pro - 9.000đ/tháng: Tìm kiếm thông minh bằng AI'
                    ],
                    benefits: [
                        '✅ Tăng năng suất làm việc gấp 10 lần',
                        '✅ Viết content, code, phân tích dữ liệu tự động',
                        '✅ Truy cập không giới hạn, không bị rate limit',
                        '✅ Cập nhật model mới nhất liên tục'
                    ]
                },
                'entertainment': {
                    title: '🎬 Giải trí cao cấp',
                    description: 'Giải trí không giới hạn với chất lượng cao nhất',
                    items: [
                        '• Netflix Premium 4K - 45.000đ/tháng: 4 thiết bị, chất lượng 4K HDR',
                        '• Spotify Premium - 39.000đ/tháng: Nghe nhạc không quảng cáo, tải về',
                        '• YouTube Premium - 24.000đ/tháng: Không quảng cáo, phát nền, tải video'
                    ],
                    benefits: [
                        '✅ Tiết kiệm 60-70% so với mua chính hãng',
                        '✅ Chất lượng streaming cao nhất (4K, lossless)',
                        '✅ Không quảng cáo, trải nghiệm mượt mà',
                        '✅ Chia sẻ tài khoản gia đình'
                    ]
                },
                'design': {
                    title: '🎨 Thiết kế & Sáng tạo Tools',
                    description: 'Công cụ thiết kế chuyên nghiệp cho mọi nhu cầu sáng tạo',
                    items: [
                        '• Canva Pro - 19.000đ/tháng: 100M+ template, AI background remover',
                        '• Figma Edu - 5.000đ/tháng: UI/UX design tool hàng đầu',
                        '• Notion Edu - 5.000đ/tháng: Quản lý dự án, ghi chú thông minh'
                    ],
                    benefits: [
                        '✅ Template và asset premium không giới hạn',
                        '✅ Công cụ AI hỗ trợ thiết kế tự động',
                        '✅ Collaboration team hiệu quả',
                        '✅ Export chất lượng cao không watermark'
                    ]
                },
                'video': {
                    title: '📹 Tạo video AI',
                    description: 'Tạo video AI chuyên nghiệp chỉ với văn bản',
                    items: [
                        '• Kling Standard (660 Credit) - 89.000đ/tháng: Tạo video AI cơ bản',
                        '• Kling Pro (3000 Credit) - 299.000đ/tháng: Tạo nhiều video chất lượng cao',
                        '• Kling Pre (8000 Credit) - 499.000đ/tháng: Gói enterprise cho agency',
                        '• Gamma Plus/Pro - 169.000đ-269.000đ/tháng: Tạo presentation AI'
                    ],
                    benefits: [
                        '✅ Text-to-Video AI mạnh nhất thế giới',
                        '✅ Chất lượng 4K, realistic, smooth motion',
                        '✅ Không cần kỹ năng video editing',
                        '✅ Xuất file không watermark'
                    ]
                },
                'tools': {
                    title: '🛠️ Công cụ chuyên nghiệp',
                    description: 'Bộ công cụ chuyên dụng cho doanh nghiệp và cá nhân',
                    items: [
                        '• Capcut Pro - 49.000đ/tháng: Video editing chuyên nghiệp',
                        '• Avira VPN Pro - 5.000đ/tháng: Bảo mật internet tuyệt đối',
                        '• Camscanner Edu - 5.000đ/tháng: Scan tài liệu PDF chất lượng cao',
                        '• Mate Pro - 6.000đ/tháng: AI dịch thuật thông minh'
                    ],
                    benefits: [
                        '✅ Tăng hiệu quả công việc đáng kể',
                        '✅ Bảo mật và riêng tư tuyệt đối',
                        '✅ Tích hợp AI hỗ trợ thông minh',
                        '✅ Sync đa nền tảng seamless'
                    ]
                },
                'education': {
                    title: '📚 Giáo dục cao cấp',
                    description: 'Nâng cao kiến thức với công nghệ học tập hiện đại',
                    items: [
                        '• Super Duolingo - 12.000đ/tháng: Học ngoại ngữ không giới hạn',
                        '• Notion Edu - 5.000đ/tháng: Quản lý học tập thông minh',
                        '• Figma Edu - 5.000đ/tháng: Học thiết kế UI/UX chuyên nghiệp'
                    ],
                    benefits: [
                        '✅ Học tập hiệu quả với AI cá nhân hóa',
                        '✅ Không giới hạn lesson và tính năng premium',
                        '✅ Tracking tiến độ chi tiết',
                        '✅ Chứng chỉ học tập chính thức'
                    ]
                }
            };

            const service = services[serviceType];
            if (service) {
                // Create beautiful modal
                const modalHTML = `
                    <div id="serviceModal" style="
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0,0,0,0.8);
                        z-index: 10000;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        backdrop-filter: blur(10px);
                        animation: fadeIn 0.3s ease;
                    " onclick="closeModal()">
                        <div style="
                            background: var(--card-bg);
                            backdrop-filter: blur(20px);
                            border: 1px solid var(--border-color);
                            border-radius: 20px;
                            padding: 2.5rem;
                            max-width: 600px;
                            width: 90%;
                            max-height: 80vh;
                            overflow-y: auto;
                            color: white;
                            animation: slideInUp 0.4s ease;
                        " onclick="event.stopPropagation()">
                            <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;">
                                <h2 style="color: var(--primary-blue); margin: 0; font-size: 1.8rem;">${service.title}</h2>
                                <button onclick="closeModal()" style="
                                    background: none;
                                    border: none;
                                    color: var(--text-secondary);
                                    font-size: 1.5rem;
                                    cursor: pointer;
                                    padding: 0.5rem;
                                    border-radius: 50%;
                                    transition: all 0.3s ease;
                                " onmouseover="this.style.background='rgba(255,255,255,0.1)'" onmouseout="this.style.background='none'">✕</button>
                            </div>
                            
                            <p style="margin-bottom: 2rem; color: var(--text-secondary); font-size: 1.1rem;">${service.description}</p>
                            
                            <h3 style="color: var(--primary-green); margin-bottom: 1rem; font-size: 1.3rem;">💰 Giá & Gói Dịch Vụ:</h3>
                            <ul style="list-style: none; padding: 0; margin-bottom: 2rem;">
                                ${service.items.map(item => `
                                    <li style="
                                        background: rgba(255,255,255,0.03);
                                        padding: 1rem;
                                        margin-bottom: 0.8rem;
                                        border-radius: 10px;
                                        border-left: 3px solid var(--primary-blue);
                                        line-height: 1.5;
                                    ">${item}</li>
                                `).join('')}
                            </ul>
                            
                            <h3 style="color: var(--primary-purple); margin-bottom: 1rem; font-size: 1.3rem;">🎯 Lợi Ích Khi Sử Dụng:</h3>
                            <ul style="list-style: none; padding: 0; margin-bottom: 2rem;">
                                ${service.benefits.map(benefit => `
                                    <li style="
                                        padding: 0.5rem 0;
                                        color: var(--text-secondary);
                                        line-height: 1.6;
                                    ">${benefit}</li>
                                `).join('')}
                            </ul>
                            
                            <div style="text-align: center;">
                                <button onclick="showPage('contact')" style="
                                    background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
                                    color: white;
                                    border: none;
                                    padding: 1rem 2rem;
                                    border-radius: 25px;
                                    font-size: 1.1rem;
                                    font-weight: 600;
                                    cursor: pointer;
                                    margin-right: 1rem;
                                    transition: all 0.3s ease;
                                " onmouseover="this.style.transform='translateY(-2px)'" onmouseout="this.style.transform='translateY(0)'">
                                    💬 Đặt Hàng Ngay
                                </button>
                                <button onclick="openZalo('0795201808')" style="
                                    background: transparent;
                                    color: var(--primary-blue);
                                    border: 2px solid var(--primary-blue);
                                    padding: 1rem 2rem;
                                    border-radius: 25px;
                                    font-size: 1.1rem;
                                    font-weight: 600;
                                    cursor: pointer;
                                    transition: all 0.3s ease;
                                " onmouseover="this.style.background='var(--primary-blue)'; this.style.color='white'" onmouseout="this.style.background='transparent'; this.style.color='var(--primary-blue)'">
                                    💬 Tư Vấn Zalo
                                </button>
                            </div>
                        </div>
                    </div>
                `;

                document.body.insertAdjacentHTML('beforeend', modalHTML);
            }
        }

        function closeModal() {
            const modal = document.getElementById('serviceModal');
            if (modal) {
                modal.style.animation = 'fadeOut 0.3s ease';
                setTimeout(() => modal.remove(), 300);
            }
        }

        // Header scroll effect
        let lastScrollTop = 0;
        window.addEventListener('scroll', function () {
            const header = document.querySelector('.header');
            const scrollTop = window.pageYOffset || document.documentElement.scrollTop;

            // Add/remove scrolled class
            if (scrollTop > 50) {
                header.classList.add('scrolled');
            } else {
                header.classList.remove('scrolled');
            }

            // Hide/show header on scroll
            if (scrollTop > lastScrollTop && scrollTop > 100) {
                header.style.transform = 'translateY(-100%)';
            } else {
                header.style.transform = 'translateY(0)';
            }

            lastScrollTop = scrollTop;
        });

        // Intersection Observer for animations
        const observerOptions = {
            threshold: 0.1,
            rootMargin: '0px 0px -50px 0px'
        };

        const observer = new IntersectionObserver(function (entries) {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.style.animation = 'fadeInUp 0.8s ease forwards';
                    entry.target.style.opacity = '1';
                }
            });
        }, observerOptions);

        // Initialize animations
        document.addEventListener('DOMContentLoaded', function () {
            // Observe elements for animation
            const animatedElements = document.querySelectorAll('.service-card, .contact-card, .benefit-card, .stat-item, .software-detail');
            animatedElements.forEach(el => {
                el.style.opacity = '0';
                observer.observe(el);
            });

            // Logo click handler
            document.querySelector('.logo').addEventListener('click', function () {
                showPage('home');
            });

            // Keyboard shortcuts
            document.addEventListener('keydown', function (e) {
                if (e.altKey) {
                    switch (e.key) {
                        case '1': e.preventDefault(); showPage('home'); break;
                        case '2': e.preventDefault(); showPage('services'); break;
                        case '3': e.preventDefault(); showPage('pricing'); break;
                        case '4': e.preventDefault(); showPage('software-details'); break;
                        case '5': e.preventDefault(); showPage('benefits'); break;
                        case '6': e.preventDefault(); showPage('about'); break;
                        case '7': e.preventDefault(); showPage('contact'); break;
                    }
                }

                // ESC to close modal
                if (e.key === 'Escape') {
                    closeModal();
                }
            });
        });

        // Add CSS animations
        const style = document.createElement('style');
        style.textContent = `
            @keyframes fadeOut {
                from { opacity: 1; }
                to { opacity: 0; }
            }
            
            @keyframes slideInUp {
                from { 
                    opacity: 0; 
                    transform: translateY(50px); 
                }
                to { 
                    opacity: 1; 
                    transform: translateY(0); 
                }
            }
            
            .fab:hover {
                animation: bounceScale 0.6s ease infinite alternate;
            }
            
            @keyframes bounceScale {
                0% { transform: scale(1); }
                100% { transform: scale(1.1); }
            }
            
            /* Smooth scrollbar */
            * {
                scrollbar-width: thin;
                scrollbar-color: var(--primary-blue) var(--darker-bg);
            }
        `;
        document.head.appendChild(style);

        // Initialize page
        window.addEventListener('load', function () {
            showPage('home');
        });

        // Auto-update price notifications
        setInterval(function () {
            console.log('💎 Team Pro - Prices updated at ' + new Date().toLocaleTimeString());
        }, 300000); // Every 5 minutes

        // Add copy to clipboard for contact info
        function copyToClipboard(text, element) {
            navigator.clipboard.writeText(text).then(() => {
                const originalText = element.textContent;
                element.textContent = '✅ Đã copy!';
                element.style.color = 'var(--primary-green)';
                setTimeout(() => {
                    element.textContent = originalText;
                    element.style.color = '';
                }, 2000);
            });
        }

        // Add click to copy for phone numbers
        document.addEventListener('DOMContentLoaded', function () {
            document.querySelectorAll('.zalo-number').forEach(el => {
                el.style.cursor = 'pointer';
                el.title = 'Click để copy số điện thoại';
                el.addEventListener('click', function (e) {
                    e.stopPropagation();
                    copyToClipboard(this.textContent, this);
                });
            });
        });

        // Đóng menu mobile khi click bên ngoài
        document.addEventListener('click', function (e) {
            const navMenu = document.getElementById('navMenu');
            const mobileBtn = document.querySelector('.mobile-menu-btn');
            if (!navMenu.contains(e.target) && !mobileBtn.contains(e.target)) {
                navMenu.classList.remove('active');
            }
        });

        // Close modal an toàn
        function closeModal() {
            const modal = document.getElementById('serviceModal');
            if (modal && modal.parentNode) {
                modal.style.animation = 'fadeOut 0.3s ease';
                setTimeout(() => modal.parentNode.removeChild(modal), 300);
            }
        }

        // Gộp DOMContentLoaded
        document.addEventListener('DOMContentLoaded', function () {
            const animatedElements = document.querySelectorAll('.service-card, .contact-card, .benefit-card, .stat-item, .software-detail');
            animatedElements.forEach(el => observer.observe(el));

            document.querySelector('.logo').addEventListener('click', function () {
                showPage('home');
            });

            document.querySelectorAll('.zalo-number').forEach(el => {
                el.addEventListener('click', function (e) {
                    e.stopPropagation();
                    copyToClipboard(this.textContent, this);
                });
            document.getElementById('themeToggle').addEventListener('click', () => {
  document.documentElement.classList.toggle('light-mode');
});

            });
        });

    </script>

    <button class="theme-toggle-btn" onclick="toggleTheme()">🌓</button>
    <button id="scrollToTopBtn" onclick="scrollToTop()">⬆️</button>
    <script>
        function toggleTheme() {
            document.body.classList.toggle('light-mode');
        }
        window.onscroll = function () { scrollFunction() };
        function scrollFunction() {
            if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
                document.getElementById("scrollToTopBtn").style.display = "block";
            } else {
                document.getElementById("scrollToTopBtn").style.display = "none";
            }
        }
        function scrollToTop() {
            document.body.scrollTop = 0;
            document.documentElement.scrollTop = 0;
        }
    </script>
</body>

</html>