
        :root {
            --white: #FFFFFF;
            --off-white: #F7F7F7;
            --black: #0A0A0A;
            --gray-100: #F5F5F5;
            --gray-200: #E8E8E8;
            --gray-300: #D1D1D1;
            --gray-400: #A0A0A0;
            --gray-500: #6E6E6E;
            --gray-600: #4A4A4A;
            --muted: var(--gray-500);
            --border: var(--gray-200);
            --font-heading: 'Urbanist';
            --font-body: 'Google Sans', 'Product Sans', 'Urbanist';
            --font: var(--font-body);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --radius-pill: 100px;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

            /* --- ACCESSIBILITY --- */
    :focus-visible { outline: 2px solid var(--black); outline-offset: 4px; }

    html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: var(--font);
            background: var(--white);
            color: var(--black);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: var(--font);
        }

        /* NAV */
        .nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom: 1px solid var(--gray-200);
            padding: 0 48px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-left {
            display: flex;
            align-items: center;
            width: 200px; /* Balance with right */
        }

        .nav-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 800;
            font-size: 11px;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--black);
            font-family: var(--font-heading);
            user-select: none;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 22px;
            width: 200px;
            justify-content: flex-end;
        }

        .nav-link {
            color: var(--muted);
            font-size: 14px;
            font-weight: 500;
            transition: color .2s;
        }

        .nav-link:hover {
            color: var(--black);
        }

        .nav-cta {
            background: var(--black);
            color: #fff;
            font-weight: 700;
            font-size: 13px;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            transition: background .25s, transform .2s;
        }

        .nav-cta:hover {
            background: #333;
            transform: translateY(-1px);
        }

        .lang-switcher {
            display: flex;
            gap: 6px;
        }

        .lang-btn {
            background: none;
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            padding: 4px 8px;
            border-radius: 6px;
            transition: all .2s;
        }

        .lang-btn:hover,
        .lang-btn.active {
            background: var(--off-white);
            color: var(--black);
        }

        /* HERO */
        .post-hero {
            padding: 72px 48px 0;
            max-width: 780px;
            margin: 0 auto;
        }

        .post-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 32px;
            transition: color .2s;
        }

        .post-back:hover {
            color: var(--black);
        }

        .post-cat {
            display: inline-block;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .1em;
            padding: 5px 12px;
            border-radius: var(--radius-pill);
            margin-bottom: 22px;
        }

        .cat-organiser {
            background: rgba(10, 10, 10, .08);
            color: var(--black);
        }

        .cat-vendor {
            background: rgba(10, 10, 10, .08);
            color: var(--black);
        }

        .cat-bigpicture {
            background: rgba(10, 10, 10, .08);
            color: var(--black);
        }

        .post-title {
            font-weight: 900;
            font-size: clamp(32px, 5vw, 52px);
            letter-spacing: -2px;
            line-height: 1.04;
            margin-bottom: 20px;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 52px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
        }

        .post-read {
            font-size: 13px;
            color: var(--muted);
        }

        /* BODY */
        .post-body {
            max-width: 680px;
            margin: 0 auto;
            padding: 0 48px 80px;
        }

        .post-body p {
            font-size: 17px;
            line-height: 1.82;
            color: #2d2d2d;
            margin-bottom: 24px;
        }

        .post-body h3 {
            font-weight: 800;
            font-size: 22px;
            letter-spacing: -.5px;
            margin: 52px 0 18px;
        }

        .post-body h4 {
            font-weight: 700;
            font-size: 17px;
            margin: 28px 0 10px;
        }

        .post-body strong {
            font-weight: 700;
            color: var(--black);
        }

        .post-body em {
            font-style: italic;
        }

        .post-body ul,
        .post-body ol {
            margin: 0 0 24px 24px;
        }

        .post-body li {
            font-size: 16px;
            line-height: 1.75;
            color: #2d2d2d;
            margin-bottom: 8px;
        }

        .post-body hr {
            border: none;
            border-top: 1px solid var(--border);
            margin: 44px 0;
        }

        .post-body blockquote {
            border-left: 3px solid var(--black);
            padding: 12px 0 12px 24px;
            margin: 0 0 24px;
        }

        .post-body blockquote p {
            color: var(--muted);
            font-style: italic;
        }

        .brand {
            font-weight: 800;
            color: var(--black);
        }

        /* MARQUEE */
        .marquee {
            background: var(--off-white);
            padding: 38px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .mq-track {
            display: inline-flex;
            animation: mq 30s linear infinite;
        }

        .mq-chunk {
            font-weight: 900;
            font-size: 70px;
            line-height: 1;
            letter-spacing: -2px;
            padding-right: 16px;
            flex-shrink: 0;
        }

        .mq-b {
            color: var(--black);
        }

        .mq-p {
            color: var(--muted);
        }

        .mq-h {
            color: var(--muted);
            font-size: 52px;
            margin: 0 14px;
        }

        @keyframes mq {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        @media(prefers-reduced-motion:reduce) {
            .mq-track {
                animation-play-state: paused;
            }
        }

        /* CTA */
        .post-cta {
            background: var(--black);
            padding: 88px 48px;
            text-align: center;
        }

        .post-cta h2 {
            font-weight: 900;
            font-size: clamp(36px, 5vw, 60px);
            color: #fff;
            letter-spacing: -2.5px;
            line-height: .97;
            margin-bottom: 20px;
        }

        .post-cta p {
            font-size: 16px;
            color: rgba(255, 255, 255, .45);
            max-width: 420px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 15px;
            border-radius: var(--radius-pill);
            padding: 16px 36px;
            background: var(--white);
            color: var(--black);
            transition: all .25s cubic-bezier(.22, 1, .36, 1);
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 255, 255, .15);
        }

        /* MORE POSTS */
        .more-posts {
            padding: 80px 48px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .more-hl {
            font-weight: 900;
            font-size: 32px;
            letter-spacing: -1px;
            margin-bottom: 36px;
        }

        .more-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .more-card {
            border: 1.5px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s, border-color .3s;
        }

        .more-card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .more-card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .more-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
            border-color: var(--black);
        }

        .more-cat {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--black);
            margin-bottom: 10px;
        }

        .more-title {
            font-weight: 700;
            font-size: 16px;
            line-height: 1.35;
            letter-spacing: -.2px;
            margin-bottom: 12px;
            flex: 1;
        }

        .more-read {
            font-size: 12px;
            color: var(--muted);
        }

        /* FOOTER */
        .footer {
            background: var(--black);
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding: 40px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-logo {
            font-weight: 900;
            font-size: 18px;
            color: #fff;
            letter-spacing: -.5px;
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, .2);
        }

        @media(max-width:768px) {
            .nav {
                padding: 0 20px;
            }

            .nav-right {
                gap: 14px;
            }

            .post-hero {
                padding: 48px 20px 0;
            }

            .post-back {
                margin-bottom: 20px;
            }

            .post-body {
                padding: 0 20px 60px;
            }

            .post-title {
                font-size: 30px;
            }

            .post-body p {
                font-size: 15px;
            }

            .post-body h3 {
                font-size: 19px;
            }

            .more-posts {
                padding: 60px 20px;
            }

            .more-grid {
                grid-template-columns: 1fr;
            }

            .post-cta {
                padding: 64px 20px;
            }

            .footer {
                padding: 32px 20px;
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
    
    /* Back Button Style */
    .back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: var(--black, #000);
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
        margin-right: 12px;
        z-index: 1001;
    }
    .back-btn:hover {
        background: rgba(0,0,0,0.05);
    }
    .back-btn svg {
        width: 20px;
        height: 20px;
    }

    
    /* Beautiful Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f9f9f9;
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb {
        background: #d1d1d1;
        border-radius: 10px;
        border: 2px solid #f9f9f9;
        transition: all 0.3s ease;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #000;
    }
    html {
        scroll-behavior: smooth;
    }

    
    /* ===================================
       MOBILE RESPONSIVE — Global Block
       Targets: 768px and below
    =================================== */

    /* NAV: Global Mobile */
    @media (max-width: 768px) {
      .nav {
        padding: 0 20px !important;
        height: 52px !important;
      }
      .nav-logo, .nav-logo-line {
        font-size: 10px !important;
        letter-spacing: 0.25em !important;
      }
      .nav-right .lang-switcher {
        display: none !important;
      }
      .nav-right .nav-link:not(:last-child) {
        display: none !important;
      }
    }

    /* HERO: index.html */
    @media (max-width: 768px) {
      .hero {
        padding: 80px 24px 60px !important;
        text-align: center !important;
      }
      .hero h1 {
        font-size: clamp(44px, 12vw, 80px) !important;
        letter-spacing: -2px !important;
      }
      .hero-sub {
        font-size: 16px !important;
        max-width: 100% !important;
      }
      .hero-cta {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 24px !important;
      }
      .hero-letters { opacity: 0.4 !important; }
    }

    /* PRODUCT PAGES: Feature Sections */
    @media (max-width: 768px) {
      .feat-inner {
        flex-direction: column !important;
        gap: 32px !important;
        padding: 48px 24px !important;
      }
      .feat-hl {
        font-size: clamp(30px, 9vw, 52px) !important;
        letter-spacing: -1px !important;
      }
      .feat-body {
        font-size: 16px !important;
      }
      .feat-visual-box {
        width: 100% !important;
        max-width: 100% !important;
      }
      .feat-phone, .feat-phone-img {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
      }
    }

    /* WHO WE SERVE / Serve Grid */
    @media (max-width: 768px) {
      .serve-section { padding: 60px 24px !important; }
      .serve-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .serve-intro h2 {
        font-size: clamp(28px, 8vw, 42px) !important;
      }
    }

    /* STATEMENT */
    @media (max-width: 768px) {
      .statement {
        padding: 60px 24px !important;
        font-size: clamp(22px, 7vw, 36px) !important;
      }
      .statement h2 {
        font-size: clamp(22px, 7vw, 36px) !important;
      }
    }

    /* PRICING PAGES */
    @media (max-width: 768px) {
      .pricing-grid, .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }
      .pricing-card, .plan-card {
        padding: 32px 24px !important;
      }
      .gateway-card {
        padding: 40px 24px !important;
      }
      .gateway-card h2 {
        font-size: clamp(28px, 8vw, 48px) !important;
      }
    }

    /* BLOG GRID */
    @media (max-width: 768px) {
      .blog-grid, .posts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .blog-hero, .blog-header {
        padding: 60px 24px 32px !important;
      }
      .blog-hero h1, .blog-header h1 {
        font-size: clamp(32px, 9vw, 56px) !important;
      }
    }

    /* BLOG POST / ARTICLE */
    @media (max-width: 768px) {
      .post-hero {
        padding: 60px 24px 32px !important;
      }
      .post-hero h1, .post-title {
        font-size: clamp(26px, 7vw, 44px) !important;
        letter-spacing: -0.5px !important;
      }
      .post-body {
        padding: 32px 24px !important;
        font-size: 16px !important;
        line-height: 1.75 !important;
      }
      .related-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }
    }

    /* AUTH PAGES (Signup / Login) */
    @media (max-width: 768px) {
      .auth-form-wrapper {
        padding: 48px 20px 32px !important;
      }
      .auth-header h1 {
        font-size: 28px !important;
      }
      .form-row {
        flex-direction: column !important;
        gap: 0 !important;
      }
      .back-btn {
        top: 14px !important;
        left: 16px !important;
        font-size: 13px !important;
      }
      .auth-nav {
        font-size: 13px !important;
        top: 16px !important;
        right: 16px !important;
      }
    }

    /* ABOUT PAGE */
    @media (max-width: 768px) {
      .about-hero {
        padding: 80px 24px 48px !important;
      }
      .about-hero h1 {
        font-size: clamp(36px, 10vw, 64px) !important;
      }
      .about-grid, .values-grid, .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
      }
      .about-section, .values-section {
        padding: 60px 24px !important;
      }
    }

    /* LEGAL PAGES (Terms / Privacy) */
    @media (max-width: 768px) {
      .legal-hero {
        padding: 60px 24px 32px !important;
      }
      .legal-body, .doc-body, .legal-content {
        padding: 32px 24px !important;
        font-size: 15px !important;
        line-height: 1.75 !important;
      }
    }

    /* CONTACT FORM (index.html) */
    @media (max-width: 768px) {
      .contact-section, .cf-section {
        padding: 60px 24px !important;
      }
      .cf-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
    }

    /* FOOTER */
    @media (max-width: 768px) {
      .footer-section {
        padding: 60px 24px 40px !important;
      }
      .footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
      }
      .footer-brand {
        font-size: clamp(40px, 14vw, 80px) !important;
      }
      .footer-tagline {
        font-size: 14px !important;
      }
    }

    /* 404 PAGE */
    @media (max-width: 768px) {
      .error-page, .not-found {
        padding: 80px 24px !important;
        text-align: center !important;
      }
    }

    /* ACCOUNT PAGE */
    @media (max-width: 768px) {
      .account-layout, .dashboard-layout {
        flex-direction: column !important;
        gap: 24px !important;
      }
      .account-sidebar {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid var(--gray-200) !important;
      }
    }

    /* Very small phones */
    @media (max-width: 400px) {
      .hero h1 {
        font-size: 38px !important;
      }
      .nav-right .nav-link {
        font-size: 13px !important;
      }
      .footer-columns {
        grid-template-columns: 1fr !important;
      }
    }

    