@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Noto+Sans+SC:wght@400;500;700&display=swap');
        
        :root {
            --primary: #ff2d95;
            --primary-dark: #c8007a;
            --accent: #00d4ff;
            --bg: #f8f9fa;
            --text: #1f2937;
            --card: #ffffff;
            --border: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans SC', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
            font-weight: 700;
            color: #111827;
            text-decoration: none;
        }
        
        .logo img {
            height: 42px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        
        .nav-links a {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .btn {
            padding: 10px 24px;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,45,149,0.15), transparent 50%);
            animation: pulse 8s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        
        .hero-content {
            max-width: 720px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: clamp(2.8rem, 8vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        
        .hero p {
            font-size: 1.35rem;
            margin-bottom: 48px;
            opacity: 0.95;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            padding: 80px 0;
        }
        
        .card {
            background: white;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(255, 45, 149, 0.25);
        }
        
        .card-icon {
            width: 68px;
            height: 68px;
            background: #fff1f7;
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }
        
        .card h3 {
            font-size: 1.35rem;
            margin-bottom: 12px;
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            font-size: 2.1rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #111827;
        }
        
        .process-steps {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .step {
            text-align: center;
            max-width: 220px;
        }
        
        .step-number {
            width: 64px;
            height: 64px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .table-wrapper {
            overflow-x: auto;
            margin: 60px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 720px;
        }
        
        th, td {
            padding: 18px 24px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        th {
            background: #f8fafc;
            font-weight: 600;
            color: #334155;
        }
        
        .rating {
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        
        .faq-question {
            padding: 24px 0;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            display: none;
            padding: 0 0 24px;
            color: #64748b;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }
        
        .comment-card {
            background: white;
            padding: 32px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }
        
        .comment-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 24px;
            color: #475569;
        }
        
        .comment-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .avatar {
            width: 48px;
            height: 48px;
            background: #e0f2fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 16px 20px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 45, 149, 0.15);
        }
        
        .footer {
            background: #0f172a;
            color: white;
            padding: 80px 0 40px;
        }
        
        .float-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 62px;
            height: 62px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 10px 30px rgba(255, 45, 149, 0.4);
            z-index: 999;
            transition: all 0.3s;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 76px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--primary);
            z-index: 9999;
            transition: width 0.1s;
        }