padding: 0;
box-sizing: border-box;
}
:root {
--primary: #2563eb;
--primary-dark: #1d4ed8;
--primary-light: #3b82f6;
--accent: #06b6d4;
--bg-main: #ffffff;
--bg-subtle: #f8fafc;
--bg-muted: #f1f5f9;
--text-primary: #0f172a;
--text-secondary: #64748b;
--text-muted: #94a3b8;
--border: #e2e8f0;
--border-light: #f1f5f9;
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
--shadow-primary: 0 8px 30px rgba(37, 99, 235, 0.25);
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-main);
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
.bg-pattern {
position: fixed;
inset: 0;
z-index: -1;
background:
radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.05), transparent),
radial-gradient(ellipse 60% 40% at 100% 50%, rgba(6, 182, 212, 0.04), transparent);
}
/* Header */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 1rem 1.5rem;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-light);
}
.header-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-size: 1.25rem;
font-weight: 800;
color: var(--primary);
}
.trust-badge {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.75rem;
color: var(--text-secondary);
}
.trust-badge .dot {
width: 8px;
height: 8px;
background: #22c55e;
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(1.2);
}
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 6rem 1.5rem 3rem;
text-align: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
border: 1px solid rgba(37, 99, 235, 0.15);
border-radius: 100px;
font-size: 0.75rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 2rem;
animation: fadeInUp 0.6s ease-out;
}
.hero h1 {
font-size: clamp(2rem, 8vw, 3.5rem);
font-weight: 900;
line-height: 1.15;
margin-bottom: 1.5rem;
color: var(--text-primary);
animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero h1 .gradient {
background: linear-gradient(135deg, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: clamp(1rem, 2.5vw, 1.2rem);
color: var(--text-secondary);
max-width: 550px;
line-height: 1.7;
margin-bottom: 3rem;
animation: fadeInUp 0.6s ease-out 0.2s both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Search Card */
.search-card {
width: 100%;
max-width: 480px;
background: var(--bg-main);
border: 1px solid var(--border);
border-radius: 24px;
padding: 2rem;
box-shadow: var(--shadow-lg);
animation: fadeInUp 0.6s ease-out 0.3s both;
}
.tabs {
display: flex;
gap: 0.5rem;
margin-bottom: 1.5rem;
background: var(--bg-muted);
padding: 0.25rem;
border-radius: 14px;
}
.tab {
flex: 1;
padding: 0.875rem 1rem;
border: none;
background: transparent;
color: var(--text-secondary);
font-size: 0.875rem;
font-weight: 600;
cursor: pointer;
border-radius: 11px;
transition: all 0.2s ease;
}
.tab.active {
background: var(--bg-main);
color: var(--primary);
box-shadow: var(--shadow-sm);
}
.tab:not(.active):hover {
color: var(--text-primary);
}
.input-wrapper {
position: relative;
margin-bottom: 1rem;
}
.input-wrapper input {
width: 100%;
padding: 1.25rem 1.5rem;
background: var(--bg-subtle);
border: 2px solid var(--border);
border-radius: 16px;
font-size: 1.25rem;
font-weight: 600;
color: var(--text-primary);
text-transform: uppercase;
letter-spacing: 0.1em;
text-align: center;
transition: all 0.3s ease;
}
.input-wrapper input::placeholder {
color: var(--text-muted);
text-transform: none;
letter-spacing: normal;
font-weight: 400;
}
.input-wrapper input:focus {
outline: none;
border-color: var(--primary);
background: var(--bg-main);
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.submit-btn {
width: 100%;
padding: 1.25rem 2rem;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
border: none;
border-radius: 16px;
font-size: 1rem;
font-weight: 700;
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
transition: all 0.3s ease;
box-shadow: var(--shadow-primary);
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}
.submit-btn:active {
transform: translateY(0);
}
/* Trust Row */
.trust-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
margin-top: 3rem;
animation: fadeInUp 0.6s ease-out 0.4s both;
}
.trust-item {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
color: var(--text-secondary);
}
.check-icon {
width: 16px;
height: 16px;
background: #22c55e;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 10px;
font-weight: bold;
}
/* Partners Section */
.partners {
padding: 3rem 1.5rem;
background: var(--bg-subtle);
border-top: 1px solid var(--border-light);
border-bottom: 1px solid var(--border-light);
}
.partners-title {
text-align: center;
font-size: 0.7rem;
font-weight: 700;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 1.5rem;
}
.partners-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 2rem;
max-width: 800px;
margin: 0 auto;
}
.partner-logo {
height: 28px;
opacity: 0.6;
filter: grayscale(100%);
transition: all 0.3s;
}
.partner-logo:hover {
opacity: 1;
filter: grayscale(0%);
}
/* Exclusive Detections */
.detections {
padding: 5rem 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 0.8rem;
background: rgba(37, 99, 235, 0.08);
border: 1px solid rgba(37, 99, 235, 0.12);
border-radius: 100px;
font-size: 0.65rem;
font-weight: 700;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1rem;
}
.section-badge .ping {
width: 6px;
height: 6px;
background: var(--primary);
border-radius: 50%;
animation: pulse 2s infinite;
}
.section-header h2 {
font-size: clamp(1.5rem, 5vw, 2.5rem);
font-weight: 800;
margin-bottom: 0.75rem;
}
.section-header h2 span {
color: var(--text-muted);
}
.section-header p {
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
}
.detections-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.25rem;
}
.detection-card {
background: var(--bg-main);
border: 1px solid var(--border);
border-radius: 20px;
padding: 1.5rem;
transition: all 0.3s ease;
}
.detection-card:hover {
border-color: var(--primary);
box-shadow: var(--shadow-md);
transform: translateY(-4px);
}
.detection-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1rem;
}
.detection-icon {
width: 40px;
height: 40px;
background: var(--bg-subtle);
border: 1px solid var(--border);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
}
.detection-tag {
font-size: 0.6rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 0.25rem 0.5rem;
border-radius: 6px;
background: rgba(37, 99, 235, 0.08);
color: var(--primary);
}
.detection-tag.warning {
background: rgba(245, 158, 11, 0.1);
color: #d97706;
}
.detection-tag.danger {
background: rgba(239, 68, 68, 0.1);
color: #dc2626;
}
.detection-card h3 {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.detection-card p {
font-size: 0.85rem;
color: var(--text-secondary);
line-height: 1.5;
}
/* Process Section */
.process {
padding: 5rem 1.5rem;
background: var(--bg-subtle);
}
.process-steps {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.process-step {
text-align: center;
}
.step-number {
width: 56px;
height: 56px;
background: var(--bg-main);
border: 1px solid var(--border);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-size: 1.25rem;
font-weight: 800;
color: var(--text-primary);
}
.step-number.final {
background: var(--text-primary);
color: white;
border: none;
}
.process-step h3 {
font-size: 0.9rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.5rem;
}
.process-step p {
font-size: 0.85rem;
color: var(--text-secondary);
line-height: 1.5;
}
/* Stats Section */
.stats {
padding: 4rem 1.5rem;
border-top: 1px solid var(--border-light);
}
.stats-grid {
max-width: 1000px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 2rem;
text-align: center;
}
.stat-item .number {
font-size: clamp(2rem, 6vw, 2.75rem);
font-weight: 900;
color: var(--primary);
}
.stat-item .label {
font-size: 0.875rem;
color: var(--text-secondary);
margin-top: 0.5rem;
}
/* CTA Section */
.cta {
padding: 5rem 1.5rem;
text-align: center;
background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-subtle) 100%);
}
.cta h2 {
font-size: clamp(1.5rem, 5vw, 2.25rem);
font-weight: 800;
margin-bottom: 1rem;
}
.cta p {
color: var(--text-secondary);
margin-bottom: 2rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.cta .submit-btn {
max-width: 280px;
margin: 0 auto;
}
/* Footer */
footer {
padding: 3rem 1.5rem;
border-top: 1px solid var(--border-light);
text-align: center;
background: var(--bg-subtle);
}
footer p {
font-size: 0.75rem;
color: var(--text-secondary);
}
footer a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
}
@media (max-width: 640px) {
.trust-row {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.search-card {
padding: 1.5rem;
}
.input-wrapper input {
font-size: 1.125rem;
padding: 1rem 1.25rem;
}
.partners-grid {
gap: 1.5rem;
}
.partner-logo {
height: 22px;
}
}
✨ Nuovo servizio 2026
Conosci la vera storia
della tua auto
Inserisci targa o VIN e scopri in pochi secondi incidenti nascosti, chilometri reali, fermi
amministrativi e molto altro.
✓
Dati Ufficiali PRA
✓
Pagamento Sicuro SSL
✓
Report in 30 secondi
Fonti Dati & Partner Ufficiali
Intestatario Reale
Rilevamento dello status giuridico reale (Azienda vs Privato) spesso nascosto per evitare le
garanzie legali.
Leasing & Vincoli
Un veicolo con fermo amministrativo o in leasing non ti appartiene. Verifichiamo la vendibilità
immediata.
Revisioni & Difetti
Accesso agli archivi tecnici per identificare i difetti gravi corretti o nascosti tra due
vendite.
Stock Occulti
Rilevamento dei veicoli tenuti in "minivoltura" dai commercianti ma rivenduti come "privato".
Movimenti Sospetti
Un'auto che cambia proprietario 3 volte in 6 mesi? Spesso è un veicolo problematico.
Foto delle Aste
Foto esclusive dalle aste e degli incidenti precedenti che il venditore non ti mostra.
1
Pagamento Sicuro
Conferma il tuo ordine tramite il nostro portale bancario sicuro (SSL).
2
Conferma
Inserisci nuovamente la targa per confermare il veicolo.
✓
Download
Accedi al report PDF interattivo in meno di 30 secondi.
Pronto a verificare?
Non rischiare migliaia di euro per un'auto con qualcosa da nascondere.
Inizia la Verifica →