        /* ==================== Hero Section ==================== */
        .hero {
            padding-top: 120px;
            padding-bottom: 10px;
            min-height: 0px;
            display: flex;
            align-items: center;
            background: radial-gradient(ellipse at top, rgba(77, 181, 255, 0.08), transparent 70%);
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            img { width: 30px; height: auto; }
            background: rgba(77, 181, 255, 0.12);
            backdrop-filter: blur(10px);
            color: var(--mokapp-blue);
            padding: 0.5rem 1rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(77, 181, 255, 0.3);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(77, 181, 255, 0.15);
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            text-shadow: 0 2px 20px var(--mokapp-dark);
            animation: fadeInUp 0.8s ease;
        }

        .hero-title strong {
            color: var(--mokapp-blue-dark);
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 1rem;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.1s both;
        }


        .hero-subdescription {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-subdescription strong {
            color: var(--mokapp-blue);
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, rgba(77,181,255,0.9) 0%, rgba(58,157,216,0.9) 100%);
            backdrop-filter: blur(20px);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(77, 181, 255, 0.25);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(77, 181, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(77, 181, 255, 0.08);
            backdrop-filter: blur(10px);
            color: var(--text-dark);
            border: 2px solid rgba(77, 181, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(77, 181, 255, 0.15);
            border-color: var(--mokapp-blue);
            transform: translateY(-3px);
            color: var(--mokapp-blue);
        }

        .hero-trust {
            color: var(--text-light);
            font-size: 0.9rem;
            animation: fadeInUp 0.8s ease 0.4s both;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-trust strong {
            color: var(--text-dark);
        }

        /* Hero Search Box */
        .hero-search-box {
            background: linear-gradient(135deg, #ffffff, #f3f7ff);
            border-radius: 18px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            box-shadow: 0 8px 30px rgba(77, 181, 255, 0.12);
            padding: 24px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-search-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 10px;
            display: block;
        }

        .hero-search {
            display: flex;
            background: #fff;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            padding: 6px 6px 6px 16px;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .hero-search:focus-within {
            border-color: var(--mokapp-blue);
            box-shadow: 0 0 0 3px rgba(77, 181, 255, 0.1);
        }

        .hero-search input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 0.95rem;
            background: transparent;
            color: var(--text-dark);
            font-family: 'Montserrat', sans-serif;
        }

        .hero-search input::placeholder {
            color: var(--text-light);
        }

        .hero-search button {
            border: none;
            outline: none;
            border-radius: 999px;
            padding: 10px 20px;
            font-size: 0.9rem;
            background: var(--mokapp-blue);
            color: white;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(77, 181, 255, 0.3);
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-search button:hover {
            background: var(--secondary-color);
            box-shadow: 0 6px 20px rgba(77, 181, 255, 0.4);
            transform: translateY(-2px);
        }

        .hero-categories-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 10px;
            display: block;
        }

        .hero-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .cat-chip {
            font-size: 0.85rem;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            background: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            color: var(--text-gray);
            font-weight: 500;
        }

        .cat-chip:hover {
            border-color: var(--mokapp-blue);
            background: rgba(77, 181, 255, 0.08);
            color: var(--mokapp-blue);
        }

        .cat-chip--active {
            background: var(--mokapp-blue);
            color: white;
            border-color: var(--mokapp-blue);
            font-weight: 600;
        }

        .hero-search-note {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.4;
        }


        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            border-radius: 0;
            box-shadow: none;
            background: transparent;
            border: none;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, var(--mokapp-blue) 0%, transparent 70%);
            filter: blur(40px);
            opacity: 0.3;
            animation: pulse 3s infinite;
        }

        /* ==================== Featured Section ==================== */
        .featured {
            padding: 40px 0 80px 0;
            position: relative;
            z-index: 1;
        }

        .featured-content {
            margin-top: 80px;
            padding-top: 0;
        }    

        .featured-separator {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(77, 181, 255, 0.4) 50%, transparent 100%);
            border: none;
            margin: 0 0 40px 0;
        }

        .section-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            margin-top: 6px;
        }

        .section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #020617;
        }

        .section-sub {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .featured-card {
            background: #fff;
            border-radius: 18px;
            border: 1px solid var(--border-color);
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
            padding: 18px 18px 16px;
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
            gap: 20px;
            min-height: 500px;
            margin-bottom: 12px;
            max-width: 1500px;
            margin-left: auto;
            margin-right: auto;
        }

        .featured-thumb {
            border-radius: 14px;
            background: radial-gradient(circle at 10% 0%, #4DB5FF 0, #0f172a 60%, #020617 100%);
            position: relative;
            overflow: hidden;
        }

        .featured-thumb-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }

        .featured-thumb-badge,
        .featured-thumb-text {
            z-index: 1;
        }

        .featured-thumb-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            background: rgba(15, 23, 42, 0.7);
            color: #e5f4ff;
        }

        .featured-thumb-ghost {
            position: absolute;
            right: 10%;
            bottom: -12%;
            width: 140px;
            height: 140px;
            border-radius: 40% 60% 70% 30%;
            border: 2px solid rgba(148, 204, 255, 0.5);
        }

        .featured-thumb-text {
            position: absolute;
            left: 16px;
            bottom: 16px;
            max-width: 170px;
            font-size: 0.75rem;
            color: #e5f4ff;
        }

        .featured-body {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .featured-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.75rem;
            color: var(--text-light);
        }

        .featured-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #020617;
        }

        .featured-excerpt {
            font-size: 0.9rem;
            color: #4b5563;
        }

        .featured-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .featured-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #0b3150;
            text-decoration: none;
        }

        .featured-dots {
            display: flex;
            gap: 6px;
            margin-top: 10px;
            justify-content: flex-end;
        }

        .featured-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .featured-dot--active {
            width: 20px;
            background: var(--mokapp-blue);
        }

        /* ==================== All Articles Section ==================== */
        .all-articles-content {
            margin-top: 80px;
            padding-top: 0;
        }

        /* Posts Grid */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-bottom: 32px;
        }

        @media (max-width: 980px) {
            .posts-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .posts-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .post-card {
            background: var(--card-shadow);
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
        }

        .post-card a {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .post-card:hover {
            transform: translateY(-3px);
            border-color: #d4e7ff;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        }

        .post-thumb {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            position: relative;
            overflow: hidden;
        }

        .post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .post-thumb-label {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 9px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.8);
            color: #e5f4ff;
            font-size: 0.7rem;
        }

        .post-body {
            padding: 12px 14px 13px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
        }

        .post-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: var(--text-light);
            gap: 8px;
        }

        .post-title {
            font-size: 0.98rem;
            font-weight: 600;
            color: #020617;
        }

        .post-excerpt {
            font-size: 0.85rem;
            color: #4b5563;
            flex: 1;
        }

        .post-footer {
            margin-top: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .post-cta {
            font-size: 0.8rem;
            font-weight: 500;
            color: #0b3150;
        }

        .pagination {
            margin-top: 20px;
            margin-bottom: 35px;
            display: flex;
            justify-content: center;
            gap: 6px;
            font-size: 0.85rem;
        }

        .page-pill {
            min-width: 30px;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            background: #fff;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-pill:hover {
            border-color: var(--mokapp-blue);
            background: rgba(77, 181, 255, 0.08);
        }

        .page-pill--active {
            background: var(--mokapp-blue);
            border-color: var(--mokapp-blue);
            color: #020617;
            font-weight: 600;
        }

        /* ==================== Video Demo Section ==================== */
        .video-demo {
            padding: 80px 0;
            position: relative;
            z-index: 1;
            background: rgb(0, 0, 0);
            box-shadow: rgba(0, 0, 0, 0.56) 0px 0px 70px 4px;
        }

        .video-demo-wrapper {
            width: 100%;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

            backdrop-filter: blur(10px);

            transition: all 0.5s ease;
        }

        .video-demo-wrapper:hover {
            box-shadow: 
                0 0 60px 20px rgb(39, 39, 55),
                0 0 100px 35px rgb(39, 39, 55),
                0 30px 80px rgba(0, 0, 0, 0.5);
            transform: scale(1.2);
        }

        .video-demo-wrapper video {
            width: 100%;
            height: auto;
            display: block;
            background: #000;
        }

        /* ==================== Small gallery (before Pricing) ==================== */
        .gallery-small-section {
            --top-item-w: 250px; /* width for the two top images */
            --top-item-h: 150px; /* height for the two top images */
            --small-item-w: 250px; /* width for bottom thumbnails */
            --small-item-h: 120px;  /* height for bottom thumbnails */

            padding: 56px 0;
            position: relative;
            z-index: 1;
            background: transparent;
        }

        .gallery-small-section .section-header h2 {
            font-size: 2.25rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .gallery-small-section .section-header p {
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto;
        }

        .small-top-row {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 1.5rem;
        }
        
        .small-gallery {
            display: flex;
            gap: 5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 3.5rem;
        }

        .small-item {
            width: var(--small-item-w);
            height: var(--small-item-h);
            display: flex;
            align-items: center;
            justify-content: center;

        }

        .small-item.small-item--top {
            width: var(--top-item-w);
            height: var(--top-item-h);
            padding: 12px;
        }

        .small-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.25rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.125rem;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .features-grid {
            display: flex;
            grid-template-columns: repeat(3, 1fr);            
            gap: 20px;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .feature-card {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            width: 340px;
            transition: all 0.3s ease;
            color: var(--text-dark);
            flex-basis: 300px;
            flex-grow: 0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(77, 181, 255, 0.15);
            border-color: rgba(77, 181, 255, 0.4);
            background: rgba(255, 255, 255, 0.8);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(77, 181, 255, 0.15), rgba(77, 181, 255, 0.05));
            border-radius: 14px;
            color: var(--mokapp-blue);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(77, 181, 255, 0.2);
        }

        .feature-card:hover .feature-icon {
            background: var(--mokapp-blue);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h6 {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .feature-card small {
            color: var(--text-light);
            line-height: 1.5;
        }

        .target-audience-section {
            padding: 3rem;
            background: rgba(77, 181, 255, 0.08);
            backdrop-filter: blur(25px);
            border-radius: 20px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            text-align: center;
            margin-top: 4rem;
        }

        .target-audience-section h3 {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .target-audience-section p {
            color: var(--text-light);
            font-size: 1.125rem;
            line-height: 1.6;
            text-align: center;
        }

        /* ==================== Pricing Section ==================== */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(180deg, transparent, rgba(77, 181, 255, 0.04));
            position: relative;
            z-index: 1;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        .pricing-card {
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(25px);
            border-radius: 20px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            position: relative;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            overflow: hidden;
            color: var(--text-dark);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--mokapp-blue), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        .pricing-card.featured {
            background: rgba(77, 181, 255, 0.12);
            border-color: rgba(77, 181, 255, 0.4);
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(77, 181, 255, 0.2);
        }

        .pricing-card.featured::before {
            opacity: 1;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(77, 181, 255, 0.15);
            border-color: rgba(77, 181, 255, 0.4);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .featured-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--mokapp-green), #00cc55);
            color: white;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 255, 102, 0.3);
        }

        .pricing-card h5 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .pricing-card .subtitle {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pricing-annual {
            margin-bottom: 1rem;
        }

        .price-annual {
            font-size: 1.125rem;
            color: var(--mokapp-blue);
            margin-bottom: 0.5rem;
        }

        .price-annual strong {
            font-size: 2rem;
            font-weight: 700;
        }

        .price-installment {
            color: var(--text-light);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-light);
            position: relative;
            padding-left: 1.5rem;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--mokapp-green);
            font-weight: bold;
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            display: block;
            background: transparent;
            color: var(--mokapp-blue);
            border: 2px solid var(--mokapp-blue);
        }

        .pricing-cta:hover {
            background: var(--mokapp-blue);
            color: white;
            box-shadow: 0 4px 20px rgba(77, 181, 255, 0.3);
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, var(--mokapp-blue), var(--secondary-color));
            color: white;
            border: none;
        }

        .pricing-note {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(77, 181, 255, 0.08);
            border-radius: 16px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            color: var(--text-dark);
        }

        .pricing-note h4 {
            color: var(--mokapp-blue);
            margin-bottom: 1rem;
        }

        /* ==================== Demo Section ==================== */
        .demo {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        .demo-content {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            align-items: center;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(77, 181, 255, 0.2);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 20px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(77, 181, 255, 0.2);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(77, 181, 255, 0.2);
            border-color: rgba(77, 181, 255, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ==================== Testimonials Section ==================== */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(77, 181, 255, 0.04), transparent);
            position: relative;
            z-index: 1;
        }

        .testimonials-grid {
            display: flex;
            gap: 2rem;
            overflow-x: hidden;
            overflow-y: hidden;
            cursor: grab;
            padding: 1rem 0;
            user-select: none;
            -webkit-user-select: none;
            touch-action: pan-y;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            transition: scroll-left 0.3s ease;
        }

        .testimonials-grid:active {
            cursor: grabbing;
        }

        .testimonial-card {
            width: 800px;
            min-width: 800px;
            max-width: 800px;
            flex-shrink: 0;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            transition: all 0.3s ease;
            height: flex;
            min-height: 250px;
            max-height: 350px;
            display: flex;
            flex-direction: column;
            color: var(--text-dark);
            text-align: justify;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(77, 181, 255, 0.12);
            border-color: rgba(77, 181, 255, 0.4);
            background: rgba(255, 255, 255, 0.8);
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--mokapp-blue-dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-logo {
            width: 120px;
            height: 80px;
            max-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .testimonial-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .testimonial-title {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 400;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(77, 181, 255, 0.2);
        }

        .testimonial-text {
            color: var(--text-light);
            line-height: 1.6;
            flex-grow: 1;
            font-style: italic;
        }

        /* ==================== FAQ Section ==================== */
        .faq {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        .faq-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .faq-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 20px rgba(77, 181, 255, 0.1);
            border-color: rgba(77, 181, 255, 0.4);
        }

        .accordion-header {
            padding: 1.25rem;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            color: var(--mokapp-blue);
        }

        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--mokapp-blue);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header::after {
            transform: rotate(45deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .accordion-body {
            padding: 0 1.25rem 1.25rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ==================== Contact Form ==================== */
        .contact-form {
            padding: 2rem;
            background: rgba(77, 181, 255, 0.08);
            backdrop-filter: blur(25px);
            border-radius: 20px;
            border: 1px solid rgba(77, 181, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-form h4 {
            margin-bottom: 1rem;
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .contact-form p {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        /* Compact contact box used above the FAQ */
        .contact-compact {
            max-width: 1100px;
            margin: 0 auto 2rem;
            padding: 1.5rem 2rem;
            border-radius: 18px;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(77, 181, 255, 0.2);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .form-control::placeholder {
            color: var(--text-light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--mokapp-blue);
            box-shadow: 0 0 0 3px rgba(77, 181, 255, 0.15);
            background: rgba(255, 255, 255, 0.9);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .form-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-submit {
            flex: 1;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--mokapp-blue), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            box-shadow: 0 4px 20px rgba(77, 181, 255, 0.3);
            transform: translateY(-2px);
        }

        .btn-reset {
            padding: 0.75rem 1.5rem;
            background: transparent;
            color: var(--text-light);
            border: 2px solid rgba(77, 181, 255, 0.2);
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-reset:hover {
            border-color: var(--mokapp-blue);
            color: var(--mokapp-blue);
        }

        .form-note {
            margin-top: 1rem;
            color: var(--text-light);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* ==================== Responsive Design ==================== */
        @media (max-width: 992px) {
            .hero-content             {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            /* Search box on mobile takes full width */
            .hero-search-box {
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding-top: 100px;
                min-height: auto;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .featured-card {
                grid-template-columns: minmax(0, 1fr);
            }

            .featured-thumb {
                min-height: 180px;
            }
        }

        @media (max-width: 480px) {
            .hero-description {
                font-size: 1rem;
            }

            .pricing-card {
                padding: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

        }

        /* ==================== Browser Compatibility ==================== */
        @supports not (backdrop-filter: blur(10px)) {
            .hero-badge {
                background: rgba(77, 181, 255, 0.2);
            }
        }

        /* ====================== Sticky search bar ====================== */
        .search-sticky {
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            z-index: 45;
            padding: 4px 20px 10px;
            background: linear-gradient(to bottom,
                rgba(247, 247, 249, 0.96),
                rgba(247, 247, 249, 0.92),
                rgba(247, 247, 249, 0)
            );
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.18s ease, opacity 0.18s ease;
        }

        .search-sticky--visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .search-sticky-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6px 20px 10px;
            border-radius: 18px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .search-sticky-label {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .search-sticky-form {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-sticky-form input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 0.86rem;
            padding: 6px 10px;
            border-radius: 999px;
            background: #f3f4f6;
            color: #111827;
        }

        .search-sticky-form button {
            border: none;
            outline: none;
            border-radius: 999px;
            padding: 7px 14px;
            font-size: 0.8rem;
            background: var(--mokapp-blue);
            color: #0b1120;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(77, 181, 255, 0.35);
        }

        @media (max-width: 768px) {
            .search-sticky {
                top: 52px;
            }
            .search-sticky-inner {
                padding: 6px 16px 8px;
            }
            .search-sticky-label {
                flex-basis: 100%;
            }
        }