.elementor-9060 .elementor-element.elementor-element-860f63e{--display:flex;}/* Start custom CSS *//* ================================ */
        /* APPLE-INSPIRED AESTHETIC V7      */
        /* Focus: Depth, Whitespace, Focus  */
        /* ================================ */

        :root {
            /* Refined Palette */
            --mp-primary: #5856D6;
            --mp-primary-hover: #4C4ABF;
            --mp-bg: #F5F5F7;
            --mp-surface: #FFFFFF;
            --mp-text: #1D1D1F;
            --mp-text-secondary: #86868B;
            --mp-border: rgba(0, 0, 0, 0.08);
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 16px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0,0,0,0.04);
            
            /* Radii */
            --radius-lg: 20px;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: var(--mp-bg);
            color: var(--mp-text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        a { text-decoration: none; color: inherit; transition: color 0.2s; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ================================ */
        /* HERO SECTION                     */
        /* ================================ */
        .hero {
            background: #000;
            color: #fff;
            padding: 100px 24px 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 600px;
            background: radial-gradient(circle, rgba(88, 86, 214, 0.4) 0%, rgba(0,0,0,0) 60%);
            filter: blur(80px);
            z-index: 0;
        }

        .hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

        .hero__breadcrumb {
            display: flex;
            justify-content: center;
            gap: 12px;
            font-size: 0.8rem;
            color: #86868B;
            margin-bottom: 24px;
            font-weight: 500;
        }
        .hero__breadcrumb a:hover { color: #fff; }

        .hero__title {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            background: linear-gradient(180deg, #FFFFFF 0%, #A1A1A6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero__desc {
            font-size: 1.25rem;
            color: #A1A1A6;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .hero__stats {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius-lg);
            padding: 16px 32px;
            border: 1px solid rgba(255,255,255,0.1);
            gap: 48px;
        }

        .hero__stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
        .hero__stat-label { font-size: 0.75rem; color: #86868B; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; display: block; }

        /* ================================ */
        /* STICKY FILTER                    */
        /* ================================ */
        .filter-bar {
            position: sticky;
            top: 20px;
            z-index: 100;
            margin-top: -40px;
            margin-bottom: 40px;
            padding: 0 24px;
            pointer-events: none;
        }

        .filter-bar__inner {
            max-width: fit-content;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 8px;
            border-radius: 50px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            gap: 4px;
            pointer-events: auto;
        }

        .filter-btn {
            padding: 10px 24px;
            border: none;
            background: transparent;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--mp-text);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            font-family: inherit;
        }

        .filter-btn:hover { background: rgba(0,0,0,0.04); }

        .filter-btn--active {
            background: #1D1D1F;
            color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .filter-btn--active:hover { background: #000; }

        /* ================================ */
        /* THE GRID                         */
        /* ================================ */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        /* ================================ */
        /* PREMIUM CARD DESIGN              */
        /* ================================ */
        .card {
            background: var(--mp-surface);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: var(--shadow-sm);
            position: relative;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: var(--shadow-hover);
        }

        .card--featured {
            border: 1px solid rgba(88, 86, 214, 0.3);
            box-shadow: 0 0 0 1px rgba(88, 86, 214, 0.1), var(--shadow-sm);
        }

        .card__top { flex-grow: 1; }

        .card__header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .card__logo {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card__logo img { width: 100%; height: 100%; object-fit: contain; }

        .card__badges { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

        .card__badge {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 20px;
            letter-spacing: 0.02em;
        }

        .card__badge--featured { background: #5856D6; color: #fff; }
        .card__badge--popular { background: #F5F5F7; color: #86868B; }
        .card__badge--new { background: #E5F9E0; color: #2D6A4F; }

        .card__body { margin-bottom: 24px; }

        .card__title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: -0.02em;
            color: var(--mp-text);
            line-height: 1.3;
        }

        .card__subtitle {
            font-size: 0.8125rem;
            color: var(--mp-text-secondary);
            font-weight: 500;
            margin-bottom: 12px;
        }

        .card__desc {
            font-size: 0.9375rem;
            color: #424245;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card__footer {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
            border-top: 1px solid var(--mp-border);
            padding-top: 20px;
        }

        .card__metrics {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .card__rating-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--mp-text);
            background: #F5F5F7;
            padding: 4px 10px;
            border-radius: 8px;
        }
        .card__rating-pill svg { color: #FFB340; width: 14px; height: 14px; }

        .card__price { color: var(--mp-text-secondary); font-weight: 500; font-size: 0.8125rem; }

        .card__cta {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 12px;
            background: #F2F2F7;
            color: #007AFF;
            font-weight: 700;
            border-radius: 20px;
            transition: all 0.2s ease;
            font-size: 0.9375rem;
            cursor: pointer;
            border: none;
        }

        .card__cta:hover {
            background: #007AFF;
            color: #fff;
            transform: scale(1.02);
        }

        .card--featured .card__cta {
            background: #5856D6;
            color: #fff;
        }
        .card--featured .card__cta:hover {
            background: #4745BC;
        }

        /* ================================ */
        /* OTHER SECTIONS                   */
        /* ================================ */
        .section { padding: 80px 0; }
        .section--alt { background: var(--mp-surface); }
        .section__header { text-align: center; margin-bottom: 48px; }
        
        .section__title { 
            font-size: 2rem; 
            font-weight: 700; 
            letter-spacing: -0.02em; 
            margin-bottom: 8px; 
            color: var(--mp-text);
        }
        
        .section__subtitle { font-size: 1.125rem; color: var(--mp-text-secondary); }

        /* Related Categories */
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 16px;
        }
        .related-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 24px;
            background: var(--mp-surface);
            border-radius: var(--radius-md);
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.2s;
        }
        .related-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--mp-primary);
        }
        .related-card__icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #F5F5F7;
            border-radius: 12px;
            margin-bottom: 12px;
            color: var(--mp-text);
            transition: all 0.2s;
        }
        .related-card:hover .related-card__icon { background: var(--mp-primary); color: #fff; }
        .related-card__title { font-weight: 600; font-size: 0.9375rem; margin-bottom: 4px; }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--mp-border);
            border-radius: 12px;
            margin-bottom: 12px;
            background: var(--mp-surface);
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            color: var(--mp-text);
            font-family: inherit;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 24px;
        }
        .faq-item.is-open .faq-answer { max-height: 300px; padding-bottom: 24px; }
        .faq-answer p { color: #424245; line-height: 1.7; }
        .faq-answer a { color: var(--mp-primary); font-weight: 500; }

        /* SEO Content */
        .seo-content { max-width: 800px; margin: 0 auto; }
        .seo-content__intro { font-size: 1.25rem; color: #424245; text-align: center; margin-bottom: 40px; line-height: 1.6; }
        .seo-content__full { display: none; }
        .seo-content__full.is-visible { display: block; animation: fadeIn 0.5s; }
        .seo-content h3 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 20px; color: var(--mp-text); }
        .seo-content h4 { font-size: 1.125rem; font-weight: 600; margin: 24px 0 12px; color: var(--mp-text); }
        .seo-content p { font-size: 1rem; line-height: 1.7; color: #424245; margin-bottom: 16px; }
        .seo-content ul { margin: 0 0 24px 24px; color: #424245; }
        .seo-content li { margin-bottom: 8px; }
        .seo-content a { color: var(--mp-primary); font-weight: 500; }

        .read-more-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 40px auto 0;
            padding: 12px 24px;
            background: transparent;
            border: 1px solid #D1D1D6;
            border-radius: 40px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--mp-text-secondary);
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }
        .read-more-btn:hover { border-color: var(--mp-primary); color: var(--mp-primary); }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* ================================ */
        /* RESPONSIVE                       */
        /* ================================ */
        @media (max-width: 1024px) {
            .related-grid { grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 768px) {
            .hero { padding: 60px 20px 80px; }
            .hero__title { font-size: 2.5rem; }
            .grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
            .filter-bar__inner { 
                overflow-x: auto; 
                justify-content: flex-start; 
                width: 100%; 
                border-radius: 12px;
            }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
            .hero__stats { gap: 20px; padding: 12px 20px; }
        }/* End custom CSS */