/* CSS Reset & Variables */
        :root {
            --primary-gradient: linear-gradient(135deg, #7209b7 0%, #f72585 100%);
            --secondary-gradient: linear-gradient(135deg, #4cc9f0 0%, #4895ef 100%);
            --neon-pink: #f72585;
            --neon-purple: #7209b7;
            --neon-blue: #4cc9f0;
            --dark-blue: #0b0c10;
            --dark-gray: #1f2833;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-main: #2b2d42;
            --text-muted: #6c757d;
            --border-color: #e9ecef;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --container-width: 1200px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--light-bg);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Common Layout */
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            display: inline-block;
        }

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

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: var(--transition-smooth);
        }

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

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

        .ai-page-logo {
            height: 40px;
            width: auto;
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .nav-item {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main);
            padding: 5px 10px;
            border-radius: 4px;
        }

        .nav-item:hover {
            color: var(--neon-pink);
            background-color: rgba(247, 37, 133, 0.05);
        }

        .nav-btn {
            background: var(--primary-gradient);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(247, 37, 133, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--text-main);
            border-radius: 3px;
            transition: var(--transition-smooth);
        }

        /* Hero Section (No images) */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background: radial-gradient(circle at 90% 10%, rgba(76, 201, 240, 0.1) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(114, 9, 183, 0.08) 0%, transparent 40%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background-color: rgba(247, 37, 133, 0.1);
            color: var(--neon-pink);
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(247, 37, 133, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--dark-blue);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero h1 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 40px;
        }

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

        .btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(247, 37, 133, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(247, 37, 133, 0.45);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--text-main);
            border: 2px solid var(--border-color);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .btn-secondary:hover {
            border-color: var(--neon-purple);
            color: var(--neon-purple);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--neon-pink);
            box-shadow: 0 15px 35px rgba(247, 37, 133, 0.1);
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* About Us & Platform Intro */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .platform-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-mini-card {
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            border-left: 4px solid var(--neon-purple);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        }

        .feature-mini-card h4 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--dark-blue);
        }

        .feature-mini-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(114, 9, 183, 0.1);
            color: var(--neon-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-size: 1.35rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .service-tag {
            font-size: 0.75rem;
            padding: 4px 10px;
            background-color: var(--light-bg);
            border-radius: 20px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Model Wall & Tag Cloud */
        .model-wall {
            background-color: var(--white);
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            border: 1px solid var(--border-color);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .model-tag {
            padding: 8px 18px;
            background-color: var(--light-bg);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .model-tag:hover {
            background: var(--primary-gradient);
            color: var(--white);
            border-color: transparent;
            transform: scale(1.05);
        }

        /* Workflows & Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .step-card {
            position: relative;
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .step-num {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
        }

        .step-card h4 {
            font-size: 1.15rem;
            margin-top: 10px;
            margin-bottom: 12px;
            color: var(--dark-blue);
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Token Comparison Block */
        .comparison-table-wrapper {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid var(--border-color);
            overflow-x: auto;
        }

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

        .comp-table th, .comp-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .comp-table th {
            background-color: var(--light-bg);
            font-weight: 700;
            color: var(--dark-blue);
        }

        .comp-table tbody tr:hover {
            background-color: rgba(76, 201, 240, 0.03);
        }

        .badge-recommend {
            padding: 4px 10px;
            background: var(--primary-gradient);
            color: var(--white);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        /* Ratings Panel */
        .rating-panel {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid var(--border-color);
            align-items: center;
        }

        .rating-score-box {
            text-align: center;
            background: var(--light-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }

        .rating-num {
            font-size: 4rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .rating-stars {
            color: #ffb703;
            font-size: 1.5rem;
            margin: 15px 0;
        }

        .rating-desc {
            font-weight: 700;
            color: var(--dark-blue);
        }

        .rating-progress-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .progress-item {
            display: grid;
            grid-template-columns: 120px 1fr 50px;
            align-items: center;
            gap: 15px;
        }

        .progress-label {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .progress-bar-bg {
            height: 8px;
            background-color: var(--border-color);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: var(--secondary-gradient);
            border-radius: 4px;
        }

        /* Case & Media Section */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.06);
        }

        .case-img-container {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background-color: var(--light-bg);
        }

        .case-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .case-card:hover .case-img-container img {
            transform: scale(1.05);
        }

        .case-info {
            padding: 25px;
        }

        .case-info h4 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }

        .case-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Form section */
        .matching-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
            border: 1px solid var(--border-color);
        }

        .matching-info {
            padding: 60px;
            background: linear-gradient(135deg, rgba(114, 9, 183, 0.05) 0%, rgba(247, 37, 133, 0.05) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .matching-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }

        .matching-info p {
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .info-bullets {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .bullet-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .bullet-icon {
            color: var(--neon-pink);
            font-size: 1.2rem;
        }

        .matching-form-wrapper {
            padding: 60px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            outline: none;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
        }

        .form-control:focus {
            border-color: var(--neon-purple);
            box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.15);
        }

        .btn-submit {
            width: 100%;
            background: var(--primary-gradient);
            color: var(--white);
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
            transition: var(--transition-smooth);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(247, 37, 133, 0.4);
        }

        /* FAQ Section */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .faq-header {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .faq-header h4 {
            font-size: 1.05rem;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .faq-icon {
            font-size: 1.2rem;
            font-weight: 300;
            transition: var(--transition-smooth);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 25px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .faq-item.active {
            border-color: var(--neon-purple);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--neon-pink);
        }

        .faq-item.active .faq-content {
            padding-bottom: 20px;
        }

        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 20px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testi-text {
            font-style: italic;
            color: var(--text-main);
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .testi-user {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .avatar-placeholder {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
        }

        .user-details h5 {
            font-size: 0.95rem;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .user-details span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Articles Section */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: var(--white);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition-smooth);
        }

        .article-card:hover {
            transform: translateY(-3px);
            border-color: var(--neon-blue);
        }

        .article-card h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
            line-height: 1.4;
        }

        .article-card a {
            font-weight: 700;
            color: var(--neon-purple);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .article-card a:hover {
            color: var(--neon-pink);
        }

        /* Contacts & Location */
        .contacts-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
        }

        .contact-info-panel {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border-color);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .contact-item-box h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--dark-blue);
        }

        .contact-item-box p {
            color: var(--text-muted);
            font-size: 0.95rem;
            word-break: break-all;
        }

        .qr-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border-color);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .qr-wrapper {
            width: 160px;
            height: 160px;
            border: 1px solid var(--border-color);
            padding: 10px;
            border-radius: 12px;
            margin-bottom: 20px;
            background: var(--white);
        }

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

        /* Footer & Partners */
        .footer {
            background-color: var(--dark-blue);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .footer-links-grid a {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }

        .footer-links-grid a:hover {
            color: var(--neon-blue);
        }

        .footer-partners h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

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

        .partners-wrap a {
            background: rgba(255,255,255,0.05);
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .partners-wrap a:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--neon-pink);
            color: var(--white);
        }

        .footer-bottom {
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            flex-wrap: wrap;
            gap: 20px;
        }

        .ai-page-home-link {
            color: var(--neon-blue);
            font-weight: 700;
        }

        /* Floating Widgets */
        .float-widget {
            position: fixed;
            right: 25px;
            bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .widget-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .widget-btn:hover {
            transform: scale(1.1);
            background: var(--primary-gradient);
            color: var(--white);
        }

        .widget-popover {
            position: absolute;
            bottom: 60px;
            right: 0;
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            width: 200px;
            display: none;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .widget-popover img {
            width: 130px;
            height: 130px;
            margin: 0 auto 10px;
        }

        .widget-popover p {
            font-size: 0.85rem;
            color: var(--text-main);
            font-weight: 600;
        }

        .widget-btn:hover .widget-popover {
            display: block;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                margin-top: 20px;
            }
            .services-grid, .cases-grid, .testimonials-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid, .matching-box, .contacts-grid {
                grid-template-columns: 1fr;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            }
            .nav-menu.active {
                display: flex;
            }
            .menu-toggle {
                display: flex;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .stats-grid, .services-grid, .cases-grid, .testimonials-grid, .articles-grid, .steps-grid {
                grid-template-columns: 1fr;
            }
            .matching-info, .matching-form-wrapper, .contact-info-panel, .qr-card {
                padding: 30px 20px;
            }
            .contact-info-panel {
                grid-template-columns: 1fr;
            }
            .rating-panel {
                grid-template-columns: 1fr;
            }
        }