  :root {
            --bg: #ffffff;
            --surface: #fff5f7;
            --surface-alt: #fff0f4;
            --text: #1a1025;
            --text-secondary: #4a3348;
            --text-muted: #7a5d6e;
            --accent: #e85382;
            --accent-deep: #c0395c;
            --accent-light: #ff8fab;
            --accent-soft: #ffd4e0;
            --accent-glow: rgba(232, 83, 130, 0.10);
            --accent-glow-strong: rgba(232, 83, 130, 0.18);
            --border: #f0dce3;
            --border-light: #fce8ef;
            --shadow-sm: 0 1px 4px rgba(180, 60, 100, 0.05);
            --shadow-md: 0 8px 28px rgba(180, 60, 100, 0.08);
            --shadow-lg: 0 20px 52px rgba(180, 60, 100, 0.10);
            --shadow-xl: 0 32px 72px rgba(180, 60, 100, 0.12);
            --radius-sm: 12px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --gradient-hero: linear-gradient(135deg, #e85382 0%, #ff6b8a 30%, #ff8fab 55%, #ffb3c6 100%);
            --gradient-card-accent: linear-gradient(160deg, #fff5f7 0%, #ffffff 60%, #fff0f4 100%);
            --gradient-cta: linear-gradient(135deg, #2d1020 0%, #3d1a2e 40%, #2d1020 100%);
            --gradient-download: linear-gradient(135deg, #e85382 0%, #ff4470 50%, #e85382 100%);
        }

        *,
        *::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;
        }
        .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(232, 83, 130, 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(255, 143, 171, 0.08) 0%, #ffffff 50%),
                radial-gradient(ellipse at 30% 85%, rgba(232, 83, 130, 0.04) 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(255, 180, 200, 0.12) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .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: #fff0f4;
            color: #c0395c;
            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(232, 83, 130, 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: #1a0d16;
            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: #1a0d16;
            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(26, 13, 22, 0.14);
            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(232, 83, 130, 0.28);
        }
        .btn-outline-v2 {
            background: transparent;
            border: 1.8px solid #e0c8d2;
            color: #3d1a2e;
            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: #fff5f7;
            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(232, 83, 130, 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(255, 143, 171, 0.25) 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: #fff0f4;
            padding: 7px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.84rem;
            color: #c0395c;
            border: 1px solid rgba(232, 83, 130, 0.1);
        }
        .rating-large {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .stars-large {
            color: #f59e0b;
            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: #fff0f4;
            border-radius: 20px;
            padding: 13px 16px;
            text-align: center;
            font-size: 0.84rem;
            color: #9b3050;
            font-weight: 500;
            border: 1.5px dashed rgba(232, 83, 130, 0.28);
            position: relative;
            z-index: 1;
        }

        /* ===== 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(232, 83, 130, 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: #fff0f4;
            color: #c0395c;
            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-text {
            display: inline-block;
            margin-top: 12px;
            font-weight: 600;
            color: var(--accent);
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        .tool-card:hover .tool-link-text {
            color: var(--accent-deep);
            letter-spacing: 0.03em;
        }

        /* ===== 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: #fff5f7;
            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(232, 83, 130, 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: #c0395c;
            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: #fff5f7;
            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(232, 83, 130, 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(232, 83, 130, 0.3);
        }
        .flow-step .step-arrow {
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        /* ===== SEO BLOCK ===== */
        .seo-block {
            padding: 72px 0;
            background: #ffffff;
        }
        .seo-content {
            max-width: 860px;
            margin: 0 auto;
            background: #fff5f7;
            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: #3d1a2e;
        }

        /* ===== 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: #fffafb;
            border-color: rgba(232, 83, 130, 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(232, 83, 130, 0.3) 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: #c0395c;
            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: #ffe0e8;
            transform: scale(1.04);
            box-shadow: 0 16px 40px rgba(232, 83, 130, 0.4);
            color: #9b3050;
        }
        .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: #1a0d16;
            color: #b8a0ae;
            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: #b8a0ae;
            text-decoration: none;
            font-size: 0.84rem;
            transition: var(--transition);
        }
        .footer-grid a:hover {
            color: #ffb3c6;
        }
        .footer-bottom {
            border-top: 1px solid #2d1a24;
            padding-top: 22px;
            text-align: center;
            font-size: 0.76rem;
            color: #7a5d6e;
        }

        /* ===== 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;
            }
        }
        @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;
            }
            .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;
            }
        }