            /* Metric-compatible fallback: Arial → Inter boyutlarına ayarlandı, reflow sıfır */
            @font-face {
                font-family: "Inter Fallback";
                src: local("Arial");
                ascent-override: 90%;
                descent-override: 22.43%;
                line-gap-override: 0%;
                size-adjust: 107.64%;
            }

            :root {
                --ok-purple: #6366f1;
                --ok-purple-dark: #4338ca;
                --ok-purple-light: #818cf8;
                --ok-pink: #ec4899;
                --ok-cyan: #06b6d4;
                --ok-yellow: #f59e0b;
                --ok-green: #10b981;
            }

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

            html {
                margin: 0 !important;
                padding: 0 !important;
                overflow-x: hidden;
            }
            body {
                margin: 0 !important;
                padding: 0 !important;
                font-family: "Inter", "Inter Fallback", sans-serif;
                overflow-x: hidden;
                background-color: #fff;
                width: 100%;
                max-width: 100%;
            }

            /* ===================== NAVBAR ===================== */
            .ok-nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                padding: 0.9rem 0;
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid rgba(99, 102, 241, 0.1);
                transition: box-shadow 0.3s;
            }
            .ok-nav.scrolled {
                box-shadow: 0 4px 24px rgba(99, 102, 241, 0.12);
            }
            .ok-logo {
                font-size: 1.25rem;
                font-weight: 800;
                color: #1e1b4b;
                letter-spacing: -0.5px;
            }
            .ok-logo span {
                color: var(--ok-purple);
            }
            .ok-nav .nav-link {
                font-size: 0.875rem;
                font-weight: 500;
                color: #4b5563;
                padding: 0.4rem 0.75rem;
                border-radius: 6px;
                transition: all 0.15s;
            }
            .ok-nav .nav-link:hover {
                color: var(--ok-purple);
                background: rgba(99, 102, 241, 0.08);
            }

            /* ===================== HERO ===================== */
            .ok-hero {
                min-height: 100vh;
                background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
                display: flex;
                align-items: center;
                padding: 7rem 0 4rem;
                position: relative;
                overflow: hidden;
            }
            .ok-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(99, 102, 241, 0.35) 0%, transparent 60%),
                    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(236, 72, 153, 0.25) 0%, transparent 60%),
                    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
            }
            .ok-hero-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                padding: 0.4rem 1rem;
                border-radius: 100px;
                font-size: 0.8rem;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 1.5rem;
            }
            .ok-hero-badge .dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #10b981;
                animation: pulse 2s infinite;
            }
            @keyframes pulse {
                0%,
                100% {
                    opacity: 1;
                    transform: scale(1);
                }
                50% {
                    opacity: 0.6;
                    transform: scale(1.3);
                }
            }

            .ok-hero-title {
                font-size: clamp(2rem, 5vw, 3rem);
                font-weight: 900;
                line-height: 1.05;
                letter-spacing: -2px;
                color: #fff;
                margin-bottom: 1.5rem;
                text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            }
            /* Typed.js cursor rengi gradient ile uyumlu */
            .typed-cursor {
                color: #ec4899;
                font-weight: 300;
                opacity: 1;
                animation: typed-blink 0.7s infinite;
            }
            @keyframes typed-blink {
                0%,
                100% {
                    opacity: 1;
                }
                50% {
                    opacity: 0;
                }
            }
            .ok-hero-title .gradient-text {
                background: linear-gradient(90deg, #818cf8, #ec4899, #f59e0b);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            .ok-hero-desc {
                font-size: 1.15rem;
                color: rgba(255, 255, 255, 0.7);
                line-height: 1.7;
                margin-bottom: 2.5rem;
                max-width: 560px;
            }
            .ok-btn-primary {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.875rem 2rem;
                border-radius: 12px;
                background: linear-gradient(135deg, var(--ok-purple), var(--ok-pink));
                color: #fff;
                font-size: 1rem;
                font-weight: 700;
                border: none;
                cursor: pointer;
                text-decoration: none;
                box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
                transition: all 0.2s;
                position: relative;
                overflow: hidden;
            }
            .ok-btn-primary::after {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(255, 255, 255, 0.1);
                opacity: 0;
                transition: 0.2s;
            }
            .ok-btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
                color: #fff;
            }
            .ok-btn-primary:hover::after {
                opacity: 1;
            }
            .ok-btn-ghost {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.875rem 2rem;
                border-radius: 12px;
                border: 1.5px solid rgba(255, 255, 255, 0.25);
                color: rgba(255, 255, 255, 0.85);
                font-size: 1rem;
                font-weight: 600;
                text-decoration: none;
                background: rgba(255, 255, 255, 0.07);
                backdrop-filter: blur(4px);
                transition: all 0.2s;
            }
            .ok-btn-ghost:hover {
                border-color: rgba(255, 255, 255, 0.5);
                background: rgba(255, 255, 255, 0.12);
                color: #fff;
            }

            /* Hero trust row */
            .ok-hero-trust {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                color: rgba(255, 255, 255, 0.5);
                font-size: 0.825rem;
                margin-top: 2rem;
            }
            .ok-hero-trust .avatars {
                display: flex;
            }
            .ok-hero-trust .avatars span {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                border: 2px solid #302b63;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.85rem;
                margin-left: -6px;
                background: #fff;
            }
            .ok-hero-trust .avatars span:first-child {
                margin-left: 0;
            }

            /* ===================== MOCKUP CARD ===================== */
            .ok-mockup-wrap {
                position: relative;
            }
            .ok-mockup-wrap::before {
                content: "";
                position: absolute;
                top: 20%;
                left: -10%;
                right: -10%;
                bottom: -10%;
                background: radial-gradient(ellipse, rgba(99, 102, 241, 0.3), transparent 70%);
                filter: blur(40px);
                z-index: 0;
            }
            .ok-mockup {
                position: relative;
                z-index: 1;
                background: rgba(255, 255, 255, 0.07);
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.15);
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
            }
            .ok-mockup-bar {
                background: rgba(255, 255, 255, 0.06);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 0.65rem 1rem;
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }
            .ok-mockup-bar .dots {
                display: flex;
                gap: 0.4rem;
            }
            .ok-mockup-bar .dots i {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                display: block;
            }
            .ok-mockup-bar .dots i:nth-child(1) {
                background: #ff5f57;
            }
            .ok-mockup-bar .dots i:nth-child(2) {
                background: #febc2e;
            }
            .ok-mockup-bar .dots i:nth-child(3) {
                background: #28c840;
            }
            .ok-mockup-bar .url {
                flex: 1;
                background: rgba(255, 255, 255, 0.08);
                border-radius: 6px;
                padding: 0.25rem 0.75rem;
                font-size: 0.72rem;
                color: rgba(255, 255, 255, 0.6);
                display: flex;
                align-items: center;
                gap: 0.35rem;
            }
            .ok-mockup-body {
                padding: 1.25rem;
                display: grid;
                grid-template-columns: 220px 1fr;
                gap: 1rem;
            }
            .ok-form-panel {
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 12px;
                padding: 1rem;
            }
            .ok-form-panel h6 {
                color: #818cf8;
                font-size: 0.75rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                margin-bottom: 1rem;
            }
            .ok-field-label {
                font-size: 0.68rem;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.5);
                margin-bottom: 0.2rem;
            }
            .ok-field-select,
            .ok-field-textarea {
                display: block;
                width: 100%;
                padding: 0.35rem 0.6rem;
                border-radius: 7px;
                border: 1px solid rgba(255, 255, 255, 0.12);
                background: rgba(255, 255, 255, 0.06);
                color: rgba(255, 255, 255, 0.8);
                font-size: 0.72rem;
                margin-bottom: 0.65rem;
            }
            .ok-field-textarea {
                height: 46px;
                resize: none;
            }
            .ok-generate-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.35rem;
                width: 100%;
                padding: 0.45rem;
                border-radius: 8px;
                background: linear-gradient(135deg, #6366f1, #ec4899);
                color: #fff;
                font-size: 0.75rem;
                font-weight: 700;
                border: none;
                cursor: pointer;
            }
            .ok-result-panel {
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 12px;
                padding: 1rem;
            }
            .ok-result-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 0.6rem;
            }
            .ok-result-title {
                color: #fff;
                font-size: 0.78rem;
                font-weight: 700;
            }
            .ok-result-chips {
                display: flex;
                gap: 0.3rem;
                flex-wrap: wrap;
                margin-bottom: 0.75rem;
            }
            .ok-chip {
                padding: 0.15rem 0.5rem;
                border-radius: 100px;
                font-size: 0.62rem;
                font-weight: 600;
                background: rgba(129, 140, 248, 0.15);
                color: #a5b4fc;
                border: 1px solid rgba(129, 140, 248, 0.2);
            }
            .ok-chip.green {
                background: rgba(16, 185, 129, 0.15);
                color: #6ee7b7;
                border-color: rgba(16, 185, 129, 0.2);
            }
            .ok-table {
                width: 100%;
                border-collapse: collapse;
                font-size: 0.68rem;
            }
            .ok-table th {
                background: rgba(99, 102, 241, 0.3);
                color: #c7d2fe;
                padding: 0.3rem 0.4rem;
                text-align: center;
                font-weight: 700;
            }
            .ok-table th:first-child {
                border-radius: 6px 0 0 0;
            }
            .ok-table th:last-child {
                border-radius: 0 6px 0 0;
            }
            .ok-table td {
                padding: 0.26rem 0.4rem;
                text-align: center;
                color: rgba(255, 255, 255, 0.65);
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .ok-table tr:hover td {
                background: rgba(255, 255, 255, 0.04);
            }
            .ok-table .letter-td {
                color: #a5b4fc;
                font-weight: 800;
                background: rgba(99, 102, 241, 0.12);
            }
            .ok-ai-note {
                font-size: 0.62rem;
                color: rgba(255, 255, 255, 0.35);
                margin-top: 0.5rem;
            }

            /* ===================== SECTIONS ===================== */
            .ok-section {
                padding: 6rem 0;
            }
            .ok-section-light {
                background: #f9fafb;
            }
            .ok-section-dark {
                background: linear-gradient(135deg, #1e1b4b, #312e81);
            }

            .ok-eyebrow {
                display: inline-block;
                font-size: 0.75rem;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--ok-purple);
                margin-bottom: 0.75rem;
            }
            .ok-title {
                font-size: clamp(1.75rem, 3.5vw, 2.75rem);
                font-weight: 800;
                letter-spacing: -1px;
                color: #111827;
                line-height: 1.15;
            }
            .ok-title-white {
                color: #fff;
            }
            .ok-subtitle {
                font-size: 1.05rem;
                color: #6b7280;
                line-height: 1.7;
                max-width: 560px;
            }
            .ok-subtitle-white {
                color: rgba(255, 255, 255, 0.65);
            }

            /* Steps */
            .ok-step {
                display: flex;
                align-items: flex-start;
                gap: 1.5rem;
                padding: 2rem;
                border-radius: 16px;
                background: #fff;
                border: 1.5px solid #f3f4f6;
                box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
                transition: all 0.25s;
            }
            .ok-step:hover {
                border-color: rgba(99, 102, 241, 0.3);
                box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
                transform: translateY(-3px);
            }
            .ok-step-num {
                min-width: 52px;
                height: 52px;
                border-radius: 14px;
                background: linear-gradient(135deg, #ede9fe, #ddd6fe);
                color: var(--ok-purple);
                font-weight: 900;
                font-size: 1.25rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .ok-step h5 {
                font-weight: 700;
                margin-bottom: 0.4rem;
                color: #111827;
            }
            .ok-step p {
                color: #6b7280;
                font-size: 0.9rem;
                margin: 0;
            }

            /* Gallery cards (Tabler gallery style) */
            .ok-gal-card {
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                overflow: hidden;
                transition: transform 0.25s, box-shadow 0.25s;
                height: 100%;
            }
            .ok-gal-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
            }
            .ok-gal-top {
                height: 180px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .ok-gal-top.gc-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
            .ok-gal-top.gc-2 { background: linear-gradient(135deg, #ec4899, #f97316); }
            .ok-gal-top.gc-3 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
            .ok-gal-top.gc-4 { background: linear-gradient(135deg, #10b981, #059669); }
            .ok-gal-emoji {
                font-size: 4rem;
                filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
                transition: transform 0.3s ease;
            }
            .ok-gal-card:hover .ok-gal-emoji {
                transform: scale(1.14);
            }
            .ok-gal-title {
                color: #f1f5f9;
                font-weight: 800;
                font-size: 1rem;
                margin-bottom: 0.4rem;
            }
            .ok-gal-desc {
                font-size: 0.84rem;
                color: rgba(255, 255, 255, 0.6);
                line-height: 1.55;
                margin-bottom: 0.75rem;
            }
            .ok-gal-badge { font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 100px; }
            .gc-badge-1 { background: rgba(99, 102, 241, 0.25); color: #a5b4fc; }
            .gc-badge-2 { background: rgba(236, 72, 153, 0.25); color: #f9a8d4; }
            .gc-badge-3 { background: rgba(6, 182, 212, 0.25); color: #67e8f9; }
            .gc-badge-4 { background: rgba(16, 185, 129, 0.25); color: #6ee7b7; }

            /* Game cards */
            .ok-game-card {
                border-radius: 20px;
                padding: 2rem;
                position: relative;
                overflow: hidden;
                transition:
                    transform 0.25s,
                    box-shadow 0.25s;
                cursor: default;
            }
            .ok-game-card:hover {
                transform: translateY(-6px);
            }
            .ok-game-card::before {
                content: "";
                position: absolute;
                top: -40px;
                right: -40px;
                width: 140px;
                height: 140px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.08);
            }
            .ok-game-card::after {
                content: "";
                position: absolute;
                bottom: -30px;
                left: -20px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.05);
            }
            .gc-1 {
                background: linear-gradient(135deg, #6366f1, #8b5cf6);
                box-shadow: 0 16px 40px rgba(99, 102, 241, 0.35);
            }
            .gc-2 {
                background: linear-gradient(135deg, #ec4899, #f97316);
                box-shadow: 0 16px 40px rgba(236, 72, 153, 0.35);
            }
            .gc-3 {
                background: linear-gradient(135deg, #06b6d4, #3b82f6);
                box-shadow: 0 16px 40px rgba(6, 182, 212, 0.35);
            }
            .gc-4 {
                background: linear-gradient(135deg, #10b981, #059669);
                box-shadow: 0 16px 40px rgba(16, 185, 129, 0.35);
            }
            .ok-game-card .game-emoji {
                font-size: 3rem;
                display: block;
                margin-bottom: 1rem;
                position: relative;
                z-index: 1;
            }
            .ok-game-card h4 {
                color: #fff;
                font-weight: 800;
                margin-bottom: 0.4rem;
                position: relative;
                z-index: 1;
            }
            .ok-game-card p {
                color: rgba(255, 255, 255, 0.8);
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 1rem;
                position: relative;
                z-index: 1;
            }
            .ok-game-badge {
                display: inline-block;
                padding: 0.25rem 0.65rem;
                border-radius: 100px;
                background: rgba(255, 255, 255, 0.2);
                color: #fff;
                font-size: 0.72rem;
                font-weight: 600;
                margin-right: 0.3rem;
                margin-bottom: 0.3rem;
                position: relative;
                z-index: 1;
            }

            /* Stats */
            .ok-stat {
                text-align: center;
            }
            .ok-stat-num {
                font-size: 3rem;
                font-weight: 900;
                letter-spacing: -2px;
                background: linear-gradient(135deg, #6366f1, #ec4899);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1;
            }
            .ok-stat-label {
                color: #6b7280;
                font-size: 0.875rem;
                margin-top: 0.25rem;
            }
            .ok-stat-divider {
                width: 1px;
                background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
            }

            /* Review cards */
            .ok-review {
                background: #fff;
                border-radius: 16px;
                padding: 1.75rem;
                border: 1.5px solid #f3f4f6;
                box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
                height: 100%;
            }
            .ok-review .stars {
                color: #f59e0b;
                font-size: 1rem;
                margin-bottom: 1rem;
                letter-spacing: 2px;
            }
            .ok-review p {
                color: #374151;
                font-size: 0.9rem;
                line-height: 1.7;
                font-style: italic;
                margin-bottom: 1.25rem;
            }
            .ok-review .reviewer-avatar {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                border: 2px solid #e5e7eb;
            }
            .ok-review .reviewer-name {
                font-weight: 700;
                font-size: 0.875rem;
                color: #111827;
            }
            .ok-review .reviewer-role {
                font-size: 0.775rem;
                color: #9ca3af;
            }

            /* Pricing */
            .ok-price-card {
                background: #fff;
                border-radius: 20px;
                padding: 2.5rem 2rem;
                border: 2px solid #f3f4f6;
                transition: all 0.25s;
            }
            .ok-price-card:hover {
                border-color: rgba(99, 102, 241, 0.2);
                box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
            }
            .ok-price-card.featured {
                background: linear-gradient(135deg, #1e1b4b, #312e81);
                border-color: transparent;
                box-shadow: 0 24px 60px rgba(99, 102, 241, 0.4);
                transform: scale(1.04);
            }
            .ok-price-card.featured .price-name,
            .ok-price-card.featured .price-amount,
            .ok-price-card.featured .price-period,
            .ok-price-card.featured .feature-item {
                color: #fff !important;
            }
            .ok-price-card.featured .feature-item.off {
                opacity: 0.45;
            }
            .ok-price-card.featured .price-check {
                background: rgba(255, 255, 255, 0.15);
                color: #a5b4fc;
            }
            .ok-price-card.featured .ok-price-btn {
                background: linear-gradient(135deg, #818cf8, #ec4899);
                color: #fff;
                border: none;
            }

            .ok-popular-badge {
                display: inline-block;
                padding: 0.3rem 0.8rem;
                border-radius: 100px;
                background: linear-gradient(135deg, #6366f1, #8b5cf6);
                color: #fff;
                font-size: 0.7rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                margin-bottom: 1.25rem;
            }
            .price-name {
                font-size: 1.25rem;
                font-weight: 800;
                color: #111827;
                margin-bottom: 0.25rem;
            }
            .price-amount {
                font-size: 3rem;
                font-weight: 900;
                letter-spacing: -2px;
                color: #111827;
                line-height: 1;
            }
            .price-period {
                font-size: 0.875rem;
                color: #6b7280;
                margin-bottom: 1.5rem;
            }
            .ok-price-divider {
                height: 1px;
                background: #f3f4f6;
                margin: 1.5rem 0;
            }
            .ok-price-card.featured .ok-price-divider {
                background: rgba(255, 255, 255, 0.1);
            }
            .feature-item {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                font-size: 0.875rem;
                color: #374151;
                margin-bottom: 0.75rem;
            }
            .feature-item.off {
                color: #9ca3af;
            }
            .price-check {
                width: 22px;
                height: 22px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(99, 102, 241, 0.1);
                color: var(--ok-purple);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.7rem;
            }
            .price-check-no {
                background: rgba(156, 163, 175, 0.1);
                color: #9ca3af;
            }
            .ok-price-btn {
                display: block;
                width: 100%;
                padding: 0.875rem;
                border-radius: 12px;
                text-align: center;
                font-weight: 700;
                font-size: 0.9rem;
                border: 2px solid rgba(99, 102, 241, 0.3);
                color: var(--ok-purple);
                text-decoration: none;
                background: transparent;
                margin-top: 1.5rem;
                transition: all 0.2s;
                cursor: pointer;
            }
            .ok-price-btn:hover {
                background: rgba(99, 102, 241, 0.08);
                border-color: var(--ok-purple);
                color: var(--ok-purple);
            }

            /* Toggle */
            .ok-toggle {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                background: #f3f4f6;
                padding: 0.35rem 0.5rem;
                border-radius: 100px;
            }
            .ok-toggle span {
                font-size: 0.875rem;
                font-weight: 600;
                color: #9ca3af;
                padding: 0.2rem 0.65rem;
                border-radius: 100px;
                cursor: pointer;
                transition: 0.15s;
            }
            .ok-toggle span.active {
                background: #fff;
                color: #111827;
                box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
            }
            .ok-toggle .save-badge {
                display: inline-block;
                padding: 0.1rem 0.45rem;
                border-radius: 100px;
                background: rgba(16, 185, 129, 0.1);
                color: #10b981;
                font-size: 0.65rem;
                font-weight: 700;
                margin-left: 0.25rem;
            }

            /* FAQ */
            .ok-faq-item {
                border-radius: 12px;
                background: #fff;
                margin-bottom: 0.75rem;
                border: 1.5px solid #f3f4f6;
                overflow: hidden;
                transition: 0.2s;
            }
            .ok-faq-item:hover {
                border-color: rgba(99, 102, 241, 0.2);
            }
            .ok-faq-q {
                padding: 1.1rem 1.25rem;
                font-weight: 600;
                font-size: 0.95rem;
                color: #111827;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;
                user-select: none;
            }
            .ok-faq-q svg {
                flex-shrink: 0;
                transition: transform 0.25s;
            }
            .ok-faq-a {
                padding: 0 1.25rem;
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s;
                color: #6b7280;
                font-size: 0.9rem;
                line-height: 1.7;
            }
            .ok-faq-item.open .ok-faq-q svg {
                transform: rotate(180deg);
            }
            .ok-faq-item.open .ok-faq-a {
                max-height: 300px;
                padding: 0 1.25rem 1.1rem;
            }
            .ok-faq-cat {
                font-size: 0.72rem;
                font-weight: 800;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--ok-purple);
                margin: 2rem 0 0.75rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            .ok-faq-cat::after {
                content: "";
                flex: 1;
                height: 1px;
                background: linear-gradient(to right, rgba(99, 102, 241, 0.2), transparent);
            }

            /* CTA */
            .ok-cta {
                background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
                position: relative;
                overflow: hidden;
            }
            .ok-cta::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(99, 102, 241, 0.4), transparent 60%),
                    radial-gradient(ellipse 50% 50% at 75% 50%, rgba(236, 72, 153, 0.3), transparent 60%);
            }

            /* Floating shapes */
            .ok-shape {
                position: absolute;
                border-radius: 50%;
                opacity: 0.06;
                pointer-events: none;
            }

            /* Scroll animation */
            .fade-up {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.6s ease;
            }
            .fade-up.visible {
                opacity: 1;
                transform: translateY(0);
            }

            @media (max-width: 768px) {
                .ok-hero-title {
                    font-size: 2.2rem;
                    letter-spacing: -1px;
                }
                .ok-mockup-body {
                    grid-template-columns: 1fr;
                }
                .ok-price-card.featured {
                    transform: scale(1);
                }
            }
