:root {
            --primary-glow: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 50%, #e6e9f0 100%);
            --holo-border: linear-gradient(90deg, #cfd9df 0%, #e2ebf0 100%);
            --laser-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
            --laser-btn: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
            --dark-text: #1e2029;
            --mid-text: #4e5166;
            --light-bg: #f9f9fc;
            --card-bg: rgba(255, 255, 255, 0.9);
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 20px rgba(161, 140, 209, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Container Align */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-text);
            line-height: 1.3;
        }

        .section-title {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: var(--mid-text);
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
            color: #1a2a4a;
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            background: linear-gradient(135deg, #c2e9fb 0%, #a1c4fd 100%);
        }

        .btn-secondary {
            background: #ffffff;
            color: var(--dark-text);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
        }

        /* Header & Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand img {
            height: 40px;
            width: auto;
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 800;
            background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-link {
            color: var(--mid-text);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: #a18cd1;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-text);
        }

        /* Hero Section (No Image) */
        .hero-section {
            padding: 160px 0 100px;
            background: radial-gradient(circle at 80% 20%, rgba(251, 194, 235, 0.3) 0%, rgba(161, 140, 209, 0.15) 40%, rgba(255, 255, 255, 0) 70%), var(--light-bg);
            text-align: center;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(161, 140, 209, 0.3);
            border-radius: 20px;
            font-size: 0.9rem;
            color: #896eb9;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3rem;
            max-width: 900px;
            margin: 0 auto 20px;
            color: var(--dark-text);
            line-height: 1.2;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: var(--mid-text);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
        }

        /* Stats Cards (Within Hero Section) */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--mid-text);
        }

        /* Section Layouts */
        .section-padding {
            padding: 90px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* About Us */
        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .about-text {
            color: var(--mid-text);
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .about-feat-item span {
            width: 8px;
            height: 8px;
            background: #a18cd1;
            border-radius: 50%;
        }

        .about-badge-card {
            background: linear-gradient(135deg, rgba(251, 194, 235, 0.2) 0%, rgba(161, 140, 209, 0.2) 100%);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .about-badge-card h4 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #5b4d7a;
        }

        /* Service Cards */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(161, 140, 209, 0.3);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--mid-text);
            font-size: 0.95rem;
        }

        /* Step Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .timeline-content {
            background: var(--card-bg);
            padding: 24px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            width: 100%;
        }

        /* Solutions Grid */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .solution-card {
            background: var(--card-bg);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: var(--transition);
        }

        .solution-card:hover {
            background: linear-gradient(135deg, rgba(251, 194, 235, 0.1) 0%, rgba(161, 140, 209, 0.1) 100%);
            border-color: rgba(161, 140, 209, 0.3);
        }

        /* Network Map Section */
        .network-map {
            background: #ffffff;
            border-radius: 24px;
            padding: 50px;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .map-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .map-tag {
            padding: 8px 16px;
            background: #f3f4f6;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--mid-text);
            font-weight: 500;
        }

        /* Table Design */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            margin-top: 30px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        th, td {
            padding: 16px 24px;
            border-bottom: 1px solid #f0f0f0;
        }

        th {
            background-color: #f7f9fc;
            font-weight: 700;
            color: var(--dark-text);
        }

        tr:last-child td {
            border-bottom: none;
        }

        /* Case Center */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .case-img-container {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #eef2f7;
        }

        .case-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-info {
            padding: 24px;
        }

        .case-tag {
            display: inline-block;
            padding: 4px 10px;
            background: #f1f3f9;
            border-radius: 4px;
            font-size: 0.8rem;
            color: #5b4d7a;
            margin-bottom: 12px;
        }

        /* Ratings Panel */
        .rating-panel {
            background: linear-gradient(135deg, rgba(251, 194, 235, 0.15) 0%, rgba(161, 140, 209, 0.15) 100%), #ffffff;
            border-radius: 24px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            box-shadow: var(--shadow-sm);
        }

        .rating-score {
            text-align: center;
        }

        .rating-num {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .rating-stars {
            color: #ffb800;
            font-size: 1.5rem;
            margin-top: 10px;
        }

        /* Form Design */
        .form-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-md);
            max-width: 700px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-text);
        }

        .form-control {
            padding: 12px 16px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: #a18cd1;
            box-shadow: 0 0 0 3px rgba(161, 140, 209, 0.2);
        }

        /* FAQ Accordion */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .faq-trigger {
            width: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark-text);
            cursor: pointer;
        }

        .faq-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fcfcfd;
        }

        .faq-panel-content {
            padding: 0 24px 20px;
            color: var(--mid-text);
            font-size: 0.95rem;
        }

        /* Testimonials */
        .comments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .comment-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .comment-text {
            font-style: italic;
            color: var(--mid-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .comment-user {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .comment-user-info h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .comment-user-info span {
            font-size: 0.8rem;
            color: var(--mid-text);
        }

        /* Cloud Tags & Terms */
        .tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 900px;
            margin: 0 auto;
        }

        .cloud-tag {
            padding: 10px 20px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 30px;
            color: var(--mid-text);
            text-decoration: none;
            transition: var(--transition);
        }

        .cloud-tag:hover {
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #151722;
            color: #c5c7d8;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a5a7b8;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: #fbc2eb;
        }

        .qr-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .qr-area img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            border: 4px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.9rem;
        }

        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .friend-links a {
            color: #a5a7b8;
            text-decoration: none;
        }

        .friend-links a:hover {
            color: #ffffff;
        }

        /* Floating Contact Box */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            color: var(--dark-text);
            position: relative;
        }

        .float-btn:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
            color: #ffffff;
        }

        .float-qrcode {
            position: absolute;
            bottom: 60px;
            right: 0;
            background: #ffffff;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: none;
            text-align: center;
        }

        .float-qrcode img {
            width: 120px;
            height: 120px;
        }

        .float-btn:hover .float-qrcode {
            display: block;
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 20px;
            z-index: 999;
        }

        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .service-grid, .case-grid, .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-wrapper {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu, .nav-actions .btn-secondary {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .service-grid, .case-grid, .comments-grid {
                grid-template-columns: 1fr;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: span 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }