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

        :root {
            --bg: #F5F5F0;
            --surface: #EAEAE5;
            --dark: #111111;
            --muted: #6B7280;
            --accent: #0052FF;
            --accent-light: #3B7DFF;
            --border: rgba(0, 0, 0, 0.06);
            --glass-bg: rgba(255, 255, 255, 0.45);
            --glass-border: rgba(255, 255, 255, 0.7);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            --radius: 1.5rem;
            --radius-sm: 1rem;
            --radius-pill: 9999px;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            height: 100%;
            overflow: hidden;
            background: var(--bg);
            color: var(--dark);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        ::selection {
            background: var(--accent);
            color: #fff;
        }

        #scroll-container {
            height: 100dvh;
            width: 100vw;
            overflow-y: scroll;
            overflow-x: hidden;
            scroll-snap-type: y mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        #scroll-container::-webkit-scrollbar {
            display: none;
        }

        .snap-section {
            min-height: 100dvh;
            width: 100%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
            padding: 5rem 0 2rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media(min-width:1024px) {
            .container {
                padding: 0 3rem;
            }
        }

        /* Typography with clamp */
        .t-hero {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.035em;
            line-height: 1.05;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
        }

        .t-h2 {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            font-size: clamp(1.8rem, 3.5vw, 2.75rem);
        }

        .t-h3 {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            font-size: clamp(1.1rem, 1.5vw, 1.35rem);
        }

        .t-body {
            font-size: clamp(0.9rem, 1vw, 1rem);
            line-height: 1.6;
            color: var(--muted);
        }

        .t-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
        }

        /* Glass panels */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: var(--glass-shadow);
        }

        .glass-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(245, 245, 240, 0.65);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .glass-nav .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
        }

        @media(min-width:768px) {
            .glass-nav .nav-inner {
                height: 4.5rem;
            }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.75rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
            outline: none;
        }

        .btn-primary {
            background: var(--dark);
            color: var(--bg);
        }

        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 82, 255, 0.25);
        }

        .btn-ghost {
            background: transparent;
            color: var(--dark);
            border: 1px solid rgba(0, 0, 0, 0.12);
        }

        .btn-ghost:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Gradient orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            pointer-events: none;
            z-index: 0;
        }

        .orb-blue {
            background: var(--accent);
            width: 400px;
            height: 400px;
        }

        .orb-purple {
            background: #8B5CF6;
            width: 300px;
            height: 300px;
        }

        .orb-cyan {
            background: #06B6D4;
            width: 350px;
            height: 350px;
        }

        /* Cursor */
        .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, opacity 0.2s;
        }

        .cursor-glow {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cursor-glow.hover {
            width: 80px;
            height: 80px;
        }

        @media(max-width:768px) {

            .cursor-dot,
            .cursor-glow {
                display: none;
            }
        }

        /* Cards */
        .svc-card {
            padding: clamp(1rem, 2vw, 1.5rem);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            color: inherit;
        }

        .svc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 82, 255, 0.15);
        }

        .svc-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        /* Problem cards */
        .problem-card {
            padding: clamp(1.5rem, 3vw, 2.5rem);
            text-align: center;
        }

        .problem-num {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent), #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 1rem;
        }

        /* Testimonial */
        .quote-mark {
            font-size: 4rem;
            line-height: 1;
            color: var(--accent);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        /* Blog */
        .blog-grid {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding-bottom: 1rem;
        }

        .blog-grid::-webkit-scrollbar {
            display: none;
        }

        @media(min-width:768px) {
            .blog-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                overflow: visible;
            }
        }

        .blog-card {
            min-width: 85vw;
            scroll-snap-align: center;
            flex-shrink: 0;
            text-decoration: none;
            color: inherit;
        }

        @media(min-width:768px) {
            .blog-card {
                min-width: 0;
            }
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .blog-card:hover img {
            transform: scale(1.03);
        }

        /* Form */
        .input-glass {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--dark);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .input-glass::placeholder {
            color: var(--muted);
            opacity: 0.6;
        }

        .input-glass:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
        }

        /* Scroll dots */
        .scroll-dots {
            position: fixed;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 90;
        }

        .scroll-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--muted);
            opacity: 0.3;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            padding: 0;
        }

        .scroll-dot.active {
            opacity: 1;
            background: var(--accent);
            transform: scale(1.8);
        }

        @media(max-width:768px) {
            .scroll-dots {
                display: none;
            }
        }

        /* WhatsApp float */
        .wa-btn {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 90;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .wa-btn:hover {
            transform: scale(1.1) translateY(-3px);
        }

        /* Mobile menu */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(245, 245, 240, 0.97);
            backdrop-filter: blur(20px);
            z-index: 95;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s;
        }

        .mobile-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-overlay a {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
        }

        .mobile-overlay a:hover {
            color: var(--accent);
        }

        /* Noise texture */
        .noise {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9997;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        /* Animations base */
        .anim-up {
            opacity: 0;
            transform: translateY(40px);
        }

        .anim-scale {
            opacity: 0;
            transform: scale(0.95);
        }

        .anim-fade {
            opacity: 0;
        }

        /* Footer */
        .footer-bar {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .footer-bar a {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bar a:hover {
            color: var(--dark);
        }

        /* Stat */
        .stat-num {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: var(--dark);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 0.25rem;
        }

.desktop-nav {
            display: flex
        }

        @media(max-width:768px) {
            .desktop-nav {
                display: none !important
            }

            #menuBtn {
                display: block !important
            }
        }

@media(min-width:768px) {
                #svc1 {
                    grid-column: span 1 !important
                }

                #svc4 {
                    grid-column: span 1 !important
                }

                #seeAllBtn {
                    display: inline-flex !important
                }
            }

