
@font-face {
font-family: 'Poppins-fallback';
src: local('Arial');
size-adjust: 112.16%;
ascent-override: 93.77%;
descent-override: 31.26%;
line-gap-override: 8.93%;
}
:root {
--color-navy:      #0D1B2A;
--color-navy-mid:  #1E2A3A;
--color-steel:     #2A3A4A;
--color-ice:       #E6E9EC;
--color-amber:     #F3E8D9;
--color-fire:      #FF6B2E;
--color-fire-dark: #E55520;
--color-white:     #FFFFFF;
--color-muted:     #6B7785;
--color-slate-200: #9AA7B4;
--color-fire-20:   rgba(255, 107, 46, 0.20);
--color-fire-40:   rgba(255, 107, 46, 0.40);
--surface-page:         var(--color-white);
--surface-page-dark:    var(--color-navy);
--surface-warm:         var(--color-amber);
--surface-card:         var(--color-white);
--surface-card-dark:    var(--color-navy);
--surface-card-steel:   var(--color-steel);
--surface-subtle:       var(--color-ice);
--text-strong:          var(--color-navy);
--text-body:            #2A3A4A;
--text-muted:           var(--color-muted);
--text-on-dark:         var(--color-white);
--text-on-dark-muted:   var(--color-slate-200);
--text-accent:          var(--color-fire);
--accent:               var(--color-fire);
--accent-hover:         var(--color-fire-dark);
--accent-contrast:      var(--color-white);
--border-subtle:        var(--color-ice);
--border-strong:        var(--color-navy);
--border-accent:        var(--color-fire);
--focus-ring:           var(--color-fire);
--gradient-navy:        linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
}
:root {
--font-base:   'Poppins', 'Poppins-fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-accent: Georgia, 'Times New Roman', serif;
--weight-regular: 400;
--weight-medium:  500;
--weight-semibold:600;
--weight-bold:    700;
--weight-extra:   800;
--weight-black:   900;
--text-display: 3rem;
--text-h1:      2.25rem;
--text-h2:      1.75rem;
--text-h3:      1.25rem;
--text-body-l:  1rem;
--text-body:    0.875rem;
--text-caption: 0.6875rem;
--lh-display: 1.05;
--lh-tight:   1.15;
--lh-snug:    1.2;
--lh-body:    1.6;
--lh-caption: 1.4;
--ls-display:  -0.01em;
--ls-label:    0.15em;
--ls-label-lg: 0.3em;
}
:root {
--space-1: 4px;
--space-2: 8px;
--space-3: 16px;
--space-4: 24px;
--space-5: 32px;
--space-6: 48px;
--space-7: 64px;
--space-8: 96px;
--container-max: 1120px;
--content-max:   680px;
}
:root {
--radius-sm:   8px;
--radius-md:   12px;
--radius-lg:   16px;
--radius-full: 9999px;
}
:root {
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
--shadow-md: 0 8px 24px rgba(13, 27, 42, 0.13);
--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
--shadow-fire: 0 8px 24px rgba(255, 107, 46, 0.20);
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-navy); }
html, body { margin: 0; padding: 0; }
body {
font-family: var(--font-base);
background: var(--color-white);
color: var(--text-body);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.vm-container {
width: 100%;
max-width: var(--container-max);
margin: 0 auto;
padding-inline: var(--space-4);
}
.vm-section { padding-block: var(--space-7); }
@media (min-width: 900px) { .vm-section { padding-block: var(--space-8); } }
.vm-eyebrow {
font-size: var(--text-caption);
font-weight: var(--weight-bold);
letter-spacing: var(--ls-label);
text-transform: uppercase;
color: var(--color-fire);
margin: 0 0 var(--space-3) 0;
}
.vm-section-title {
font-size: var(--text-h2);
font-weight: var(--weight-black);
line-height: var(--lh-tight);
color: var(--text-strong);
margin: 0;
letter-spacing: var(--ls-display);
}
@media (min-width: 900px) { .vm-section-title { font-size: var(--text-h1); } }
.vm-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.vm-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
.vm-reveal { opacity: 1; transform: none; transition: none; }
}
@media (prefers-reduced-motion: no-preference) {
.vm-hero-anim { opacity: 0; animation: vm-hero-rise .72s cubic-bezier(.22,.9,.3,1) both; }
.vm-hero-anim.d-media  { animation: vm-hero-media-in .8s cubic-bezier(.22,.9,.3,1) both; animation-delay: .04s; }
.vm-hero-anim.d-h1     { animation-delay: .12s; }
.vm-hero-anim.d-sub    { animation-delay: .22s; }
.vm-hero-anim.d-badges { animation-delay: .04s; }
.vm-hero-anim.d-actions{ animation-delay: .32s; }
.vm-hero-anim.d-feats  { animation-delay: .40s; }
}
@keyframes vm-hero-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes vm-hero-media-in { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
.vm-hero--noanim .vm-hero-anim { opacity: 1 !important; animation: none !important; transform: none !important; }
::selection { background: rgba(255, 107, 46, 0.99); color: var(--color-white); }
.vm-header {
position: sticky; top: 0; z-index: 50;
background: var(--color-navy);
transition: background-color .3s ease;
padding-top: env(safe-area-inset-top, 0px);
}
.vm-header--overlay { margin-bottom: calc(-76px - env(safe-area-inset-top, 0px)); }
.vm-header--top { background: transparent; }
.vm-header-inner {
display: flex; align-items: center; justify-content: space-between;
gap: var(--space-4);
height: 76px;
max-width: none;
padding-inline: var(--space-6);
}
.vm-nav { display: none; gap: var(--space-5); }
@media (min-width: 1040px) { .vm-nav { display: flex; flex: 1 1 auto; justify-content: center; } }
.vm-nav a {
text-decoration: none;
color: var(--color-white);
font-size: var(--text-body);
font-weight: var(--weight-semibold);
letter-spacing: .01em;
padding-block: 6px;
border-bottom: 2px solid transparent;
transition: color .15s ease, border-color .15s ease;
}
.vm-nav a:hover { color: var(--color-fire); border-color: var(--color-fire); }
.vm-nav a.active { color: var(--color-fire); border-color: var(--color-fire); }
.vm-nav-item { position: relative; display: flex; align-items: center; }
.vm-nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.vm-nav-item > a svg { width: 15px; height: 15px; transition: transform .18s ease; }
.vm-nav-item:hover > a svg, .vm-nav-item:focus-within > a svg { transform: rotate(180deg); }
.vm-nav-dropdown {
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%) translateY(8px);
min-width: 210px; background: var(--color-white);
border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
padding: var(--space-2); display: flex; flex-direction: column; gap: 2px;
opacity: 0; visibility: hidden; pointer-events: none; z-index: 60;
transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.vm-nav-dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.vm-nav-item:hover .vm-nav-dropdown, .vm-nav-item:focus-within .vm-nav-dropdown {
opacity: 1; visibility: visible; pointer-events: auto;
transform: translateX(-50%) translateY(2px);
}
.vm-nav .vm-nav-dropdown a {
display: block; padding: 10px 14px; border-radius: var(--radius-sm);
color: var(--color-navy); font-size: var(--text-body); font-weight: var(--weight-semibold);
letter-spacing: .01em; border: none; white-space: nowrap;
transition: background .12s ease, color .12s ease;
}
.vm-nav .vm-nav-dropdown a:hover { background: var(--color-amber); color: var(--color-fire); border: none; }
.vm-nav .vm-nav-dropdown a.active { background: var(--color-amber); color: var(--color-fire); border: none; }
.vm-mobile-menu nav a.vm-mobile-sub {
padding-left: var(--space-4); font-size: var(--text-body); color: var(--color-slate-200);
}
.vm-mobile-menu nav a.vm-mobile-sub::before { content: '— '; color: var(--color-fire); }
.vm-header-actions { display: flex; align-items: center; gap: var(--space-3); flex: 1 1 0; justify-content: flex-end; }
.vm-phone {
display: inline-flex; align-items: center; gap: 8px;
color: var(--color-white); text-decoration: none;
font-weight: var(--weight-bold); font-size: var(--text-body);
white-space: nowrap; min-height: 44px;
}
.vm-phone:hover { color: var(--color-fire); }
.vm-phone svg { width: 18px; height: 18px; color: var(--color-fire); }
@media (max-width: 1039px) { .vm-phone { display: none; } }
@media (max-width: 519px) { .vm-phone-num { display: none; } }
@media (max-width: 359px) { .vm-logo > div { font-size: 1.1rem !important; } }
.vm-header-cta { display: none; }
@media (min-width: 1040px) { .vm-header-cta { display: inline-flex; } }
.vm-header-cta-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--color-fire); color: var(--color-white); font-family: var(--font-base); font-weight: var(--weight-bold); font-size: var(--text-body); line-height: 1; padding: 12px 20px; border-radius: var(--radius-sm, 8px); text-decoration: none; border: 2px solid transparent; white-space: nowrap; min-height: 44px; transition: background-color .18s ease, transform .12s ease; }
.vm-header-cta-btn:hover { background: var(--color-fire-dark); color: var(--color-white); }
.vm-header-cta-btn:active { transform: scale(.97); }
.vm-mobile-cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; margin-top: var(--space-3); background: var(--color-fire); color: var(--color-white) !important; font-weight: var(--weight-bold); padding: 14px 20px; border-radius: var(--radius-sm, 8px); text-decoration: none; }
.vm-mobile-cta:hover { background: var(--color-fire-dark); }
.vm-burger {
display: inline-flex; align-items: center; justify-content: center;
width: 44px; height: 44px; background: none; border: none; cursor: pointer;
color: var(--color-white); padding: 0;
}
.vm-burger svg { width: 26px; height: 26px; }
@media (min-width: 1040px) { .vm-burger { display: none; } }
.vm-mobile-menu { background: var(--color-navy); border-bottom: 3px solid var(--color-fire); overflow: hidden; max-height: calc(100dvh - 64px); overflow-y: auto; }
@media (min-width: 1040px) { .vm-mobile-menu { display: none; } }
.vm-mobile-menu nav { display: flex; flex-direction: column; padding: var(--space-2) 0 var(--space-5) 0; }
.vm-mobile-menu nav a {
text-decoration: none; color: var(--color-white);
font-size: var(--text-body-l); font-weight: var(--weight-semibold);
padding: 15px 0; border-bottom: 1px solid var(--color-steel);
}
.vm-mobile-menu nav a.active { color: var(--color-fire); }
.vm-mobile-cta { margin-top: var(--space-4); }
.vm-hero {
background: var(--gradient-navy);
position: relative;
overflow: hidden;
padding-top: calc(76px + env(safe-area-inset-top, 0px));
}
.vm-hero::before {
content: ""; position: absolute; inset: 0;
background-image: radial-gradient(rgba(255,255,255,0.045) 1.4px, transparent 1.4px);
background-size: 26px 26px;
-webkit-mask-image: radial-gradient(120% 90% at 75% 10%, #000 0%, transparent 70%);
mask-image: radial-gradient(120% 90% at 75% 10%, #000 0%, transparent 70%);
pointer-events: none;
}
.vm-hero::after {
content: ""; position: absolute;
width: 520px; height: 520px; right: -160px; top: -200px;
background: radial-gradient(circle, rgba(255,107,46,0.16) 0%, transparent 65%);
pointer-events: none;
}
.vm-hero-grid {
position: relative;
display: grid;
grid-template-columns: 1fr;
gap: var(--space-6);
padding-block: var(--space-7);
}
@media (min-width: 980px) {
.vm-hero-grid {
max-width: 1240px;
grid-template-columns: 1fr 0.92fr;
align-items: center;
gap: var(--space-9, 80px);
padding-block: var(--space-8);
}
}
.vm-hero-copy { order: 1; position: relative; z-index: 2; }
.vm-hero-media { order: 2; }
.vm-hero h1 {
font-size: clamp(2.25rem, 7vw, 3.25rem);
font-weight: var(--weight-black);
line-height: 1.04;
letter-spacing: -0.015em;
color: var(--color-white);
margin: 0 0 var(--space-4) 0;
}
.vm-hero h1 .fire { color: var(--color-fire); }
.vm-hero-sub {
font-size: var(--text-body-l);
line-height: var(--lh-body);
color: var(--color-slate-200);
margin: 0 0 var(--space-6) 0;
max-width: 36ch;
}
.vm-values {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-4) var(--space-4);
}
@media (min-width: 540px) { .vm-values { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px) { .vm-values { grid-template-columns: repeat(2, 1fr); max-width: 460px; } }
@media (min-width: 1180px) { .vm-values { grid-template-columns: repeat(4, 1fr); max-width: none; } }
.vm-value { display: flex; flex-direction: column; gap: 6px; }
.vm-value-icon {
width: 44px; height: 44px; border-radius: var(--radius-full);
border: 2px solid var(--color-fire);
display: flex; align-items: center; justify-content: center;
margin-bottom: 6px;
}
.vm-value-icon svg { width: 20px; height: 20px; color: var(--color-fire); }
.vm-value-title {
font-size: var(--text-body); font-weight: var(--weight-bold);
color: var(--color-white);
}
.vm-value-desc {
font-size: 0.8125rem; line-height: 1.45; color: var(--color-slate-200);
}
.vm-hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.vm-rating-num { font-variant-numeric: tabular-nums; }
.vm-star-pop { display: inline-block; margin-right: 0.18em; opacity: 0; transform: translateY(9px) scale(0.3); transform-origin: 50% 60%; }
.vm-star-pop.is-on { animation: vm-star-pop 0.66s cubic-bezier(.22,.9,.3,1.5) both; }
@keyframes vm-star-pop {
0%   { opacity: 0; transform: translateY(10px) scale(0.3); }
55%  { opacity: 1; transform: translateY(-5px) scale(1.3); }
100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
.vm-star-pop { opacity: 1; transform: none; animation: none; }
}
.vm-hero-grating { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.55); border-radius: var(--radius-pill, 999px); padding: 7px 13px; text-decoration: none; transition: transform .15s ease, border-color .15s ease; position: relative; overflow: hidden; }
.vm-hero-grating:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.9); }
.vm-hero-grating-g { width: 18px; height: 18px; flex: 0 0 auto; }
.vm-hero-grating-stars { display: inline-flex; gap: 1px; color: var(--color-fire); }
.vm-hero-grating-stars svg { width: 16px; height: 16px; }
.vm-hero-grating-stars svg.off { color: var(--color-ice); }
.vm-hero-grating-num { font-size: var(--text-body); font-weight: var(--weight-medium); color: var(--color-white); line-height: 1; font-variant-numeric: tabular-nums; }
@media (prefers-reduced-motion: no-preference) {
.vm-hero-grating-stars:not(.is-on) svg { opacity: 0; }
.vm-hero-grating-stars svg { transform-origin: 50% 60%; }
.vm-hero-grating-stars.is-on svg { animation: vm-hgstar-pop 0.5s cubic-bezier(.2,.9,.3,1.55) both, vm-star-charge 2.8s ease-in-out infinite; }
.vm-hero-grating-stars.is-on svg:nth-child(1) { animation-delay: .05s; }
.vm-hero-grating-stars.is-on svg:nth-child(2) { animation-delay: .15s; }
.vm-hero-grating-stars.is-on svg:nth-child(3) { animation-delay: .25s; }
.vm-hero-grating-stars.is-on svg:nth-child(4) { animation-delay: .35s; }
.vm-hero-grating-stars.is-on svg:nth-child(5) { animation-delay: .45s; }
}
@keyframes vm-hgstar-pop {
0%   { opacity: 0; transform: translateY(7px) scale(0.3); }
55%  { opacity: 1; transform: translateY(-3px) scale(1.28); }
100% { opacity: 1; transform: translateY(0) scale(1); }
}
.vm-hero-grating.vm-shine::after {
content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 55%;
background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 70%, transparent 100%);
transform: translateX(-170%); pointer-events: none;
animation: vm-hgshine 1s ease-in-out both;
}
@keyframes vm-hgshine { to { transform: translateX(230%); } }
.vm-hero-count { display: inline-flex; align-items: center; background: transparent; border: 1px solid rgba(255,255,255,0.55); border-radius: var(--radius-pill, 999px); padding: 7px 15px; font-size: var(--text-body); font-weight: var(--weight-medium); color: var(--color-white); line-height: 1; }
.vm-rating-badge { position: relative; background: transparent !important; border-color: transparent !important; padding-inline: 0 !important; }
.vm-rating-stars { display: inline-flex; gap: 1px; align-items: center; line-height: 1; margin-right: 0.3em; font-size: 1.05rem; }
.vm-rating-stars > span { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
.vm-rating-stars:not(.is-on) > * { opacity: 0; }
.vm-rating-stars.is-on > * { animation: vm-star-in 0.5s cubic-bezier(.2,.9,.3,1.55) both, vm-star-charge 2.8s ease-in-out infinite; }
.vm-rating-stars.is-on > *:nth-child(1) { animation-delay: .04s; }
.vm-rating-stars.is-on > *:nth-child(2) { animation-delay: .12s; }
.vm-rating-stars.is-on > *:nth-child(3) { animation-delay: .20s; }
.vm-rating-stars.is-on > *:nth-child(4) { animation-delay: .28s; }
.vm-rating-stars.is-on > *:nth-child(5) { animation-delay: .36s; }
}
.vm-rating-badge.vm-shine { overflow: hidden; }
.vm-rating-badge.vm-shine::after {
content: ""; position: absolute; top: -25%; bottom: -25%; left: 0; width: 55%;
background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 70%, transparent 100%);
mix-blend-mode: screen; pointer-events: none;
transform: translateX(-180%) skewX(-14deg);
animation: vm-shine-sweep 1.1s ease-in-out forwards;
}
.vm-hero-elamaa-wrap { position: relative; display: inline-block; vertical-align: baseline; }
.vm-hero-elamaa-wrap::before {
content: ""; position: absolute; z-index: -1;
left: 50%; top: 50%; transform: translate(-50%, -50%);
width: 150%; height: 210%;
background: radial-gradient(ellipse at center, rgba(255,107,46,0.34) 0%, rgba(255,107,46,0.12) 48%, transparent 72%);
filter: blur(16px); pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.vm-hero-elamaa-wrap::before { animation: vm-elamaa-glow 4.2s ease-in-out infinite alternate; }
}
@keyframes vm-elamaa-glow {
from { opacity: .5;  transform: translate(-50%, -50%) scale(0.95); }
to   { opacity: .85; transform: translate(-50%, -50%) scale(1.05); }
}
.vm-hero-elamaa { position: relative; display: inline-block; vertical-align: baseline; }
@media (prefers-reduced-motion: no-preference) {
.vm-hero-elamaa-charge {
background-image: linear-gradient(100deg, var(--color-fire) 0%, var(--color-fire) 42%, #ffe9d3 50%, var(--color-fire) 58%, var(--color-fire) 100%);
background-size: 260% 100%;
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent;
animation: vm-elamaa-sweep 2.8s linear infinite;
}
}
@keyframes vm-elamaa-sweep {
0% { background-position: 200% 0; }
100% { background-position: -60% 0; }
}
.vm-hero-elamaa.vm-shine { clip-path: inset(0); }
.vm-hero-elamaa.vm-shine::after {
content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 60%;
background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 72%, transparent 100%);
mix-blend-mode: screen; pointer-events: none;
transform: translateX(-180%) skewX(-14deg);
animation: vm-shine-sweep 1.15s ease-in-out forwards;
}
.vm-hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
@media (max-width: 760px) { .vm-hero-actions { display: none; } }
@media (max-width: 759px) {
.vm-hero-copy { text-align: center; }
.vm-hero-sub { margin-inline: auto; }
.vm-hero-badges { justify-content: center; }
.vm-values { justify-items: center; }
.vm-value { align-items: center; text-align: center; }
.vm-hero-grid { gap: var(--space-4); padding-block: var(--space-4) var(--space-3); }
.vm-hero h1 { margin-bottom: var(--space-3); }
.vm-hero-sub { margin-bottom: var(--space-4); font-size: var(--text-body); }
.vm-hero-badges { flex-wrap: nowrap; gap: 8px; margin-bottom: var(--space-3); }
.vm-hero-grating { padding: 6px 10px; gap: 6px; }
.vm-hero-grating-stars svg { width: 14px; height: 14px; }
.vm-hero-grating-num { font-size: 0.8125rem; }
.vm-hero-count { padding: 6px 11px; font-size: 0.8125rem; white-space: nowrap; }
.vm-hero-feats { justify-content: center; gap: 6px 14px; }
.vm-hero-feat { gap: 6px; }
.vm-hero-feat svg { width: 17px; height: 17px; }
.vm-hero-feat span { font-size: 0.8125rem; }
}
.vm-phone-ring { display: inline-flex; transform-origin: 50% 65%; }
.vm-phone-ring svg, .vm-phone-ring i { width: 20px; height: 20px; display: block; }
@media (prefers-reduced-motion: no-preference) {
.vm-phone-ring { animation: vm-ring 2.6s ease-in-out infinite; }
}
@keyframes vm-ring {
0%, 68%, 100% { transform: rotate(0deg); }
71% { transform: rotate(-13deg); }
76% { transform: rotate(13deg); }
81% { transform: rotate(-10deg); }
86% { transform: rotate(8deg); }
91% { transform: rotate(-4deg); }
95% { transform: rotate(0deg); }
}
.vm-hero-feats { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); }
.vm-hero-feat { display: inline-flex; align-items: center; gap: var(--space-2); }
.vm-hero-feat svg { width: 20px; height: 20px; color: var(--color-fire); flex-shrink: 0; }
.vm-hero-feat span { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--color-white); white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
.vm-truck { transform-box: fill-box; transform-origin: 50% 100%; animation: vm-truck-bob 1.1s ease-in-out infinite; }
.vm-wheel { transform-box: fill-box; transform-origin: center; animation: vm-wheel-spin 0.85s linear infinite; }
}
@keyframes vm-truck-bob {
0%, 100% { transform: translateY(0) rotate(0deg); }
25%      { transform: translateY(-0.6px) rotate(-1.4deg); }
50%      { transform: translateY(0) rotate(0deg); }
75%      { transform: translateY(-0.4px) rotate(1deg); }
}
@keyframes vm-wheel-spin { to { transform: rotate(360deg); } }
.vm-hero-media { position: relative; }
.vm-hero-media img {
display: block; width: 116%; max-width: none; height: auto; margin-left: -8%; aspect-ratio: 1800 / 970;
}
@media (max-width: 979px) {
.vm-hero-media { margin-bottom: calc(-1 * var(--space-7)); }
}
@media (min-width: 980px) {
.vm-hero-grid { grid-template-columns: 1fr; }
.vm-hero-copy { max-width: 600px; }
.vm-hero-media {
position: absolute; right: calc(50% - 50vw); bottom: 0; top: auto;
width: 82%; margin: 0; z-index: 0;
}
.vm-hero-media img { width: 100%; max-width: none; height: auto; margin-left: 0; }
}
.vm-campaign-note { position: absolute; z-index: 4; top: -6%; right: 7%; max-width: 42%; text-align: right; font-family: 'Caveat', 'Segoe Script', cursive; font-weight: 700; font-size: clamp(1.3rem, 2.9vw, 2.4rem); line-height: .98; color: var(--color-fire); transform: rotate(-7deg); text-shadow: 0 2px 14px rgba(13,27,42,.55); pointer-events: none; }
@media (max-width: 979px) { .vm-campaign-note { top: 1%; right: 9%; max-width: 9ch; } }
@media (max-width: 759px) { .vm-campaign-note { top: -10%; right: 10%; font-size: clamp(1.35rem, 6vw, 1.9rem); max-width: 9ch; text-shadow: 0 1px 3px rgba(13,27,42,.9), 0 3px 16px rgba(13,27,42,.75); } }
.vm-campaign-note .vm-campaign-flowers { position: absolute; inset: -0.9em -0.6em; z-index: -1; pointer-events: none; }
.vm-cf-inline { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; margin-left: .35em; }
.vm-cf-inline svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vm-cf { position: absolute; line-height: 1; width: 2.6em; height: 2.6em; filter: drop-shadow(0 2px 5px rgba(13,27,42,.4)); }
.vm-cf svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vm-cf1 { top: -.35em; left: -.05em; width: 3.2em; height: 3.2em; transform: rotate(-14deg); z-index: 2; }
.vm-cf2 { top: -.75em; left: 34%; width: 2.1em; height: 2.1em; transform: rotate(12deg); z-index: 1; }
.vm-cf3 { top: .1em; left: 46%; width: 2.5em; height: 2.5em; transform: rotate(8deg); z-index: 3; }
@media (prefers-reduced-motion: no-preference) {
.vm-cf { animation: vm-cf-sway 3.6s ease-in-out infinite; transform-origin: center bottom; }
.vm-cf2 { animation-delay: .3s; } .vm-cf3 { animation-delay: .6s; }
}
@keyframes vm-cf-sway { 0%,100% { translate: 0 0; } 50% { translate: 0 -3px; } }
.vm-hero-promise {
position: absolute; left: -14px; bottom: 28px;
display: flex; align-items: center; gap: var(--space-3);
background: var(--color-white); border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg); padding: var(--space-3) var(--space-4);
}
.vm-hero-promise-num { font-size: 2.25rem; font-weight: var(--weight-black); color: var(--color-navy); line-height: 1; }
.vm-hero-promise-text { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-muted); line-height: 1.25; }
.vm-pricecalc { background: var(--color-amber); }
@media (max-width: 760px) {
#laskuri { background: var(--color-white); }
#laskuri > .vm-container { padding-inline: 0; }
#laskuri .vm-pricecalc-head { padding-inline: var(--space-4); }
#laskuri .vm-calc-box { max-width: none; border-radius: 0; box-shadow: none; padding: var(--space-4); }
}
.vm-pricecalc.vm-section { padding-block: var(--space-6); }
@media (min-width: 900px) { .vm-pricecalc.vm-section { padding-block: var(--space-7) var(--space-6); } }
.vm-inline-link { color: var(--color-fire); font-weight: var(--weight-bold); text-decoration: underline; text-underline-offset: 3px; }
.vm-inline-link:hover { color: var(--color-fire-dark); }
.vm-pricecalc-head { text-align: center; max-width: 620px; margin: 0 auto var(--space-5) auto; }
.vm-pricecalc-head .vm-eyebrow { margin-bottom: var(--space-2); }
.vm-pricecalc-head h2 {
display: flex; align-items: center; justify-content: center; gap: var(--space-3);
font-size: clamp(1.75rem, 3.6vw, 2.4rem); font-weight: var(--weight-black);
color: var(--text-strong); line-height: 1.08; letter-spacing: var(--ls-display); margin: 0 0 var(--space-3) 0;
}
.vm-pricecalc-head p { font-size: var(--text-body-l); line-height: var(--lh-body); color: var(--text-muted); margin: 0; }
.vm-pricecalc-cards { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-5); align-items: stretch; }
@media (min-width: 640px) { .vm-pricecalc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vm-pricecalc-cards { grid-template-columns: repeat(4, 1fr); } }
.vm-example-card { display: flex; cursor: pointer; }
.vm-example-card:focus-visible { outline: 2px solid var(--color-fire); outline-offset: 3px; border-radius: var(--radius-lg); }
.vm-example-card > div { transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.vm-example-card:hover > div { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-fire) !important; }
.vm-pricecalc-row-label {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase;
color: var(--text-muted); margin: 0 0 var(--space-3) 0;
}
.vm-pricecalc-note {
font-size: var(--text-body); color: var(--text-muted); line-height: var(--lh-body);
margin: 0; text-align: center;
}
.vm-calc-box {
background: var(--color-white); border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg); padding: var(--space-6);
max-width: 821px; margin: 0 auto;
}
@media (min-width: 640px) { .vm-calc-box { padding: var(--space-6); } }
.vm-calc-grid { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-5); }
.vm-calc-inputs, .vm-calc-output { display: flex; flex-direction: column; gap: var(--space-4); min-width: 0; }
.vm-field-lbl { display: inline-flex; align-items: center; gap: 6px; }
.vm-field-lbl svg { width: 15px; height: 15px; flex-shrink: 0; }
.vm-field-lbl > svg:first-child { color: var(--color-fire); }
.vm-field-lbl.from svg { color: var(--color-navy); }
.vm-field-lbl.to svg { color: var(--color-fire); }
.vm-dp { position: relative; }
.vm-dp-label { display: block; margin-bottom: var(--space-2); font-family: var(--font-base); font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); }
.vm-dp-trigger {
width: 100%; box-sizing: border-box; display: flex; align-items: center; gap: var(--space-3);
padding: 13px 15px; background: var(--color-white);
border: 1px solid var(--color-ice); border-radius: var(--radius-sm);
font-family: var(--font-base); font-size: var(--text-body); cursor: pointer;
color: var(--text-muted); transition: border-color .15s ease, box-shadow .15s ease;
text-align: left;
}
.vm-dp-trigger:hover { border-color: #c2cad6; }
.vm-dp-trigger.open, .vm-dp-trigger:focus-visible { outline: none; border-color: var(--color-fire); box-shadow: 0 0 0 2px rgba(255,107,46,0.2); }
.vm-dp-trigger.has-value { color: var(--text-strong); font-weight: var(--weight-bold); }
.vm-dp-trigger > svg:first-child { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-fire); }
.vm-dp-value { flex: 1 1 auto; }
.vm-dp-caret { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); transition: transform .18s ease; }
.vm-dp-trigger.open .vm-dp-caret { transform: rotate(180deg); }
.vm-dp-pop {
position: absolute; z-index: 30; top: calc(100% + 8px); left: 0;
width: min(320px, calc(100vw - 48px));
background: var(--color-white); border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg); border: 1px solid var(--color-ice);
padding: var(--space-4); animation: vm-dp-in .16s ease;
}
@keyframes vm-dp-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.vm-dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-3); }
.vm-dp-title { font-family: var(--font-base); font-size: var(--text-h3); font-weight: var(--weight-black); color: var(--text-strong); }
.vm-dp-nav {
width: 34px; height: 34px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
background: var(--color-amber); border: none; border-radius: var(--radius-sm); cursor: pointer;
color: var(--color-navy); transition: background .15s ease, transform .1s ease;
}
.vm-dp-nav svg { width: 18px; height: 18px; }
.vm-dp-nav:hover { background: #f4e4cf; }
.vm-dp-nav:active { transform: scale(0.94); }
.vm-dp-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.vm-dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.vm-dp-dow { margin-bottom: 4px; }
.vm-dp-dowcell { text-align: center; font-family: var(--font-base); font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); padding: 4px 0; }
.vm-dp-cell {
aspect-ratio: 1; min-height: 36px; display: inline-flex; align-items: center; justify-content: center;
background: transparent; border: none; border-radius: var(--radius-sm); cursor: pointer;
font-family: var(--font-base); font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-strong);
transition: background .12s ease, color .12s ease, transform .1s ease;
}
.vm-dp-cell.empty { cursor: default; }
.vm-dp-cell:not(.empty):not(:disabled):hover { background: var(--color-amber); }
.vm-dp-cell:not(.empty):not(:disabled):active { transform: scale(0.92); }
.vm-dp-cell:disabled { color: #c7ced9; cursor: not-allowed; }
.vm-dp-cell.today { box-shadow: inset 0 0 0 2px var(--color-ice); }
.vm-dp-cell.sel { background: var(--color-fire); color: var(--color-white); box-shadow: var(--shadow-fire); }
.vm-dp-cell.sel:hover { background: var(--color-fire-dark, #e85a1f); }
.vm-dp-compact .vm-dp-pop { width: min(256px, calc(100vw - 48px)); padding: var(--space-3); }
.vm-dp-compact .vm-dp-nav { width: 28px; height: 28px; }
.vm-dp-compact .vm-dp-nav svg { width: 15px; height: 15px; }
.vm-dp-compact .vm-dp-title { font-size: var(--text-body-l); }
.vm-dp-compact .vm-dp-head { margin-bottom: var(--space-2); }
.vm-dp-compact .vm-dp-grid { gap: 3px; }
.vm-dp-compact .vm-dp-cell { min-height: 29px; font-size: var(--text-body); }
.vm-dp-compact .vm-dp-dowcell { padding: 2px 0; }
.vm-dp-clear {
width: 100%; margin-top: var(--space-3); padding: 10px; background: transparent; border: none;
font-family: var(--font-base); font-size: var(--text-body); font-weight: var(--weight-bold);
color: var(--color-fire); cursor: pointer; border-radius: var(--radius-sm); transition: background .15s ease;
}
.vm-dp-clear:hover { background: var(--color-amber); }
.vm-dp-hint { margin: var(--space-2) 0 0 0; font-size: var(--text-caption); color: var(--text-muted); line-height: var(--lh-body); }
.vm-dp-inline .vm-dp-pop { position: static; width: 100%; box-sizing: border-box; margin-top: var(--space-2); box-shadow: var(--shadow-sm); }
.vm-dp-inline.vm-dp-compact .vm-dp-pop { width: 100%; }
.vm-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--color-ice); border-radius: var(--radius-pill, 999px); background: var(--color-white); overflow: hidden; width: fit-content; }
.vm-stepper-btn { appearance: none; cursor: pointer; border: none; background: transparent; color: var(--color-navy); font-family: var(--font-base); font-size: 20px; font-weight: var(--weight-bold); line-height: 1; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; transition: all .15s ease; }
.vm-stepper-btn:hover { background: var(--color-fire); color: var(--color-white); }
.vm-stepper-btn:active { transform: scale(.94); }
.vm-stepper-val { min-width: 40px; text-align: center; font-family: var(--font-base); font-size: var(--text-body-l, 16px); font-weight: var(--weight-bold); color: var(--color-navy); }
.vm-abandon-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: var(--space-4); background: rgba(11, 31, 51, 0.55); backdrop-filter: blur(2px); animation: vmAbFade .18s ease; }
@keyframes vmAbFade { from { opacity: 0; } to { opacity: 1; } }
.vm-abandon-modal { position: relative; width: 100%; max-width: 440px; background: var(--color-white); border-radius: var(--radius-lg, 16px); box-shadow: var(--shadow-lg); padding: var(--space-6); animation: vmAbPop .2s ease; }
@keyframes vmAbPop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.vm-abandon-close { position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border: none; background: transparent; font-size: 26px; line-height: 1; color: var(--text-muted); cursor: pointer; border-radius: var(--radius-full, 999px); transition: all .15s ease; }
.vm-abandon-close:hover { background: var(--color-amber); color: var(--color-navy); }
.vm-abandon-eyebrow { margin: 0 0 var(--space-1); font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-fire); }
.vm-abandon-title { margin: 0 0 var(--space-2); font-size: var(--text-h3, 20px); font-weight: var(--weight-black); color: var(--color-navy); line-height: 1.2; }
.vm-abandon-sub { margin: 0 0 var(--space-4); font-size: var(--text-body); color: var(--text-muted); line-height: var(--lh-body); }
.vm-abandon-opts { display: flex; flex-direction: column; gap: var(--space-2); }
.vm-abandon-opt { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); width: 100%; text-align: left; cursor: pointer; appearance: none; background: var(--color-white); border: 1px solid var(--color-ice); border-radius: var(--radius-md, 12px); padding: 14px 16px; font-family: var(--font-base); font-size: var(--text-body); font-weight: var(--weight-semibold); color: var(--color-navy); transition: all .15s ease; }
.vm-abandon-opt:hover { border-color: var(--color-fire); background: var(--color-fire); color: var(--color-white); transform: translateX(2px); }
.vm-abandon-opt .vm-abandon-arrow { color: var(--color-fire); font-weight: var(--weight-black); transition: color .15s ease; }
.vm-abandon-opt:hover .vm-abandon-arrow { color: var(--color-white); }
.vm-abandon-opt--muted { border-style: dashed; color: var(--text-muted); font-weight: var(--weight-regular, 400); }
.vm-abandon-thanks { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3); padding: var(--space-4) 0; }
.vm-abandon-thanks svg { width: 46px; height: 46px; padding: 10px; border-radius: var(--radius-full, 999px); background: var(--color-fire); color: var(--color-white); }
.vm-abandon-thanks p { margin: 0; font-size: var(--text-body-l, 16px); font-weight: var(--weight-bold); color: var(--color-navy); }
.vm-calc-inputs .vm-size-seg, .vm-calc-inputs .vm-calc-fields,
.vm-calc-output .vm-calc-dist, .vm-calc-output .vm-calc-map, .vm-calc-output .vm-calc-result { margin-bottom: 0; }
@media (min-width: 840px) {
.vm-calc-box { max-width: 1037px; }
.vm-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
.vm-calc-inputs .vm-calc-fields { grid-template-columns: 1fr; gap: var(--space-4); }
}
.vm-calc-box-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-2); }
.vm-calc-box-head h3 { display: inline-flex; align-items: center; gap: var(--space-3); }
.vm-calc-title-ic { color: var(--color-fire); width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.vm-calc-title-ic svg { width: 100%; height: 100%; }
.vm-calc-box-head h3 {
font-size: var(--text-h2); font-weight: var(--weight-black);
color: var(--text-strong); margin: 0; letter-spacing: var(--ls-display);
}
.vm-calc-box-tag {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-fire);
}
.vm-calc-box-sub { font-size: var(--text-body); color: var(--text-muted); line-height: var(--lh-body); margin: 0 0 var(--space-4) 0; }
.vm-calc-step-label {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted);
margin: 0 0 var(--space-3) 0;
}
.vm-size-seg { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); margin-bottom: var(--space-5); }
.vm-seg-btn {
appearance: none; cursor: pointer; font-family: var(--font-base);
border: 1px solid var(--color-ice); background: var(--color-white);
border-radius: var(--radius-sm); padding: var(--space-3) var(--space-2);
display: flex; flex-direction: column; align-items: center; gap: 2px;
transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.vm-seg-btn:hover { border-color: var(--color-fire); transform: translateY(-2px); }
.vm-seg-btn .vm-seg-main { font-size: var(--text-h3); font-weight: var(--weight-black); color: var(--color-navy); line-height: 1; }
.vm-seg-btn .vm-seg-sub { font-size: var(--text-caption); color: var(--text-muted); }
.vm-seg-btn.active { border: 2px solid var(--color-fire); background: var(--color-fire); padding: calc(var(--space-3) - 1px) calc(var(--space-2) - 1px); }
.vm-seg-btn.active .vm-seg-main { color: var(--color-white); }
.vm-seg-btn.active .vm-seg-sub { color: rgba(255,255,255,0.85); }
.vm-size-seg-sm { margin-bottom: 0; gap: 6px; }
.vm-size-seg-sm .vm-seg-btn { box-sizing: border-box; min-height: 56px; padding: var(--space-2) 4px; }
.vm-size-seg-sm .vm-seg-btn.active { padding: var(--space-2) 4px; }
.vm-size-seg-sm .vm-seg-btn .vm-seg-main { font-size: var(--text-body-l); }
.vm-size-pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.vm-size-pill {
appearance: none; cursor: pointer; font-family: var(--font-base);
width: 40px; height: 40px; border-radius: var(--radius-full);
border: 1px solid var(--color-ice); background: var(--color-white);
color: var(--color-navy); font-weight: var(--weight-bold); font-size: var(--text-body);
display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.vm-size-pill:hover { border-color: var(--color-fire); }
.vm-size-pill:active { transform: scale(0.94); }
.vm-size-pill.active { background: var(--color-fire); border-color: var(--color-fire); color: var(--color-white); }
.vm-calc-route { display: flex; flex-direction: column; gap: var(--space-3); }
.vm-calc-route .vm-calc-map, .vm-calc-route .vm-calc-map.empty { height: 300px; }
.vm-route-left { display: flex; flex-direction: column; gap: var(--space-3); }
.vm-route-map-col { display: flex; flex-direction: column; }
.vm-route-map-col .vm-calc-route, .vm-route-map-col .vm-calc-map, .vm-route-map-col .vm-calc-map.empty { flex: 1 1 auto; height: 100%; min-height: 300px; }
.vm-route-idle { margin: 0; font-size: var(--text-body); line-height: var(--lh-body); color: var(--text-muted); }
.vm-altdate { display: flex; align-items: flex-end; gap: var(--space-2); margin-top: var(--space-3); }
.vm-altdate > .vm-dp { flex: 1 1 auto; }
.vm-altdate-remove {
appearance: none; cursor: pointer; flex-shrink: 0;
width: 38px; height: 38px; margin-bottom: 2px; border-radius: var(--radius-md);
border: 1px solid var(--color-ice); background: var(--color-white); color: var(--text-muted);
display: inline-flex; align-items: center; justify-content: center;
transition: border-color .15s ease, color .15s ease;
}
.vm-altdate-remove:hover { border-color: var(--color-fire); color: var(--color-fire); }
.vm-altdate-remove svg { width: 16px; height: 16px; }
.vm-altdate-add {
appearance: none; cursor: pointer; margin-top: var(--space-3);
display: inline-flex; align-items: center; gap: 6px;
background: none; border: none; padding: 4px 0;
font-family: var(--font-base); font-size: var(--text-caption); font-weight: var(--weight-bold);
color: var(--color-fire);
}
.vm-altdate-add span { font-size: 1.2em; line-height: 1; }
.vm-altdate-add:hover { color: var(--color-fire-dark, #c2410c); }
.vm-van-card {
display: flex; align-items: center; gap: var(--space-4);
border: 1px solid var(--color-ice); border-radius: var(--radius-md);
padding: var(--space-3) var(--space-4); background: var(--color-white);
}
.vm-van-ic { display: inline-flex; flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-md); align-items: center; justify-content: center; background: var(--color-navy); }
.vm-van-ic svg { width: 26px; height: 26px; color: var(--color-white); }
.vm-van-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vm-van-info b { font-size: var(--text-body-l); font-weight: var(--weight-black); color: var(--text-strong); line-height: 1.2; }
.vm-van-spec { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--color-fire); }
.vm-van-dims { font-size: var(--text-caption); color: var(--text-muted); }
.vm-calc-fields { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-5); }
@media (min-width: 560px) { .vm-calc-fields { grid-template-columns: 1fr 1fr; } }
.vm-calc-result {
display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap;
background: var(--color-amber); border-radius: var(--radius-md);
padding: var(--space-4); margin-bottom: var(--space-5);
}
.vm-calc-result-label { font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); width: 100%; }
.vm-calc-result-num { font-size: 2rem; font-weight: var(--weight-black); color: var(--color-navy); line-height: 1; }
.vm-calc-result-suffix { font-size: var(--text-body); color: var(--text-muted); }
.vm-calc-result.empty { background: var(--color-ice-50, rgba(13,27,42,0.04)); }
.vm-calc-result-final { margin-top: var(--space-6); }
.vm-calc-result.empty .vm-calc-result-num { font-size: var(--text-body-l); color: var(--text-muted); font-weight: var(--weight-bold); }
.vm-calc-breakdown { width: 100%; margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px dashed var(--color-ice); display: grid; gap: 6px; }
.vm-calc-breakdown > div { display: flex; justify-content: space-between; gap: var(--space-3); font-size: var(--text-body); color: var(--text-body); }
.vm-calc-breakdown > div > span:last-child { font-weight: var(--weight-bold); color: var(--color-navy); white-space: nowrap; }
.vm-calc-breakdown > .vm-bd-strike > span { color: var(--text-muted) !important; font-weight: var(--weight-regular) !important; text-decoration: line-through; }
.vm-bd-note { grid-column: 1 / -1; margin: 2px 0 0 0; font-size: var(--text-caption); line-height: 1.5; color: var(--text-muted); }
.vm-longhaul-note { margin-top: var(--space-5); padding: var(--space-4) var(--space-5); border-radius: var(--radius-md); background: rgba(255,107,46,0.1); border: 1px solid rgba(255,107,46,0.35); color: var(--text-strong); font-size: var(--text-body); line-height: var(--lh-body); }
.vm-longhaul-note strong { color: var(--color-navy); }
.vm-longhaul-warn { background: rgba(13,27,42,0.05); border-color: rgba(13,27,42,0.22); }
.vm-terms-row { margin-top: var(--space-4); }
.vm-terms-label { font-weight: var(--weight-regular); }
.vm-terms-link { background: none; border: none; padding: 0; font: inherit; color: var(--color-fire); font-weight: var(--weight-bold); text-decoration: underline; cursor: pointer; }
.vm-terms-link:hover { color: var(--color-fire-dark, #c2410c); }
.vm-modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(13,27,42,0.55); display: flex; align-items: center; justify-content: center; padding: var(--space-4); animation: vm-modal-fade .15s ease; }
.vm-modal { position: relative; background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; padding: var(--space-6); animation: vm-modal-pop .16s ease; }
.vm-modal-close { position: absolute; top: var(--space-3); right: var(--space-3); width: 36px; height: 36px; border: none; background: transparent; border-radius: var(--radius-sm); color: var(--text-muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease; }
.vm-modal-close:hover { background: var(--color-ice); color: var(--color-navy); }
.vm-modal-close svg { width: 22px; height: 22px; }
.vm-modal-title { font-size: var(--text-h3); font-weight: var(--weight-black); color: var(--color-navy); margin: 0 var(--space-6) var(--space-4) 0; line-height: 1.1; }
.vm-modal-body { font-size: var(--text-body); color: var(--text-body); line-height: var(--lh-body); }
.vm-modal-body h4 { font-size: var(--text-body-l); font-weight: var(--weight-black); color: var(--color-navy); margin: var(--space-4) 0 4px 0; }
.vm-modal-body h4:first-child { margin-top: 0; }
.vm-modal-body p { margin: 0 0 var(--space-2) 0; }
.vm-modal-body ul { margin: 4px 0 var(--space-2) 0; padding-left: var(--space-5); }
.vm-modal-body li { margin-bottom: 4px; }
@keyframes vm-modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vm-modal-pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.vm-calc-dist {
display: flex; align-items: center; gap: var(--space-3);
border: 1px solid var(--color-ice); background: var(--color-white);
border-radius: var(--radius-md); padding: var(--space-3) var(--space-4);
margin-bottom: var(--space-5);
transition: border-color .15s ease, background .15s ease;
}
.vm-calc-dist-ic { display: flex; flex-shrink: 0; width: 26px; height: 26px; align-items: center; justify-content: center; color: var(--text-muted); }
.vm-calc-dist-ic svg { width: 22px; height: 22px; }
.vm-calc-dist-text { font-size: var(--text-body); line-height: 1.45; color: var(--text-body); }
.vm-calc-dist-text b { color: var(--color-navy); font-weight: var(--weight-bold); }
.vm-calc-dist-text .muted { color: var(--text-muted); }
.vm-calc-dist.loading { background: var(--color-amber); border-color: transparent; color: var(--text-muted); }
.vm-calc-dist.near .vm-calc-dist-ic { color: var(--color-fire); }
.vm-calc-dist.far { border: 2px solid var(--color-fire); background: var(--color-fire-20); padding: calc(var(--space-3) - 1px) calc(var(--space-4) - 1px); }
.vm-calc-dist.far .vm-calc-dist-ic { color: var(--color-fire); }
.vm-calc-dist.error { background: var(--color-ice); border-color: var(--color-ice); }
.vm-calc-spinner { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--color-fire-40); border-top-color: var(--color-fire); animation: vm-spin .7s linear infinite; }
@keyframes vm-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .vm-calc-spinner { animation-duration: 2.4s; } }
.vm-calc-map {
position: relative; z-index: 0; isolation: isolate;
height: 240px; width: 100%; border-radius: var(--radius-md);
border: 1px solid var(--color-ice); overflow: hidden; margin-bottom: var(--space-5);
background: var(--color-ice);
}
.vm-calc-map .leaflet-container { height: 100%; width: 100%; font-family: var(--font-base); background: #e7e9ec; }
.vm-calc-map .leaflet-tile-pane { filter: grayscale(1) contrast(1.06); }
.vm-calc-map .leaflet-control-attribution { display: none; }
.vm-map-pin { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: var(--radius-full); color: var(--color-white); font-weight: var(--weight-black); font-size: 13px; box-shadow: var(--shadow-md); border: 2px solid var(--color-white); }
.vm-map-pin.from { background: var(--color-navy); }
.vm-map-pin.to { background: var(--color-fire); }
.vm-map-pin.mid { background: var(--color-navy-mid, #1E2A3A); border: 2px solid var(--color-fire); }
.vm-calc-map .leaflet-popup-content-wrapper { border-radius: var(--radius-sm); }
.vm-calc-map .leaflet-popup-content { font-size: var(--text-body); font-weight: var(--weight-semibold); color: var(--color-navy); margin: 8px 12px; }
.vm-calc-two { display: flex; flex-direction: column; }
.vm-calc-two > * + * { margin-top: var(--space-4); }
.vm-calc-addr-block {
border: 1px solid var(--color-ice); border-radius: var(--radius-md);
padding: var(--space-4); display: grid; gap: var(--space-3); align-content: start;
}
.vm-addr-fields {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
column-gap: var(--space-4);
row-gap: var(--space-4);
}
.vm-addr-fields > div { min-width: 0; }
.vm-addr-fields .vm-field-lbl,
.vm-addr-fields .vm-pick-label { white-space: nowrap; }
.vm-addr-fields .vm-pick-label { margin: 0 0 var(--space-2); }
.vm-addr-fields .f-addr  { flex: 1 1 320px; }
.vm-addr-fields .f-size,
.vm-addr-fields .f-type,
.vm-addr-fields .f-elev,
.vm-addr-fields .f-new   { flex: 0 0 auto; }
@media (max-width: 759px) {
.vm-addr-fields > div { max-width: 100%; }
.vm-addr-fields .f-type { flex: 1 1 100%; }
}
.vm-addr-fields .f-area  { flex: 0 0 150px; }
.vm-addr-fields .f-floor { flex: 0 0 110px; }
.vm-addr-fields .f-residents { flex: 0 0 130px; }
@media (max-width: 560px) {
.vm-addr-fields .f-addr { flex: 1 1 100%; }
.vm-addr-fields .f-area,
.vm-addr-fields .f-floor,
.vm-addr-fields .f-residents { flex: 1 1 120px; }
}
@media (min-width: 760px) {
.vm-addr-fields {
display: grid;
grid-template-columns: 3.75fr 0.85fr 0.85fr 0.95fr;
grid-template-areas: "addr addr addr area" "type floor elev res";
column-gap: var(--space-4); row-gap: var(--space-4); align-items: start;
}
.vm-addr-fields > div { flex: none; max-width: none; }
.vm-addr-fields .f-addr  { grid-area: addr; }
.vm-addr-fields .f-area  { grid-area: area; }
.vm-addr-fields .f-type  { grid-area: type; }
.vm-addr-fields .f-floor { grid-area: floor; }
.vm-addr-fields .f-elev  { grid-area: elev; }
.vm-addr-fields .f-residents, .vm-addr-fields .f-new { grid-area: res; }
.vm-addr-fields .vm-bigitems { grid-column: 1 / -1; }
.vm-addr-fields .f-type .vm-pick { flex-wrap: nowrap; gap: 8px; }
.vm-addr-fields .f-type .vm-pick button { flex: 1 1 auto; min-width: 0; justify-content: center; padding: 11px 8px; gap: 6px; font-size: 13.5px; white-space: nowrap; }
.vm-addr-fields .f-type .vm-pick button svg { flex-shrink: 0; width: 15px; height: 15px; }
.vm-addr-fields .f-elev .vm-pick { flex-wrap: nowrap; }
.vm-addr-fields .f-elev .vm-pick button { flex: 1 1 0; justify-content: center; }
.vm-addr-fields .f-floor input { width: 100%; min-width: 0; }
.vm-addr-fields .f-floor input[type=number] { -moz-appearance: textfield; }
.vm-addr-fields .f-floor input[type=number]::-webkit-outer-spin-button,
.vm-addr-fields .f-floor input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.vm-addr-fields .f-new .vm-pick { flex-wrap: nowrap; }
.vm-addr-fields .f-new .vm-pick button { flex: 1 1 auto; justify-content: center; }
}
.vm-calc-addr-head { display: flex; align-items: center; gap: var(--space-3); margin: 0; padding-bottom: var(--space-2); border-bottom: 1px solid var(--color-ice); }
.vm-calc-addr-head .ic { display: flex; width: 44px; height: 44px; border-radius: var(--radius-md); align-items: center; justify-content: center; flex-shrink: 0; }
.vm-calc-addr-head .ic svg { width: 24px; height: 24px; color: var(--color-white); }
.vm-calc-addr-head.from .ic { background: var(--color-navy); }
.vm-calc-addr-head.to .ic { background: var(--color-navy); }
.vm-calc-addr-head .t { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.vm-calc-addr-head .t .lbl { font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); }
.vm-calc-addr-head .t b { font-size: calc(var(--text-body-l) * 1.5); font-weight: var(--weight-black); color: var(--text-strong); line-height: 1.2; white-space: normal; word-break: break-word; }
.vm-calc-addr-head .t b.empty { font-size: var(--text-body); font-weight: var(--weight-regular); font-style: italic; color: var(--text-muted); }
.vm-stop-remove { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; border: none; background: transparent; color: var(--text-muted); font-family: var(--font-base); font-size: 12.5px; font-weight: var(--weight-semibold, 600); cursor: pointer; padding: 6px 8px; border-radius: var(--radius-sm); flex-shrink: 0; }
.vm-stop-remove:hover { color: var(--color-fire); background: rgba(255,107,46,0.06); }
.vm-stop-remove svg { width: 15px; height: 15px; }
.vm-calc-extrastops { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-2); }
.vm-offer-note { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-4) 0 var(--space-2); padding: var(--space-4) var(--space-5); border-radius: var(--radius-md); background: var(--color-amber); }
.vm-offer-note p { display: flex; align-items: flex-start; gap: 10px; margin: 0; font-family: var(--font-base); font-size: var(--text-caption); line-height: 1.55; color: var(--color-steel); }
.vm-offer-note i, .vm-offer-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--color-fire); }
.vm-offer-note strong { color: var(--color-navy); }
.vm-estmail { margin: var(--space-5) 0 var(--space-6); padding: var(--space-4) var(--space-5); border: 1px solid var(--color-ice); border-left: 3px solid var(--color-fire); border-radius: var(--radius-md); background: var(--color-amber); }
.vm-estmail.sent { border-left-color: var(--color-fire); }
.vm-estmail-title { display: flex; align-items: center; gap: 8px; margin: 0 0 4px; font-family: var(--font-base); font-weight: var(--weight-bold); font-size: var(--text-body-l, 1.05rem); color: var(--color-navy); }
.vm-estmail-title i, .vm-estmail-title svg { width: 18px; height: 18px; color: var(--color-fire); flex-shrink: 0; }
.vm-estmail-sub { margin: 0 0 var(--space-4); font-family: var(--font-base); font-size: var(--text-caption); color: var(--text-muted); line-height: 1.5; max-width: 62ch; }
.vm-estmail.sent .vm-estmail-sub { margin-bottom: 0; }
.vm-estmail-row { display: flex; gap: var(--space-3); align-items: stretch; flex-wrap: wrap; }
.vm-estmail-input { flex: 1 1 220px; min-width: 0; font-family: var(--font-base); font-size: var(--text-body); padding: 12px 14px; border: 1px solid var(--color-ice); border-radius: var(--radius-sm); background: var(--color-white); color: var(--color-navy); }
.vm-estmail-input:focus { outline: none; border: 2px solid var(--color-fire); padding: 11px 13px; }
.vm-estmail-btn { flex: 0 0 auto; appearance: none; cursor: pointer; font-family: var(--font-base); font-weight: var(--weight-bold); font-size: var(--text-body); padding: 12px 24px; border: 2px solid transparent; border-radius: var(--radius-sm); background: var(--color-fire); color: var(--color-white); transition: background-color .18s ease, transform .12s ease; }
.vm-estmail-btn:hover:not(:disabled) { background: var(--color-fire-dark); }
.vm-estmail-btn:active:not(:disabled) { transform: scale(.97); }
.vm-estmail-btn:disabled { opacity: .6; cursor: default; }
.vm-estmail-err { margin: var(--space-3) 0 0; font-family: var(--font-base); font-size: var(--text-caption); font-weight: var(--weight-semibold, 600); color: var(--color-fire-dark); }
@media (max-width: 520px) { .vm-estmail-btn { flex: 1 1 100%; } }
.vm-calc-two > .vm-calc-extrastops { margin-top: var(--space-2); }
.vm-addstop-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; border: 1.5px dashed var(--color-ice); border-radius: var(--radius-md); background: transparent; color: var(--color-fire); font-family: var(--font-base); font-weight: var(--weight-bold); font-size: 14px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.vm-addstop-btn:hover { border-color: var(--color-fire); background: rgba(255,107,46,0.05); }
.vm-addstop-btn > span[aria-hidden] { font-size: 18px; line-height: 1; }
.vm-addstop-sub { font-weight: var(--weight-medium); color: var(--text-muted); }
@media (max-width: 560px) { .vm-addstop-btn { flex-wrap: wrap; row-gap: 3px; } .vm-addstop-sub { flex-basis: 100%; } }
.vm-calc-floor-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); align-items: start; }
.vm-calc-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.vm-calc-order {
margin-top: var(--space-2); padding: var(--space-4);
background: var(--color-amber); border-radius: var(--radius-md);
display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start;
}
.vm-calc-order-text {
margin: 0; font-size: var(--text-body); line-height: var(--lh-body); color: var(--text-body);
}
.vm-calc-order-text b { color: var(--text-strong); font-weight: var(--weight-bold); }
.vm-extra-box {
border: 1px solid var(--color-ice); border-radius: var(--radius-md);
padding: var(--space-3) var(--space-4); margin-bottom: var(--space-2);
}
.vm-box-followup { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--color-ice); }
.vm-box-q { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-strong); margin: 0 0 var(--space-2) 0; }
.vm-box-opts { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 560px) { .vm-box-opts { grid-template-columns: 1fr 1fr; } }
.vm-box-opt {
display: flex; align-items: flex-start; gap: var(--space-3);
border: 1px solid var(--color-ice); border-radius: var(--radius-md);
padding: var(--space-3) var(--space-4); cursor: pointer;
transition: border-color .15s ease, background .15s ease;
}
.vm-box-opt:hover { border-color: #c7ced9; }
.vm-box-opt.on { border-color: var(--color-fire); background: rgba(255,107,46,0.06); }
.vm-box-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.vm-box-opt-dot {
flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
border: 2px solid #c7ced9; background: #fff; position: relative;
transition: border-color .15s ease;
}
.vm-box-opt.on .vm-box-opt-dot { border-color: var(--color-fire); }
.vm-box-opt.on .vm-box-opt-dot::after {
content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--color-fire);
}
.vm-box-opt input:focus-visible + .vm-box-opt-dot { box-shadow: 0 0 0 3px rgba(255,107,46,0.3); }
.vm-box-opt-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vm-box-opt-main { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-strong); line-height: 1.3; }
.vm-box-opt-sub { font-size: var(--text-caption); color: var(--text-muted); line-height: 1.35; }
.vm-box-opt.disabled { cursor: not-allowed; opacity: .55; background: var(--color-ice); }
.vm-box-opt.disabled:hover { border-color: var(--color-ice); }
.vm-box-opt.disabled .vm-box-opt-dot { border-color: #c7ced9; }
.vm-box-opt-note {
margin-top: var(--space-3); padding: var(--space-3) var(--space-4);
border-radius: var(--radius-md); background: var(--color-amber);
font-size: var(--text-body); line-height: 1.45; color: var(--text-body);
}
.vm-box-status {
margin-top: var(--space-3); padding: var(--space-3) var(--space-4);
border-radius: var(--radius-md); font-size: var(--text-body); line-height: 1.45;
background: var(--color-amber); color: var(--text-body);
}
.vm-box-status b { color: var(--color-navy); font-weight: var(--weight-bold); }
.vm-box-status.ok { background: var(--color-fire-20); }
.vm-box-status.ok b { color: var(--color-fire-dark, #c2410c); }
.vm-box-status.far { border: 1px solid var(--color-ice); background: var(--color-ice); }
.vm-box-status.far b { color: var(--color-navy); }
.vm-calc-map.empty {
display: flex; align-items: center; justify-content: center; text-align: center;
background: var(--color-ice); border: 1px dashed #c7ced9;
}
.vm-calc-map-ph {
display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
max-width: 30ch; padding: var(--space-4); color: var(--text-muted);
font-size: var(--text-body); line-height: 1.4;
}
.vm-calc-map-ph-ic { display: inline-flex; }
.vm-calc-map-ph-ic svg { width: 28px; height: 28px; color: #b4bcc8; }
.vm-extra-list { display: flex; flex-direction: column; gap: var(--space-2); }
.vm-extra-item {
border: 1px solid var(--color-ice); border-radius: var(--radius-md);
padding: var(--space-3) var(--space-4);
transition: border-color .15s ease, background .15s ease;
}
.vm-extra-item.on { border-color: var(--color-fire); background: rgba(255,107,46,0.06); }
.vm-check-row { display: flex; align-items: center; gap: var(--space-3); cursor: pointer; }
.vm-check-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.vm-check-box {
flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
border: 2px solid #c7ced9; background: #fff;
display: inline-flex; align-items: center; justify-content: center;
color: #fff; transition: background .15s ease, border-color .15s ease;
}
.vm-check-box svg { width: 14px; height: 14px; opacity: 0; transition: opacity .15s ease; }
.vm-check-row input:checked + .vm-check-box { background: var(--color-fire); border-color: var(--color-fire); }
.vm-check-row input:checked + .vm-check-box svg { opacity: 1; }
.vm-check-row input:focus-visible + .vm-check-box { box-shadow: 0 0 0 3px rgba(255,107,46,0.3); }
.vm-check-label { flex: 1 1 auto; min-width: 0; font-size: var(--text-body); color: var(--text-strong); font-weight: var(--weight-bold); }
.vm-check-price { flex-shrink: 0; font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--color-fire); white-space: nowrap; }
.vm-info-tip { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-left: 6px; vertical-align: middle; cursor: pointer; outline: none; }
.vm-info-i { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 999px; border: 1.5px solid var(--color-fire); color: var(--color-fire); font-size: 11px; font-weight: var(--weight-bold); font-style: italic; line-height: 1; font-family: Georgia, serif; }
.vm-info-tip:hover .vm-info-i, .vm-info-tip:focus-visible .vm-info-i, .vm-info-tip.open .vm-info-i { background: var(--color-fire); color: #fff; }
.vm-info-bubble { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); width: max-content; max-width: 220px; background: var(--color-navy); color: #fff; font-size: var(--text-caption); font-weight: var(--weight-regular); line-height: 1.35; text-align: left; padding: 8px 10px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: opacity .15s ease; z-index: 20; pointer-events: none; }
.vm-info-bubble::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--color-navy); }
.vm-info-tip:hover .vm-info-bubble, .vm-info-tip:focus-visible .vm-info-bubble, .vm-info-tip.open .vm-info-bubble { opacity: 1; visibility: visible; }
@media (max-width: 379px) {
.vm-check-row { flex-wrap: wrap; }
.vm-check-row .vm-check-price { margin-left: 34px; }
}
.vm-bigitems { margin-top: var(--space-1); border: 1px solid var(--color-ice); border-radius: var(--radius-md); padding: var(--space-2) var(--space-4); transition: border-color .15s ease, background .15s ease; }
.vm-bigitems.on { border-color: var(--color-fire); background: rgba(255,107,46,0.06); }
.vm-bigitems-hint { margin: 3px 0 0 34px; font-size: var(--text-caption); color: var(--text-muted); line-height: 1.3; }
.vm-calc-result-num--prompt { font-size: var(--text-h3); color: var(--text-muted); }
.vm-extra-detail { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--color-ice); }
.vm-qty-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }
.vm-qty-row > span:first-child { font-size: var(--text-body); color: var(--text-body); }
.vm-qty-ctrl { display: inline-flex; align-items: center; gap: var(--space-2); }
.vm-qty-ctrl input {
width: 76px; padding: var(--space-2) var(--space-3);
border: 1px solid var(--color-ice); border-radius: var(--radius-sm);
font-family: var(--font-base); font-size: var(--text-body); font-weight: var(--weight-bold);
color: var(--text-strong); text-align: center; background: #fff;
}
.vm-qty-ctrl input:focus { outline: none; border-color: var(--color-fire); box-shadow: 0 0 0 2px rgba(255,107,46,0.2); }
.vm-qty-unit { font-size: var(--text-body); color: var(--text-muted); font-weight: var(--weight-bold); }
.vm-extra-note { margin: var(--space-3) 0 0 0; font-size: var(--text-caption); color: var(--text-muted); line-height: var(--lh-body); }
.vm-check-sub { display: block; font-weight: var(--weight-regular); font-size: var(--text-caption); color: var(--text-muted); margin-top: 2px; line-height: 1.35; }
.vm-recycle-intro { margin: 0 0 var(--space-2) 0; font-size: var(--text-caption); color: var(--text-muted); line-height: 1.4; }
.vm-recycle-opts { display: flex; flex-direction: column; gap: var(--space-2); }
.vm-recycle-muu-label { display: block; margin: var(--space-3) 0 var(--space-1) 0; font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-strong); }
.vm-recycle-muu { width: 100%; box-sizing: border-box; padding: 10px 13px; font-family: var(--font-base); font-size: var(--text-body); color: var(--text-body); border: 1px solid var(--color-ice); border-radius: var(--radius-md); background: #fff; }
.vm-recycle-muu:focus { outline: none; border: 2px solid var(--color-fire); padding: 9px 12px; }
.vm-form-error { margin: var(--space-3) 0 0 0; font-size: var(--text-body); font-weight: var(--weight-bold); color: #D32F2F; line-height: var(--lh-body); }
.vm-calc-toggle {
appearance: none; background: none; border: none; cursor: pointer;
font-family: var(--font-base); font-size: var(--text-body); font-weight: var(--weight-bold);
color: var(--color-fire); display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.vm-calc-toggle svg { width: 18px; height: 18px; transition: transform .18s ease; }
.vm-calc-toggle.open svg { transform: rotate(180deg); }
.vm-calc-detailed {
margin-top: var(--space-5); padding-top: var(--space-5);
border-top: 1px solid var(--color-ice);
}
.vm-calc-detailed-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 560px) { .vm-calc-detailed-grid { grid-template-columns: 1fr 1fr; } }
.vm-calc-detailed-grid .vm-span2 { grid-column: 1 / -1; }
.vm-calc-ta {
width: 100%; box-sizing: border-box; padding: 11px 14px; min-height: 90px; resize: none; overflow: hidden;
font-family: var(--font-base); font-size: var(--text-body); color: var(--text-body);
background: var(--color-white); border: 1px solid var(--color-ice);
border-radius: var(--radius-sm); outline: none; transition: border-color .15s ease;
}
.vm-calc-ta:focus { border: 2px solid var(--color-fire); padding: 10px 13px; }
@media (max-width: 760px) { .vm-calc-ta { min-height: 140px; font-size: 16px; } }
.vm-pick { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.vm-pick button {
appearance: none; cursor: pointer; font-family: var(--font-base); font-size: var(--text-body);
display: inline-flex; align-items: center; gap: 6px;
font-weight: var(--weight-medium); color: var(--text-body);
border: 1px solid var(--color-ice); background: var(--color-white);
border-radius: var(--radius-pill, 999px); padding: 8px 16px; transition: all .15s ease;
}
.vm-pick button:hover { border-color: var(--color-fire); }
.vm-pick button.active { border-color: var(--color-fire); background: var(--color-fire); color: var(--color-white); box-shadow: inset 0 0 0 1px var(--color-fire); }
.vm-pick button svg { width: 15px; height: 15px; flex-shrink: 0; }
.vm-pick-label { display: flex; align-items: center; gap: 6px; font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-navy); margin: 0 0 var(--space-2) 0; }
.vm-pick-label svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--color-fire); }
.vm-calc-2col { display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: start; }
.vm-calc-2col > * { min-width: 0; }
@media (min-width: 760px) { .vm-calc-2col { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
@media (min-width: 760px) { .vm-calc-2col-route { grid-template-columns: minmax(280px, 360px) 1fr; } }
.vm-calc-2col .vm-calc-step-label { margin-top: 0; }
.vm-box-box { display: flex; flex-direction: column; gap: var(--space-3); }
.vm-box-head { display: flex; align-items: center; gap: var(--space-4); }
.vm-box-graphic { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
.vm-box-ic { display: inline-flex; width: 56px; height: 56px; border-radius: var(--radius-md); align-items: center; justify-content: center; background: var(--color-ice); color: #5b6675; }
.vm-box-size { font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); color: var(--text-muted); }
.vm-box-head .vm-qty-row { flex: 1 1 auto; }
.vm-box-hint { margin: 0; font-size: var(--text-body); line-height: 1.5; color: var(--text-muted); }
.vm-box-rent-lbl { display: flex; flex-direction: column; gap: 2px; }
.vm-box-rate { font-size: var(--text-caption); font-weight: var(--weight-bold); color: var(--color-fire); }
.vm-box-days { padding-top: var(--space-3); margin-top: var(--space-3); border-top: 1px solid var(--color-ice); display: flex; flex-direction: column; gap: var(--space-3); }
.vm-box-dates { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.vm-box-dates .vm-dp { min-width: 0; }
.vm-box-dates .vm-dp-value { white-space: nowrap; font-variant-numeric: tabular-nums; }
.vm-box-dates .vm-dp-trigger { padding-left: var(--space-3); padding-right: var(--space-3); gap: var(--space-2); }
.vm-box-days-sum { margin: 0; font-size: var(--text-caption); font-weight: var(--weight-bold); color: var(--color-fire); }
@media (max-width: 560px) { .vm-box-dates { grid-template-columns: 1fr; } }
.vm-box-opts { grid-template-columns: 1fr; }
.vm-extra-ic { display: inline-flex; flex-shrink: 0; width: 26px; height: 26px; align-items: center; justify-content: center; color: var(--color-navy); }
.vm-extra-item.on .vm-extra-ic { color: var(--color-fire); }
.vm-proof { background: var(--color-amber); }
.vm-proof--tight { padding-block: var(--space-5); }
@media (min-width: 900px) { .vm-proof--tight { padding-block: var(--space-6); } }
.vm-proof-grid {
display: grid; grid-template-columns: 1fr; gap: var(--space-6);
align-items: center;
}
@media (min-width: 920px) { .vm-proof-grid { grid-template-columns: 0.8fr 2fr; gap: var(--space-7); } }
.vm-proof-head {
display: flex; flex-direction: column; gap: var(--space-5);
margin-bottom: var(--space-6);
}
@media (min-width: 820px) {
.vm-proof-head { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--space-7); }
}
.vm-proof-head-copy { min-width: 0; }
.vm-proof-head-copy .vm-eyebrow { margin-bottom: var(--space-3); }
.vm-proof-score { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; position: relative; }
.vm-proof-score-num {
font-size: clamp(3.5rem, 7vw, 5rem); font-weight: var(--weight-black);
color: var(--text-strong); line-height: 0.9; letter-spacing: var(--ls-display);
font-variant-numeric: tabular-nums;
}
@media (prefers-reduced-motion: no-preference) {
.vm-proof-score-stars:not(.is-on) > * { opacity: 0; }
.vm-proof-score-stars.is-on > * { animation: vm-star-in 0.5s cubic-bezier(.2,.9,.3,1.55) both, vm-star-charge 2.8s ease-in-out infinite; }
.vm-proof-score-stars.is-on > *:nth-child(1) { animation-delay: .20s; }
.vm-proof-score-stars.is-on > *:nth-child(2) { animation-delay: .34s; }
.vm-proof-score-stars.is-on > *:nth-child(3) { animation-delay: .48s; }
.vm-proof-score-stars.is-on > *:nth-child(4) { animation-delay: .62s; }
.vm-proof-score-stars.is-on > *:nth-child(5) { animation-delay: .76s; }
}
@keyframes vm-star-in {
0%   { opacity: 0; transform: scale(.2) translateY(5px); }
60%  { opacity: 1; transform: scale(1.3); }
100% { opacity: 1; transform: scale(1); }
}
@keyframes vm-star-charge {
0%, 30%, 100% { filter: brightness(1) drop-shadow(0 0 0 rgba(255,235,205,0)); }
13% { filter: brightness(1.85) drop-shadow(0 0 9px rgba(255,240,215,1)); }
}
@media (prefers-reduced-motion: no-preference) {
.vm-review-stars svg, .vm-stars svg, .vm-greview-rate svg, .vm-greview-stars svg, .vm-proof-score-stars svg, .vm-gscore-stars svg:not(.off) { animation: vm-star-charge 2.8s ease-in-out infinite; }
.vm-review-stars svg:nth-child(1), .vm-stars svg:nth-child(1), .vm-greview-rate svg:nth-child(1), .vm-greview-stars svg:nth-child(1), .vm-proof-score-stars svg:nth-child(1), .vm-gscore-stars svg:nth-child(1) { animation-delay: 0s; }
.vm-review-stars svg:nth-child(2), .vm-stars svg:nth-child(2), .vm-greview-rate svg:nth-child(2), .vm-greview-stars svg:nth-child(2), .vm-proof-score-stars svg:nth-child(2), .vm-gscore-stars svg:nth-child(2) { animation-delay: .14s; }
.vm-review-stars svg:nth-child(3), .vm-stars svg:nth-child(3), .vm-greview-rate svg:nth-child(3), .vm-greview-stars svg:nth-child(3), .vm-proof-score-stars svg:nth-child(3), .vm-gscore-stars svg:nth-child(3) { animation-delay: .28s; }
.vm-review-stars svg:nth-child(4), .vm-stars svg:nth-child(4), .vm-greview-rate svg:nth-child(4), .vm-greview-stars svg:nth-child(4), .vm-proof-score-stars svg:nth-child(4), .vm-gscore-stars svg:nth-child(4) { animation-delay: .42s; }
.vm-review-stars svg:nth-child(5), .vm-stars svg:nth-child(5), .vm-greview-rate svg:nth-child(5), .vm-greview-stars svg:nth-child(5), .vm-proof-score-stars svg:nth-child(5), .vm-gscore-stars svg:nth-child(5) { animation-delay: .56s; }
}
.vm-proof-score.vm-shine { overflow: hidden; }
.vm-proof-score.vm-shine::after {
content: ""; position: absolute; top: -25%; bottom: -25%; left: 0; width: 50%;
background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0) 32%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0) 68%, transparent 100%);
mix-blend-mode: screen; pointer-events: none;
transform: translateX(-180%) skewX(-14deg);
animation: vm-shine-sweep 1.1s ease-in-out forwards;
}
@keyframes vm-shine-sweep { to { transform: translateX(340%) skewX(-14deg); } }
.vm-proof-score-meta { display: flex; flex-direction: column; gap: 4px; }
.vm-proof-score-stars { display: inline-flex; gap: 3px; }
.vm-proof-score-stars i, .vm-proof-score-stars svg { width: 24px; height: 24px; color: var(--color-fire); fill: var(--color-fire); }
.vm-proof-score-label { font-size: var(--text-body); color: var(--text-muted); max-width: 200px; line-height: var(--lh-snug); }
.vm-proof-score-label a { color: var(--color-fire); font-weight: var(--weight-semibold); text-decoration: underline; text-underline-offset: 2px; }
.vm-proof-score-label a:hover { color: var(--color-fire-dark); }
.vm-proof-headline {
font-size: var(--text-h3); font-weight: var(--weight-black);
color: var(--text-strong); line-height: var(--lh-snug); margin: 0;
}
.vm-stars { display: inline-flex; gap: 3px; margin-top: var(--space-3); }
.vm-stars svg { width: 20px; height: 20px; color: var(--color-fire); fill: var(--color-fire); }
.vm-proof-meta { margin-top: var(--space-2); font-size: var(--text-body); color: var(--text-muted); }
.vm-reviews {
display: grid; grid-template-columns: 1fr; gap: var(--space-3);
}
@media (min-width: 620px) { .vm-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .vm-reviews { grid-template-columns: repeat(3, 1fr); } }
.vm-review-stars { display: inline-flex; gap: 2px; margin-bottom: var(--space-2); }
.vm-review-stars svg { width: 15px; height: 15px; color: var(--color-fire); fill: var(--color-fire); }
.vm-review-text {
font-size: var(--text-body); line-height: var(--lh-body); color: var(--text-body); margin: 0 0 var(--space-3) 0;
}
.vm-review-author { font-size: 0.8125rem; font-weight: var(--weight-bold); color: var(--color-navy); }
.vm-review-date { font-size: 0.75rem; font-weight: var(--weight-medium); color: var(--text-muted); margin-top: 2px; }
.vm-reviews-masonry {
display: grid; grid-template-columns: 1fr; gap: var(--space-4); align-items: start;
}
.vm-masonry-col { display: flex; flex-direction: column; gap: var(--space-4); }
.vm-greview {
position: relative;
background: var(--color-white); border: 1px solid var(--color-ice);
border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
padding: var(--space-4);
transition: transform .16s ease, box-shadow .16s ease;
}
.vm-greview:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vm-greview-g { position: absolute; top: var(--space-3); right: var(--space-3); width: 20px; height: 20px; }
.vm-greview-rate { display: flex; align-items: center; gap: 6px; margin-bottom: var(--space-2); padding-right: 26px; }
.vm-greview-num { font-weight: var(--weight-black); color: var(--color-fire); font-size: 0.95rem; line-height: 1; }
.vm-greview-rate .vm-review-stars { margin-bottom: 0; }
.vm-greview-avatar { width: 15px; height: 15px; color: var(--color-fire); flex: 0 0 auto; }
.vm-greview .vm-review-text { margin-bottom: var(--space-3); }
.vm-quote { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 700; color: var(--color-fire); }
.vm-quote-open { font-size: 1.5em; line-height: 0; vertical-align: -0.32em; margin-right: 3px; }
.vm-quote-close { font-size: 1.5em; line-height: 0; vertical-align: -0.5em; margin-left: 2px; }
.vm-greview-foot { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }
.vm-greview-foot .vm-review-date { margin-top: 0; }
.vm-greview .vm-review-author { display: inline-flex; align-items: center; gap: 6px; }
.vm-reviews-more { display: flex; justify-content: center; margin-top: var(--space-6); }
.vm-reviews-more a {
display: inline-flex; align-items: center; gap: 8px;
font-size: var(--text-body-l); font-weight: var(--weight-bold);
color: var(--color-fire); text-decoration: none;
padding: 12px 22px; border: 2px solid var(--color-fire-40); border-radius: var(--radius-sm);
transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.vm-reviews-more a:hover { background: var(--color-fire); border-color: var(--color-fire); color: var(--color-white); }
.vm-reviews-more a svg { width: 18px; height: 18px; }
.vm-reviews-cta-row { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-top: var(--space-6); align-items: stretch; }
@media (min-width: 860px) { .vm-reviews-cta-row { grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; } }
.vm-reviews-more-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: var(--text-body-l); font-weight: var(--weight-bold); color: var(--color-navy); text-decoration: none; border: 2px solid rgba(13,27,42,0.18); border-radius: var(--radius-button, 8px); padding: 14px 22px; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.vm-reviews-more-btn:hover { background: var(--color-fire); border-color: var(--color-fire); color: var(--color-white); }
.vm-reviews-more-btn svg { width: 18px; height: 18px; }
.vm-gpanel { display: flex; flex-direction: column; gap: var(--space-3); background: var(--color-white); border: 1px solid var(--color-ice); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--space-4) var(--space-5); }
.vm-gpanel-top { display: flex; align-items: center; gap: var(--space-3); }
.vm-gpanel-g { width: 28px; height: 28px; flex: 0 0 auto; }
.vm-gpanel-meta { display: flex; flex-direction: column; line-height: 1.2; }
.vm-gpanel-avg { display: inline-flex; align-items: center; gap: 8px; }
.vm-gpanel-avg b { font-size: 1.35rem; font-weight: var(--weight-black); color: var(--text-strong); }
.vm-gstars { display: inline-flex; gap: 1px; color: #FBBC05; }
.vm-gstars svg { width: 16px; height: 16px; }
.vm-gpanel-count { font-size: var(--text-caption); color: var(--text-muted); font-weight: var(--weight-bold); }
.vm-gpanel-review { min-height: 86px; }
@media (prefers-reduced-motion: no-preference) { .vm-gpanel-review { animation: vm-gfade .45s ease; } }
@keyframes vm-gfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.vm-gpanel-review p { margin: 0 0 6px 0; font-size: var(--text-body); color: var(--text-body); line-height: var(--lh-body); display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.vm-gpanel-review .who { font-size: var(--text-caption); color: var(--text-muted); font-weight: var(--weight-bold); }
.vm-gpanel-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }
.vm-gpanel-link { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--color-fire); text-decoration: none; }
.vm-gpanel-link:hover { color: var(--color-fire-dark); }
.vm-gpanel-link svg { width: 16px; height: 16px; }
.vm-gpanel-dots { display: inline-flex; gap: 5px; }
.vm-gpanel-dots i { width: 6px; height: 6px; border-radius: 999px; background: var(--color-ice); display: block; transition: background .2s ease, width .2s ease; }
.vm-gpanel-dots i.on { background: var(--color-fire); width: 16px; }
.vm-gscore { gap: var(--space-4); }
.vm-gscore-logo { width: 42px; height: 42px; flex: 0 0 auto; }
.vm-gscore-stars { display: inline-flex; gap: 3px; }
.vm-gscore-stars svg { width: 24px; height: 24px; color: var(--color-fire); }
.vm-gscore-stars svg.off { color: var(--color-ice); }
.vm-gscore-profile { display: inline-block; margin-top: 4px; font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--color-fire); text-decoration: none; transition: color .15s ease; }
.vm-gscore-profile:hover { color: var(--color-fire-dark); text-decoration: underline; }
.vm-google-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-5); margin-top: var(--space-7); flex-wrap: wrap; }
#arvostelut.vm-section { padding-block: var(--space-5); }
@media (min-width: 900px) { #arvostelut.vm-section { padding-block: var(--space-6); } }
@media (min-width: 620px) { .vm-google-cta { flex-direction: row; gap: var(--space-6); } .vm-google-cta .vm-reviews-more { margin-top: 0; } }
.vm-google-cta .vm-reviews-more a { background: none; border: none; padding: 0; color: var(--color-fire); }
.vm-google-cta .vm-reviews-more a:hover { background: none; border: none; color: var(--color-fire-dark); }
.vm-google-all { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-body-l); font-weight: var(--weight-bold); color: var(--color-fire); text-decoration: none; transition: color .15s ease; }
.vm-google-all:hover { color: var(--color-fire-dark); }
.vm-google-all svg { width: 18px; height: 18px; }
.vm-google-cta .vm-reviews-more { margin-top: 0; }
.vm-testi { background: var(--color-white); border-top: 1px solid var(--color-ice); }
.vm-testi-head {
display: grid; grid-template-columns: 1fr; gap: var(--space-5);
align-items: center; margin-bottom: var(--space-7);
}
@media (min-width: 900px) { .vm-testi-head { grid-template-columns: 1.5fr 1fr; gap: var(--space-7); } }
.vm-testi-headline {
font-size: clamp(2rem, 4.6vw, 3rem); font-weight: var(--weight-black);
color: var(--text-strong); line-height: 1.04; letter-spacing: var(--ls-display);
margin: var(--space-2) 0 0 0; text-wrap: balance;
}
.vm-testi-rating { display: flex; align-items: center; gap: var(--space-3); }
@media (min-width: 900px) { .vm-testi-rating { justify-content: flex-end; } }
.vm-testi-score { font-size: clamp(3rem, 6vw, 4rem); font-weight: var(--weight-black); color: var(--color-navy); line-height: 0.9; }
.vm-testi-rating-col { display: flex; flex-direction: column; gap: 4px; }
.vm-testi-big-stars { display: inline-flex; gap: 3px; }
.vm-testi-big-stars svg { width: 22px; height: 22px; color: var(--color-fire); fill: var(--color-fire); }
.vm-testi-rating-meta { font-size: var(--text-body); color: var(--text-muted); max-width: 18ch; line-height: 1.35; }
.vm-testi-cards { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 700px) { .vm-testi-cards { grid-template-columns: repeat(3, 1fr); } }
.vm-testi-card {
background: var(--color-white); border: 1px solid var(--color-ice);
border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
padding: var(--space-5); display: flex; flex-direction: column;
transition: transform .16s ease, box-shadow .16s ease;
}
.vm-testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vm-testi-card .vm-testi-quote {
font-size: var(--text-body-l); line-height: 1.45; color: var(--text-strong);
margin: var(--space-3) 0 var(--space-5) 0; flex: 1 1 auto;
}
.vm-testi-card .vm-testi-author { font-size: var(--text-body); font-weight: var(--weight-black); color: var(--color-navy); }
.vm-logos { text-align: center; }
.vm-logos-label {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted);
margin: 0 0 var(--space-5) 0;
}
.vm-logos-row {
display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
gap: var(--space-5) var(--space-7);
}
.vm-logos-row image-slot { display: block; width: 200px; height: 84px; }
.vm-logos-row image-slot::part(frame) { background: rgba(13,27,42,0.03); }
.vm-coref { background: var(--gradient-navy); }
.vm-coref-card {
display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center;
}
@media (min-width: 820px) { .vm-coref-card { grid-template-columns: 200px 1fr; gap: var(--space-7); } }
.vm-coref-logo image-slot { display: block; width: 100%; height: 120px; }
.vm-coref-logo image-slot::part(frame) { background: rgba(255,255,255,0.06); }
.vm-coref-logo image-slot::part(ring) { border-color: rgba(255,255,255,0.45); }
.vm-coref-logo image-slot::part(empty) { color: rgba(255,255,255,0.85); }
.vm-coref-quote {
font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-weight: var(--weight-bold);
color: var(--color-white); line-height: 1.32; letter-spacing: -0.01em;
margin: 0 0 var(--space-4) 0; text-wrap: pretty;
}
.vm-coref-quote .fire { color: var(--color-fire); }
.vm-coref-by { display: flex; align-items: center; gap: var(--space-3); }
.vm-coref-by-name { font-size: var(--text-body-l); font-weight: var(--weight-black); color: var(--color-white); line-height: 1.2; }
.vm-coref-by-title { font-size: var(--text-body); color: var(--color-slate-200); }
.vm-liiketila { background: var(--color-amber); }
.vm-liiketila .vm-intro .vm-eyebrow {
font-size: clamp(0.95rem, 1.75vw, 1.25rem);
letter-spacing: 0.02em;
margin-bottom: var(--space-3);
}
.vm-liiketila-top {
display: grid; grid-template-columns: 1fr; gap: var(--space-6);
align-items: center; margin-bottom: var(--space-8);
}
.vm-liiketila-img image-slot {
display: block; width: 100%; aspect-ratio: 3 / 2; height: auto;
box-shadow: var(--shadow-md);
}
@media (min-width: 860px) { .vm-liiketila-img image-slot { aspect-ratio: 3 / 2; height: auto; } }
.vm-liiketila-img .vm-liiketila-photo {
display: block; width: 100%; aspect-ratio: 3 / 2; height: auto;
object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-md);
}
@media (min-width: 860px) {
.vm-liiketila-top { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); }
}
.vm-clients-ribbon {
display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
gap: var(--space-6) var(--space-8); margin-top: var(--space-6);
}
.vm-client-logo-img { display: block; width: auto; }
.vm-client-logo-img.tools { height: 60px; }
.vm-client-logo-img.diak  { height: 78px; }
.vm-client-logo-img.rinne { height: 80px; }
.vm-clients-ribbon image-slot { display: block; width: 170px; height: 72px; }
.vm-clients-ribbon image-slot::part(frame) { background: rgba(13,27,42,0.03); }
.vm-cref-card {
margin-top: var(--space-7);
display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center;
background: var(--color-white); border: 1px solid var(--color-ice);
border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
padding: var(--space-6);
}
@media (min-width: 760px) { .vm-cref-card { grid-template-columns: 220px 1fr; gap: var(--space-7); padding: var(--space-7); } }
.vm-cref-logo { display: flex; align-items: center; justify-content: center; }
.vm-cref-logo img { max-height: 64px; width: auto; display: block; }
.vm-cref-body { min-width: 0; }
.vm-cref-quote {
font-family: var(--font-accent); font-style: italic;
font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.5;
color: var(--text-strong); margin: 0 0 var(--space-4) 0; text-wrap: pretty;
}
.vm-cref-quote.is-placeholder { color: var(--text-muted); }
.vm-cref-by-name { font-size: var(--text-body-l); font-weight: var(--weight-black); color: var(--color-navy); }
.vm-cref-by-title { font-size: var(--text-body); color: var(--text-muted); }
.vm-cref-attr { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-4); }
.vm-cref-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.vm-cref-logo .vm-cref-photo { max-height: none; width: 190px; height: 190px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.vm-cref-toolsmark { height: 30px; width: auto; flex-shrink: 0; }
.vm-services-grid {
display: grid; grid-template-columns: 1fr; gap: var(--space-4);
margin-top: var(--space-6);
}
@media (min-width: 600px) { .vm-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vm-services-grid { grid-template-columns: repeat(4, 1fr); } }
.vm-service {
background: var(--color-white);
border: 1px solid var(--color-ice);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
padding: var(--space-5);
transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.vm-service:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: var(--color-fire);
}
.vm-service-icon {
width: 52px; height: 52px; border-radius: var(--radius-md);
background: var(--color-navy);
display: flex; align-items: center; justify-content: center;
margin-bottom: var(--space-4);
transition: background .16s ease;
}
.vm-service:hover .vm-service-icon { background: var(--color-fire); }
.vm-service-icon svg { width: 24px; height: 24px; color: var(--color-white); }
.vm-service-icon svg { overflow: visible; }
@media (prefers-reduced-motion: no-preference) {
.vm-svc-truck { transform-box: fill-box; transform-origin: 50% 100%; }
.vm-service:hover .vm-svc-truck { animation: vm-svc-drive 1.1s ease-in-out infinite; }
.vm-svc-lid { transform-box: fill-box; transform-origin: 0% 50%; }
.vm-service:hover .vm-svc-lid { animation: vm-svc-lid 1.6s ease-in-out infinite; }
.vm-svc-smoke circle { transform-box: fill-box; transform-origin: center; opacity: 0; }
.vm-service:hover .vm-svc-smoke circle { animation: vm-svc-smoke 2s ease-out infinite; }
.vm-service:hover .vm-svc-smoke circle:nth-of-type(2) { animation-delay: .66s; }
.vm-service:hover .vm-svc-smoke circle:nth-of-type(3) { animation-delay: 1.33s; }
.vm-svc-win { opacity: .35; }
.vm-service:hover .vm-svc-win { animation: vm-svc-win 2s ease-in-out infinite; }
.vm-service:hover .vm-svc-win.w2 { animation-delay: .25s; }
.vm-service:hover .vm-svc-win.w3 { animation-delay: .5s; }
.vm-service:hover .vm-svc-win.w4 { animation-delay: .75s; }
}
@keyframes vm-svc-drive {
0%, 100% { transform: translateX(0) rotate(0deg); }
25%      { transform: translateX(1.4px) rotate(-1.8deg); }
50%      { transform: translateX(2.2px) rotate(0deg); }
75%      { transform: translateX(1.4px) rotate(1.2deg); }
}
@keyframes vm-svc-lid {
0%, 100% { transform: rotate(0deg); }
35%, 65% { transform: rotate(-26deg); }
}
@keyframes vm-svc-smoke {
0%   { opacity: 0; transform: translateY(0) scale(.5); }
25%  { opacity: .85; }
100% { opacity: 0; transform: translateY(-7px) scale(1.4); }
}
@keyframes vm-svc-win {
0%, 100% { opacity: .35; }
40%, 80% { opacity: 1; }
}
.vm-service h3 {
font-size: var(--text-h3); font-weight: var(--weight-bold);
color: var(--text-strong); margin: 0 0 var(--space-2) 0;
}
.vm-service p { font-size: var(--text-body); line-height: var(--lh-body); color: var(--text-muted); margin: 0; }
@media (max-width: 599px) {
.vm-services-grid { gap: var(--space-3); margin-top: var(--space-5); }
.vm-service {
display: grid; grid-template-columns: auto 1fr;
column-gap: var(--space-4); align-items: center;
padding: var(--space-4);
}
.vm-service-icon { width: 44px; height: 44px; margin-bottom: 0; grid-column: 1; grid-row: 1 / span 3; align-self: center; }
.vm-service-icon svg { width: 22px; height: 22px; }
.vm-service > h3 { grid-column: 2; font-size: 1.0625rem; margin: 0 0 2px 0; }
.vm-service > p { grid-column: 2; }
.vm-service > span { grid-column: 2; margin-top: 6px !important; }
.vm-reviews .vm-service { display: block; }
}
.vm-process { background: var(--color-amber); }
.vm-process-flow {
display: grid; grid-template-columns: 1fr; gap: var(--space-5);
margin-top: var(--space-6);
}
@media (min-width: 860px) {
.vm-process-flow {
grid-template-columns: 1fr auto 1fr auto 1fr;
align-items: start; gap: var(--space-4);
}
}
.vm-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3); }
.vm-step-num {
width: 64px; height: 64px; border-radius: var(--radius-full);
background: var(--color-navy); color: var(--color-white);
display: flex; align-items: center; justify-content: center;
font-size: var(--text-h2); font-weight: var(--weight-black);
box-shadow: var(--shadow-md);
}
.vm-step h3 { font-size: var(--text-h3); font-weight: var(--weight-bold); color: var(--text-strong); margin: 0; }
.vm-step p { font-size: var(--text-body); line-height: var(--lh-body); color: var(--text-muted); margin: 0; max-width: 26ch; }
.vm-connector { display: none; color: var(--color-fire); align-self: center; }
.vm-connector svg { width: 30px; height: 30px; }
@media (min-width: 860px) { .vm-connector { display: block; padding-top: 18px; } }
.vm-cta {
background: var(--color-navy);
position: relative; overflow: hidden;
}
.vm-cta::after {
content: ""; position: absolute; width: 480px; height: 480px;
left: -140px; bottom: -240px;
background: radial-gradient(circle, rgba(255,107,46,0.14) 0%, transparent 65%);
pointer-events: none;
}
.vm-cta-inner { position: relative; text-align: center; }
.vm-cta h2 {
font-size: clamp(1.9rem, 5vw, 2.75rem); font-weight: var(--weight-black);
color: var(--color-white); line-height: 1.08; margin: 0 0 var(--space-3) 0;
}
.vm-cta-sub { font-size: var(--text-body-l); color: var(--color-slate-200); margin: 0 auto var(--space-6) auto; max-width: 44ch; }
.vm-cta-actions {
display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; align-items: center;
}
.vm-cta-phone {
display: inline-flex; align-items: center; gap: 10px;
color: var(--color-white); text-decoration: none;
font-size: var(--text-body-l); font-weight: var(--weight-bold);
padding: 14px 24px; border: 2px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm);
transition: border-color .15s ease, background .15s ease;
}
.vm-cta-phone:hover { border-color: var(--color-fire); background: rgba(255,107,46,0.08); }
.vm-cta-phone--light { color: var(--color-navy); border-color: rgba(13,27,42,0.18); }
.vm-cta-phone--light:hover { background: var(--color-fire); border-color: var(--color-fire); color: var(--color-white); }
.vm-cta-phone--light:hover svg { color: var(--color-white); }
.vm-cta-phone svg { width: 20px; height: 20px; color: var(--color-fire); }
.vm-trust-row {
display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4);
margin-top: var(--space-7); padding-top: var(--space-6);
border-top: 1px solid var(--color-steel);
}
@media (min-width: 760px) { .vm-trust-row { grid-template-columns: repeat(4, 1fr); } }
.vm-trust { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); text-align: center; }
.vm-trust svg { width: 26px; height: 26px; color: var(--color-fire); }
.vm-trust span { font-size: 0.8125rem; font-weight: var(--weight-semibold); color: var(--color-white); line-height: 1.3; }
.vm-footer { background: #0a141f; color: var(--color-slate-200); }
.vm-footer-grid {
display: grid; grid-template-columns: 1fr; gap: var(--space-6);
padding-block: var(--space-7);
}
@media (min-width: 760px) { .vm-footer-grid { grid-template-columns: 2fr 1.3fr 1fr; } }
.vm-footer p.vm-footer-brand-name {
font-size: 1.35rem; font-weight: var(--weight-black); color: var(--color-white);
letter-spacing: .01em; margin: 0 0 var(--space-2) 0; line-height: 1;
}
.vm-footer-tagline { font-family: var(--font-accent); font-style: italic; color: var(--color-slate-200); font-size: var(--text-body-l); margin: 0 0 var(--space-4) 0; }
.vm-footer-logo { display: flex; align-items: center; gap: var(--space-3); margin: 0 0 var(--space-2) 0; }
.vm-footer-logo-img { height: 29px; width: auto; display: block; }
.vm-footer-social { display: flex; gap: var(--space-2); margin: var(--space-4) 0 var(--space-5) 0; }
.vm-footer-social a {
width: 40px; height: 40px; border-radius: var(--radius-md, 12px); padding: 0;
display: grid; place-items: center; color: var(--color-slate-200);
border: 1px solid var(--color-steel); background: transparent;
transition: color .15s ease, border-color .15s ease, background-color .15s ease, transform .12s ease;
}
.vm-footer-social a:hover { color: #fff; border-color: var(--color-fire); background: var(--color-fire); transform: translateY(-2px); }
.vm-footer-social a:active { transform: scale(0.95); }
.vm-footer-social svg { width: 20px; height: 20px; display: block; }
.vm-footer p { font-size: var(--text-body); line-height: var(--lh-body); margin: 0 0 var(--space-2) 0; }
.vm-footer-col h3 {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-fire);
margin: 0 0 var(--space-3) 0;
}
.vm-footer-col a { display: block; text-decoration: none; color: var(--color-slate-200); font-size: var(--text-body); padding-block: 5px; transition: color .15s ease; }
@media (max-width: 759px) {
.vm-footer-col a { padding-block: 12px; }
.vm-footer p.vm-footer-area a { display: inline-block; padding-block: 6px; }
}
.vm-footer-col a:hover { color: var(--color-fire); }
.vm-footer-bottom {
border-top: 1px solid var(--color-steel);
padding-block: var(--space-4);
display: flex; flex-direction: column; gap: var(--space-2);
}
.vm-footer-bottom small { font-size: 0.75rem; color: var(--color-muted); line-height: 1.5; }
.vm-footer-area-label {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-fire);
margin: 0 0 var(--space-2) 0;
}
.vm-footer p.vm-footer-area { font-size: 0.75rem; color: var(--color-muted); line-height: 1.6; max-width: 420px; margin: var(--space-5) 0 0 0; }
@media (min-width: 760px) { .vm-footer p.vm-footer-area { margin-top: 90px; } }
.vm-footer-sitemap { text-align: left; }
@media (min-width: 760px) { .vm-footer-sitemap { text-align: right; } }
.vm-subhero { background: var(--gradient-navy); position: relative; overflow: hidden; padding-top: calc(76px + env(safe-area-inset-top, 0px)); }
.vm-subhero::after {
content: ""; position: absolute; width: 460px; height: 460px; right: -170px; top: -220px;
background: radial-gradient(circle, rgba(255,107,46,0.14) 0%, transparent 65%); pointer-events: none;
}
.vm-subhero-inner { position: relative; padding-block: var(--space-7); }
@media (min-width: 900px) { .vm-subhero-inner { padding-block: var(--space-8); } }
.vm-subhero-grid { position: relative; padding-block: var(--space-7); display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center; }
@media (min-width: 900px) { .vm-subhero-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-7); padding-block: var(--space-8); } }
.vm-subhero-media image-slot { display: block; width: 100%; aspect-ratio: 3 / 2; height: auto; }
@media (min-width: 900px) { .vm-subhero-media image-slot { aspect-ratio: 3 / 2; height: auto; } }
.vm-subhero-media image-slot::part(frame) { background: rgba(255,255,255,0.06); }
.vm-subhero-media image-slot::part(ring) { border-color: rgba(255,255,255,0.55); }
.vm-subhero-media image-slot::part(empty) { color: rgba(255,255,255,0.85); }
.vm-subhero-media img.vm-subhero-img { display: block; width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; border-radius: 16px; background: var(--color-navy); }
@media (min-width: 900px) { .vm-subhero-media img.vm-subhero-img { aspect-ratio: 3 / 2; height: auto; } }
.vm-subhero-media img.vm-subhero-img.contain { object-fit: contain; background: var(--color-white); }
.vm-imgrow { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-7); }
@media (min-width: 720px) { .vm-imgrow { grid-template-columns: repeat(3, 1fr); } }
.vm-imgrow-item { height: 260px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.vm-imgrow-item img { display: block; width: 100%; height: 100%; object-fit: cover; }
.vm-imgrow-item image-slot { display: block; width: 100%; height: 100%; }
.vm-imgrow-item image-slot::part(frame) { background: rgba(13,27,42,0.03); }
.vm-subhero h1 {
font-size: clamp(2rem, 5.5vw, 2.75rem); font-weight: var(--weight-black);
line-height: 1.08; letter-spacing: -0.015em; color: var(--color-white); margin: 0; max-width: 20ch;
}
.vm-subhero .vm-lead { margin-top: var(--space-4); }
.vm-lead { font-size: var(--text-body-l); line-height: var(--lh-body); color: var(--color-slate-200); max-width: 54ch; margin: 0; }
.vm-lead.on-light { color: var(--text-muted); }
.vm-prose { max-width: var(--content-max); }
.vm-prose p { font-size: var(--text-body-l); line-height: 1.75; color: var(--text-body); margin: 0 0 var(--space-4) 0; }
.vm-prose p:last-child { margin-bottom: 0; }
.vm-prose h2 { font-size: var(--text-h2); font-weight: var(--weight-black); color: var(--text-strong); margin: var(--space-7) 0 var(--space-3) 0; letter-spacing: var(--ls-display); }
.vm-prose .vm-pull { font-family: var(--font-accent); font-style: italic; font-size: 1.375rem; line-height: 1.5; color: var(--color-navy); border-left: 3px solid var(--color-fire); padding-left: var(--space-4); margin: var(--space-6) 0; }
.vm-prose-img { display: block; width: 100%; margin: var(--space-6) 0; }
.vm-palvelu-wrap { max-width: none; }
.vm-palvelu-grid { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
.vm-palvelu-card { display: flex; flex-direction: column; border: 1px solid var(--color-ice); border-radius: var(--radius-lg); overflow: hidden; background: var(--color-white); box-shadow: var(--shadow-sm); }
.vm-palvelu-card > img { display: block; width: 100%; height: auto; }
.vm-palvelu-card-body { padding: var(--space-5); }
@media (min-width: 640px) {
.vm-palvelu-card { flex-direction: row; align-items: stretch; }
.vm-palvelu-card > img { width: 40%; max-width: 300px; height: auto; align-self: center; flex-shrink: 0; }
.vm-palvelu-card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
}
.vm-prose .vm-palvelu-card-body h2 { margin: 0 0 var(--space-2) 0; font-size: var(--text-h3); }
.vm-prose .vm-palvelu-card-body p { margin: 0; }
.vm-prose-img image-slot { display: block; width: 100%; height: 280px; }
@media (min-width: 720px) { .vm-prose-img image-slot { height: 360px; } }
.vm-band-img { display: block; width: 100%; }
.vm-band-img image-slot { display: block; width: 100%; height: 300px; }
@media (min-width: 720px) { .vm-band-img image-slot { height: 440px; } }
.vm-features { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-6); }
@media (min-width: 700px) { .vm-features { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); } }
.vm-feature { display: flex; gap: var(--space-3); align-items: flex-start; }
.vm-feature-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--color-amber); display: flex; align-items: center; justify-content: center; }
.vm-feature-ic svg { width: 22px; height: 22px; color: var(--color-fire); }
.vm-feature h3 { font-size: var(--text-h3); font-weight: var(--weight-bold); color: var(--text-strong); margin: 0 0 4px 0; }
.vm-feature p { font-size: var(--text-body); line-height: var(--lh-body); color: var(--text-muted); margin: 0; }
.vm-pricing { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-6); }
@media (min-width: 820px) { .vm-pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.vm-pricing-note { margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3); }
.vm-faq { max-width: var(--content-max); margin-top: var(--space-6); border-top: 1px solid var(--color-ice); }
.vm-faq-item { border-bottom: 1px solid var(--color-ice); }
.vm-faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: var(--space-4) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); font-family: var(--font-base); font-size: var(--text-h3); font-weight: var(--weight-bold); color: var(--text-strong); }
.vm-faq-q svg { width: 22px; height: 22px; color: var(--color-fire); flex-shrink: 0; transition: transform .18s ease; }
.vm-faq-item.open .vm-faq-q svg { transform: rotate(45deg); }
.vm-faq-a { font-size: var(--text-body-l); line-height: 1.7; color: var(--text-muted); padding: 0 0 var(--space-4) 0; margin: 0; max-width: 62ch; }
.vm-contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); margin-top: var(--space-6); }
@media (min-width: 900px) { .vm-contact-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-7); align-items: start; } }
.vm-form { display: grid; gap: var(--space-4); }
.vm-form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 560px) { .vm-form-row { grid-template-columns: 1fr 1fr; } }
.vm-textarea-wrap label { display: block; margin-bottom: var(--space-2); font-family: var(--font-base); font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-navy); }
.vm-textarea { width: 100%; box-sizing: border-box; padding: 11px 14px; font-family: var(--font-base); font-size: var(--text-body); color: var(--text-body); background: var(--color-white); border: 1px solid var(--color-ice); border-radius: var(--radius-sm); outline: none; resize: vertical; min-height: 130px; transition: border-color .15s ease; }
.vm-textarea:focus { border: 2px solid var(--color-fire); padding: 10px 13px; }
.vm-contact-line { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-ice); text-decoration: none; }
.vm-contact-line svg { width: 22px; height: 22px; color: var(--color-fire); flex-shrink: 0; }
.vm-contact-line .l { font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted); }
.vm-contact-line .v { font-size: var(--text-body-l); font-weight: var(--weight-bold); color: var(--text-strong); transition: color 150ms ease; }
a.vm-contact-line { transition: border-color 150ms ease; }
a.vm-contact-line svg { transition: transform 150ms ease; }
a.vm-contact-line:hover .v { color: var(--color-fire); }
a.vm-contact-line:hover { border-bottom-color: var(--color-fire); }
a.vm-contact-line:hover svg { transform: scale(1.08); }
.vm-form-done { background: var(--color-amber); border-radius: var(--radius-lg); padding: var(--space-6); text-align: center; }
.vm-hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.vm-form-done h3 { font-size: var(--text-h2); font-weight: var(--weight-black); color: var(--text-strong); margin: 0 0 var(--space-2) 0; }
.vm-form-done p { font-size: var(--text-body-l); color: var(--text-body); margin: 0; line-height: var(--lh-body); }
.vm-done-truck { display: flex; justify-content: center; margin-bottom: var(--space-4); overflow: hidden; }
.vm-done-truck svg { width: 56px; height: 56px; color: var(--color-navy); }
@media (prefers-reduced-motion: no-preference) {
.vm-done-truck svg { animation: vm-truck-drive 1.2s cubic-bezier(.22, 1, .36, 1) both; }
}
@keyframes vm-truck-drive {
0% { transform: translateX(-160px); opacity: 0; }
55% { opacity: 1; }
80% { transform: translateX(10px); }
100% { transform: translateX(0); opacity: 1; }
}
.vm-calc-cta { background: var(--color-amber); }
.vm-calc-card {
background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden;
box-shadow: var(--shadow-lg); padding: var(--space-6);
display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center;
}
@media (min-width: 720px) {
.vm-calc-card { grid-template-columns: 1.5fr 0.85fr; gap: var(--space-7); padding: var(--space-7); }
.vm-calc-card-img { margin-bottom: calc(-1 * var(--space-7)); }
}
.vm-calc-card-actions { margin-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.vm-calc-card-img { display: block; width: 100%; max-width: 280px; height: auto; border-radius: var(--radius-md) var(--radius-md) 0 0; justify-self: center; align-self: end; margin-bottom: calc(-1 * var(--space-6)); }
.vm-calc-cta-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center; }
@media (min-width: 900px) { .vm-calc-cta-grid { grid-template-columns: 1fr 2fr; gap: var(--space-7); } }
@media (max-width: 560px) { .vm-quotecalc-img { display: none !important; } }
.vm-calc-cta h2 { font-size: var(--text-h2); font-weight: var(--weight-black); color: var(--text-strong); margin: 0 0 var(--space-3) 0; letter-spacing: var(--ls-display); }
@media (min-width: 900px) { .vm-calc-cta h2 { font-size: var(--text-h1); } }
.vm-intro { max-width: 60ch; }
.vm-intro h2 { font-size: var(--text-h2); font-weight: var(--weight-black); color: var(--text-strong); margin: 0 0 var(--space-3) 0; letter-spacing: var(--ls-display); }
.vm-clamp-list { display: grid; gap: var(--space-2); margin: var(--space-4) 0 0 0; padding: 0; list-style: none; }
.vm-clamp-list li { display: flex; gap: var(--space-2); align-items: flex-start; font-size: var(--text-body-l); line-height: var(--lh-body); color: var(--text-body); }
.vm-clamp-list li svg { width: 20px; height: 20px; color: var(--color-fire); flex-shrink: 0; margin-top: 3px; }
.vm-checklist { display: grid; gap: var(--space-5); margin-top: var(--space-6); }
.vm-guide { max-width: 720px; }
.vm-guide-block { margin-top: var(--space-6); }
.vm-guide-block h2 { font-size: var(--text-h2); font-weight: var(--weight-black); color: var(--color-navy); margin: 0 0 var(--space-3) 0; }
.vm-guide-block h3 { font-size: var(--text-h3); font-weight: var(--weight-bold); color: var(--text-strong); margin: 0 0 var(--space-2) 0; }
.vm-guide-block > p { font-size: var(--text-body-l); line-height: var(--lh-body); color: var(--text-body); margin: 0 0 var(--space-3) 0; }
.vm-guide-tip { background: var(--color-amber); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); font-size: var(--text-body); line-height: 1.5; color: var(--text-body); margin: var(--space-6) 0 var(--space-5) 0; }
.vm-guide-more { margin-top: var(--space-8); }
.vm-guide-nav { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.vm-guide-nav-link {
display: inline-flex; align-items: center; gap: 8px;
padding: 9px 16px; border-radius: 999px;
background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2);
color: var(--color-slate-200); text-decoration: none;
font-size: 0.8125rem; font-weight: var(--weight-bold); line-height: 1;
transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.vm-guide-nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.vm-guide-nav-link:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.4); color: var(--color-white); transform: translateY(-1px); }
.vm-guide-nav-link.active { background: var(--color-fire); border-color: var(--color-fire); color: var(--color-white); box-shadow: var(--shadow-fire); }
.vm-guide-nav-link.active:hover { background: var(--color-fire-dark); border-color: var(--color-fire-dark); transform: none; }
.vm-phase {
position: relative; background: var(--color-white);
border: 1px solid var(--color-ice); border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm); padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
display: grid; grid-template-columns: 1fr; gap: var(--space-4); align-items: center;
}
@media (min-width: 820px) { .vm-phase { grid-template-columns: 1fr 240px; gap: var(--space-6); } }
.vm-phase-img { display: block; width: 200px; max-width: 100%; margin: 0 auto; aspect-ratio: 900 / 700; height: auto; }
@media (min-width: 820px) { .vm-phase-img { width: 100%; } }
.vm-phase::before {
content: ""; position: absolute; left: 0; top: var(--space-5); bottom: var(--space-5);
width: 4px; border-radius: 4px; background: var(--color-fire);
}
.vm-phase-head { display: flex; align-items: baseline; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-4); }
.vm-phase-when {
font-size: var(--text-caption); font-weight: var(--weight-bold);
letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-fire);
background: var(--color-fire-20); padding: 4px 12px; border-radius: var(--radius-full);
}
.vm-phase h3 { font-size: var(--text-h3); font-weight: var(--weight-black); color: var(--text-strong); margin: 0; letter-spacing: var(--ls-display); }
.vm-check-list { display: grid; gap: var(--space-3); margin: 0; padding: 0; list-style: none; }
.vm-check-list li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-body-l); line-height: var(--lh-body); color: var(--text-body); }
.vm-check-list li > i, .vm-check-list li > svg {
width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
display: inline-flex; align-items: center; justify-content: center;
border-radius: var(--radius-full); background: var(--color-amber); color: var(--color-navy); padding: 3px;
}
.vm-check-list li strong { color: var(--text-strong); font-weight: var(--weight-bold); }
.vm-checklist-note {
margin-top: var(--space-6); padding: var(--space-5) var(--space-6);
background: var(--color-amber); border-radius: var(--radius-lg);
display: flex; gap: var(--space-4); align-items: flex-start;
}
.vm-checklist-note > i, .vm-checklist-note > svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--color-fire); margin-top: 2px; }
.vm-checklist-note p { margin: 0; font-size: var(--text-body-l); line-height: var(--lh-body); color: var(--text-body); }
.vm-checklist-note p strong { color: var(--color-navy); }


