At Metriqs Performance House, we take your privacy seriously. This Privacy Policy explains how we collect, use, and protect your personal data when you visit metriqshouse.com or contact us about our services.
We collect personal data in the following ways:
| Data Type | How We Collect It | Purpose |
|---|---|---|
| Name, email, phone | Contact form on website | To respond to your enquiry |
| Company name, website | Contact form on website | To understand your business needs |
| Ad spend range | Contact form on website | To qualify and tailor our proposal |
| IP address, browser type | Automatically via website visit | Website analytics and security |
| Cookies | Automatically via website visit | Website functionality and analytics |
We process your personal data under the following legal bases (GDPR Article 6):
We use your personal data to:
We do not sell, rent, or trade your personal data to third parties.
We retain your personal data only for as long as necessary:
We use the following third-party services that may process your data:
All third-party providers are required to handle your data in compliance with GDPR and applicable data protection laws.
Our website uses cookies to improve your browsing experience. These include:
You can control cookies through your browser settings. Disabling cookies may affect website functionality.
Under the General Data Protection Regulation (GDPR), you have the following rights:
To exercise any of these rights, contact us at [email protected]. We will respond within 30 days.
We implement appropriate technical and organisational measures to protect your personal data against unauthorised access, alteration, disclosure, or destruction. All data transmitted via our website is encrypted using SSL/TLS.
Some of our third-party service providers are based outside the European Economic Area (EEA). Where data is transferred internationally, we ensure appropriate safeguards are in place in accordance with GDPR requirements.
Our services are not directed to individuals under the age of 16. We do not knowingly collect personal data from children. If you believe we have inadvertently collected such data, please contact us immediately.
We may update this Privacy Policy from time to time. Changes will be posted on this page with an updated date. We encourage you to review this policy periodically.
If you have concerns about how we handle your data, you have the right to lodge a complaint with the Portuguese data protection authority:
For any privacy-related questions or to exercise your rights, contact us at:
`; const style = document.createElement('style'); style.textContent = ` #cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; width: calc(100% - 48px); max-width: 860px; background: #0F0F0F; border: 1px solid rgba(0,200,150,.25); border-radius: 12px; padding: 24px 28px; box-shadow: 0 8px 40px rgba(0,0,0,.6); animation: cookieSlide .4s ease; } @keyframes cookieSlide { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } } #cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; } #cookie-text { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 200px; } #cookie-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #00C896; opacity: .7; } #cookie-desc { font-size: 13px; color: #A1A1AA; line-height: 1.7; } #cookie-desc a { color: #00C896; text-decoration: none; } #cookie-desc a:hover { text-decoration: underline; } #cookie-btns { display: flex; gap: 10px; flex-shrink: 0; } #cookie-decline { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; background: transparent; border: 1px solid rgba(255,255,255,.25); color: #D4D4D8; padding: 12px 20px; border-radius: 6px; cursor: pointer; transition: all .2s; font-weight: 600; } #cookie-decline:hover { border-color: #fff; color: #fff; } #cookie-accept { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; background: #00C896; border: 1px solid #00C896; color: #080808; padding: 12px 20px; border-radius: 6px; cursor: pointer; font-weight: 700; transition: all .2s; } #cookie-accept:hover { background: #00b386; border-color: #00b386; } @media (max-width: 600px) { #cookie-banner { bottom: 16px; padding: 16px; } #cookie-inner { flex-direction: column; align-items: flex-start; } #cookie-btns { width: 100%; } #cookie-decline, #cookie-accept { flex: 1; text-align: center; padding: 14px; } } `; document.head.appendChild(style); document.body.appendChild(banner); document.getElementById('cookie-accept').addEventListener('click', function() { localStorage.setItem('mq_cookies_accepted', 'true'); window.dispatchEvent(new Event('mq_consent_granted')); banner.style.animation = 'cookieSlide .3s ease reverse'; setTimeout(() => banner.remove(), 300); }); document.getElementById('cookie-decline').addEventListener('click', function() { localStorage.setItem('mq_cookies_accepted', 'declined'); banner.style.animation = 'cookieSlide .3s ease reverse'; setTimeout(() => banner.remove(), 300); }); })();