        :root {
            --bg-deep: #060b14;
            --surface-1: #0c1528;
            --surface-2: #111d35;
            --surface-3: #162544;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(79, 172, 254, 0.25);
            --accent-primary: #00e5a0;
            --accent-secondary: #4facfe;
            --accent-warm: #ffb347;
            --accent-rose: #ff6b9d;
            --text-primary: #eef2f9;
            --text-secondary: #9aabc5;
            --text-tertiary: #5e6f89;
            --gradient-hero: linear-gradient(135deg, #00e5a0 0%, #4facfe 45%, #a78bfa 100%);
            --gradient-btn: linear-gradient(135deg, #00e5a0 0%, #4facfe 100%);
            --gradient-card-1: linear-gradient(160deg, rgba(0, 229, 160, 0.08) 0%, rgba(79, 172, 254, 0.06) 100%);
            --shadow-glow-green: 0 0 40px rgba(0, 229, 160, 0.12);
            --shadow-glow-blue: 0 0 40px rgba(79, 172, 254, 0.1);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-xl: 28px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-primary);
            font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.65;
            letter-spacing: 0.01em;
            background-image:
                radial-gradient(ellipse at 85% 15%, rgba(0, 229, 160, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 15% 45%, rgba(79, 172, 254, 0.07) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 80%, rgba(167, 139, 250, 0.04) 0%, transparent 50%);
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

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

        /* ========== HEADER (与首页一致) ========== */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 6%;
            position: sticky;
            top: 0;
            background: rgba(6, 11, 20, 0.82);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            z-index: 200;
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 750;
            color: #ffffff;
            letter-spacing: -0.02em;
        }
        .logo .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-hero);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #060b14;
            font-weight: 800;
            box-shadow: var(--shadow-glow-green);
        }
        .logo .logo-dot {
            color: var(--accent-primary);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.35;
            }
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        nav a {
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.02em;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-primary);
            border-radius: 2px;
            transition: width var(--transition-smooth);
        }
        nav a.active,
        nav a:hover {
            color: #ffffff;
        }
        nav a.active::after,
        nav a:hover::after {
            width: 100%;
        }
        nav a.active {
            color: var(--accent-primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .btn-gh {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            padding: 8px 16px;
            border-radius: 22px;
            transition: all var(--transition-smooth);
            background: rgba(255, 255, 255, 0.02);
        }
        .btn-gh:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 0 18px rgba(79, 172, 254, 0.1);
        }
        .btn-gh svg {
            width: 15px;
            height: 15px;
        }
        .btn-header {
            background: var(--gradient-btn);
            color: #060b14;
            padding: 9px 22px;
            border-radius: 22px;
            font-size: 14px;
            font-weight: 650;
            letter-spacing: 0.02em;
            box-shadow: 0 4px 18px rgba(0, 229, 160, 0.2);
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-header:hover {
            box-shadow: 0 6px 28px rgba(0, 229, 160, 0.35);
            transform: translateY(-1px);
        }

        /* ========== MAIN CONTAINER ========== */
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== DOWNLOAD HERO ========== */
        .download-hero {
            text-align: center;
            padding: 50px 0 20px;
            position: relative;
        }
        .download-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 229, 160, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .badge-free {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 229, 160, 0.08);
            color: var(--accent-primary);
            border: 1px solid rgba(0, 229, 160, 0.2);
            padding: 6px 16px;
            border-radius: 22px;
            font-size: 13px;
            font-weight: 550;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.03em;
        }
        .badge-free .free-icon {
            font-size: 16px;
        }
        .download-hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 16px;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }
        .download-hero .subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto 12px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.02em;
            line-height: 1.7;
        }
        .highlight-free {
            display: inline-block;
            background: rgba(255, 179, 71, 0.1);
            color: var(--accent-warm);
            padding: 3px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.04em;
        }

        /* ========== PLATFORM SWITCHER TABS (创意板块) ========== */
        .platform-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 36px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .platform-tab {
            padding: 10px 22px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 550;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .platform-tab.active,
        .platform-tab:hover {
            background: var(--gradient-card-1);
            border-color: var(--accent-primary);
            color: #ffffff;
            box-shadow: 0 0 20px rgba(0, 229, 160, 0.08);
        }

        /* ========== DOWNLOAD GRID ========== */
        .dl-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        .dl-card {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 30px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .dl-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-blue);
            transform: translateY(-2px);
        }
        .dl-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-btn);
            opacity: 0.7;
            border-radius: 0 0 2px 2px;
        }
        .dl-card.featured::after {
            content: "🔥 最受欢迎";
            position: absolute;
            top: 14px;
            right: 16px;
            background: rgba(255, 107, 157, 0.15);
            color: var(--accent-rose);
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }
        .dl-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }
        .dl-icon {
            width: 54px;
            height: 54px;
            background: var(--gradient-card-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
        }
        .dl-card:hover .dl-icon {
            transform: scale(1.06);
        }
        .dl-info h3 {
            font-size: 19px;
            color: #ffffff;
            margin-bottom: 3px;
            font-weight: 650;
            letter-spacing: 0.01em;
        }
        .dl-info span {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
        }
        .dl-meta {
            margin-bottom: 22px;
            font-size: 13px;
            color: var(--text-tertiary);
            line-height: 1.7;
        }
        .dl-meta p {
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dl-meta .meta-dot {
            width: 5px;
            height: 5px;
            background: var(--accent-primary);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .btn-download {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--gradient-btn);
            color: #060b14;
            padding: 14px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(0, 229, 160, 0.15);
            cursor: pointer;
            border: none;
            width: 100%;
        }
        .btn-download:hover {
            box-shadow: 0 8px 28px rgba(0, 229, 160, 0.3);
            transform: translateY(-1px);
            opacity: 0.95;
        }
        .hash-box {
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid var(--border-subtle);
            padding: 12px 16px;
            border-radius: 8px;
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            font-size: 11.5px;
            color: var(--text-tertiary);
            margin-top: 14px;
            word-break: break-all;
            letter-spacing: 0.02em;
            transition: all var(--transition-smooth);
            cursor: copy;
        }
        .hash-box:hover {
            border-color: var(--accent-secondary);
            color: var(--text-secondary);
            background: rgba(0, 0, 0, 0.5);
        }
        .hash-box .hash-label {
            color: var(--accent-primary);
            font-weight: 600;
            font-size: 10px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 2px;
            display: block;
        }

        /* ========== DEVICE FLOW SECTION (创意板块) ========== */
        .device-flow-section {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .device-flow-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0, 229, 160, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .device-flow-section h2 {
            font-size: 24px;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .device-flow-section .flow-sub {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.02em;
        }
        .device-icons-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .device-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            background: var(--surface-2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            transition: all var(--transition-smooth);
            min-width: 90px;
        }
        .device-node:hover {
            border-color: var(--accent-primary);
            box-shadow: 0 0 24px rgba(0, 229, 160, 0.08);
            transform: translateY(-3px);
        }
        .device-node .dev-emoji {
            font-size: 32px;
        }
        .device-node .dev-name {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.04em;
        }
        .flow-arrow {
            font-size: 22px;
            color: var(--accent-primary);
            animation: arrow-bounce 1.8s ease-in-out infinite;
        }
        .flow-arrow:nth-child(4) {
            animation-delay: 0.3s;
        }
        .flow-arrow:nth-child(6) {
            animation-delay: 0.6s;
        }
        @keyframes arrow-bounce {
            0%,
            100% {
                transform: translateX(0);
                opacity: 0.5;
            }
            50% {
                transform: translateX(6px);
                opacity: 1;
            }
        }

        /* ========== INSTALL STEPS (创意板块) ========== */
        .install-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 60px;
        }
        .step-card {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 22px;
            text-align: center;
            position: relative;
            transition: all var(--transition-smooth);
        }
        .step-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-blue);
            transform: translateY(-3px);
        }
        .step-number {
            width: 44px;
            height: 44px;
            background: var(--gradient-btn);
            color: #060b14;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            margin: 0 auto 14px;
            box-shadow: 0 4px 18px rgba(0, 229, 160, 0.2);
        }
        .step-card h4 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 650;
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }
        .step-card p {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
            line-height: 1.5;
        }

        /* ========== FREE GUARANTEE (创意板块) ========== */
        .free-guarantee {
            background: var(--surface-2);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            margin-bottom: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .free-guarantee::after {
            content: '';
            position: absolute;
            right: -80px;
            bottom: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 179, 71, 0.1) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .guarantee-text h2 {
            font-size: 26px;
            color: #ffffff;
            font-weight: 750;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .guarantee-text p {
            color: var(--text-secondary);
            font-size: 14px;
            letter-spacing: 0.02em;
            line-height: 1.7;
            position: relative;
            z-index: 1;
            margin-bottom: 16px;
        }
        .guarantee-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }
        .guarantee-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            font-size: 14px;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .guarantee-list li::before {
            content: '✓';
            color: var(--accent-primary);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .guarantee-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .price-badge {
            width: 140px;
            height: 140px;
            background: var(--gradient-card-1);
            border: 2px solid var(--accent-primary);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 50px rgba(0, 229, 160, 0.15);
            animation: float-badge 4s ease-in-out infinite;
        }
        @keyframes float-badge {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        .price-badge .price-num {
            font-size: 42px;
            font-weight: 900;
            color: var(--accent-primary);
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .price-badge .price-label {
            font-size: 13px;
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        /* ========== VERSION HISTORY TIMELINE (创意板块) ========== */
        .version-history {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            margin-bottom: 60px;
        }
        .version-history h2 {
            font-size: 24px;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }
        .version-timeline {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .version-item {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 18px 16px;
            border-left: 3px solid var(--accent-primary);
            transition: all var(--transition-smooth);
        }
        .version-item:hover {
            border-left-color: var(--accent-secondary);
            box-shadow: 0 0 18px rgba(79, 172, 254, 0.06);
        }
        .version-item .ver-tag {
            font-size: 12px;
            color: var(--accent-primary);
            font-weight: 650;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
            display: block;
        }
        .version-item .ver-date {
            font-size: 11px;
            color: var(--text-tertiary);
            letter-spacing: 0.03em;
            margin-bottom: 6px;
            display: block;
        }
        .version-item p {
            font-size: 12.5px;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
            line-height: 1.5;
            margin: 0;
        }

        /* ========== VERIFY SECTION ========== */
        .verify-section {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 36px 34px;
            margin-bottom: 60px;
        }
        .verify-section h2 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .verify-section p {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            line-height: 1.7;
        }
        .code-block {
            background: #020510;
            border: 1px solid var(--border-subtle);
            padding: 18px 20px;
            border-radius: 10px;
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            color: var(--accent-primary);
            font-size: 13px;
            letter-spacing: 0.02em;
            line-height: 1.8;
            overflow-x: auto;
            white-space: pre-wrap;
            word-break: break-all;
        }

        /* ========== COMPARISON TABLE (创意板块) ========== */
        .comparison-table-wrap {
            background: var(--surface-1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 36px 34px;
            margin-bottom: 60px;
            overflow-x: auto;
        }
        .comparison-table-wrap h2 {
            font-size: 22px;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 18px;
        }
        .comp-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            letter-spacing: 0.02em;
            min-width: 600px;
        }
        .comp-table th {
            text-align: left;
            padding: 12px 14px;
            color: var(--text-tertiary);
            font-weight: 500;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 11px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .comp-table td {
            padding: 12px 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .comp-table tr:last-child td {
            border-bottom: none;
        }
        .comp-table .check-icon {
            color: var(--accent-primary);
            font-weight: 700;
            font-size: 15px;
        }
        .comp-table .highlight-row {
            background: rgba(0, 229, 160, 0.03);
            border-radius: 6px;
        }
        .comp-table .highlight-row td:first-child {
            border-radius: 6px 0 0 6px;
        }
        .comp-table .highlight-row td:last-child {
            border-radius: 0 6px 6px 0;
        }

        /* ========== FOOTER (与首页一致) ========== */
        footer {
            background: #030810;
            border-top: 1px solid var(--border-subtle);
            padding: 50px 6% 30px;
            color: var(--text-secondary);
            font-size: 13.5px;
            letter-spacing: 0.02em;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand h3 {
            color: #ffffff;
            margin-bottom: 14px;
            font-size: 19px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: var(--text-tertiary);
        }
        .footer-col h4 {
            color: #ffffff;
            margin-bottom: 14px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 9px;
            color: var(--text-tertiary);
            transition: var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-primary);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-tertiary);
            letter-spacing: 0.03em;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .dl-grid {
                grid-template-columns: 1fr 1fr;
            }
            .install-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .version-timeline {
                grid-template-columns: repeat(2, 1fr);
            }
            .free-guarantee {
                grid-template-columns: 1fr;
            }
            .device-icons-row {
                gap: 10px;
            }
            .flow-arrow {
                display: none;
            }
        }
        @media (max-width: 768px) {
            header {
                padding: 14px 4%;
            }
            nav ul {
                display: none;
            }
            .download-hero h1 {
                font-size: 26px;
            }
            .dl-grid,
            .install-steps,
            .version-timeline,
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .device-icons-row {
                flex-direction: column;
            }
            .flow-arrow {
                transform: rotate(90deg);
                display: inline-block;
            }
            .comparison-table-wrap {
                padding: 20px 14px;
            }
            .comp-table {
                font-size: 11px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .price-badge {
                width: 110px;
                height: 110px;
            }
            .price-badge .price-num {
                font-size: 32px;
            }
        }