465 lines
9.6 KiB
CSS
465 lines
9.6 KiB
CSS
/* EV Premium Section - High-End SaaS UI */
|
|
:root {
|
|
--evp-bg: #030303;
|
|
--evp-card-bg: rgba(20, 20, 22, 0.6);
|
|
--evp-accent: #E31E24;
|
|
--evp-accent-glow: rgba(227, 30, 36, 0.4);
|
|
--evp-success: #10B981;
|
|
--evp-info: #3B82F6;
|
|
--evp-text: #FFFFFF;
|
|
--evp-text-dim: #A1A1AA;
|
|
--evp-border: rgba(255, 255, 255, 0.08);
|
|
--evp-glass-border: rgba(255, 255, 255, 0.12);
|
|
--evp-radius-lg: 32px;
|
|
--evp-radius-md: 20px;
|
|
--evp-font: 'Manrope', -apple-system, sans-serif;
|
|
}
|
|
|
|
.evp-section {
|
|
padding: 140px 0;
|
|
background-color: #1f1f1f;
|
|
color: var(--evp-text);
|
|
font-family: var(--evp-font);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* ─── BACKGROUND EFFECTS ─── */
|
|
.evp-bg-aura {
|
|
position: absolute;
|
|
width: 600px;
|
|
height: 600px;
|
|
border-radius: 50%;
|
|
filter: blur(150px);
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.aura-red {
|
|
background: radial-gradient(circle, var(--evp-accent) 0%, transparent 70%);
|
|
top: -100px;
|
|
right: -100px;
|
|
}
|
|
|
|
|
|
|
|
.logico-front-end h4:not([class*=logico-title-h]){
|
|
color: #fff !important;
|
|
}
|
|
|
|
|
|
.aura-blue {
|
|
background: radial-gradient(circle, var(--evp-info) 0%, transparent 70%);
|
|
bottom: -100px;
|
|
left: -100px;
|
|
}
|
|
|
|
.evp-grid-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
|
|
background-size: 50px 50px;
|
|
mask-image: radial-gradient(circle at center, black, transparent 80%);
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
|
|
.evp-container {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 0 40px;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.evp-layout {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 80px;
|
|
position: relative;
|
|
}
|
|
|
|
/* ─── LEFT: CONTENT & HERO ─── */
|
|
.evp-content {
|
|
flex: 1;
|
|
max-width: 650px;
|
|
}
|
|
|
|
.evp-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 16px;
|
|
background: rgba(227, 30, 36, 0.1);
|
|
border: 1px solid rgba(227, 30, 36, 0.2);
|
|
border-radius: 100px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: var(--evp-accent);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.evp-tag .status-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
background: var(--evp-accent);
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 10px var(--evp-accent);
|
|
animation: evp-pulse 2s infinite;
|
|
}
|
|
|
|
@keyframes evp-pulse {
|
|
0% { transform: scale(0.95); opacity: 1; }
|
|
50% { transform: scale(1.3); opacity: 0.5; }
|
|
100% { transform: scale(0.95); opacity: 1; }
|
|
}
|
|
|
|
.evp-title {
|
|
font-size: clamp(40px, 5vw, 68px);
|
|
line-height: 1.05;
|
|
font-weight: 800;
|
|
letter-spacing: -2px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.evp-title span {
|
|
display: block;
|
|
color: var(--evp-accent);
|
|
filter: drop-shadow(0 0 20px var(--evp-accent-glow));
|
|
}
|
|
|
|
.evp-desc {
|
|
font-size: 20px;
|
|
color: var(--evp-text-dim);
|
|
line-height: 1.6;
|
|
margin-bottom: 50px;
|
|
max-width: 580px;
|
|
}
|
|
|
|
/* Feature Cards Stack */
|
|
.evp-features {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 20px;
|
|
}
|
|
|
|
.evp-feature-card {
|
|
padding: 30px;
|
|
background: var(--evp-card-bg);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--evp-glass-border);
|
|
border-radius: var(--evp-radius-md);
|
|
transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.evp-feature-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0; left: 0; width: 100%; height: 100%;
|
|
background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
|
|
opacity: 0;
|
|
transition: opacity 0.4s;
|
|
}
|
|
|
|
.evp-feature-card:hover {
|
|
transform: translateY(-5px) scale(1.02);
|
|
border-color: rgba(227, 30, 36, 0.4);
|
|
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
|
}
|
|
|
|
.evp-feature-card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.evp-icon-box {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 14px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 20px;
|
|
color: var(--evp-accent);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.evp-feature-card h3 {
|
|
font-size: 17px;
|
|
font-weight: 700;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.evp-feature-card p {
|
|
font-size: 14px;
|
|
color: #fff;
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ─── RIGHT: VISUAL DASHBOARD ─── */
|
|
.evp-visual {
|
|
flex: 1;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.evp-dashboard {
|
|
width: 100%;
|
|
max-width: 600px;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
|
|
border: 1px solid var(--evp-border);
|
|
border-radius: 40px;
|
|
padding: 50px;
|
|
position: relative;
|
|
box-shadow: 0 50px 100px rgba(0,0,0,0.8);
|
|
overflow: visible;
|
|
}
|
|
|
|
.evp-dashboard::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 40px;
|
|
padding: 1px;
|
|
background: linear-gradient(to bottom right, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.05));
|
|
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: xor;
|
|
mask-composite: exclude;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.evp-db-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.evp-db-title {
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
color: var(--evp-text-dim);
|
|
}
|
|
|
|
.evp-live-tag {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: var(--evp-success);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
background: rgba(16, 185, 129, 0.1);
|
|
padding: 4px 10px;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.evp-db-id {
|
|
font-size: 32px;
|
|
font-weight: 900;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.evp-van-stage {
|
|
position: relative;
|
|
margin: 40px 0;
|
|
width: 100%;
|
|
z-index: 2;
|
|
}
|
|
|
|
.evp-van-image {
|
|
width: 110%;
|
|
height: auto;
|
|
/* margin-left: -5%; */
|
|
filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
|
|
animation: evp-float 6s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes evp-float {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-15px); }
|
|
}
|
|
|
|
/* Floating HUD Cards */
|
|
.evp-hud-card {
|
|
position: absolute;
|
|
background: rgba(15, 15, 18, 0.85);
|
|
backdrop-filter: blur(15px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 18px;
|
|
padding: 16px;
|
|
z-index: 10;
|
|
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
|
pointer-events: all;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.evp-hud-card:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.hud-battery {
|
|
top: 55%;
|
|
left: -40px;
|
|
min-width: 160px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.hud-location {
|
|
top: 15%;
|
|
right: -30px;
|
|
min-width: 180px;
|
|
}
|
|
|
|
.hud-route {
|
|
bottom: 30%;
|
|
right: -50px;
|
|
min-width: 170px;
|
|
background: linear-gradient(135deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 12, 0.9));
|
|
}
|
|
|
|
.evp-progress-svg {
|
|
width: 44px;
|
|
height: 44px;
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
.evp-progress-circle-bg {
|
|
fill: none;
|
|
stroke: rgba(255,255,255,0.05);
|
|
stroke-width: 4;
|
|
}
|
|
|
|
.evp-progress-circle {
|
|
fill: none;
|
|
stroke: var(--evp-success);
|
|
stroke-width: 4;
|
|
stroke-linecap: round;
|
|
stroke-dasharray: 113;
|
|
stroke-dashoffset: 20; /* Example for 82% */
|
|
transition: stroke-dashoffset 1s ease-out;
|
|
}
|
|
|
|
.hud-val-large {
|
|
font-size: 20px;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
}
|
|
|
|
.hud-label-small {
|
|
font-size: 10px;
|
|
color: var(--evp-text-dim);
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
margin-bottom: 4px;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
/* Route Visual in HUD */
|
|
.hud-route-path {
|
|
margin-top: 10px;
|
|
height: 30px;
|
|
background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
|
|
background-size: 8px 8px;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hud-route-line {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 10%;
|
|
width: 60%;
|
|
height: 2px;
|
|
background: var(--evp-accent);
|
|
box-shadow: 0 0 10px var(--evp-accent);
|
|
}
|
|
|
|
/* Dashboard Bottom Metrics */
|
|
.evp-metrics {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 15px;
|
|
border-top: 1px solid var(--evp-border);
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.m-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.m-label {
|
|
font-size: 9px;
|
|
text-transform: uppercase;
|
|
font-weight: 800;
|
|
color: var(--evp-text-dim);
|
|
letter-spacing: 0.5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.m-value {
|
|
font-size: 18px;
|
|
font-weight: 900;
|
|
color: #fff;
|
|
}
|
|
|
|
/* ─── RESPONSIVENESS ─── */
|
|
@media (max-width: 1300px) {
|
|
.evp-layout { gap: 40px; }
|
|
.hud-battery { left: 0; }
|
|
.hud-location { right: 0; }
|
|
.hud-route { right: 0; }
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
.evp-layout {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.evp-content {
|
|
max-width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.evp-desc {
|
|
max-width: 700px;
|
|
}
|
|
|
|
.evp-features {
|
|
max-width: 800px;
|
|
width: 100%;
|
|
}
|
|
|
|
.evp-visual {
|
|
margin-top: 60px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.evp-section { padding: 80px 0; }
|
|
.evp-features { grid-template-columns: 1fr; }
|
|
.evp-metrics { grid-template-columns: 1fr 1fr; gap: 20px; }
|
|
.evp-dashboard { padding: 30px 20px; }
|
|
.evp-hud-card { display: contents; }
|
|
.evp-title { font-size: 38px; }
|
|
.evp-db-id { font-size: 24px; }
|
|
}
|