﻿
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fb;
            color: #0f182a;
            line-height: 1.6;
            padding-top: 64px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: #2a6df4;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1a56d6;
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 18px;
            position: relative;
            z-index: 2;
        }

        
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #2a6df4, #7c3aed);
            z-index: 1001;
            width: 0%;
            transition: width 0.1s;
            border-radius: 0 2px 2px 0;
            box-shadow: 0 0 12px rgba(42, 109, 244, 0.3);
        }

        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            padding: 8px 18px;
            min-height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }

        .navbar .logo {
            font-size: 20px;
            font-weight: 700;
            color: #0f182a;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 2px;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .navbar .logo:hover {
            transform: scale(1.04);
        }
        .navbar .logo .accent {
            color: #2a6df4;
        }
        .navbar .logo .light {
            font-weight: 300;
            color: #8a9bb5;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2px;
            align-items: center;
            justify-content: flex-end;
        }

        .nav-links a {
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            color: #4a5a72;
            transition: all 0.3s;
            position: relative;
            white-space: nowrap;
            min-height: 36px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #2a6df4;
            transition: width 0.3s ease, left 0.3s ease;
            border-radius: 4px;
        }

        .nav-links a:hover::after {
            width: 50%;
            left: 25%;
        }

        .nav-links a:hover {
            background: #eef2f7;
            color: #0f182a;
        }

        .nav-links a.active {
            background: #2a6df4;
            color: #fff;
            box-shadow: 0 4px 12px rgba(42, 109, 244, 0.25);
        }

        .nav-links a.active::after {
            display: none;
        }

        .nav-links a.active:hover {
            background: #1a56d6;
        }

        .nav-links .nav-badge {
            background: rgba(42, 109, 244, 0.12);
            color: #2a6df4;
            font-size: 9px;
            font-weight: 700;
            padding: 0px 8px;
            border-radius: 30px;
            line-height: 18px;
            letter-spacing: 0.2px;
        }

        .nav-links a.active .nav-badge {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        
        @media (max-width: 600px) {
            .navbar {
                padding: 6px 12px;
                min-height: 56px;
            }
            .navbar .logo {
                font-size: 17px;
            }
            .nav-links {
                gap: 0px;
            }
            .nav-links a {
                padding: 4px 8px;
                font-size: 12px;
                min-height: 30px;
                gap: 2px;
                border-radius: 20px;
            }
            .nav-links .nav-badge {
                font-size: 8px;
                padding: 0px 5px;
                line-height: 15px;
            }
        }

        @media (max-width: 420px) {
            .navbar .logo {
                font-size: 15px;
            }
            .nav-links a {
                font-size: 11px;
                padding: 3px 6px;
                min-height: 26px;
            }
            .nav-links .nav-badge {
                font-size: 7px;
                padding: 0px 4px;
                line-height: 13px;
            }
        }

        
        .btn-primary,
        .btn-secondary,
        .btn-dl,
        .btn-submit,
        .btn-apply {
            position: relative;
            overflow: hidden;
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: scale(0);
            animation: rippleAnim 0.6s linear;
            pointer-events: none;
        }

        @keyframes rippleAnim {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #2a6df4;
            color: #fff;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 24px rgba(42, 109, 244, 0.25);
            font-family: inherit;
            min-height: 52px;
            min-width: 44px;
            touch-action: manipulation;
            width: 100%;
            gap: 8px;
        }

        .btn-primary:hover {
            background: #1a56d6;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 40px rgba(42, 109, 244, 0.4);
            color: #fff;
        }

        .btn-primary:active {
            transform: scale(0.95);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            color: #0f182a;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 600;
            border: 1px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: inherit;
            min-height: 52px;
            min-width: 44px;
            touch-action: manipulation;
            width: 100%;
            gap: 8px;
            backdrop-filter: blur(4px);
        }

        .btn-secondary:hover {
            background: #fff;
            border-color: #2a6df4;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            color: #0f182a;
        }

        .btn-secondary:active {
            transform: scale(0.95);
        }

        .btn-dl {
            background: #2a6df4;
            color: #fff;
            border: none;
            padding: 16px 24px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: inherit;
            width: 100%;
            max-width: 280px;
            box-shadow: 0 8px 24px rgba(42, 109, 244, 0.2);
            min-height: 54px;
            touch-action: manipulation;
        }

        .btn-dl:hover {
            background: #1a56d6;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 40px rgba(42, 109, 244, 0.35);
            color: #fff;
        }

        .btn-dl:active {
            transform: scale(0.95);
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #2a6df4;
            color: #fff;
            padding: 16px 32px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 24px rgba(42, 109, 244, 0.25);
            font-family: inherit;
            min-height: 54px;
            min-width: 44px;
            touch-action: manipulation;
            width: 100%;
        }

        .btn-submit:hover {
            background: #1a56d6;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 40px rgba(42, 109, 244, 0.4);
            color: #fff;
        }

        .btn-submit:active {
            transform: scale(0.95);
        }

        .btn-apply {
            background: #2a6df4;
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 60px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: inherit;
            box-shadow: 0 8px 24px rgba(42, 109, 244, 0.2);
            min-height: 50px;
            min-width: 44px;
            touch-action: manipulation;
            width: 100%;
        }

        .btn-apply:hover {
            background: #1a56d6;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 36px rgba(42, 109, 244, 0.35);
            color: #fff;
        }

        .btn-apply:active {
            transform: scale(0.95);
        }

        
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 20px 0 24px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            flex: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        
        .hero-image {
            width: 100%;
            max-width: 520px;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(145deg, #eef2ff, #e0e8ff);
            box-shadow: 0 8px 32px rgba(42, 109, 244, 0.08);
            border: 1px solid rgba(42, 109, 244, 0.06);
            margin-top: 18px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            padding: 2px;
            background: conic-gradient(from 0deg, transparent, rgba(42, 109, 244, 0.15), transparent, rgba(42, 109, 244, 0.15), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: rotateGlow 8s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes rotateGlow {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .hero-image:hover {
            transform: scale(1.01);
            box-shadow: 0 16px 48px rgba(42, 109, 244, 0.12);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
        }

        .hero-image:hover img {
            transform: scale(1.03);
        }

        .hero-image .fallback-icon {
            display: none;
            font-size: 48px;
            color: #8a9bb5;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            background: #eef2ff;
            position: relative;
            z-index: 1;
        }

        
        @media (max-width: 767px) {
            .hero-image {
                width: 92%;
                max-width: 440px;
                aspect-ratio: 16 / 10;
                border-radius: 16px;
                margin-top: 14px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 420px) {
            .hero-image {
                width: 92%;
                max-width: 360px;
                aspect-ratio: 16 / 11;
                border-radius: 14px;
                margin-top: 12px;
            }
            .hero-image .fallback-icon {
                font-size: 40px;
            }
        }

        @media (max-width: 360px) {
            .hero-image {
                width: 92%;
                max-width: 300px;
                aspect-ratio: 16 / 12;
                border-radius: 12px;
                margin-top: 10px;
            }
            .hero-image .fallback-icon {
                font-size: 32px;
            }
        }

        
        .hero-content .tag {
            display: inline-block;
            background: rgba(42, 109, 244, 0.08);
            color: #2a6df4;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
            animation: pulseTag 2s ease-in-out infinite;
        }

        @keyframes pulseTag {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.04);
            }
        }

        .hero-content h1 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.1;
            margin-bottom: 14px;
            color: #0f182a;
            position: relative;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, #2a6df4, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
            background-size: 200% 200%;
            position: relative;
        }

        .hero-content h1 .highlight::after {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 120%;
            height: 140%;
            background: radial-gradient(ellipse, rgba(42, 109, 244, 0.06), transparent 70%);
            z-index: -1;
            filter: blur(20px);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        @keyframes shimmer {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .hero-content p {
            font-size: 16px;
            color: #5a6e8a;
            max-width: 100%;
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
        }

        
        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 44px;
            }

            .hero-content p {
                max-width: 620px;
                font-size: 18px;
            }

            .hero-actions {
                flex-direction: row;
                max-width: none;
                gap: 16px;
                justify-content: center;
            }

            .hero-image {
                max-width: 520px;
                aspect-ratio: 16 / 9;
                border-radius: 24px;
                margin-top: 22px;
                width: 100%;
            }
        }

        @media (min-width: 1024px) {
            .hero-content h1 {
                font-size: 52px;
            }

            .hero-image {
                max-width: 580px;
                margin-top: 24px;
            }
        }

        
        .section-title {
            text-align: center;
            margin: 40px 0 24px;
        }

        .section-title .badge {
            display: inline-block;
            background: rgba(42, 109, 244, 0.08);
            color: #2a6df4;
            font-size: 12px;
            font-weight: 600;
            padding: 2px 16px;
            border-radius: 30px;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
            transition: all 0.3s;
        }

        .section-title .badge:hover {
            background: rgba(42, 109, 244, 0.15);
            transform: scale(1.04);
        }

        .section-title h2 {
            font-size: 26px;
            font-weight: 700;
            color: #0f182a;
            letter-spacing: -0.3px;
        }

        .section-title p {
            color: #5a6e8a;
            font-size: 15px;
            margin-top: 4px;
        }

        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 8px 0 6px;
        }

        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 22px 16px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            cursor: default;
            position: relative;
            overflow: hidden;
            perspective: 800px;
            transform-style: preserve-3d;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(42, 109, 244, 0.03), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(42, 109, 244, 0.06), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }

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

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card:hover {
            border-color: #2a6df4;
            box-shadow: 0 8px 32px rgba(42, 109, 244, 0.08);
            transform: translateY(-6px) scale(1.01);
        }

        .feature-card .icon {
            font-size: 32px;
            display: block;
            margin-bottom: 8px;
            transition: transform 0.4s;
        }

        .feature-card:hover .icon {
            transform: scale(1.15) rotate(-4deg);
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: #0f182a;
            margin-bottom: 2px;
        }

        .feature-card p {
            font-size: 13px;
            color: #5a6e8a;
            margin: 0;
            line-height: 1.5;
        }

        
        #detail {
            scroll-margin-top: 80px;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            margin: 8px 0 6px;
        }

        .detail-block {
            background: #fff;
            border-radius: 20px;
            padding: 24px 22px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .detail-block::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(42, 109, 244, 0.04), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .detail-block:hover::after {
            opacity: 1;
        }

        .detail-block:hover {
            border-color: #2a6df4;
            box-shadow: 0 8px 32px rgba(42, 109, 244, 0.06);
            transform: translateY(-4px);
        }

        .detail-block h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0f182a;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .detail-block ul {
            list-style: none;
            padding: 0;
        }

        .detail-block ul li {
            padding: 8px 0 8px 28px;
            position: relative;
            border-bottom: 1px solid #f0f3f8;
            color: #2a3a52;
            font-size: 14px;
            line-height: 1.6;
            transition: padding-left 0.3s;
        }

        .detail-block ul li:hover {
            padding-left: 34px;
        }

        .detail-block ul li:last-child {
            border-bottom: none;
        }

        .detail-block ul li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: #2a6df4;
            font-weight: 700;
            transition: transform 0.3s;
        }

        .detail-block ul li:hover::before {
            transform: translateX(4px) scale(1.2);
        }

        
        .gallery-section {
            margin: 32px 0 20px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .gallery-item {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .gallery-item:nth-child(1) {
            animation: float 4s ease-in-out infinite;
        }
        .gallery-item:nth-child(2) {
            animation: float 4.5s ease-in-out infinite 0.3s;
        }
        .gallery-item:nth-child(3) {
            animation: float 5s ease-in-out infinite 0.6s;
        }
        .gallery-item:nth-child(4) {
            animation: float 4.2s ease-in-out infinite 0.9s;
        }
        .gallery-item:nth-child(5) {
            animation: float 4.8s ease-in-out infinite 1.2s;
        }
        .gallery-item:nth-child(6) {
            animation: float 4.3s ease-in-out infinite 1.5s;
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        .gallery-item:hover {
            animation-play-state: paused;
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08);
            border-color: #2a6df4;
        }

        .gallery-item .img-wrap {
            width: 100%;
            height: 190px;
            background: #eef2ff;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .gallery-item .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .gallery-item:hover .img-wrap img {
            transform: scale(1.06);
        }

        .gallery-item .img-wrap .fallback {
            font-size: 44px;
            color: #8a9bb5;
            background: #f0f3f8;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item .info {
            padding: 16px 20px 20px;
        }

        .gallery-item .info .tag {
            display: inline-block;
            background: rgba(42, 109, 244, 0.08);
            color: #2a6df4;
            font-size: 10px;
            font-weight: 600;
            padding: 1px 12px;
            border-radius: 30px;
            margin-bottom: 6px;
            letter-spacing: 0.2px;
        }

        .gallery-item .info h4 {
            font-size: 17px;
            font-weight: 700;
            color: #0f182a;
            margin-bottom: 4px;
        }

        .gallery-item .info p {
            font-size: 14px;
            color: #5a6e8a;
            margin: 0;
            line-height: 1.6;
        }

        .gallery-item .info .highlight-text {
            color: #2a6df4;
            font-weight: 500;
        }

        .gallery-note {
            text-align: center;
            margin-top: 16px;
            color: #8a9bb5;
            font-size: 12px;
            background: #f0f3f8;
            padding: 10px 16px;
            border-radius: 14px;
            line-height: 1.7;
        }

        
        .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 24px 0 6px;
        }

        .stat-item {
            background: #fff;
            border-radius: 18px;
            padding: 20px 12px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(42, 109, 244, 0.04), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .stat-item:hover::after {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: #2a6df4;
            box-shadow: 0 8px 28px rgba(42, 109, 244, 0.06);
        }

        .stat-item .number {
            font-size: 28px;
            font-weight: 700;
            color: #2a6df4;
            letter-spacing: -0.5px;
            display: inline-block;
        }

        .stat-item .label {
            font-size: 13px;
            color: #5a6e8a;
            margin-top: 0px;
        }

        
        .trust-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 20px;
            background: #fff;
            border-radius: 18px;
            padding: 16px 18px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            margin: 24px 0 6px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            transition: all 0.4s;
        }

        .trust-bar:hover {
            border-color: #2a6df4;
            box-shadow: 0 8px 28px rgba(42, 109, 244, 0.04);
        }

        .trust-bar .item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #4a5a72;
            transition: all 0.3s;
        }

        .trust-bar .item:hover {
            color: #2a6df4;
            transform: translateY(-2px);
        }

        .trust-bar .item .icon {
            font-size: 18px;
            transition: transform 0.3s;
        }

        .trust-bar .item:hover .icon {
            transform: scale(1.2) rotate(-4deg);
        }

        
        .cta-section {
            background: #fff;
            border-radius: 24px;
            padding: 34px 22px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.04);
            margin: 36px 0 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(42, 109, 244, 0.03), transparent 60%);
            animation: ctaGlow 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes ctaGlow {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .cta-section:hover {
            border-color: #2a6df4;
            box-shadow: 0 8px 32px rgba(42, 109, 244, 0.04);
        }

        .cta-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #0f182a;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: #5a6e8a;
            font-size: 15px;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 340px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        
        .footer {
            text-align: center;
            padding: 24px 0 14px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            margin-top: 12px;
            color: #8a9bb5;
            font-size: 12px;
        }

        .footer .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 18px;
            margin-bottom: 6px;
        }

        .footer .links a {
            color: #5a6e8a;
            font-size: 12px;
            transition: all 0.3s;
            position: relative;
        }

        .footer .links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: #2a6df4;
            transition: width 0.3s;
        }

        .footer .links a:hover::after {
            width: 100%;
        }

        .footer .links a:hover {
            color: #2a6df4;
        }

        
        @media (min-width: 768px) {
            body {
                padding-top: 76px;
            }

            .container {
                padding: 0 32px;
            }

            .navbar {
                padding: 0 32px;
                height: 76px;
                min-height: 76px;
            }

            .navbar .logo {
                font-size: 24px;
            }

            .nav-links {
                gap: 4px;
            }

            .nav-links a {
                padding: 8px 20px;
                font-size: 14px;
                min-height: 42px;
            }

            .nav-links .nav-badge {
                font-size: 10px;
                padding: 1px 10px;
                line-height: 20px;
            }

            .btn-primary,
            .btn-secondary {
                width: auto;
                padding: 14px 40px;
                font-size: 17px;
                min-height: 52px;
            }

            .btn-dl {
                max-width: 200px;
                padding: 14px 36px;
                font-size: 16px;
                min-height: 50px;
            }

            .btn-submit {
                width: auto;
                padding: 14px 44px;
                min-height: 50px;
            }

            .btn-apply {
                width: auto;
                padding: 12px 36px;
                min-height: 48px;
            }

            .section-title {
                margin: 56px 0 32px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }

            .detail-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .gallery-item {
                animation: none !important;
            }

            .gallery-item:hover {
                transform: translateY(-8px) scale(1.01);
            }

            .gallery-item .img-wrap {
                height: 210px;
            }

            .stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }

            .stat-item .number {
                font-size: 34px;
            }

            .trust-bar {
                gap: 40px;
                padding: 24px 32px;
            }

            .cta-section {
                padding: 52px 48px;
            }

            .cta-section h2 {
                font-size: 30px;
            }

            .cta-actions {
                flex-direction: row;
                max-width: none;
                justify-content: center;
                gap: 16px;
            }

            .footer .links {
                gap: 28px;
            }
            .footer .links a {
                font-size: 14px;
            }
            .footer {
                font-size: 14px;
                padding: 32px 0 18px;
            }

            .gallery-note {
                font-size: 13px;
                padding: 12px 24px;
            }
        }

        @media (min-width: 1024px) {
            .hero-content h1 {
                font-size: 52px;
            }
        }

        
        @media (max-width: 360px) {
            .container {
                padding: 0 8px;
            }

            .navbar {
                padding: 6px 10px;
                min-height: 56px;
            }

            .navbar .logo {
                font-size: 17px;
            }

            .nav-links a {
                font-size: 11px;
                padding: 4px 8px;
                min-height: 30px;
            }

            .nav-links .nav-badge {
                font-size: 8px;
                padding: 0px 6px;
                line-height: 16px;
            }

            .hero-content h1 {
                font-size: 26px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .section-title h2 {
                font-size: 22px;
            }

            .features-grid {
                gap: 10px;
            }

            .feature-card {
                padding: 16px 12px;
            }
            .feature-card .icon {
                font-size: 26px;
            }
            .feature-card h3 {
                font-size: 14px;
            }
            .feature-card p {
                font-size: 12px;
            }

            .gallery-item .img-wrap {
                height: 160px;
            }

            .stats {
                gap: 10px;
            }
            .stat-item .number {
                font-size: 24px;
            }
            .stat-item .label {
                font-size: 12px;
            }

            .btn-primary,
            .btn-secondary,
            .btn-submit,
            .btn-dl,
            .btn-apply {
                font-size: 14px;
                padding: 10px 14px;
                min-height: 42px;
            }

            .cta-section {
                padding: 26px 16px;
            }
            .cta-section h2 {
                font-size: 20px;
            }
            .cta-section p {
                font-size: 14px;
            }
        }
    