        :root {
            --bg: #ffffff;
            --surface: #f8f6ff;
            --surface-alt: #f3f0ff;
            --text: #12102a;
            --text-secondary: #3d3560;
            --text-muted: #6b6085;
            --accent: #7b5ef7;
            --accent-deep: #5a3fd4;
            --accent-light: #a897f7;
            --accent-soft: #edeaff;
            --accent-glow: rgba(123, 94, 247, 0.09);
            --accent-glow-strong: rgba(123, 94, 247, 0.17);
            --border: #e0dbf0;
            --border-light: #ede8f8;
            --shadow-sm: 0 1px 4px rgba(90, 63, 212, 0.05);
            --shadow-md: 0 8px 28px rgba(90, 63, 212, 0.07);
            --shadow-lg: 0 20px 52px rgba(90, 63, 212, 0.09);
            --shadow-xl: 0 32px 72px rgba(90, 63, 212, 0.11);
            --radius-sm: 12px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --gradient-hero: linear-gradient(135deg, #5b3fd4 0%, #7b5ef7 30%, #8f74f7 55%, #b4a0fa 100%);
            --gradient-card-accent: linear-gradient(160deg, #f8f6ff 0%, #ffffff 60%, #f3f0ff 100%);
            --gradient-cta: linear-gradient(135deg, #1a1035 0%, #231845 40%, #1a1035 100%);
            --gradient-download: linear-gradient(135deg, #7b5ef7 0%, #6548e0 50%, #7b5ef7 100%);
            --star-glow: rgba(180, 160, 250, 0.5);
        }
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        /* HEADER */
        header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.96);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.7rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            flex-shrink: 0;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }
        .logo-icon {
            display: inline-block;
            font-size: 1.5rem;
            margin-right: 2px;
            vertical-align: -2px;
            animation: rocket-float 2.5s ease-in-out infinite;
        }
        @keyframes rocket-float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }
        .nav-links {
            display: flex;
            gap: 22px;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.9rem;
            position: relative;
            padding: 5px 2px;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--accent);
            border-radius: 3px;
            transition: width var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent);
            font-weight: 700;
        }
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a.nav-highlight {
            background: var(--accent-soft);
            color: var(--accent-deep);
            padding: 8px 18px;
            border-radius: 28px;
            font-weight: 600;
            transition: var(--transition);
        }
        .nav-links a.nav-highlight:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(123, 94, 247, 0.3);
        }
        .nav-links a.nav-highlight::after {
            display: none;
        }
        /* HERO */
        .hero-v2 {
            padding: 72px 0 56px;
            background: radial-gradient(ellipse at 70% 0%, rgba(160, 140, 250, 0.09) 0%, #ffffff 50%),
                radial-gradient(ellipse at 30% 85%, rgba(123, 94, 247, 0.05) 0%, #ffffff 55%);
            position: relative;
            overflow: hidden;
        }
        .hero-v2::after {
            content: '';
            position: absolute;
            top: -15%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(180, 160, 250, 0.13) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .hero-v2 .star-particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-light);
            border-radius: 50%;
            pointer-events: none;
            animation: star-twinkle 3s ease-in-out infinite;
            opacity: 0;
        }
        .hero-v2 .star-particle:nth-child(1) {
            top: 12%;
            left: 18%;
            animation-delay: 0s;
        }
        .hero-v2 .star-particle:nth-child(2) {
            top: 22%;
            left: 72%;
            animation-delay: 1.2s;
        }
        .hero-v2 .star-particle:nth-child(3) {
            top: 58%;
            left: 38%;
            animation-delay: 0.6s;
        }
        .hero-v2 .star-particle:nth-child(4) {
            top: 35%;
            left: 55%;
            animation-delay: 1.8s;
        }
        .hero-v2 .star-particle:nth-child(5) {
            top: 68%;
            left: 78%;
            animation-delay: 0.3s;
        }
        @keyframes star-twinkle {
            0%,
            100% {
                opacity: 0;
                transform: scale(0.5);
            }
            50% {
                opacity: 0.9;
                transform: scale(1.6);
            }
        }
        .hero-grid-v2 {
            display: flex;
            align-items: stretch;
            gap: 52px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-left {
            flex: 1.3;
            min-width: 300px;
        }
        .hero-badge-v2 {
            background: #f3f0ff;
            color: #5a3fd4;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.84rem;
            font-weight: 600;
            margin-bottom: 22px;
            letter-spacing: 0.02em;
            border: 1.5px solid rgba(123, 94, 247, 0.18);
            animation: fadeInUp 0.6s ease-out;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-left h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 900;
            line-height: 1.16;
            letter-spacing: -0.03em;
            margin-bottom: 18px;
            color: #15102e;
            animation: fadeInUp 0.6s ease-out 0.08s both;
        }
        .hero-gradient-text {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc-v2 {
            font-size: 1.08rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin-bottom: 26px;
            line-height: 1.65;
            animation: fadeInUp 0.6s ease-out 0.14s both;
        }
        .hero-stats-v2 {
            display: flex;
            gap: 34px;
            margin: 26px 0 26px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }
        .stat-v2 h3 {
            font-size: 1.85rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .stat-v2 p {
            color: var(--text-muted);
            font-size: 0.82rem;
            margin-top: 2px;
        }
        .btn-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease-out 0.26s both;
        }
        .btn-primary-v2 {
            background: #15102e;
            color: #ffffff;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 8px 24px rgba(21, 16, 46, 0.15);
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            letter-spacing: 0.01em;
        }
        .btn-primary-v2:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 16px 36px rgba(123, 94, 247, 0.28);
        }
        .btn-outline-v2 {
            background: transparent;
            border: 1.8px solid #d8d2f0;
            color: #3d3560;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.95rem;
            letter-spacing: 0.01em;
        }
        .btn-outline-v2:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: #f8f6ff;
            transform: translateY(-2px);
        }
        .hero-right {
            flex: 0.9;
            min-width: 280px;
            background: var(--gradient-card-accent);
            border-radius: var(--radius-xl);
            padding: 30px 26px;
            box-shadow: var(--shadow-lg);
            border: 1.5px solid rgba(123, 94, 247, 0.12);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
            animation: fadeInUp 0.6s ease-out 0.22s both;
            position: relative;
            overflow: hidden;
        }
        .hero-right::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(160, 140, 250, 0.28) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .platform-badge {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .platform-badge span {
            background: #f3f0ff;
            padding: 7px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.84rem;
            color: #5a3fd4;
            border: 1px solid rgba(123, 94, 247, 0.1);
        }
        .rating-large {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .stars-large {
            color: #f5a623;
            font-size: 1.6rem;
            letter-spacing: 3px;
        }
        .rating-large span {
            display: block;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .spec-mini {
            display: flex;
            justify-content: space-around;
            text-align: center;
            gap: 8px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .spec-mini div {
            font-size: 0.83rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }
        .spec-mini strong {
            color: var(--text);
            font-size: 0.88rem;
        }
        .hero-trust-badge {
            background: #f3f0ff;
            border-radius: 20px;
            padding: 13px 16px;
            text-align: center;
            font-size: 0.84rem;
            color: #3d2d8a;
            font-weight: 500;
            border: 1.5px dashed rgba(123, 94, 247, 0.28);
            position: relative;
            z-index: 1;
        }
        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }
        .hero-cta-row a {
            background: #f3f0ff;
            color: #5a3fd4;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.86rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1.5px solid rgba(123, 94, 247, 0.12);
            white-space: nowrap;
        }
        .hero-cta-row a:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(123, 94, 247, 0.3);
        }
        /* SECTION TITLES */
        .section-title-v2 {
            text-align: center;
            font-size: clamp(1.7rem, 3.5vw, 2.3rem);
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 50px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.55;
        }
        .section-accent-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            margin: 0 6px;
            vertical-align: middle;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.7);
                opacity: 1;
            }
        }
        /* TOOLS CARDS */
        .tools-section {
            padding: 76px 0;
            background: var(--surface);
        }
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 24px;
        }
        .tool-card {
            background: #ffffff;
            padding: 28px 22px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1.5px solid var(--border-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-hero);
            opacity: 0;
            transition: opacity var(--transition);
            border-radius: 0 0 4px 4px;
        }
        .tool-card:hover {
            transform: translateY(-7px);
            border-color: rgba(123, 94, 247, 0.3);
            box-shadow: var(--shadow-xl);
        }
        .tool-card:hover::before {
            opacity: 1;
        }
        .tool-card .tool-icon {
            font-size: 2.8rem;
            margin-bottom: 14px;
            display: block;
            position: relative;
            z-index: 1;
        }
        .tool-card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--text);
            letter-spacing: -0.01em;
            position: relative;
            z-index: 1;
        }
        .tool-card .tool-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .tool-card .tool-tags span {
            background: #f3f0ff;
            color: #5a3fd4;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .tool-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }
        .tool-card .tool-link-row {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .tool-card .tool-link-mini {
            display: inline-block;
            font-weight: 600;
            color: var(--accent);
            font-size: 0.82rem;
            text-decoration: none;
            padding: 5px 14px;
            border-radius: 18px;
            background: #f8f6ff;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .tool-card .tool-link-mini:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            letter-spacing: 0.02em;
        }
        /* CATEGORY NAV */
        .category-section {
            padding: 76px 0;
            background: #ffffff;
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .category-card {
            background: #f8f6ff;
            border-radius: var(--radius);
            padding: 26px 20px;
            border: 1.5px solid transparent;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .category-card:hover {
            background: #ffffff;
            border-color: rgba(123, 94, 247, 0.3);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        .category-card .cat-icon {
            font-size: 2.4rem;
            display: block;
            margin-bottom: 10px;
        }
        .category-card h4 {
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: 6px;
            font-weight: 700;
        }
        .category-card p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.45;
        }
        .category-card .cat-badge {
            display: inline-block;
            background: var(--accent-soft);
            color: #5a3fd4;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            margin-top: 8px;
            letter-spacing: 0.03em;
        }
        /* RULES HIGHLIGHT */
        .rules-highlight {
            padding: 76px 0;
            background: var(--surface);
        }
        .rules-grid {
            display: flex;
            gap: 44px;
            flex-wrap: wrap;
            align-items: center;
        }
        .rules-text {
            flex: 1;
            min-width: 280px;
        }
        .rules-text h2 {
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .rules-text p {
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .rules-flow {
            flex: 1;
            min-width: 280px;
            background: #ffffff;
            border-radius: var(--radius-xl);
            padding: 28px 22px;
            box-shadow: var(--shadow-md);
            border: 1.5px solid var(--border-light);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .flow-step {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 16px;
            background: #f8f6ff;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1.5px solid transparent;
            cursor: default;
        }
        .flow-step:hover {
            border-color: rgba(123, 94, 247, 0.25);
            background: #ffffff;
            box-shadow: var(--shadow-sm);
        }
        .flow-step .step-num {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(123, 94, 247, 0.3);
        }
        .flow-step .step-arrow {
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1.2rem;
        }
        /* PATH GUIDE */
        .path-guide {
            padding: 76px 0;
            background: #ffffff;
        }
        .path-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px;
        }
        .path-card {
            background: #f8f6ff;
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            border: 1.5px solid var(--border-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .path-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(123, 94, 247, 0.25);
            transform: translateY(-4px);
        }
        .path-card .path-badge {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .path-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }
        .path-card ol {
            padding-left: 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .path-card ol li {
            margin-bottom: 5px;
        }
        .path-card .path-cta {
            display: inline-block;
            margin-top: 16px;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition);
        }
        .path-card .path-cta:hover {
            color: var(--accent-deep);
            letter-spacing: 0.03em;
        }
        /* SEO BLOCK */
        .seo-block {
            padding: 72px 0;
            background: #ffffff;
        }
        .seo-content {
            max-width: 860px;
            margin: 0 auto;
            background: #f8f6ff;
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            border: 1.5px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            line-height: 1.75;
        }
        .seo-content h2 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 18px;
            color: var(--text);
            letter-spacing: -0.02em;
            text-align: center;
        }
        .seo-content p {
            color: var(--text-secondary);
            margin-bottom: 14px;
            font-size: 0.95rem;
        }
        .seo-content .seo-highlight {
            background: #ffffff;
            border-left: 4px solid var(--accent);
            padding: 14px 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 20px 0;
            font-weight: 500;
            color: #2d1a50;
        }
        /* FAQ */
        .faq-preview {
            padding: 72px 0;
            background: var(--surface);
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 18px;
            max-width: 920px;
            margin: 0 auto;
        }
        .faq-item {
            background: #ffffff;
            border-radius: var(--radius);
            padding: 20px 22px;
            border: 1.5px solid var(--border-light);
            transition: var(--transition);
            cursor: default;
        }
        .faq-item:hover {
            background: #faf9ff;
            border-color: rgba(123, 94, 247, 0.22);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .faq-item h4 {
            font-size: 1rem;
            margin-bottom: 6px;
            color: var(--text);
            font-weight: 700;
        }
        .faq-item p {
            font-size: 0.87rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        /* DOWNLOAD CTA */
        .download-cta-section {
            padding: 68px 0;
            background: var(--gradient-cta);
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .download-cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -15%;
            width: 130%;
            height: 160%;
            background: radial-gradient(ellipse at center, rgba(123, 94, 247, 0.32) 0%, transparent 65%);
            pointer-events: none;
        }
        .download-cta-section .cta-inner {
            position: relative;
            z-index: 1;
        }
        .download-cta-section h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .download-cta-section p {
            margin: 14px auto 0;
            max-width: 520px;
            opacity: 0.88;
            font-size: 0.95rem;
            line-height: 1.55;
        }
        .btn-download-cta {
            background: #ffffff;
            color: #5a3fd4;
            padding: 16px 48px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 28px;
            transition: var(--transition);
            font-size: 1rem;
            letter-spacing: 0.02em;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }
        .btn-download-cta:hover {
            background: #e8e3ff;
            transform: scale(1.04);
            box-shadow: 0 16px 40px rgba(123, 94, 247, 0.42);
            color: #3d2d8a;
        }
        .cta-extra-info {
            margin-top: 26px;
            font-size: 0.8rem;
            opacity: 0.7;
            position: relative;
            z-index: 1;
        }
        .cta-features-row {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }
        .cta-features-row span {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 18px;
            border-radius: 28px;
            font-size: 0.82rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        /* FOOTER */
        footer {
            background: #15102e;
            color: #b0a5c8;
            padding: 50px 0 26px;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 34px;
            margin-bottom: 38px;
        }
        .footer-grid>div {
            min-width: 140px;
        }
        .footer-grid h4 {
            color: #ffffff;
            font-size: 0.94rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 5px;
        }
        .footer-grid a {
            color: #b0a5c8;
            text-decoration: none;
            font-size: 0.84rem;
            transition: var(--transition);
        }
        .footer-grid a:hover {
            color: #c4b8f7;
        }
        .footer-bottom {
            border-top: 1px solid #2a2045;
            padding-top: 22px;
            text-align: center;
            font-size: 0.76rem;
            color: #7a6d95;
        }
        /* RESPONSIVE */
        @media (max-width: 900px) {
            .hero-grid-v2 {
                gap: 32px;
            }
            .hero-left h1 {
                font-size: 2rem;
            }
            .hero-right {
                padding: 24px 18px;
            }
            .nav-links {
                gap: 12px;
                font-size: 0.8rem;
            }
            .nav-links a {
                font-size: 0.78rem;
            }
            .container {
                padding: 0 16px;
            }
            .rules-grid {
                flex-direction: column;
                gap: 26px;
            }
            .seo-content {
                padding: 28px 20px;
            }
            .footer-grid {
                gap: 22px;
            }
            .path-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 600px) {
            nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .nav-links {
                width: 100%;
                justify-content: flex-start;
                gap: 8px;
                flex-wrap: wrap;
            }
            .nav-links a.nav-highlight {
                padding: 6px 14px;
                font-size: 0.76rem;
            }
            .hero-stats-v2 {
                gap: 18px;
            }
            .stat-v2 h3 {
                font-size: 1.4rem;
            }
            .btn-group {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary-v2,
            .btn-outline-v2 {
                text-align: center;
                justify-content: center;
            }
            .hero-cta-row {
                flex-direction: column;
                gap: 8px;
            }
            .hero-cta-row a {
                text-align: center;
                justify-content: center;
            }
            .tools-grid {
                grid-template-columns: 1fr;
            }
            .category-grid {
                grid-template-columns: 1fr 1fr;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                gap: 16px;
            }
            .cta-features-row {
                gap: 10px;
            }
            .seo-content {
                padding: 20px 16px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 400px) {
            .category-grid {
                grid-template-columns: 1fr;
            }
            .hero-left h1 {
                font-size: 1.6rem;
            }
            .platform-badge span {
                font-size: 0.72rem;
                padding: 5px 10px;
            }
        }