.vm-quickbar {
position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
display: none; gap: var(--space-2); padding: var(--space-2) var(--space-3);
padding-bottom: calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
background: var(--color-navy); border-top: 1px solid rgba(255,255,255,.10);
box-shadow: 0 -6px 24px rgba(13,27,42,.30);
}
.vm-quickbar a {
flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
height: 52px; border-radius: var(--radius-button, 8px); white-space: nowrap;
font-family: var(--font-base); font-weight: var(--weight-bold);
font-size: var(--text-ingress, 16px); text-decoration: none; transition: transform .12s ease, background-color .15s ease;
}
.vm-quickbar .call { flex: 1 1 0; padding: 0 var(--space-2); background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.vm-quickbar .quote { flex: 2 1 0; background: var(--color-fire); color: #fff; }
.vm-quickbar.calc-only .call { flex: 1 1 100%; background: var(--color-navy); color: #fff; border: 2px solid rgba(255,255,255,.85); height: 56px; font-size: 1.05rem; }
.vm-quickbar a:active { transform: scale(0.97); }
.vm-quickbar svg { width: 18px; height: 18px; }
@media (max-width: 760px) {
.vm-quickbar { display: flex; }
body { padding-bottom: 76px; }
}
.vm-calc-sticky {
position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 900;
display: flex; flex-direction: row; align-items: center; gap: var(--space-4);
background: var(--color-navy); color: var(--color-white);
border-radius: 20px; padding: 10px 16px; min-width: 500px;
box-shadow: var(--shadow-lg); max-width: calc(100vw - 24px);
}
.vm-calc-sticky-row { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.vm-calc-progress { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 200px; }
.vm-calc-progress-bar { display: flex; align-items: center; gap: 10px; }
.vm-calc-progress-track { position: relative; flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,.18); }
.vm-calc-progress-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--color-fire) 0%, #ffb27d 45%, #fff2e6 50%, #ffb27d 55%, var(--color-fire) 100%); background-size: 220% 100%; box-shadow: 0 0 8px rgba(255,107,46,.55); transition: width .45s cubic-bezier(.4,0,.2,1); }
.vm-calc-progress-fill::after { content: ''; position: absolute; right: 0; top: 50%; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px 2px rgba(255,200,150,.95); }
@media (prefers-reduced-motion: no-preference) {
.vm-calc-progress-fill { animation: vmFillCharge 3s linear infinite, vmFillGlow 3.6s ease-in-out infinite; }
.vm-calc-progress-fill::after { animation: vmSparkPulse 2.2s ease-in-out infinite; }
}
@keyframes vmFillCharge { 0% { background-position: 220% 0; } 100% { background-position: -220% 0; } }
@keyframes vmFillGlow { 0%, 100% { box-shadow: 0 0 6px rgba(255,107,46,.5); } 50% { box-shadow: 0 0 15px rgba(255,107,46,.95); } }
@keyframes vmSparkPulse { 0%, 100% { opacity: .5; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.35); } }
.vm-calc-progress-node { position: absolute; top: 50%; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background .3s ease, box-shadow .3s ease; }
.vm-calc-progress-node.done { background: #fff; box-shadow: 0 0 0 3px rgba(255,107,46,.4); }
.vm-calc-progress-truck { flex-shrink: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); transition: background .35s ease, color .35s ease, box-shadow .35s ease; }
.vm-calc-progress-truck svg { width: 18px; height: 18px; }
.vm-calc-progress-truck.done { background: var(--color-fire); color: #fff; box-shadow: 0 4px 14px rgba(255,107,46,.5); animation: vmTruckPop .5s ease; }
@keyframes vmTruckPop { 0% { transform: scale(.6); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.vm-calc-progress-cap { font-size: var(--text-caption); font-weight: var(--weight-bold); letter-spacing: .02em; color: rgba(255,255,255,.72); }
.vm-calc-progress-cap.done { color: #fff; }
@media (min-width: 761px) {
.vm-calc-sticky { min-width: 640px; padding: 14px 24px; gap: var(--space-5); }
.vm-calc-sticky-num { font-size: 1.55rem; }
.vm-calc-sticky-label { font-size: var(--text-body); letter-spacing: 0.12em; }
.vm-calc-sticky-btn { padding: 12px 22px; font-size: var(--text-body-l, 16px); }
.vm-calc-progress { gap: 7px; }
.vm-calc-progress-track { height: 10px; }
.vm-calc-progress-node { width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; }
.vm-calc-progress-truck { width: 38px; height: 38px; }
.vm-calc-progress-truck svg { width: 23px; height: 23px; }
.vm-calc-progress-cap { font-size: var(--text-body); }
}
.vm-calc-sticky-label { font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,.65); white-space: nowrap; }
.vm-calc-sticky-num { font-weight: var(--weight-black); font-size: 1.25rem; white-space: nowrap; }
.vm-calc-sticky-num.pending { font-size: var(--text-body); font-weight: var(--weight-bold); color: rgba(255,255,255,.85); }
.vm-calc-sticky.toofar { border: 2px solid var(--color-fire); }
.vm-calc-sticky-err { font-size: var(--text-body); font-weight: var(--weight-bold); line-height: 1.45; color: var(--color-white); max-width: 46ch; }
.vm-calc-sticky-btn {
border: none; cursor: pointer; background: var(--color-fire); color: var(--color-white);
font-family: inherit; font-weight: var(--weight-bold); font-size: var(--text-body);
height: 40px; padding: 0 var(--space-4); border-radius: 999px; white-space: nowrap;
transition: filter .15s ease, transform .15s ease;
}
.vm-calc-sticky-btn:hover { filter: brightness(0.92); }
.vm-calc-sticky-btn:active { transform: scale(0.97); }
@media (max-width: 760px) {
.vm-calc-sticky { flex-direction: column; align-items: stretch; gap: 10px; bottom: 0; left: 0; right: 0; transform: none; width: 100%; max-width: none; min-width: 0; border-radius: 16px 16px 0 0; padding: 12px var(--space-4); padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
.vm-calc-progress { min-width: 0; }
.vm-calc-sticky-row { justify-content: space-between; }
.vm-calc-sticky-label { display: none; }
}
@media print { .vm-calc-sticky { display: none !important; } }
@media print { .vm-quickbar, .vm-consent { display: none !important; } }
.vm-skip-link {
position: fixed; top: -100px; left: var(--space-3); z-index: 2000;
background: var(--color-navy); color: #fff; padding: 12px 20px;
border-radius: var(--radius-button, 8px); font-family: var(--font-base);
font-weight: var(--weight-bold); text-decoration: none;
box-shadow: var(--shadow-lg, 0 10px 40px rgba(13,27,42,.3));
transition: top .18s ease;
}
.vm-skip-link:focus { top: var(--space-3); outline: 2px solid var(--color-fire); outline-offset: 2px; }
#main:focus { outline: none; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
outline: 2px solid var(--color-fire); outline-offset: 2px; border-radius: 4px;
}
.vm-footer p.vm-footer-area a { color: inherit; text-decoration: none; transition: color .15s ease; }
.vm-footer p.vm-footer-area a:hover { color: var(--color-fire); }
.vm-consent {
position: fixed; left: 0; right: 0; bottom: 0; z-index: 1400;
background: #fff; border-top: 1px solid var(--color-ice, #e6e9ee);
box-shadow: 0 -8px 30px rgba(13,27,42,.18);
padding: 12px var(--space-4); padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.vm-consent-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.vm-consent p { margin: 0; flex: 1 1 320px; font-size: var(--text-body, 14px); line-height: 1.55; color: var(--color-navy, #0D1B2A); }
.vm-consent-actions { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.vm-consent-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 var(--space-4); border: 0; border-radius: var(--radius-button, 8px); font-family: var(--font-base); font-weight: var(--weight-bold); font-size: var(--text-body, 14px); line-height: 1; cursor: pointer; transition: background-color .15s ease, color .15s ease, transform .12s ease; }
.vm-consent-btn.primary { background: var(--color-fire); color: #fff; }
.vm-consent-btn.primary:hover { background: var(--color-fire-dark); }
.vm-consent-btn.secondary { background: #fff; color: var(--color-navy); border: 2px solid var(--color-navy); }
.vm-consent-btn.secondary:hover { background: var(--color-navy); color: #fff; }
.vm-consent-btn:active { transform: scale(.97); }
.vm-consent-reopen { background: none; border: 0; padding: 0; font-family: inherit; font-size: 0.75rem; color: inherit; text-decoration: underline; cursor: pointer; }
.vm-consent-reopen:hover { color: var(--color-fire); }
/* Mobiilissa: minimaalinen ilmoitus, joka istuu kiinteiden alapainikkeiden YLÄPUOLELLA. */
@media (max-width: 760px) {
.vm-consent { bottom: var(--vm-consent-bottom, 0px); padding: 10px var(--space-3); padding-bottom: 10px; border-radius: 14px 14px 0 0; max-height: 22vh; overflow-y: auto; box-shadow: 0 -6px 20px rgba(13,27,42,.16); }
.vm-consent-inner { gap: 8px; }
.vm-consent p { flex: 1 1 100%; font-size: 0.75rem; line-height: 1.4; }
.vm-consent-actions { width: 100%; gap: 8px; }
.vm-consent-actions > * { flex: 1 1 0; }
/* Mobiilissa molemmat napit samanlaiset — fire-korostus varataan "Laske muuton hinta" -painikkeelle. */
.vm-consent-btn { min-height: 44px; padding: 0 var(--space-2); font-size: 0.8125rem; }
.vm-consent-btn.primary { background: #fff; color: var(--color-navy); border: 2px solid var(--color-navy); }
.vm-consent-btn.primary:hover { background: var(--color-navy); color: #fff; }
}

.vm-supply-step { margin-bottom: var(--space-5); }
.vm-supply { border: 1px solid var(--color-ice); border-radius: var(--radius-md); padding: var(--space-3) var(--space-4); background: #f6f7f9; transition: border-color .15s ease, background .15s ease; }
.vm-supply.on { border-color: var(--color-fire); background: rgba(255,107,46,0.06); }
.vm-supply .vm-check-row { align-items: flex-start; }
.vm-supply-lbl { display: flex; flex-direction: column; gap: 2px; }
.vm-supply-lbl-main { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-muted); line-height: 1.3; }
.vm-supply.on .vm-supply-lbl-main { color: var(--text-strong); }
.vm-supply-lbl-sub { font-size: var(--text-caption); font-weight: 400; color: var(--text-muted); line-height: 1.35; }
.vm-supply-body { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--color-ice); }
.vm-supply-packs { display: flex; flex-direction: column; gap: var(--space-2); }
.vm-supply-pack { position: relative; overflow: hidden; display: flex; flex-direction: row; align-items: center; gap: var(--space-3); text-align: left; font: inherit; cursor: pointer; padding: var(--space-3); border: 1px solid var(--color-ice); border-radius: var(--radius-sm); background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.vm-supply-pack-ic { display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; width: 30px; color: var(--color-navy); }
.vm-supply-pack-letter { font-size: 10px; font-weight: var(--weight-black, 900); letter-spacing: .08em; line-height: 1; color: var(--text-muted); }
.vm-supply-pack.on .vm-supply-pack-letter { color: var(--color-fire); }
.vm-supply-pack.on .vm-supply-pack-ic { color: var(--color-fire); }
.vm-supply-pack-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.vm-supply-pack:hover { border-color: #c7ced9; }
.vm-supply-pack.on { border-color: var(--color-fire); box-shadow: 0 0 0 2px rgba(255,107,46,0.25); }
.vm-supply-pack-name { font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-strong); line-height: 1.2; }
.vm-supply-pack-hint { display: block; font-size: var(--text-caption); font-weight: 400; color: var(--text-muted); line-height: 1.3; }
.vm-supply-pack-items { display: flex; flex-wrap: wrap; gap: 0 5px; font-size: var(--text-caption); color: var(--text-muted); line-height: 1.4; }
.vm-supply-pack-item { white-space: nowrap; }
.vm-supply-pack-price { flex-shrink: 0; text-align: right; font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--color-fire); white-space: nowrap; }
.vm-supply-qty { display: flex; flex-direction: column; gap: var(--space-2); }
.vm-supply-qty-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-2) var(--space-3); border: 1px solid var(--color-ice); border-radius: var(--radius-sm); background: #fff; }
.vm-supply-qty-lbl { display: flex; flex-direction: column; gap: 1px; font-size: var(--text-body); color: var(--text-strong); }
.vm-supply-qty-spec { font-size: var(--text-caption); color: var(--text-muted); line-height: 1.3; }
.vm-supply-qty-price { font-size: var(--text-caption); color: var(--text-muted); }
.vm-supply-stepper { display: inline-flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.vm-supply-stepper button { width: 40px; height: 40px; border: 1px solid var(--color-ice); border-radius: var(--radius-sm); background: #fff; color: var(--color-navy); font-size: 18px; font-weight: var(--weight-bold); line-height: 1; cursor: pointer; transition: border-color .15s ease, color .15s ease; }
.vm-supply-stepper button:hover { border-color: var(--color-fire); color: var(--color-fire); }
.vm-supply-qty-num { min-width: 26px; text-align: center; font-size: var(--text-body); font-weight: var(--weight-bold); color: var(--text-strong); }
.vm-supply-sum { margin: 0; font-size: var(--text-caption); font-weight: var(--weight-bold); color: var(--text-strong); }
.vm-supply-note { margin: 0; font-size: var(--text-caption); color: var(--text-muted); line-height: 1.35; }

.vm-supply-pack.has-ribbon { padding-right: 34px; }
.vm-supply-pack-ribbon { position: absolute; top: 16px; right: -32px; width: 116px; padding: 2px 0; transform: rotate(45deg); background: var(--color-fire); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-align: center; line-height: 1.5; pointer-events: none; }

.vm-heard { margin-top: var(--space-4); padding: var(--space-3); border: 1px solid var(--color-ice); border-radius: var(--radius-md); background: #f6f7f9; display: flex; flex-direction: column; gap: var(--space-2); }
.vm-heard-q { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 6px; margin: 0; font-size: var(--text-caption); font-weight: var(--weight-bold); color: var(--text-strong); }
.vm-heard-opt-note { font-size: var(--text-caption); font-weight: 400; color: var(--text-muted); }
.vm-heard-opts { display: flex; flex-wrap: wrap; gap: 5px; }
.vm-heard-chip { font: inherit; font-size: 12px; font-weight: var(--weight-bold); line-height: 1.2; color: var(--text-body); background: #fff; border: 1px solid var(--color-ice); border-radius: 999px; padding: 7px 11px; cursor: pointer; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.vm-heard-chip:hover { border-color: #c7ced9; }
.vm-heard-chip.on { border-color: var(--color-fire); color: var(--color-fire); background: rgba(255,107,46,0.08); }
.vm-heard-other { width: 100%; padding: var(--space-2) var(--space-3); border: 1px solid var(--color-ice); border-radius: var(--radius-sm); font: inherit; font-size: var(--text-caption); color: var(--text-strong); background: #fff; }
.vm-heard-other:focus { outline: none; border-color: var(--color-fire); box-shadow: 0 0 0 2px rgba(255,107,46,0.2); }
