/* CSS Reset & Variables */
        :root {
            --primary: #8b5cf6;
            --secondary: #ec4899;
            --accent: #06b6d4;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-600: #475569;
            --text: #1e293b;
            --gradient-laser: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(6, 182, 212, 0.15) 100%);
            --gradient-btn: linear-gradient(135deg, #8b5cf6, #ec4899, #06b6d4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Container Alignment */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            border-bottom: 1px solid var(--gray-200);
            position: relative;
        }

        /* Header & Navigation */
        header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--gray-200);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-box img {
            height: 38px;
            width: auto;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.25rem;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav.nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        nav.nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav.nav-links a:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--gradient-btn);
            color: #fff !important;
            padding: 8px 18px;
            border-radius: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            border: none;
            background: transparent;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Hero Section (No Image, Laser Gradient) */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background: var(--gradient-laser);
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: 10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--dark);
            margin-bottom: 24px;
        }

        .hero h1 span {
            background: linear-gradient(90deg, #8b5cf6, #ec4899, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto 40px auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-main {
            display: inline-block;
            background: var(--gradient-btn);
            color: #fff;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        }

        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
        }

        .btn-sub {
            display: inline-block;
            background: #fff;
            color: var(--dark);
            border: 2px solid var(--gray-200);
            padding: 13px 33px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-sub:hover {
            background: var(--gray-100);
            border-color: var(--gray-600);
        }

        /* Section Header & Subtitle */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gray-600);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid layouts */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        /* Card Styling */
        .card {
            background: #ffffff;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.08);
            border-color: rgba(139, 92, 246, 0.3);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-btn);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .card-desc {
            color: var(--gray-600);
            font-size: 0.95rem;
        }

        /* Data Indicator Section */
        .indicators {
            background: #fff;
            padding: 50px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

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

        .indicator-val {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #8b5cf6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 10px;
        }

        .indicator-label {
            color: var(--gray-600);
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* Step Process */
        .step-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
        }

        .step-item {
            flex: 1;
            min-width: 220px;
            text-align: center;
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 30px 20px;
            position: relative;
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-btn);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin: -50px auto 20px auto;
            box-shadow: 0 4px 10px rgba(139,92,246,0.3);
        }

        /* Table design */
        .table-responsive {
            overflow-x: auto;
            background: #fff;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        th, td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-200);
            font-size: 0.95rem;
        }

        th {
            background-color: var(--gray-100);
            color: var(--dark);
            font-weight: 700;
        }

        tr:last-child td {
            border-bottom: none;
        }

        .badge-star {
            color: #f59e0b;
            font-weight: bold;
        }

        .highlight-row {
            background: rgba(139, 92, 246, 0.03);
        }

        /* FAQ Accordion */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-question {
            padding: 20px;
            font-weight: 700;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            color: var(--gray-600);
            border-top: 1px solid transparent;
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
            border-color: var(--gray-100);
        }

        .faq-icon::before {
            content: "+";
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary);
            transition: transform 0.3s;
            display: inline-block;
        }

        .faq-item.active .faq-icon::before {
            content: "−";
            transform: rotate(180deg);
        }

        /* Review list */
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .review-card {
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-head {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-btn);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .review-info h4 {
            font-size: 1rem;
            color: var(--dark);
        }

        .review-info p {
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        .review-text {
            color: var(--gray-600);
            font-size: 0.95rem;
            font-style: italic;
        }

        /* Images and Gallery style */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .gallery-info {
            padding: 15px;
        }

        .gallery-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .gallery-info p {
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        /* Tags & Cloud */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .tag-item {
            background: #fff;
            border: 1px solid var(--gray-200);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--gray-600);
            transition: all 0.3s;
        }

        .tag-item:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* Form Design */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            background: var(--light);
            color: var(--dark);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
        }

        .form-btn {
            width: 100%;
            padding: 15px;
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .form-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
        }

        /* Contact Details list */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .method-card {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--gray-200);
        }

        .method-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .qrcode-box img {
            width: 120px;
            height: 120px;
            margin-top: 15px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            padding: 5px;
        }

        /* Knowledge Base / Articles */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-item {
            background: #fff;
            border: 1px solid var(--gray-200);
            padding: 15px 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .article-item:hover {
            border-color: var(--primary);
            padding-left: 25px;
        }

        .article-item a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
        }

        .article-item span {
            color: var(--gray-600);
            font-size: 0.85rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px 0;
            border-top: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .friend-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.85rem;
            background: rgba(255,255,255,0.05);
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .friend-links a:hover {
            color: #fff;
            background: rgba(255,255,255,0.15);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* 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;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

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

        .float-btn .tooltip {
            position: absolute;
            right: 60px;
            background: var(--dark);
            color: #fff;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .float-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

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

            nav.nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #fff;
                border-bottom: 1px solid var(--gray-200);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            }

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

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

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