        :root {
            --bg: #080612;
            --surface: #110e22;
            --surface-alt: #181430;
            --surface-card: #16122d;
            --text: #f0edf8;
            --text-secondary: #b8b0d8;
            --text-muted: #7870a0;
            --accent: #f7b928;
            --accent-deep: #d4940e;
            --accent-light: #ffcc4d;
            --accent-soft: rgba(247, 185, 40, 0.10);
            --accent-glow: rgba(247, 185, 40, 0.14);
            --accent-glow-strong: rgba(247, 185, 40, 0.24);
            --accent-gradient: linear-gradient(135deg, #f7b928 0%, #ffcc4d 35%, #f5a623 65%, #ffe08a 100%);
            --accent-gradient-warm: linear-gradient(135deg, #f7b928 0%, #e8940c 50%, #f7b928 100%);
            --border: #252040;
            --border-light: #1e1a35;
            --border-accent: rgba(247, 185, 40, 0.22);
            --shadow-sm: 0 1px 6px rgba(0, 0, 0, 0.35);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
            --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.55);
            --shadow-xl: 0 32px 76px rgba(0, 0, 0, 0.6);
            --shadow-accent: 0 10px 38px rgba(247, 185, 40, 0.18);
            --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;
            --star-glow: rgba(247, 185, 40, 0.55);
            --deep-glow: rgba(247, 185, 40, 0.06);
        }
        *,
        *::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.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        .container {
            max-width: 1260px;
            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(8, 6, 18, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            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(8, 6, 18, 0.95);
            border-bottom-color: var(--border-accent);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.65rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: var(--accent-gradient);
            -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.4rem;
            margin-right: 3px;
            vertical-align: -3px;
            animation: rocket-float 2.4s ease-in-out infinite;
            -webkit-text-fill-color: initial;
        }
        @keyframes rocket-float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-7px);
            }
        }
        .nav-links {
            display: flex;
            gap: 20px;
            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.88rem;
            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-light);
        }
        .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);
            color: #080612;
            padding: 8px 18px;
            border-radius: 28px;
            font-weight: 700;
            transition: var(--transition);
            letter-spacing: 0.02em;
        }
        .nav-links a.nav-highlight:hover {
            background: var(--accent-light);
            color: #080612;
            transform: translateY(-2px);
            box-shadow: var(--shadow-accent);
        }
        .nav-links a.nav-highlight::after {
            display: none;
        }
        /* HERO */
        .hero-v2 {
            padding: 60px 0 48px;
            background: radial-gradient(ellipse at 65% 5%, rgba(247, 185, 40, 0.08) 0%, #080612 50%),
                radial-gradient(ellipse at 28% 80%, rgba(247, 185, 40, 0.04) 0%, #080612 55%);
            position: relative;
            overflow: hidden;
        }
        .hero-v2::after {
            content: '';
            position: absolute;
            top: -12%;
            right: -8%;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(247, 185, 40, 0.10) 0%, transparent 68%);
            pointer-events: none;
            border-radius: 50%;
        }
        .hero-v2 .star-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--accent-light);
            border-radius: 50%;
            pointer-events: none;
            animation: star-twinkle 3s ease-in-out infinite;
            opacity: 0;
            box-shadow: 0 0 8px var(--star-glow);
        }
        .hero-v2 .star-particle:nth-child(1) {
            top: 10%;
            left: 16%;
            animation-delay: 0s;
        }
        .hero-v2 .star-particle:nth-child(2) {
            top: 20%;
            left: 70%;
            animation-delay: 1.3s;
        }
        .hero-v2 .star-particle:nth-child(3) {
            top: 55%;
            left: 35%;
            animation-delay: 0.5s;
        }
        .hero-v2 .star-particle:nth-child(4) {
            top: 32%;
            left: 52%;
            animation-delay: 1.9s;
        }
        .hero-v2 .star-particle:nth-child(5) {
            top: 65%;
            left: 76%;
            animation-delay: 0.35s;
        }
        @keyframes star-twinkle {
            0%,
            100% {
                opacity: 0;
                transform: scale(0.4);
            }
            50% {
                opacity: 1;
                transform: scale(1.8);
            }
        }
        .hero-grid-v2 {
            display: flex;
            align-items: stretch;
            gap: 50px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-left {
            flex: 1.3;
            min-width: 290px;
        }
        .hero-badge-v2 {
            background: rgba(247, 185, 40, 0.1);
            color: #ffcc4d;
            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(247, 185, 40, 0.2);
            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.1rem, 4.2vw, 3.2rem);
            font-weight: 900;
            line-height: 1.16;
            letter-spacing: -0.03em;
            margin-bottom: 18px;
            color: #f0edf8;
            animation: fadeInUp 0.6s ease-out 0.08s both;
        }
        .hero-gradient-text {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc-v2 {
            font-size: 1.06rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin-bottom: 26px;
            line-height: 1.7;
            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(--accent-light);
            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: var(--accent);
            color: #080612;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 7px;
            box-shadow: var(--shadow-accent);
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            letter-spacing: 0.01em;
        }
        .btn-primary-v2:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(247, 185, 40, 0.32);
            color: #080612;
        }
        .btn-outline-v2 {
            background: transparent;
            border: 1.8px solid var(--border-accent);
            color: var(--accent-light);
            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: rgba(247, 185, 40, 0.06);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(247, 185, 40, 0.1);
        }
        .hero-right {
            flex: 0.9;
            min-width: 270px;
            background: var(--surface-card);
            border-radius: var(--radius-xl);
            padding: 30px 26px;
            box-shadow: var(--shadow-lg);
            border: 1.5px solid var(--border-light);
            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(247, 185, 40, 0.2) 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: rgba(247, 185, 40, 0.08);
            padding: 7px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.84rem;
            color: #ffcc4d;
            border: 1px solid rgba(247, 185, 40, 0.15);
        }
        .rating-large {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .stars-large {
            color: #f7b928;
            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(--accent-light);
            font-size: 0.88rem;
        }
        .hero-trust-badge {
            background: rgba(247, 185, 40, 0.06);
            border-radius: 20px;
            padding: 13px 16px;
            text-align: center;
            font-size: 0.84rem;
            color: #d4b860;
            font-weight: 500;
            border: 1.5px dashed rgba(247, 185, 40, 0.22);
            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: rgba(247, 185, 40, 0.08);
            color: #ffcc4d;
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.86rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1.5px solid rgba(247, 185, 40, 0.14);
            white-space: nowrap;
        }
        .hero-cta-row a:hover {
            background: var(--accent);
            color: #080612;
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-accent);
        }
        /* SECTION TITLES */
        .section-title-v2 {
            text-align: center;
            font-size: clamp(1.6rem, 3.2vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.98rem;
            margin-bottom: 48px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .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;
            box-shadow: 0 0 10px var(--star-glow);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.8);
                opacity: 1;
            }
        }
        /* TOOLS CARDS */
        .tools-section {
            padding: 76px 0;
            background: var(--surface);
        }
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
        }
        .tool-card {
            background: var(--surface-card);
            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(--accent-gradient);
            opacity: 0;
            transition: opacity var(--transition);
            border-radius: 0 0 4px 4px;
        }
        .tool-card:hover {
            transform: translateY(-7px);
            border-color: var(--border-accent);
            box-shadow: var(--shadow-xl);
        }
        .tool-card:hover::before {
            opacity: 1;
        }
        .tool-card .tool-icon {
            font-size: 2.6rem;
            margin-bottom: 14px;
            display: block;
            position: relative;
            z-index: 1;
        }
        .tool-card h3 {
            font-size: 1.25rem;
            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: rgba(247, 185, 40, 0.08);
            color: #ffcc4d;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            border: 1px solid rgba(247, 185, 40, 0.12);
        }
        .tool-card p {
            color: var(--text-muted);
            font-size: 0.88rem;
            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: rgba(247, 185, 40, 0.06);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .tool-card .tool-link-mini:hover {
            background: var(--accent);
            color: #080612;
            border-color: var(--accent);
            letter-spacing: 0.02em;
        }
        /* CATEGORY NAV */
        .category-section {
            padding: 76px 0;
            background: var(--bg);
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 18px;
        }
        .category-card {
            background: var(--surface-card);
            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: var(--surface-alt);
            border-color: var(--border-accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        .category-card .cat-icon {
            font-size: 2.3rem;
            display: block;
            margin-bottom: 10px;
        }
        .category-card h4 {
            font-size: 1.02rem;
            color: var(--text);
            margin-bottom: 6px;
            font-weight: 700;
        }
        .category-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.45;
        }
        .category-card .cat-badge {
            display: inline-block;
            background: rgba(247, 185, 40, 0.1);
            color: #ffcc4d;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            margin-top: 8px;
            letter-spacing: 0.03em;
            border: 1px solid rgba(247, 185, 40, 0.15);
        }
        /* 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.5rem, 2.8vw, 2rem);
            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.7;
        }
        .rules-flow {
            flex: 1;
            min-width: 280px;
            background: var(--surface-card);
            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: var(--surface);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1.5px solid transparent;
            cursor: default;
        }
        .flow-step:hover {
            border-color: var(--border-accent);
            background: var(--surface-alt);
            box-shadow: var(--shadow-sm);
        }
        .flow-step .step-num {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--accent);
            color: #080612;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(247, 185, 40, 0.28);
        }
        .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: var(--bg);
        }
        .path-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 26px;
        }
        .path-card {
            background: var(--surface-card);
            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: var(--border-accent);
            transform: translateY(-4px);
        }
        .path-card .path-badge {
            display: inline-block;
            background: var(--accent);
            color: #080612;
            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.18rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }
        .path-card ol {
            padding-left: 20px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.75;
        }
        .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-light);
            letter-spacing: 0.03em;
        }
        /* SEO BLOCK */
        .seo-block {
            padding: 72px 0;
            background: var(--surface);
        }
        .seo-content {
            max-width: 860px;
            margin: 0 auto;
            background: var(--surface-card);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            border: 1.5px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            line-height: 1.8;
        }
        .seo-content h2 {
            font-size: 1.55rem;
            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.93rem;
        }
        .seo-content .seo-highlight {
            background: var(--surface);
            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: #d4b860;
        }
        /* FAQ */
        .faq-preview {
            padding: 72px 0;
            background: var(--bg);
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 16px;
            max-width: 920px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface-card);
            border-radius: var(--radius);
            padding: 20px 22px;
            border: 1.5px solid var(--border-light);
            transition: var(--transition);
            cursor: default;
        }
        .faq-item:hover {
            background: var(--surface-alt);
            border-color: var(--border-accent);
            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.86rem;
            color: var(--text-muted);
            line-height: 1.55;
        }
        /* DOWNLOAD CTA */
        .download-cta-section {
            padding: 68px 0;
            background: linear-gradient(160deg, #1a1030 0%, #0d0820 50%, #1a1030 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border-accent);
            border-bottom: 1px solid var(--border-accent);
        }
        .download-cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -15%;
            width: 130%;
            height: 160%;
            background: radial-gradient(ellipse at center, rgba(247, 185, 40, 0.18) 0%, transparent 60%);
            pointer-events: none;
        }
        .download-cta-section .cta-inner {
            position: relative;
            z-index: 1;
        }
        .download-cta-section h2 {
            font-size: clamp(1.5rem, 2.8vw, 2rem);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            color: #f0edf8;
        }
        .download-cta-section p {
            margin: 14px auto 0;
            max-width: 520px;
            color: #b8b0d8;
            font-size: 0.93rem;
            line-height: 1.6;
        }
        .btn-download-cta {
            background: var(--accent-gradient-warm);
            color: #080612;
            padding: 16px 52px;
            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 12px 36px rgba(247, 185, 40, 0.3);
            position: relative;
            z-index: 1;
            border: none;
            cursor: pointer;
        }
        .btn-download-cta:hover {
            background: #ffcc4d;
            transform: scale(1.05);
            box-shadow: 0 18px 46px rgba(247, 185, 40, 0.45);
            color: #080612;
        }
        .cta-extra-info {
            margin-top: 26px;
            font-size: 0.8rem;
            color: #7870a0;
            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.05);
            padding: 8px 18px;
            border-radius: 28px;
            font-size: 0.82rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #b8b0d8;
        }
        /* FOOTER */
        footer {
            background: #080612;
            color: #7870a0;
            padding: 50px 0 26px;
            border-top: 1px solid var(--border-light);
        }
        .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: #f0edf8;
            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: #7870a0;
            text-decoration: none;
            font-size: 0.84rem;
            transition: var(--transition);
        }
        .footer-grid a:hover {
            color: var(--accent-light);
        }
        .footer-bottom {
            border-top: 1px solid #1e1a35;
            padding-top: 22px;
            text-align: center;
            font-size: 0.76rem;
            color: #5a5078;
        }
        /* RESPONSIVE */
        @media (max-width: 900px) {
            .hero-grid-v2 {
                gap: 30px;
            }
            .hero-left h1 {
                font-size: 1.85rem;
            }
            .hero-right {
                padding: 24px 18px;
            }
            .nav-links {
                gap: 10px;
                font-size: 0.78rem;
            }
            .nav-links a {
                font-size: 0.76rem;
            }
            .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.74rem;
            }
            .hero-stats-v2 {
                gap: 18px;
            }
            .stat-v2 h3 {
                font-size: 1.35rem;
            }
            .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.88rem;
            }
            .download-cta-section h2 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 400px) {
            .category-grid {
                grid-template-columns: 1fr;
            }
            .hero-left h1 {
                font-size: 1.5rem;
            }
            .platform-badge span {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
        }