Files
boc/quixzoom-market-pages/se/_components/infographic-flow.html
T
Bernt aee0f09db8 landvex: Fixar och tester klara för alla komponenter
- Datafabrik: Dockerfile fix, agentorkestrering fungerar
- Vision: Identify-modell, FAISS, OCR alla testade
- API: Alla 7 integrationstester passerade
- Upplösare: Entitetsupplösning verifierad
2026-07-05 06:41:32 +00:00

602 lines
15 KiB
HTML

<!-- Landvex & quiXzoom — Illustrerad Processinfografik -->
<!-- Återanvändbar komponent för alla landningssidor -->
<!-- Användning: Kopiera innehållet mellan <style> och slutet till målsida -->
<style>
/* === INFOGRAPHIC COMPONENT === */
.lv-infographic {
--lv-teal: #0d7377;
--lv-teal-light: #e8f4f8;
--lv-teal-dark: #0a5e61;
--lv-gray: #f5f5f7;
--lv-text: #1d1d1f;
--lv-text-secondary: #5f6368;
--lv-white: #ffffff;
--lv-border: #d2d2d7;
--lv-radius: 16px;
--lv-shadow: 0 2px 20px rgba(0,0,0,0.08);
--lv-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
max-width: 900px;
margin: 0 auto;
padding: 60px 24px;
background: var(--lv-white);
}
.lv-infographic * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Header */
.lv-header {
text-align: center;
margin-bottom: 48px;
}
.lv-header h2 {
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 900;
color: var(--lv-teal);
margin-bottom: 12px;
letter-spacing: -0.03em;
line-height: 1.1;
}
.lv-header p {
font-size: 1.0625rem;
color: var(--lv-text-secondary);
max-width: 560px;
margin: 0 auto;
line-height: 1.6;
}
/* Brand pills */
.lv-brands {
display: flex;
justify-content: center;
gap: 12px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.lv-brand-pill {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 18px;
border-radius: 100px;
font-size: 0.8125rem;
font-weight: 700;
letter-spacing: 0.01em;
}
.lv-brand-pill.landvex {
background: var(--lv-teal);
color: var(--lv-white);
}
.lv-brand-pill.quixzoom {
background: var(--lv-teal-light);
color: var(--lv-teal);
border: 2px solid var(--lv-teal);
}
/* Timeline */
.lv-timeline {
position: relative;
padding-left: 64px;
}
.lv-timeline::before {
content: '';
position: absolute;
left: 23px;
top: 32px;
bottom: 32px;
width: 2px;
background: var(--lv-teal);
}
/* Step */
.lv-step {
position: relative;
margin-bottom: 32px;
}
.lv-step:last-child {
margin-bottom: 0;
}
.lv-step-marker {
position: absolute;
left: -64px;
top: 0;
width: 48px;
height: 48px;
background: var(--lv-white);
border: 3px solid var(--lv-teal);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
font-weight: 800;
color: var(--lv-teal);
z-index: 2;
box-shadow: 0 2px 8px rgba(13,115,119,0.15);
}
.lv-step-content {
background: var(--lv-white);
border-radius: var(--lv-radius);
padding: 28px;
box-shadow: var(--lv-shadow);
border: 1px solid var(--lv-border);
transition: transform 0.2s, box-shadow 0.2s;
}
.lv-step-content:hover {
transform: translateY(-2px);
box-shadow: var(--lv-shadow-lg);
}
.lv-step-header {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 12px;
}
.lv-step-icon {
width: 44px;
height: 44px;
flex-shrink: 0;
color: var(--lv-teal);
}
.lv-step-icon svg {
width: 100%;
height: 100%;
}
.lv-step-title {
font-size: 1.125rem;
font-weight: 800;
color: var(--lv-teal);
letter-spacing: -0.01em;
}
.lv-step-body {
color: var(--lv-text-secondary);
font-size: 0.9375rem;
line-height: 1.7;
padding-left: 58px;
}
.lv-step-body strong {
color: var(--lv-text);
font-weight: 700;
}
/* Connection */
.lv-connection {
display: flex;
align-items: center;
justify-content: center;
margin: -16px 0 -16px 58px;
position: relative;
z-index: 1;
}
.lv-connection svg {
color: var(--lv-teal);
opacity: 0.6;
}
/* Dual path */
.lv-dual-path {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 20px;
padding-left: 58px;
}
.lv-path-card {
background: var(--lv-gray);
border-radius: 12px;
padding: 20px;
border: 2px solid transparent;
transition: border-color 0.2s;
}
.lv-path-card:hover {
border-color: var(--lv-teal);
}
.lv-path-card h4 {
font-size: 0.9375rem;
font-weight: 800;
color: var(--lv-teal);
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 8px;
}
.lv-path-card p {
font-size: 0.8125rem;
color: var(--lv-text-secondary);
line-height: 1.6;
}
/* Metrics */
.lv-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-top: 20px;
padding-left: 58px;
}
.lv-metric {
background: var(--lv-teal);
color: var(--lv-white);
border-radius: 12px;
padding: 16px 12px;
text-align: center;
}
.lv-metric-value {
font-size: 1.75rem;
font-weight: 900;
display: block;
line-height: 1;
letter-spacing: -0.02em;
}
.lv-metric-label {
font-size: 0.6875rem;
opacity: 0.9;
text-transform: uppercase;
letter-spacing: 0.06em;
margin-top: 6px;
display: block;
}
/* CTA */
.lv-cta {
text-align: center;
margin-top: 48px;
padding: 36px 24px;
background: var(--lv-gray);
border-radius: var(--lv-radius);
}
.lv-cta h3 {
font-size: 1.375rem;
color: var(--lv-teal);
margin-bottom: 10px;
font-weight: 800;
}
.lv-cta p {
color: var(--lv-text-secondary);
font-size: 0.9375rem;
margin-bottom: 24px;
}
.lv-cta-buttons {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.lv-cta-btn {
padding: 12px 28px;
border-radius: 100px;
font-size: 0.9375rem;
font-weight: 700;
text-decoration: none;
transition: transform 0.15s, box-shadow 0.15s;
display: inline-flex;
align-items: center;
gap: 6px;
}
.lv-cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.lv-cta-btn.primary {
background: var(--lv-teal);
color: var(--lv-white);
}
.lv-cta-btn.secondary {
background: var(--lv-white);
color: var(--lv-teal);
border: 2px solid var(--lv-teal);
}
/* Responsive */
@media (max-width: 640px) {
.lv-timeline {
padding-left: 52px;
}
.lv-step-marker {
left: -52px;
width: 40px;
height: 40px;
font-size: 1rem;
}
.lv-timeline::before {
left: 19px;
}
.lv-step-content {
padding: 20px;
}
.lv-step-body,
.lv-dual-path,
.lv-metrics {
padding-left: 0;
}
.lv-dual-path {
grid-template-columns: 1fr;
}
.lv-metrics {
grid-template-columns: 1fr;
}
.lv-step-header {
margin-bottom: 10px;
}
.lv-step-icon {
width: 36px;
height: 36px;
}
}
/* Animation */
@keyframes lvFadeInUp {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.lv-step {
animation: lvFadeInUp 0.5s ease forwards;
opacity: 0;
}
.lv-step:nth-child(1) { animation-delay: 0.1s; }
.lv-step:nth-child(3) { animation-delay: 0.2s; }
.lv-step:nth-child(5) { animation-delay: 0.3s; }
.lv-step:nth-child(7) { animation-delay: 0.4s; }
.lv-step:nth-child(9) { animation-delay: 0.5s; }
</style>
<div class="lv-infographic">
<!-- Header -->
<div class="lv-header">
<h2>Från observation till beslut</h2>
<p>Landvex och quiXzoom arbetar tillsammans för att samla, analysera och omvandla fältdata till kontrollerad intelligens.</p>
</div>
<!-- Brand pills -->
<div class="lv-brands">
<div class="lv-brand-pill landvex">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 2L2 7l10 5 10-5-10-5z"/>
<path d="M2 17l10 5 10-5"/>
<path d="M2 12l10 5 10-5"/>
</svg>
Landvex Intelligence
</div>
<div class="lv-brand-pill quixzoom">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<circle cx="12" cy="12" r="3"/>
<path d="M12 2v4m0 12v4m10-10h-4M6 12H2"/>
</svg>
quiXzoom Field
</div>
</div>
<!-- Timeline -->
<div class="lv-timeline">
<!-- Step 1 -->
<div class="lv-step">
<div class="lv-step-marker">1</div>
<div class="lv-step-content">
<div class="lv-step-header">
<div class="lv-step-icon">
<svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="24" cy="24" r="20"/>
<path d="M24 14v10l7 7"/>
<circle cx="24" cy="24" r="3" fill="currentColor"/>
</svg>
</div>
<h3 class="lv-step-title">Definiera beslutet</h3>
</div>
<div class="lv-step-body">
<p>Vad behöver du veta? Landvex hjälper dig att formulera rätt fråga innan datainsamlingen börjar. <strong>Ingen data utan syfte.</strong></p>
</div>
</div>
</div>
<div class="lv-connection">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 5v14m-7-7l7 7 7-7"/>
</svg>
</div>
<!-- Step 2 -->
<div class="lv-step">
<div class="lv-step-marker">2</div>
<div class="lv-step-content">
<div class="lv-step-header">
<div class="lv-step-icon">
<svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="8" y="12" width="32" height="24" rx="4"/>
<circle cx="24" cy="24" r="6"/>
<path d="M32 14l-2-6h-12l-2 6"/>
<path d="M16 32l-4 8m20-8l4 8"/>
</svg>
</div>
<h3 class="lv-step-title">Samla bevis från fältet</h3>
</div>
<div class="lv-step-body">
<p>quiXzooms zoomers fotograferar och dokumenterar verkliga platser med sina smartphones. Drönare, kameror och sensorer kompletterar bilden. <strong>Multi-källinsamling i realtid.</strong></p>
</div>
</div>
</div>
<div class="lv-connection">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 5v14m-7-7l7 7 7-7"/>
</svg>
</div>
<!-- Step 3 -->
<div class="lv-step">
<div class="lv-step-marker">3</div>
<div class="lv-step-content">
<div class="lv-step-header">
<div class="lv-step-icon">
<svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M24 4v8"/>
<path d="M24 36v8"/>
<path d="M4 24h8"/>
<path d="M36 24h8"/>
<circle cx="24" cy="24" r="12"/>
<path d="M24 18v6l4 4"/>
</svg>
</div>
<h3 class="lv-step-title">Verifiera mot verkligheten</h3>
</div>
<div class="lv-step-body">
<p>Landvex jämför officiella data med fältobservationer. Skillnader flaggas automatiskt. <strong>OFFICIELL vs VERKLIGHET — vi hittar gapen.</strong></p>
</div>
</div>
</div>
<div class="lv-connection">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 5v14m-7-7l7 7 7-7"/>
</svg>
</div>
<!-- Step 4 -->
<div class="lv-step">
<div class="lv-step-marker">4</div>
<div class="lv-step-content">
<div class="lv-step-header">
<div class="lv-step-icon">
<svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 40h36"/>
<path d="M6 32h8v8H6z"/>
<path d="M18 24h8v16h-8z"/>
<path d="M30 12h8v28h-8z"/>
<path d="M10 28l8-8 8-4 8-8"/>
</svg>
</div>
<h3 class="lv-step-title">Kontrollerad intelligens</h3>
</div>
<div class="lv-step-body">
<p>AI analyserar mönster, men beslutet är ditt. Landvex presenterar konfidensgrad, konsekvens och rekommenderad åtgärd. <strong>Transparent, förklarlig, kontrollerad.</strong></p>
</div>
<div class="lv-metrics">
<div class="lv-metric">
<span class="lv-metric-value">87</span>
<span class="lv-metric-label">Stads Hälsa</span>
</div>
<div class="lv-metric">
<span class="lv-metric-value">92</span>
<span class="lv-metric-label">Kommersiell Potential</span>
</div>
<div class="lv-metric">
<span class="lv-metric-value">18</span>
<span class="lv-metric-label">Infrastrukturrisk</span>
</div>
</div>
</div>
</div>
<div class="lv-connection">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 5v14m-7-7l7 7 7-7"/>
</svg>
</div>
<!-- Step 5 -->
<div class="lv-step">
<div class="lv-step-marker">5</div>
<div class="lv-step-content">
<div class="lv-step-header">
<div class="lv-step-icon">
<svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="24" cy="24" r="20"/>
<path d="M24 14v10l6 6"/>
<path d="M14 24h4"/>
<path d="M30 24h4"/>
<path d="M24 10v4"/>
<path d="M24 34v4"/>
</svg>
</div>
<h3 class="lv-step-title">Handla och följ upp</h3>
</div>
<div class="lv-step-body">
<p>Beslutet dokumenteras, åtgärder triggas och resultatet mäts över tid. Kontinuerlig feedback förbättrar nästa cykel. <strong>Lärande organisation.</strong></p>
</div>
<div class="lv-dual-path">
<div class="lv-path-card">
<h4>
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M12 2L2 7l10 5 10-5-10-5z"/>
</svg>
För beslutsfattare
</h4>
<p>Landvex Dashboard ger dig överblick, historik och prediktioner för proaktiva beslut.</p>
</div>
<div class="lv-path-card">
<h4>
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<circle cx="12" cy="12" r="3"/>
<path d="M12 2v4m0 12v4m10-10h-4M6 12H2"/>
</svg>
För fältarbetare
</h4>
<p>quiXzoom-appen guidar dig till uppdrag, validerar insamling och betalar ut direkt.</p>
</div>
</div>
</div>
</div>
</div>
<!-- CTA -->
<div class="lv-cta">
<h3>Börja med kontrollerad intelligens</h3>
<p>Oavsett om du behöver fältdata eller beslutsstöd — vi har lösningen.</p>
<div class="lv-cta-buttons">
<a href="https://landvex.com" class="lv-cta-btn primary">Utforska Landvex</a>
<a href="https://quixzoom.se" class="lv-cta-btn secondary">Bli Zoomer</a>
</div>
</div>
</div>