        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* 紫色系主调 */
            --purple-950: #1a0a2e;
            --purple-900: #220c3d;
            --purple-800: #2d1065;
            --purple-700: #3b1578;
            --purple-600: #5b1eb8;
            --purple-500: #6d28d9;
            --purple-400: #7c3aed;
            --purple-350: #8b5cf6;
            --purple-300: #a78bfa;
            --purple-200: #c4b5fd;
            --purple-150: #dcd0fe;
            --purple-100: #ede9fe;
            --purple-50: #f5f0ff;
            --purple-25: #faf7ff;

            --gray-bg: #f9fafc;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --text-primary: #111827;
            --text-secondary: #1f2937;
            --text-tertiary: #374151;
            --text-muted: #4b5563;
            --white: #ffffff;

            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 20px 40px -12px rgba(109, 40, 217, 0.18);
            --shadow-xl: 0 28px 50px -16px rgba(91, 30, 184, 0.22);
            --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.03), 0 10px 28px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.05), 0 18px 40px rgba(109, 40, 217, 0.12);

            --radius-sm: 16px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-xl: 40px;
            --radius-full: 50%;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
            --transition-fast: 0.15s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            background-color: var(--white);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: 880px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), var(--shadow-xs);
            transition: box-shadow var(--transition-fast);
        }
        .header.scrolled {
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), var(--shadow-sm);
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
            gap: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            text-decoration: none;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #5b1eb8 0%, #7c3aed 50%, #8b5cf6 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: -0.5px;
            box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
        }
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.4px;
            color: var(--purple-700);
            text-decoration: none;
        }
        .logo-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: #8b5cf6;
            border-radius: var(--radius-full);
            margin-left: 1px;
            animation: pulse-dot 2.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.8);
            }
        }
        .nav-links {
            display: flex;
            gap: 22px;
            list-style: none;
            font-weight: 500;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
            font-size: 0.9rem;
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--purple-500);
            border-radius: 2px;
            transition: width var(--transition-smooth);
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--purple-600);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-cta {
            background: var(--purple-600);
            color: white !important;
            padding: 8px 18px !important;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.84rem !important;
            transition: all var(--transition-smooth) !important;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(109, 40, 217, 0.28);
            letter-spacing: 0.01em;
        }
        .nav-cta:hover {
            background: var(--purple-700) !important;
            box-shadow: 0 6px 20px rgba(109, 40, 217, 0.38);
            transform: translateY(-1px);
            color: white !important;
        }
        .nav-cta::after {
            display: none !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 50px 0 44px;
            background: linear-gradient(170deg, #faf7ff 0%, #f5f0ff 25%, #ede9fe 55%, #f9fafc 100%);
            border-bottom: 1px solid #e8e0f8;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -140px;
            right: -90px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 68%);
            border-radius: var(--radius-full);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -70px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 68%);
            border-radius: var(--radius-full);
            pointer-events: none;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .hero-content {
            flex: 1.3;
            min-width: 280px;
        }
        .hero-badge {
            background: var(--purple-100);
            color: var(--purple-700);
            padding: 6px 15px;
            border-radius: 28px;
            font-size: 0.76rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
            border: 1px solid rgba(109, 40, 217, 0.12);
        }
        .hero-badge-icon {
            font-size: 0.85rem;
        }
        .hero-content h1 {
            font-size: 2.9rem;
            font-weight: 800;
            line-height: 1.16;
            letter-spacing: -0.025em;
            margin-bottom: 12px;
            color: var(--purple-900);
        }
        .hero-highlight {
            background: linear-gradient(135deg, #5b1eb8 0%, #7c3aed 50%, #8b5cf6 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            position: relative;
            white-space: nowrap;
        }
        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(139, 92, 246, 0.16);
            border-radius: 3px;
            z-index: -1;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--purple-600);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }
        .hero-desc {
            font-size: 1rem;
            color: var(--text-tertiary);
            max-width: 90%;
            margin-bottom: 26px;
            line-height: 1.7;
        }
        .cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn-primary {
            background: var(--purple-600);
            color: white;
            border: none;
            padding: 13px 28px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 6px 18px rgba(109, 40, 217, 0.28);
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            background: var(--purple-700);
            box-shadow: 0 8px 26px rgba(109, 40, 217, 0.38);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--purple-500);
            color: var(--purple-600);
            padding: 12px 26px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.01em;
        }
        .btn-outline:hover {
            background: var(--purple-50);
            border-color: var(--purple-400);
            color: var(--purple-700);
            transform: translateY(-2px);
        }
        .btn-ghost {
            background: transparent;
            border: none;
            color: var(--purple-500);
            padding: 10px 18px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .btn-ghost:hover {
            color: var(--purple-700);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .hero-mockup {
            flex: 0.8;
            background: #1e1035;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            max-width: 300px;
            width: 100%;
            flex-shrink: 0;
            border: 2px solid #3d2670;
            transform: rotate(-2deg);
            transition: transform var(--transition-smooth);
        }
        .hero-mockup:hover {
            transform: rotate(0deg);
        }
        .mockup-phone {
            background: #180a2e;
            padding: 12px 9px 14px;
            border-radius: 26px;
        }
        .mockup-status {
            display: flex;
            justify-content: space-between;
            padding: 0 5px 10px;
            color: #c4b5fd;
            font-size: 0.62rem;
            letter-spacing: 0.04em;
        }
        .chat-item {
            background: #261840;
            margin-bottom: 8px;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--transition-fast);
            border-left: 3px solid transparent;
        }
        .chat-item:nth-child(3) {
            border-left-color: #7c3aed;
        }
        .chat-item:last-child {
            margin-bottom: 0;
        }
        .chat-name {
            font-weight: 600;
            color: white;
            font-size: 0.8rem;
        }
        .chat-preview {
            font-size: 0.66rem;
            color: #a78bfa;
            margin-top: 2px;
        }
        .chat-time {
            font-size: 0.58rem;
            color: #8b8aa0;
        }
        .chat-lock {
            font-size: 0.55rem;
            color: #8b5cf6;
            margin-left: 3px;
        }
        .search-bar-mock {
            background: #2d1d4e;
            border-radius: 20px;
            padding: 6px 12px;
            margin-bottom: 12px;
            color: #a78bfa;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== TRUST STRIP ===== */
        .trust-strip {
            background: var(--white);
            padding: 26px 0;
            border-bottom: 1px solid #f0ebf8;
        }
        .trust-strip-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            align-items: center;
            text-align: center;
        }
        .trust-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
        }
        .trust-stat-number {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--purple-600);
            font-family: var(--font-mono);
            letter-spacing: -0.02em;
        }
        .trust-stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .trust-divider {
            width: 1px;
            height: 34px;
            background: #e5dff5;
            flex-shrink: 0;
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 68px 0;
        }
        .section-alt {
            background: #faf9fc;
        }
        .section-tight {
            padding: 48px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.76rem;
            font-weight: 650;
            color: var(--purple-500);
            text-transform: uppercase;
            letter-spacing: 0.07em;
            margin-bottom: 10px;
            background: var(--purple-50);
            padding: 4px 14px;
            border-radius: 20px;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 750;
            margin-bottom: 10px;
            color: var(--purple-900);
            letter-spacing: -0.015em;
        }
        .section-sub {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* ===== FEATURES GRID ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }
        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            transition: all var(--transition-smooth);
            border: 1px solid #ece6f8;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #5b1eb8 0%, #7c3aed 50%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity var(--transition-smooth);
            border-radius: 0 0 3px 3px;
        }
        .feature-card:hover {
            border-color: #d4c8f0;
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-icon {
            font-size: 2.4rem;
            margin-bottom: 14px;
            display: block;
        }
        .feature-card h3 {
            font-size: 1.22rem;
            margin-bottom: 8px;
            font-weight: 680;
            color: var(--purple-800);
            letter-spacing: -0.01em;
        }
        .feature-card p {
            color: var(--text-tertiary);
            line-height: 1.6;
            font-size: 0.9rem;
            flex-grow: 1;
        }
        .feature-card .card-link {
            margin-top: 12px;
            color: var(--purple-500);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--transition-fast);
        }
        .feature-card .card-link:hover {
            gap: 8px;
            color: var(--purple-700);
        }

        /* ===== DOWNLOAD SELECTOR ===== */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
        }
        .download-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 26px 18px;
            text-align: center;
            border: 2px solid #ece6f8;
            text-decoration: none;
            color: var(--text-primary);
            transition: all var(--transition-spring);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .download-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(109, 40, 217, 0.04) 100%);
            transition: height var(--transition-smooth);
        }
        .download-card:hover {
            border-color: var(--purple-400);
            box-shadow: 0 12px 32px rgba(109, 40, 217, 0.13);
            transform: translateY(-3px);
        }
        .download-card:hover::after {
            height: 100%;
        }
        .download-card.recommended {
            border-color: var(--purple-500);
            border-width: 2.5px;
            box-shadow: 0 6px 22px rgba(109, 40, 217, 0.15);
        }
        .download-card.recommended::before {
            content: '推荐';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--purple-500);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.03em;
        }
        .download-icon {
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }
        .download-card h4 {
            font-weight: 680;
            color: var(--purple-800);
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }
        .download-card .dl-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
            background: var(--purple-50);
            padding: 4px 12px;
            border-radius: 16px;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        .download-card .dl-hint {
            font-size: 0.75rem;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
            line-height: 1.4;
        }

        /* ===== SEO CONTENT AREA ===== */
        .seo-content {
            padding: 56px 0 48px;
            background: var(--white);
        }
        .seo-content h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--purple-900);
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }
        .seo-content h3 {
            font-size: 1.25rem;
            font-weight: 650;
            color: var(--purple-700);
            margin: 22px 0 10px;
            letter-spacing: -0.005em;
        }
        .seo-content p {
            color: var(--text-tertiary);
            line-height: 1.8;
            margin-bottom: 14px;
            font-size: 0.95rem;
        }
        .seo-content ul,
        .seo-content ol {
            color: var(--text-tertiary);
            line-height: 1.8;
            margin: 8px 0 16px 20px;
            font-size: 0.93rem;
        }
        .seo-content li {
            margin-bottom: 6px;
        }
        .seo-content strong {
            color: var(--purple-700);
            font-weight: 650;
        }
        .seo-content a {
            color: var(--purple-500);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .seo-content a:hover {
            color: var(--purple-700);
        }
        .seo-content blockquote {
            border-left: 4px solid var(--purple-400);
            padding: 12px 18px;
            margin: 18px 0;
            background: var(--purple-25);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: var(--purple-800);
            font-style: italic;
        }

        /* ===== TECH BADGE ROW ===== */
        .tech-badge-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }
        .tech-tag {
            background: rgba(109, 40, 217, 0.05);
            color: var(--purple-600);
            font-family: var(--font-mono);
            padding: 5px 13px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.78rem;
            letter-spacing: 0.02em;
            border: 1px solid rgba(109, 40, 217, 0.12);
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .tech-tag:hover {
            background: rgba(109, 40, 217, 0.1);
            border-color: var(--purple-350);
            color: var(--purple-700);
        }

        /* ===== FAQ SECTION ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid #ece6f8;
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-xs);
        }
        .faq-item:hover {
            border-color: #d4c8f0;
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 17px 20px;
            font-weight: 650;
            color: var(--purple-800);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            cursor: default;
        }
        .faq-q-mark {
            color: var(--purple-500);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1.1rem;
            line-height: 1.5;
        }
        .faq-answer {
            padding: 0 20px 16px;
            color: var(--text-tertiary);
            font-size: 0.88rem;
            line-height: 1.7;
            margin: 0 20px;
            border-top: 1px solid #f3eefb;
            padding-top: 12px;
        }

        /* ===== TRUST BANNER ===== */
        .trust-banner {
            background: var(--purple-25);
            padding: 52px 0;
        }
        .trust-content {
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .trust-content h2 {
            font-size: 1.7rem;
            margin-bottom: 14px;
            color: var(--purple-800);
            letter-spacing: -0.01em;
        }
        .trust-content p {
            color: var(--text-tertiary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* ===== INNER LINK GRID ===== */
        .inner-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        .inner-link-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 20px 18px;
            border: 1px solid #ece6f8;
            text-decoration: none;
            color: var(--text-primary);
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-xs);
        }
        .inner-link-card:hover {
            border-color: var(--purple-350);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transform: translateX(4px);
        }
        .inner-link-arrow {
            flex-shrink: 0;
            font-size: 1.3rem;
            color: var(--purple-500);
            transition: transform var(--transition-smooth);
        }
        .inner-link-card:hover .inner-link-arrow {
            transform: translateX(6px);
        }
        .inner-link-text h4 {
            font-weight: 650;
            color: var(--purple-800);
            margin-bottom: 2px;
            font-size: 0.92rem;
        }
        .inner-link-text p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--purple-950);
            color: #d4c8f0;
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col {
            min-width: 130px;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 14px;
            font-weight: 600;
            font-size: 0.84rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 9px;
        }
        .footer-col a {
            color: #c4b5fd;
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 0.84rem;
        }
        .footer-col a:hover {
            color: white;
        }
        .footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .footer-brand-dot {
            display: inline-block;
            width: 5px;
            height: 5px;
            background: #8b5cf6;
            border-radius: var(--radius-full);
            margin-left: 2px;
            vertical-align: middle;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #3d2670;
            padding-top: 22px;
            font-size: 0.78rem;
            color: #9a8ac0;
        }
        .copyright a {
            color: #c4b5fd;
            text-decoration: none;
        }
        .copyright a:hover {
            color: white;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 960px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-desc {
                max-width: 100%;
            }
            .hero-grid {
                gap: 28px;
            }
            .hero-mockup {
                max-width: 240px;
                margin: 0 auto;
            }
            .nav-links {
                gap: 14px;
                font-size: 0.82rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .trust-strip-grid {
                gap: 18px;
            }
            .trust-divider {
                display: none;
            }
            .seo-content h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 680px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-desc {
                font-size: 0.9rem;
            }
            .hero-mockup {
                max-width: 210px;
            }
            .hero-grid {
                flex-direction: column;
                text-align: center;
            }
            .hero-desc {
                max-width: 100%;
            }
            .cta-group {
                justify-content: center;
            }
            .container {
                padding: 0 16px;
            }
            .nav-links {
                gap: 10px;
                font-size: 0.76rem;
            }
            .nav-cta {
                padding: 6px 14px !important;
                font-size: 0.76rem !important;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .download-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .inner-link-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                gap: 20px;
            }
            .section {
                padding: 44px 0;
            }
            .seo-content {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .logo-text {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 420px) {
            .download-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 1.55rem;
            }
            .hero-mockup {
                max-width: 180px;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 20px;
                font-size: 0.84rem;
            }
            .nav-links {
                gap: 8px;
                font-size: 0.7rem;
            }
            .feature-card {
                padding: 20px 16px;
            }
        }