1a12fb870b
- New /developers/ page with API docs, SDKs, pricing, use cases - OpenAPI 3.0 spec for Orders, Missions, Photos, Analytics - Case study: Glasskiosken i Flatenbadet — complete ROI analysis - Updated /order/ with recurring missions and frequency dropdown
489 lines
24 KiB
HTML
489 lines
24 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="theme-color" content="#f5f5f7">
|
|
<title>Contact — Landvex</title>
|
|
<meta name="description" content="Contact Landvex for enterprise briefings, pilot programmes, legal, and security enquiries. We respond to all enterprise enquiries within one business day.">
|
|
<link rel="canonical" href="https://www.landvex.com/contact/">
|
|
<style>
|
|
:root {
|
|
--bg-dark: #f5f5f7;
|
|
--blue: #0066FF;
|
|
--blue-dark: #0052CC;
|
|
--blue-glow: rgba(0,102,255,0.10);
|
|
--text-dark: #1d1d1f;
|
|
--text-body: #3a3a3a;
|
|
--text-muted: #6e6e73;
|
|
--surface: #ffffff;
|
|
--surface-2: #f5f5f7;
|
|
--border: rgba(0,0,0,0.09);
|
|
}
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
|
|
background: var(--bg-dark);
|
|
color: var(--text-dark);
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
|
|
|
/* Nav */
|
|
nav {
|
|
position: sticky; top: 0; z-index: 300;
|
|
background: rgba(255,255,255,0.92);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
|
|
.nav-logo { font-size: 1.375rem; font-weight: 900; color: var(--text-dark); text-decoration: none; }
|
|
.nav-logo span { color: var(--blue); }
|
|
.nav-links { display: flex; gap: 32px; }
|
|
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
|
|
.nav-links a:hover { color: var(--text-dark); }
|
|
|
|
/* Hero */
|
|
.hero { padding: 80px 0 60px; text-align: center; background: var(--surface); }
|
|
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
|
|
.hero p { font-size: 1.25rem; color: var(--text-body); max-width: 600px; margin: 0 auto; }
|
|
|
|
/* Contact cards */
|
|
.contact-section { padding: 60px 0; }
|
|
.section-title { text-align: center; margin-bottom: 48px; }
|
|
.section-title h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
|
|
.section-title p { font-size: 1.1rem; color: var(--text-muted); }
|
|
|
|
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
|
|
.contact-card {
|
|
background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
|
|
padding: 40px; text-align: center; transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
|
|
.contact-icon {
|
|
width: 56px; height: 56px; background: var(--blue-glow); border-radius: var(--radius-lg);
|
|
display: flex; align-items: center; justify-content: center;
|
|
margin: 0 auto 20px; color: var(--blue);
|
|
}
|
|
.contact-icon svg { width: 28px; height: 28px; }
|
|
.contact-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
|
|
.contact-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; }
|
|
.contact-card a { color: var(--blue); text-decoration: none; font-weight: 600; }
|
|
.contact-card a:hover { text-decoration: underline; }
|
|
|
|
/* Form section */
|
|
.form-section {
|
|
background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
|
|
padding: 48px; margin: 40px 0;
|
|
}
|
|
.form-section h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 16px; text-align: center; }
|
|
.form-section p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; text-align: center; }
|
|
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
|
|
.form-group { display: flex; flex-direction: column; }
|
|
.form-group.full { grid-column: 1 / -1; }
|
|
.form-group label { font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
|
|
.form-group input, .form-group textarea, .form-group select {
|
|
padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-md);
|
|
font-size: 1rem; font-family: inherit; background: var(--surface-2);
|
|
}
|
|
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
|
|
outline: none; border-color: var(--blue);
|
|
}
|
|
.form-group textarea { min-height: 120px; resize: vertical; }
|
|
.submit-btn {
|
|
background: var(--blue); color: #fff; border: none; padding: 14px 32px;
|
|
border-radius: var(--radius-md); font-size: 1rem; font-weight: 600; cursor: pointer;
|
|
margin-top: 8px; transition: background 0.2s;
|
|
}
|
|
.submit-btn:hover { background: var(--blue-dark); }
|
|
|
|
/* Offices */
|
|
.offices { padding: 60px 0; background: var(--surface); }
|
|
.office-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
|
|
.office-card {
|
|
background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px;
|
|
}
|
|
.office-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
|
|
.office-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
|
|
.office-icon {
|
|
width: 48px; height: 48px; background: var(--blue-glow); border-radius: var(--radius-md);
|
|
display: flex; align-items: center; justify-content: center;
|
|
margin-bottom: 16px; color: var(--blue);
|
|
}
|
|
.office-icon svg { width: 24px; height: 24px; }
|
|
|
|
/* Footer */
|
|
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0; }
|
|
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
|
|
.footer-links { display: flex; gap: 24px; }
|
|
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
|
|
.footer-links a:hover { color: var(--text-dark); }
|
|
|
|
@media (max-width: 768px) {
|
|
.nav-links { display: none; }
|
|
.form-grid { grid-template-columns: 1fr; }
|
|
}
|
|
</style>
|
|
<style>
|
|
@media (max-width: 640px) {
|
|
.hero h1 { font-size: 2rem !important; }
|
|
.hero p { font-size: 1rem !important; }
|
|
.card { padding: 1.5rem !important; }
|
|
.grid { grid-template-columns: 1fr !important; }
|
|
.btn { padding: 0.75rem 1.5rem !important; font-size: 1rem !important; }
|
|
}
|
|
</style>
|
|
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": [
|
|
"Organization",
|
|
"Corporation"
|
|
],
|
|
"@id": "https://landvex.com/#organization",
|
|
"name": "Landvex",
|
|
"alternateName": [
|
|
"LandveX",
|
|
"Landvex AB",
|
|
"LandveX AB"
|
|
],
|
|
"url": "https://landvex.com",
|
|
"logo": {
|
|
"@type": "ImageObject",
|
|
"url": "https://landvex.com/apple-touch-icon.png",
|
|
"width": 180,
|
|
"height": 180
|
|
},
|
|
"foundingDate": "2024",
|
|
"foundingLocation": {
|
|
"@type": "Place",
|
|
"addressLocality": "Stockholm",
|
|
"addressRegion": "Stockholm",
|
|
"addressCountry": "SE"
|
|
},
|
|
"legalName": "Landvex Inc",
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"addressLocality": "Houston",
|
|
"addressRegion": "TX",
|
|
"addressCountry": "US"
|
|
},
|
|
"location": [
|
|
{
|
|
"@type": "Place",
|
|
"name": "Houston, Texas, USA (US HQ)",
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"addressLocality": "Houston",
|
|
"addressRegion": "TX",
|
|
"addressCountry": "US"
|
|
}
|
|
},
|
|
{
|
|
"@type": "Place",
|
|
"name": "Stockholm, Sweden (EU HQ)",
|
|
"address": {
|
|
"@type": "PostalAddress",
|
|
"addressLocality": "Stockholm",
|
|
"addressRegion": "Stockholm",
|
|
"addressCountry": "SE"
|
|
}
|
|
}
|
|
],
|
|
"taxID": "pending-EIN",
|
|
"description": "Landvex is a decision intelligence company that identifies contradictions between official narratives and observed physical reality. Using the quiXzoom field observation network and the AMOS AI analysis engine, Landvex delivers infrastructure risk indexes, urban intelligence scores, and contradiction reports to infrastructure owners, municipalities, enterprises, and investors globally.",
|
|
"disambiguatingDescription": "Landvex (LandveX) is a decision intelligence company with US headquarters in Houston, Texas (Landvex Inc.) and European headquarters in Stockholm, Sweden (Landvex AB, org.nr 559141-7042). Landvex delivers control intelligence — infrastructure risk scores, urban intelligence, and contradiction analysis — to municipalities, enterprises, infrastructure operators and investors. Landvex is not a UK meat wholesaler, food distributor, logistics company, package tracker, or land investment platform.",
|
|
"knowsAbout": [
|
|
"control intelligence",
|
|
"decision intelligence",
|
|
"infrastructure risk assessment",
|
|
"urban intelligence",
|
|
"field data collection",
|
|
"contradiction detection",
|
|
"physical world analytics",
|
|
"geospatial analytics"
|
|
],
|
|
"brand": {
|
|
"@type": "Brand",
|
|
"name": "Landvex",
|
|
"slogan": "Control intelligence for the physical world."
|
|
},
|
|
"sameAs": [
|
|
"https://landvex.com",
|
|
"https://www.linkedin.com/company/landvex",
|
|
"https://x.com/landvex",
|
|
"https://twitter.com/landvex",
|
|
"https://www.crunchbase.com/organization/landvex",
|
|
"https://github.com/landvex",
|
|
"https://www.instagram.com/landvex"
|
|
],
|
|
"contactPoint": {
|
|
"@type": "ContactPoint",
|
|
"email": "contact@landvex.com",
|
|
"contactType": "sales"
|
|
},
|
|
"slogan": "Where reported reality conflicts with observed reality."
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<nav aria-label="breadcrumb" style="padding: 10px 20px; color: rgba(235,235,245,0.6); font-size: 14px;">
|
|
<a href="/" style="color: #007AFF; text-decoration: none;">Home</a> / <span>contact</span>
|
|
</nav>
|
|
<nav>
|
|
<div class="container">
|
|
<div class="nav-inner">
|
|
<a href="/" class="nav-logo">Landve<span>X</span></a>
|
|
<div class="nav-links">
|
|
<a href="/">Home</a>
|
|
<a href="/about/">About</a>
|
|
<a href="/methodology/">Methodology</a>
|
|
<a href="/careers/">Careers</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="container">
|
|
<h1>Contact Landvex</h1>
|
|
<p>Enterprise briefings, pilot programmes, legal, and security enquiries. We respond within one business day.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="contact-section">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>Get in touch</h2>
|
|
<p>Choose the channel that works best for your enquiry</p>
|
|
</div>
|
|
<div class="contact-grid">
|
|
<div class="contact-card">
|
|
<div class="contact-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<rect x="2" y="4" width="20" height="16" rx="2"/>
|
|
<path d="M2 6l10 7 10-7"/>
|
|
</svg>
|
|
</div>
|
|
<h3>Sales & Enterprise</h3>
|
|
<p>For enterprise briefings, pilot programmes, and partnership enquiries.</p>
|
|
<a href="mailto:sales@landvex.com">sales@landvex.com</a>
|
|
</div>
|
|
<div class="contact-card">
|
|
<div class="contact-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<rect x="2" y="4" width="20" height="16" rx="2"/>
|
|
<path d="M2 6l10 7 10-7"/>
|
|
</svg>
|
|
</div>
|
|
<h3>Legal & Compliance</h3>
|
|
<p>For legal enquiries, GDPR requests, and compliance questions.</p>
|
|
<a href="mailto:legal@landvex.com">legal@landvex.com</a>
|
|
</div>
|
|
<div class="contact-card">
|
|
<div class="contact-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
|
|
</svg>
|
|
</div>
|
|
<h3>Security</h3>
|
|
<p>For security enquiries, vulnerability reports, and incident response.</p>
|
|
<a href="mailto:security@landvex.com">security@landvex.com</a>
|
|
</div>
|
|
<div class="contact-card">
|
|
<div class="contact-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<rect x="2" y="4" width="20" height="16" rx="2"/>
|
|
<path d="M2 6l10 7 10-7"/>
|
|
</svg>
|
|
</div>
|
|
<h3>Press & Media</h3>
|
|
<p>For press enquiries, interview requests, and media assets.</p>
|
|
<a href="mailto:press@landvex.com">press@landvex.com</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-section">
|
|
<h2>Send us a message</h2>
|
|
<p>Fill out the form below and we will get back to you as soon as possible.</p>
|
|
<form action="/api/contact" method="POST">
|
|
<div class="form-grid">
|
|
<div class="form-group">
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" name="name" required placeholder="Your name">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" required placeholder="your@email.com">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="subject">Subject</label>
|
|
<select id="subject" name="subject" required>
|
|
<option value="">Select a topic</option>
|
|
<option value="enterprise">Enterprise enquiry</option>
|
|
<option value="pilot">Pilot programme</option>
|
|
<option value="partnership">Partnership</option>
|
|
<option value="legal">Legal</option>
|
|
<option value="security">Security</option>
|
|
<option value="press">Press & Media</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="org">Organisation (optional)</label>
|
|
<input type="text" id="org" name="organisation" placeholder="Company name">
|
|
</div>
|
|
<div class="form-group full">
|
|
<label for="message">Message</label>
|
|
<textarea id="message" name="message" required placeholder="How can we help you?"></textarea>
|
|
</div>
|
|
<div class="form-group full">
|
|
<button type="submit" class="submit-btn">Send message</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="offices">
|
|
<div class="container">
|
|
<div class="section-title">
|
|
<h2>Offices</h2>
|
|
<p>Our global presence</p>
|
|
</div>
|
|
<div class="office-grid">
|
|
<div class="office-card">
|
|
<div class="office-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/>
|
|
<circle cx="12" cy="10" r="3"/>
|
|
</svg>
|
|
</div>
|
|
<h3>Stockholm, Sweden</h3>
|
|
<p>Landvex AB<br>Stureplan 4C<br>114 35 Stockholm<br>Sweden</p>
|
|
</div>
|
|
<div class="office-card">
|
|
<div class="office-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/>
|
|
<circle cx="12" cy="10" r="3"/>
|
|
</svg>
|
|
</div>
|
|
<h3>Houston, Texas, USA</h3>
|
|
<p>Landvex Inc.<br>700 Milam Street, Suite 1300<br>Houston, TX 77002<br>United States</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="footer-container" style="max-width:1200px;margin:0 auto;padding:48px 24px 32px;">
|
|
<!-- Main Footer Grid -->
|
|
<div style="display:grid;grid-template-columns:repeat(4,1fr);gap:40px;margin-bottom:48px;">
|
|
|
|
<!-- Column 1: Products -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Produkter</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/infrastructure-monitoring/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">VIMS</a></li>
|
|
<li><a href="/intelligence/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Intelligence</a></li>
|
|
<li><a href="/reality-alerts/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Reality Alerts</a></li>
|
|
<li><a href="/enterprise/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Enterprise</a></li>
|
|
<li><a href="/pilot/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Pilotprogram</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Column 2: Solutions -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Lösningar</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/verticals/bridge-inspection/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Broinspektion</a></li>
|
|
<li><a href="/verticals/road-monitoring/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Vägövervakning</a></li>
|
|
<li><a href="/verticals/infrastructure/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Infrastruktur</a></li>
|
|
<li><a href="/verticals/utilities/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Utilities</a></li>
|
|
<li><a href="/use-cases/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Användningsfall</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Column 3: Resources -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Resurser</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/blog/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Intelligence Insights</a></li>
|
|
<li><a href="/guides/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Guider</a></li>
|
|
<li><a href="/developers/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Developer API</a></li>
|
|
<li><a href="/status/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Systemstatus</a></li>
|
|
<li><a href="/reports/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Rapporter</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Column 4: Company -->
|
|
<div>
|
|
<h4 style="font-size:13px;font-weight:600;color:#0A0A0A;margin-bottom:16px;text-transform:uppercase;letter-spacing:0.5px;">Företag</h4>
|
|
<ul style="list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;">
|
|
<li><a href="/about/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Om oss</a></li>
|
|
<li><a href="/careers/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Karriär</a></li>
|
|
<li><a href="/press/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Press</a></li>
|
|
<li><a href="/contact/" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">Kontakt</a></li>
|
|
<li><a href="https://www.quixzoom.com" target="_blank" rel="noopener" style="font-size:13px;color:#6E6E73;text-decoration:none;transition:color 0.2s;">quiXzoom →</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Divider -->
|
|
<div style="border-top:1px solid #E5E5E5;padding-top:32px;">
|
|
|
|
<!-- Legal & Compliance Row -->
|
|
<div style="display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:24px;margin-bottom:24px;">
|
|
<div style="display:flex;flex-wrap:wrap;gap:16px 24px;">
|
|
<a href="/privacy/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Privacy</a>
|
|
<a href="/terms/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Terms</a>
|
|
<a href="/cookie-policy/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Cookies</a>
|
|
<a href="/compliance/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Compliance</a>
|
|
<a href="/trust/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Trust Centre</a>
|
|
<a href="/dpa/" style="font-size:12px;color:#6E6E73;text-decoration:none;">DPA</a>
|
|
<a href="/sla/" style="font-size:12px;color:#6E6E73;text-decoration:none;">SLA</a>
|
|
<a href="/security/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Security</a>
|
|
<a href="/accessibility/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Accessibility</a>
|
|
<a href="/responsible-disclosure/" style="font-size:12px;color:#6E6E73;text-decoration:none;">Responsible Disclosure</a>
|
|
</div>
|
|
<div style="display:flex;gap:16px;">
|
|
<a href="https://www.linkedin.com/company/landvex" target="_blank" rel="noopener" style="color:#6E6E73;" title="LinkedIn">
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect x="2" y="9" width="4" height="12"/><circle cx="4" cy="4" r="2"/></svg>
|
|
</a>
|
|
<a href="https://x.com/landvex" target="_blank" rel="noopener" style="color:#6E6E73;" title="X">
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622 5.912-5.622Zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Company Info Row -->
|
|
<div style="display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;">
|
|
<div>
|
|
<div style="font-size:12px;color:#86868B;line-height:1.6;">
|
|
<strong style="color:#0A0A0A;">Landvex Inc.</strong> · Houston, Texas · USA<br>
|
|
<strong style="color:#0A0A0A;">Landvex AB</strong> · Org.nr 559141-7042 · Stockholm, Sweden · EU<br>
|
|
<a href="mailto:contact@landvex.com" style="color:#86868B;text-decoration:none;">contact@landvex.com</a> ·
|
|
<a href="mailto:security@landvex.com" style="color:#86868B;text-decoration:none;">security@landvex.com</a>
|
|
</div>
|
|
<div style="font-size:11px;color:#86868B;margin-top:8px;line-height:1.5;">
|
|
Field data powered by <a href="https://www.quixzoom.com" style="color:#86868B;text-decoration:underline;">quiXzoom</a> ·
|
|
<a href="/data-lineage/" style="color:#86868B;text-decoration:underline;">Data Lineage</a> ·
|
|
<a href="/subprocessors/" style="color:#86868B;text-decoration:underline;">Sub-processors</a> ·
|
|
<a href="/methodology/" style="color:#86868B;text-decoration:underline;">Methodology</a>
|
|
</div>
|
|
</div>
|
|
<div style="font-size:12px;color:#86868B;">
|
|
© 2026 Landvex Inc / Landvex AB. All rights reserved.
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|