
        :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);
        }

        img {
            display: block;
        }

        /* -&rdquo;€-&rdquo;€ 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 side */
        }

        .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: 24px;
            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-link.active {
            color: var(--black);
            font-weight: 700;
        }

        .nav-cta {
            background: var(--black);
            color: var(--white);
            font-weight: 700;
            font-size: 13px;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            transition: background .25s, transform .2s;
        }

        .nav-cta:hover {
            background: var(--purple);
            transform: translateY(-1px);
        }

        /* -&rdquo;€-&rdquo;€ LANG SWITCHER */
        .lang-switcher {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .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);
        }

        /* -&rdquo;€-&rdquo;€ HERO */
        .blog-hero {
            padding: 80px 48px 60px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .blog-hero-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--black); opacity: 0.6;
            margin-bottom: 20px;
        }

        .blog-hero-title {
            font-weight: 800;
            font-size: clamp(48px, 7vw, 80px);
            letter-spacing: -3px;
            line-height: 0.96;
            margin-bottom: 24px;
        }

        .blog-hero-sub {
            font-size: 17px;
            color: var(--muted);
            max-width: 480px;
            line-height: 1.7;
        }

        /* -&rdquo;€-&rdquo;€ FILTER PILLS */
        .filter-row {
            padding: 0 48px;
            max-width: 1280px;
            margin: 0 auto 52px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-pill {
            background: none;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-pill);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            color: var(--muted);
            transition: all .2s;
            cursor: pointer;
        }

        .filter-pill:hover {
            border-color: var(--black);
            color: var(--black);
        }

        .filter-pill.active {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }

        /* -&rdquo;€-&rdquo;€ GRID */
        .blog-grid {
            padding: 0 48px 120px;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        /* -&rdquo;€-&rdquo;€ BLOG CARD */
        .blog-card {
            border-radius: var(--radius-xl);
            overflow: hidden;
            cursor: pointer;
            transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s;
            display: flex;
            flex-direction: column;
            border: 1.5px solid var(--border);
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            border-color: var(--black);
        }

        .blog-card.featured {
            grid-column: span 2;
            flex-direction: row;
        }

        .blog-card-img {
            background: var(--off-white);
            height: 220px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .blog-card.featured .blog-card-img {
            width: 380px;
            height: auto;
        }

        .blog-card-img-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--off-white) 0%, #EDE8FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .blog-card:hover .blog-card-img-inner {
            transform: scale(1.03);
        }

        .blog-card-emoji {
            font-size: 64px;
            opacity: 0.7;
        }

        .blog-card.featured .blog-card-emoji {
            font-size: 80px;
        }

        .blog-card-body {
            padding: 28px 28px 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .blog-category {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
        }

        .cat-organiser {
            background: rgba(0, 0, 0, 0.05);
            color: var(--black); opacity: 0.6;
        }

        .cat-vendor {
            background: rgba(74, 222, 128, 0.12);
            color: #16a34a;
        }

        .cat-bigpicture {
            background: rgba(251, 191, 36, 0.15);
            color: #b45309;
        }

        .read-time {
            font-size: 12px;
            color: var(--muted);
            font-weight: 500;
        }

        .blog-card-title {
            font-weight: 800;
            font-size: 18px;
            color: var(--black);
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .blog-card.featured .blog-card-title {
            font-size: 24px;
            letter-spacing: -0.5px;
        }

        .blog-card-excerpt {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 20px;
        }

        .blog-card-link {
            font-size: 13px;
            font-weight: 700;
            color: var(--black); opacity: 0.6;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap .2s;
        }

        .blog-card:hover .blog-card-link {
            gap: 10px;
        }

        /* -&rdquo;€-&rdquo;€ 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: 800;
            font-size: 70px;
            line-height: 1;
            letter-spacing: -2px;
            padding-right: 16px;
            flex-shrink: 0;
        }

        .mq-b {
            color: var(--black);
        }

        .mq-b {
            color: var(--black); opacity: 0.6;
        }

        .mq-h {
            color: var(--black); opacity: 0.6;
            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;
            }
        }

        /* -&rdquo;€-&rdquo;€ CTA SECTION */
        .cta-section {
            background: var(--black);
            padding: 100px 48px;
            text-align: center;
        }

        .cta-hl {
            font-weight: 800;
            font-size: clamp(40px, 6vw, 72px);
            color: var(--white);
            letter-spacing: -3px;
            line-height: 0.96;
            margin-bottom: 24px;
        }

        .cta-sub {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.5);
            max-width: 480px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .btn-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 15px;
            border-radius: var(--radius-pill);
            padding: 16px 36px;
            background: var(--purple);
            color: var(--white);
            transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-pill:hover {
            background: var(--electric);
            color: var(--black);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(188, 255, 69, 0.3);
        }

        /* -&rdquo;€-&rdquo;€ FOOTER */
        .footer {
            background: var(--black);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-logo {
            font-weight: 800;
            font-size: 18px;
            color: white;
            letter-spacing: -0.5px;
        }

        .footer-links {
            display: flex;
            gap: 28px;
        }

        .footer-link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            transition: color .2s;
        }

        .footer-link:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.2);
        }

        /* -&rdquo;€-&rdquo;€ RESPONSIVE */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-card.featured {
                grid-column: auto;
                flex-direction: column;
            }

            .blog-card.featured .blog-card-img {
                width: 100%;
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 0 20px;
            }

            .nav-right {
                gap: 16px;
            }

            .blog-hero {
                padding: 48px 20px 40px;
            }

            .blog-hero-title {
                font-size: 40px;
            }

            .filter-row {
                padding: 0 20px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                padding: 0 20px 80px;
            }

            .cta-section {
                padding: 80px 20px;
            }

            .footer {
                padding: 32px 20px;
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* -&rdquo;€-&rdquo;€ FADE IN */
        .fade-up {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .fade-up.on {
            opacity: 1;
            transform: translateY(0);
        }

        /* -&rdquo;€-&rdquo;€ i18n hidden */
        [data-lang]:not(.lang-active) {
            display: none !important;
        }
    
    /* 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 &mdash; 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;
      }
    }

    