@media(min-width:768px) {
                        .blog-grid .blog-card {
                            display: block !important;
                            min-width: 0 !important
                        }
                    }

@media(min-width:768px) {
                        #ctaGrid {
                            grid-template-columns: 1fr 1fr !important
                        }
                    }


/* Utility Classes for Inline Styles */
.flex-center-gap-2-5 { display: flex; align-items: center; gap: 2.5rem; }
.flex-center-between { display: flex; align-items: center; justify-content: space-between; }
.flex-end-between { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; }
.flex-center-gap { display: flex; align-items: center; gap: 0.75rem; }
.flex-wrap-gap-1 { display: flex; flex-wrap: wrap; gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.grid-responsive-2 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width: 768px) { .grid-responsive-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-responsive-4 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width: 640px) { .grid-responsive-4 { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .grid-responsive-4 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.grid-auto-280 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-auto-300 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.text-decoration-none { text-decoration: none; }
.color-dark { color: var(--dark); }
.color-muted { color: var(--muted); }
.color-accent { color: var(--accent); }
.font-w-600 { font-weight: 600; }
.font-w-700 { font-weight: 700; }
.font-s-sm { font-size: 0.85rem; }
.font-s-xs { font-size: 0.8rem; }
.text-center { text-align: center; }

.m-0 { margin: 0; }
.mt-0-75 { margin-top: 0.75rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0-25 { margin-bottom: 0.25rem; }
.mb-0-5 { margin-bottom: 0.5rem; }
.mb-0-75 { margin-bottom: 0.75rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2-5 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.my-1 { margin-top: 1rem; margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-2 { padding: 2rem; }
.p-0 { padding: 0; }

.pos-rel { position: relative; }
.z-2 { z-index: 2; }
.max-w-640 { max-width: 640px; }
.max-w-720 { max-width: 720px; }

/* Testimonial Marquee */
.testi-marquee-wrapper {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testi-marquee {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
    padding-left: 1.5rem;
    pointer-events: none;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.testi-card {
    width: 280px;
    height: 373px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.testi-card > .t-body {
    flex-grow: 1;
}
@media(min-width: 768px) {
    .testi-card {
        width: 330px;
        height: 440px;
    }
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

/* === SEARCH INPUT & FOOTER LINK === */
.footer-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.footer-link:hover {
    color: var(--accent);
}

.search-input {
    width: 100%;
    padding: .85rem 1rem .85rem 2.8rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--dark);
    outline: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: var(--muted);
}

.search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
