﻿/* =====================================================================
   Helsingin Valomainos – teeman tyylit
   Värit yrityksen logosta: syvä laivastonsininen + sähkönsininen.
   Lämmin valkoinen paperi, hiusviivat, yksi korostusväri.
   ===================================================================== */

:root {
	--navy: #050a30;
	--navy-2: #0b1140;
	--blue: #0212ee;
	--blue-deep: #0a0fb5;
	--ink: #12152a;
	--paper: #f6f5f0;
	--paper-2: #edebe4;
	--white: #ffffff;
	--line: #d8d5cb;
	--line-dark: rgba(255, 255, 255, 0.14);
	--mute: #5d6273;
	--mute-2: #8a8f9e;
	--amber: #ffb547;
	--ok: #1f8f4e;
	--err: #c8321f;

	--font: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

	--wrap: 1280px;
	--gutter: clamp(16px, 4vw, 40px);
	--header-h: 76px;
	--radius: 2px;
	--sec: clamp(64px, 9vw, 120px);
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; color: inherit; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--navy); color: var(--white); padding: 10px 14px; }
.skip-link:focus { left: 8px; }
.hv-main { display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.ic { width: 1.1em; height: 1.1em; flex: 0 0 auto; }

/* ---------- typografia ---------- */
.kicker { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--blue); flex: 0 0 auto; }
.kicker--light { color: rgba(255, 255, 255, 0.72); }
.kicker--light::before { background: var(--amber); }
.kicker--plain::before { display: none; }
.sec-title { font-size: clamp(30px, 4vw, 46px); max-width: 18ch; }
.sec-title--wide { max-width: 26ch; }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; color: var(--mute); max-width: 60ch; margin: 18px 0 0; }
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head--row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.sec-head--row .lead { margin-top: 14px; }
.tlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--blue); }
.tlink .ic { transition: transform 0.3s var(--ease); }
.tlink:hover .ic { transform: translateX(4px); }
.prose p { max-width: 68ch; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 1.6em 0 0.6em; }
.prose h3 { font-size: clamp(19px, 2vw, 22px); margin: 1.4em 0 0.5em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.2em; list-style: disc; max-width: 68ch; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4em; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 2px solid var(--blue); padding-left: 20px; margin: 1.5em 0; color: var(--mute); }

/* ---------- painikkeet ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: var(--radius); font-weight: 600; font-size: 15px; letter-spacing: 0.005em; border: 1px solid transparent; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease); white-space: nowrap; }
.btn .ic { transition: transform 0.3s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-deep); color: var(--white); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--blue); color: var(--white); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--amber); color: var(--navy); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--ghost-light { border-color: rgba(255, 255, 255, 0.35); color: var(--white); background: transparent; }
.btn--ghost-light:hover { border-color: var(--white); color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn--sm { min-height: 42px; padding: 0 16px; font-size: 14px; }

/* ---------- ylätunniste ---------- */
.hv-header { position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--header-h); background: rgba(246, 245, 240, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); color: var(--ink); transition: background 0.4s, color 0.4s, border-color 0.4s; }
.hv-header.is-transparent:not(.is-scrolled):not(.is-open) { background: transparent; border-color: transparent; color: var(--white); backdrop-filter: none; -webkit-backdrop-filter: none; }
.hv-header__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hv-header__logo { display: block; }
.hv-logo { width: 176px; height: auto; display: block; }
.hv-logo .st0 { fill: var(--blue); }
.hv-logo .st1 { fill: currentColor; }
.hv-header.is-transparent:not(.is-scrolled):not(.is-open) .hv-logo .st0 { fill: var(--white); }
.hv-logo--light .st0 { fill: var(--white); }
.hv-logo--light .st1 { fill: var(--white); }
.hv-header__actions { display: flex; align-items: center; gap: 18px; }
.hv-header__phone { display: none; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; }
.hv-burger { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -8px; }
.hv-burger .ic { width: 24px; height: 24px; }
.hv-burger .ic-close, .hv-burger[aria-expanded="true"] .ic-open { display: none; }
.hv-burger[aria-expanded="true"] .ic-close { display: block; }

.hv-nav { display: none; }
.hv-nav__list { display: flex; align-items: center; gap: 4px; }
.hv-nav__link { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 13px; font-weight: 700; font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: var(--radius); transition: color 0.25s; }
.hv-nav__link:hover { color: var(--blue); }
.hv-header.is-transparent:not(.is-scrolled) .hv-nav__link:hover { color: var(--amber); }
.hv-nav__link .ic { width: 14px; height: 14px; transition: transform 0.3s; }
.hv-nav__item--has-sub.is-open .hv-nav__link .ic { transform: rotate(180deg); }
.hv-nav__item { position: relative; }
.hv-sub { position: absolute; left: 0; top: calc(100% + 10px); width: 720px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(5, 10, 48, 0.35); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0s 0.25s; }
.hv-nav__item--has-sub.is-open .hv-sub { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.hv-sub__list { display: grid; grid-template-columns: 1fr 1fr; }
.hv-sub__list li:nth-child(odd) { border-right: 1px solid var(--line); }
.hv-sub__list li { border-bottom: 1px solid var(--line); min-width: 0; }
.hv-sub__list a { display: flex; align-items: center; gap: 12px; padding: 14px 18px; min-width: 0; transition: background 0.2s; }
.hv-sub__list a:hover { background: var(--white); color: var(--ink); }
.hv-sub__t { min-width: 0; flex: 1; }
.hv-sub__list strong { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
.hv-sub__list em { display: block; font-style: normal; font-size: 12.5px; line-height: 1.4; color: var(--mute); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hv-sub__n { font-family: var(--mono); font-style: normal; font-size: 10px; font-weight: 400; color: var(--mute); flex: 0 0 auto; }
.hv-sub__img { flex: 0 0 48px; width: 48px; height: 48px; border-radius: var(--radius); overflow: hidden; background: var(--navy); }
.hv-sub__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.hv-sub__list a:hover .hv-sub__img img { transform: scale(1.08); }
.hv-sub__foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; background: var(--navy); color: var(--white); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.hv-sub__foot:hover { background: var(--blue); color: var(--white); }
.hv-nav__mobile-extra { display: none; }

@media (min-width: 1024px) {
	.hv-nav { display: block; }
	.hv-burger { display: none; }
	.hv-header__phone { display: inline-flex; }
}
@media (max-width: 1023.98px) {
	.hv-nav { display: block; position: fixed; inset: var(--header-h) 0 0 0; background: var(--navy); color: var(--white); padding: 24px var(--gutter) 40px; overflow: auto; transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 89; }
	.hv-header.is-open .hv-nav { transform: none; }
	.hv-header.is-open { background: var(--navy); color: var(--white); border-color: var(--line-dark); backdrop-filter: none; -webkit-backdrop-filter: none; }
	.hv-nav { visibility: hidden; transition: transform 0.4s var(--ease), visibility 0s 0.4s; }
	.hv-header.is-open .hv-nav { visibility: visible; transition-delay: 0s; }
	.hv-header.is-open .hv-logo .st0 { fill: var(--white); }
	.hv-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.hv-nav__item { border-bottom: 1px solid var(--line-dark); }
	.hv-nav__link { width: 100%; justify-content: space-between; min-height: 60px; padding: 0; font-size: 22px; font-weight: 600; }
	.hv-nav__link:hover { color: var(--amber); }
	.hv-sub { position: static; width: auto; background: transparent; color: var(--white); border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding-bottom: 12px; }
	.hv-nav__item--has-sub.is-open .hv-sub { display: block; }
	.hv-sub__list { grid-template-columns: 1fr; }
	.hv-sub__list li { border: 0; }
	.hv-sub__list a { padding: 10px 0; }
	.hv-sub__img { flex-basis: 40px; width: 40px; height: 40px; }
	.hv-sub__list em { white-space: normal; }
	.hv-sub__list a:hover { background: transparent; color: var(--amber); }
	.hv-sub__list em { color: rgba(255, 255, 255, 0.6); }
	.hv-sub__foot { display: none; }
	.hv-nav__mobile-extra { display: grid; gap: 12px; margin-top: 28px; }
	.hv-nav__phone { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; }
	.hv-header__actions .btn { display: none; }
}
@media (min-width: 560px) and (max-width: 1023.98px) { .hv-header__actions .btn { display: inline-flex; } }

/* ---------- 3D-hero ---------- */
.hero3d { position: relative; width: 100%; height: 100svh; min-height: 640px; max-height: 1100px; overflow: hidden; background: #07081a; color: var(--white); --ks-hh: var(--header-h); }
/* Chaty (WhatsApp-nappi) piilossa, kun hero on näkyvissä */
body.hv-hero-in .chaty-widget, body.hv-hero-in #chaty-container, body.hv-hero-in .chaty-container { opacity: 0 !important; pointer-events: none !important; transition: opacity 0.4s ease !important; }
.hero3d #poster { position: absolute; inset: 0; background: #07081a url(../hero/poster.jpg) center / cover no-repeat; transition: opacity 1.2s ease; }
.hero3d #gl { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1.2s ease; }
.hero3d.gl-ready #gl { opacity: 1; }
.hero3d.gl-ready #poster { opacity: 0; }
.hero3d #grain { position: absolute; inset: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"); }
.hero3d #vig { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(130% 100% at 62% 45%, transparent 45%, rgba(0, 0, 0, 0.55) 100%); }
.hero3d .copy { position: absolute; left: var(--gutter); top: calc(50% + var(--ks-hh) / 2); transform: translateY(-50%); width: min(600px, 46vw); z-index: 3; will-change: transform; transform-style: preserve-3d; }
@media (min-width: 1360px) { .hero3d .copy { left: calc((100vw - var(--wrap)) / 2 + var(--gutter)); } }
.hero3d .copy > * { opacity: 0; transform: translateY(14px); animation: hvRise 1s var(--ease) forwards; }
.hero3d .copy > :nth-child(2) { animation-delay: 0.12s; } .hero3d .copy > :nth-child(3) { animation-delay: 0.24s; } .hero3d .copy > :nth-child(4) { animation-delay: 0.36s; } .hero3d .copy > :nth-child(5) { animation-delay: 0.46s; } .hero3d .copy > :nth-child(6) { animation-delay: 0.58s; }
@keyframes hvRise { to { opacity: 1; transform: none; } }
.hero3d .copy.loaded > * { animation: none; opacity: 1; transform: none; }
.hero3d .copy > * { transition: opacity 0.42s var(--ease), transform 0.42s var(--ease); }
.hero3d .copy > *.out { opacity: 0; transform: translateY(-12px); transition-duration: 0.24s; }
.hero3d .copy > *.pre { opacity: 0; transform: translateY(16px); transition: none; }
.hero3d .eyebrow { font-family: var(--mono); font-weight: 500; letter-spacing: 0.18em; font-size: 12px; color: rgba(255, 255, 255, 0.62); text-transform: uppercase; margin: 0 0 18px; display: flex; align-items: center; gap: 10px; }
.hero3d .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.hero3d h1 { font-weight: 800; font-size: clamp(38px, 5.2vw, 72px); line-height: 0.98; letter-spacing: -0.025em; margin: 0 0 14px; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6); }
.hero3d h1 span { display: block; color: var(--amber); }
.hero3d .sub { font-weight: 500; font-size: clamp(15px, 1.3vw, 19px); letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.88); margin: 0 0 22px; }
.hero3d .copy p.desc { font-weight: 400; font-size: clamp(14px, 1.05vw, 16.5px); line-height: 1.62; color: rgba(255, 255, 255, 0.72); margin: 0 0 12px; max-width: 480px; }
.hero3d .copy .btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero3d #dn { position: absolute; right: var(--gutter); top: calc(var(--ks-hh) + 22px); z-index: 5; display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); opacity: 0; animation: hvRise 1s 0.8s var(--ease) forwards; transform: translateY(14px); }
.hero3d #dn .lbl { width: 46px; text-align: right; transition: color 0.6s; }
.hero3d #dn .lbl.on { color: #fff; }
.hero3d #dn button { position: relative; width: 78px; height: 38px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.25); cursor: pointer; padding: 0; overflow: hidden; background: linear-gradient(135deg, #0e1330, #1c2160); box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6), 0 8px 30px rgba(0, 0, 0, 0.35); transition: background 1.2s, border-color 1.2s, box-shadow 1.2s; }
.hero3d #dn button .knob { position: absolute; top: 4px; left: 4px; width: 28px; height: 28px; border-radius: 50%; transition: transform 1.1s cubic-bezier(0.65, 0, 0.15, 1), background 1.2s, box-shadow 1.2s; background: radial-gradient(circle at 35% 35%, #fff, #cfd6ea 60%, #9aa5c9); box-shadow: 0 0 18px rgba(200, 215, 255, 0.55); }
.hero3d #dn button .knob::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 68% 40%, #0e1330 0 33%, transparent 35%); transition: opacity 0.9s; }
.hero3d #dn button .stars, .hero3d #dn button .sky { position: absolute; inset: 0; transition: opacity 1.2s; }
.hero3d #dn button .stars { background: radial-gradient(circle, #fff 0 1px, transparent 1.5px) 52px 9px / 3px 3px no-repeat, radial-gradient(circle, #fff 0 0.8px, transparent 1.3px) 60px 22px / 3px 3px no-repeat, radial-gradient(circle, #fff 0 0.7px, transparent 1.2px) 44px 27px / 3px 3px no-repeat; }
.hero3d #dn button .sky { opacity: 0; background: radial-gradient(ellipse 22px 8px at 22px 26px, rgba(255, 255, 255, 0.85), transparent 70%), radial-gradient(ellipse 14px 6px at 14px 14px, rgba(255, 255, 255, 0.6), transparent 70%); }
body.day .hero3d #dn button { background: linear-gradient(135deg, #7fc3ff, #3b8fe0); border-color: rgba(255, 255, 255, 0.55); box-shadow: inset 0 2px 8px rgba(0, 60, 120, 0.35), 0 8px 30px rgba(80, 150, 255, 0.35); }
body.day .hero3d #dn button .knob { transform: translateX(40px); background: radial-gradient(circle at 40% 40%, #fff8dc, #ffd36b 55%, #f2a13a); box-shadow: 0 0 22px rgba(255, 200, 90, 0.85); }
body.day .hero3d #dn button .knob::after { opacity: 0; }
body.day .hero3d #dn button .stars { opacity: 0; }
body.day .hero3d #dn button .sky { opacity: 1; }
body.day .hero3d h1 { text-shadow: 0 2px 26px rgba(0, 0, 0, 0.45); }
body.day .hero3d #vig { background: radial-gradient(130% 100% at 62% 45%, transparent 55%, rgba(0, 0, 0, 0.35) 100%); }
.hero3d #models { position: absolute; left: 50%; bottom: clamp(18px, 4vh, 40px); transform: translateX(-50%) translateY(14px); z-index: 5; display: flex; gap: 2px; padding: 5px; border-radius: 999px; background: rgba(5, 10, 48, 0.5); border: 1px solid rgba(255, 255, 255, 0.14); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45); opacity: 0; animation: hvRise 1s 1s var(--ease) forwards; }
.hero3d #models .ind { position: absolute; top: 5px; left: 0; height: calc(100% - 10px); width: 0; border-radius: 999px; background: var(--blue); box-shadow: 0 6px 24px rgba(2, 18, 238, 0.45); transition: left 0.7s cubic-bezier(0.65, 0, 0.15, 1), width 0.7s cubic-bezier(0.65, 0, 0.15, 1); }
.hero3d #models button { position: relative; z-index: 1; color: rgba(255, 255, 255, 0.62); text-align: left; padding: 9px 18px 9px 14px; border-radius: 999px; display: flex; align-items: center; gap: 10px; transition: color 0.5s; white-space: nowrap; }
.hero3d #models button i { font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; opacity: 0.55; }
.hero3d #models button b { font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; }
.hero3d #models button.on { color: #fff; }
.hero3d #models button.on i { opacity: 0.9; }
.hero3d #scrollDown { position: absolute; left: var(--gutter); bottom: clamp(18px, 4vh, 40px); z-index: 5; display: flex; align-items: center; gap: 14px; color: rgba(255, 255, 255, 0.72); font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0; transform: translateY(14px); animation: hvRise 1s 1s var(--ease) forwards; }
@media (min-width: 1360px) { .hero3d #scrollDown { left: calc((100vw - var(--wrap)) / 2 + var(--gutter)); } }
.hero3d #scrollDown:hover { color: #fff; }
.hero3d #scrollDown .ring { position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.28); display: grid; place-items: center; overflow: hidden; }
.hero3d #scrollDown .ring svg { width: 16px; height: 16px; position: absolute; animation: hvChev 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
.hero3d #scrollDown .ring svg:nth-child(2) { animation-delay: -0.9s; }
@keyframes hvChev { 0% { transform: translateY(-22px); opacity: 0; } 30% { opacity: 1; } 70% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }
.hero3d #scrollDown b { font-weight: 500; display: block; } .hero3d #scrollDown small { display: block; font-size: 10px; letter-spacing: 0.16em; opacity: 0.55; margin-top: 3px; }
.hero3d #stats { position: absolute; left: 8px; top: 8px; z-index: 20; font: 12px monospace; color: #0f0; background: rgba(0, 0, 0, 0.6); padding: 4px 6px; display: none; }
@media (max-width: 1100px) { .hero3d #models button b { display: none; } .hero3d #models button { padding: 9px 12px; } }
@media (min-width: 820.01px) { .hero3d .mobile-card { display: none; } }

/* ---------- luottamusrivi ---------- */
.trust { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust__grid { display: grid; grid-template-columns: 1fr; }
.trust__item { padding: 26px 0; border-top: 1px solid var(--line); }
.trust__item:first-child { border-top: 0; }
.trust__v { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin: 6px 0 2px; }
.trust__s { font-size: 13.5px; color: var(--mute); margin: 0; }
@media (min-width: 700px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } .trust__item { padding: 30px 28px; border-top: 0; border-left: 1px solid var(--line); } .trust__item:nth-child(odd) { border-left: 0; padding-left: 0; } .trust__item:nth-child(n + 3) { border-top: 1px solid var(--line); } }
@media (min-width: 1024px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } .trust__item:nth-child(n) { border-top: 0; border-left: 1px solid var(--line); padding: 32px 28px; } .trust__item:first-child { border-left: 0; padding-left: 0; } }

/* ---------- osiot ---------- */
.sec { padding: var(--sec) 0; }
.sec--tight { padding: calc(var(--sec) * 0.6) 0; }
.sec--dark { background: var(--navy); color: var(--white); }
.sec--dark .kicker { color: rgba(255, 255, 255, 0.6); } .sec--dark .kicker::before { background: var(--amber); }
.sec--dark .lead { color: rgba(255, 255, 255, 0.7); }
.sec--paper2 { background: var(--paper-2); }
.sec--line-t { border-top: 1px solid var(--line); }
.sec--line-b { border-bottom: 1px solid var(--line); }

/* ---------- palvelukortit ---------- */
.svc-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc { position: relative; display: flex; flex-direction: column; background: var(--paper); transition: background 0.3s; }
.svc:hover { background: var(--white); }
.svc__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.04); }
.svc__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.svc__n { font-family: var(--mono); font-size: 11px; color: var(--blue); margin: 0 0 10px; letter-spacing: 0.12em; }
.svc__t { font-size: 21px; margin-bottom: 8px; }
.svc__p { font-size: 14.5px; line-height: 1.55; color: var(--mute); margin: 0 0 18px; }
.svc__link { margin-top: auto; }
.svc > a.svc__cover { position: absolute; inset: 0; z-index: 1; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } .svc--wide { grid-column: span 2; } .svc--wide .svc__img { aspect-ratio: 16 / 8; } }

/* ---------- kuvanauha ---------- */
.strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.strip figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); border-radius: var(--radius); }
.strip img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 720px) { .strip { grid-template-columns: repeat(4, 1fr); } }

/* ---------- referenssit ---------- */
.pcards { display: grid; gap: 32px; }
@media (min-width: 720px) { .pcards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pcards { grid-template-columns: repeat(4, 1fr); gap: 24px; } .pcards--3 { grid-template-columns: repeat(3, 1fr); } .pcards--2 { grid-template-columns: repeat(2, 1fr); } }
.pcard__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); border-radius: var(--radius); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.04); }
.pcard__body { padding-top: 16px; }
.pcard__body .kicker { margin-bottom: 8px; }
.pcard__t { font-size: 18px; line-height: 1.25; margin-bottom: 8px; }
.pcard__t a:hover { color: var(--blue); }
.pcard__x { font-size: 14px; color: var(--mute); margin-bottom: 12px; }
.pcard--big .pcard__t { font-size: 24px; }

/* ---------- asiakaslogot ---------- */
.logos { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--white); }
.logos__track { display: flex; gap: 56px; width: max-content; animation: hvMarquee 60s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos__track img { height: 44px; width: auto; filter: grayscale(1) contrast(1.1); opacity: 0.75; transition: opacity 0.3s, filter 0.3s; }
.logos__track img:hover { filter: none; opacity: 1; }
@keyframes hvMarquee { to { transform: translateX(-50%); } }

/* ---------- palautteet ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote { margin: 0; padding: 26px 26px 22px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); display: flex; flex-direction: column; }
.quote__t { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--navy); }
.quote__p { font-size: 15.5px; line-height: 1.6; color: var(--ink); margin-bottom: 18px; }
.quote footer { margin-top: auto; font-size: 13.5px; color: var(--mute); display: flex; gap: 8px; flex-wrap: wrap; }
.quote footer strong { color: var(--ink); font-weight: 600; }
.sec--dark .quote { background: rgba(255, 255, 255, 0.04); border-color: var(--line-dark); }
.sec--dark .quote__t { color: var(--amber); } .sec--dark .quote__p { color: rgba(255, 255, 255, 0.85); } .sec--dark .quote footer { color: rgba(255, 255, 255, 0.55); } .sec--dark .quote footer strong { color: #fff; }

/* ---------- prosessi ---------- */
.steps { display: grid; gap: 0; counter-reset: s; border-top: 1px solid var(--line); }
.steps__item { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps__n { font-family: var(--mono); font-size: 13px; color: var(--blue); padding-top: 6px; }
.steps__t { font-size: 19px; margin-bottom: 6px; }
.steps__item p { margin: 0; font-size: 15px; color: var(--mute); max-width: 52ch; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); border-top: 0; } .steps__item { grid-template-columns: 1fr; padding: 26px 26px 30px 0; border-top: 1px solid var(--line); } .steps__item:nth-child(3n + 1) { padding-left: 0; } .steps--2 { grid-template-columns: repeat(2, 1fr); } }
.sec--dark .steps, .sec--dark .steps__item { border-color: var(--line-dark); }
.sec--dark .steps__n { color: var(--amber); } .sec--dark .steps__item p { color: rgba(255, 255, 255, 0.7); }

/* ---------- UKK ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ic { width: 18px; height: 18px; color: var(--blue); transition: transform 0.3s var(--ease); }
.faq__item[open] summary .ic { transform: rotate(45deg); }
.faq__body { padding: 0 0 22px; max-width: 70ch; color: var(--mute); font-size: 15.5px; }
.faq__body p { margin: 0; }

/* ---------- galleria ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.gallery__item { margin: 0; }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); background: var(--navy); }
.gallery__item figcaption { font-size: 12.5px; color: var(--mute); margin-top: 8px; }
.gallery--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- CTA-nauha ---------- */
.cta-band { background: var(--navy); color: var(--white); }
.cta-band__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 88px); }
.cta-band__t { font-size: clamp(28px, 3.6vw, 44px); max-width: 20ch; }
.cta-band__p { color: rgba(255, 255, 255, 0.72); max-width: 56ch; margin: 14px 0 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.cta-band__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: rgba(255, 255, 255, 0.85); padding: 0 8px; }
.cta-band__phone:hover { color: var(--amber); }

/* ---------- sivun otsake ---------- */
.page-head { padding: calc(var(--header-h) + clamp(32px, 6vw, 72px)) 0 clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.page-head__grid { display: grid; gap: 32px; align-items: center; }
.page-head__grid > * { min-width: 0; }
.page-head__grid > * { min-width: 0; }
@media (min-width: 960px) { .page-head__grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.page-head h1 { font-size: clamp(34px, 4.3vw, 58px); margin: 12px 0 18px; max-width: 16ch; hyphens: auto; -webkit-hyphens: auto; overflow-wrap: anywhere; }
.page-head .lead { margin-top: 0; }
.page-head__img { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--navy); position: relative; }
.page-head__img img { width: 100%; height: 100%; object-fit: cover; }
.page-head__tag { position: absolute; left: 14px; bottom: 14px; background: rgba(5, 10, 48, 0.78); color: #fff; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 12px; border-radius: var(--radius); backdrop-filter: blur(6px); }
.page-head--simple h1 { max-width: 22ch; }
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-bottom: 26px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: 0.5; }
.crumbs a:hover { color: var(--blue); }
.crumbs [aria-current] { color: var(--blue); }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- sisältölohkot (palvelusivu) ---------- */
.block { display: grid; gap: 28px; align-items: center; padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--line); }
.block:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 900px) { .block { grid-template-columns: 1fr 1fr; gap: 64px; } .block--flip .block__img { order: -1; } }
.block__img { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--navy); }
.block__img img { width: 100%; height: 100%; object-fit: cover; }
.block h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 16px; max-width: 20ch; }
.block p { max-width: 60ch; color: var(--ink); }
.block__after { color: var(--mute); }
.checks { display: grid; gap: 10px; margin: 18px 0 18px; max-width: 60ch; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; }
.checks li .ic { width: 18px; height: 18px; color: var(--blue); margin-top: 4px; }
.checks--2 { max-width: none; }
@media (min-width: 720px) { .checks--2 { grid-template-columns: 1fr 1fr; gap: 12px 32px; } }
.checks li strong { font-weight: 600; }
.checks li em { display: block; font-style: normal; color: var(--mute); font-size: 14px; }

/* numeroidut tyypit */
.types { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .types { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .types { grid-template-columns: repeat(3, 1fr); } }
.type { background: var(--paper); padding: 26px 24px 30px; }
.type__n { font-family: var(--mono); font-size: 11px; color: var(--blue); letter-spacing: 0.14em; margin-bottom: 14px; display: block; }
.type h3 { font-size: 19px; margin-bottom: 8px; }
.type p { margin: 0; font-size: 14.5px; color: var(--mute); line-height: 1.55; }

/* materiaalit / käyttökohteet */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 900px) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 20px; } .tiles--3 { grid-template-columns: repeat(3, 1fr); } }
.tile__img { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.tile:hover .tile__img img { transform: scale(1.04); }
.tile h3 { font-size: 16px; margin: 14px 0 4px; }
.tile p { margin: 0; font-size: 14px; color: var(--mute); }
.tile--text { border-top: 2px solid var(--navy); padding-top: 14px; }
.tile--text h3 { margin-top: 0; font-size: 15.5px; font-weight: 600; }

/* neonvärit */
.swatches { display: flex; flex-wrap: wrap; gap: 14px; }
.swatch { display: flex; align-items: center; gap: 10px; font-size: 13.5px; padding: 8px 14px 8px 8px; border: 1px solid var(--line-dark); border-radius: 999px; }
.swatch i { width: 22px; height: 22px; border-radius: 50%; display: block; box-shadow: 0 0 14px var(--c), 0 0 4px var(--c); background: var(--c); }

/* hinnasto */
.price { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.price__row { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; padding: 18px 22px; border-top: 1px solid var(--line); align-items: baseline; }
.price__row:first-child { border-top: 0; }
.price__row--hl { background: var(--navy); color: var(--white); }
.price__q { font-weight: 600; font-size: 16px; }
.price__v { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; text-align: right; }
.price__row--hl .price__v { color: var(--amber); }
.price__n { grid-column: 1 / -1; font-size: 13px; color: var(--mute); margin: 0; }
.price__row--hl .price__n { color: rgba(255, 255, 255, 0.7); }
.price__foot { padding: 14px 22px; font-size: 13px; color: var(--mute); background: var(--paper-2); margin: 0; }

/* miksi-lista */
.why { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 720px) { .why { grid-template-columns: repeat(2, 1fr); } }
.why li { background: var(--paper); padding: 20px 22px; display: grid; grid-template-columns: 22px 1fr; gap: 12px; }
.why li .ic { color: var(--blue); width: 20px; height: 20px; margin-top: 3px; }
.why strong { display: block; font-weight: 600; font-size: 15.5px; }
.why span { font-size: 14px; color: var(--mute); }

/* ---------- artikkeli ---------- */
.article { padding: calc(var(--header-h) + clamp(32px, 6vw, 64px)) 0 var(--sec); }
.article__head { max-width: 820px; }
.article__head h1 { font-size: clamp(32px, 4.5vw, 52px); margin: 12px 0 18px; }
.article__meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.article__hero { margin: clamp(28px, 5vw, 48px) 0; border-radius: var(--radius); overflow: hidden; background: var(--navy); }
.article__hero img { width: 100%; max-height: 640px; object-fit: cover; }
.article__grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .article__grid { grid-template-columns: minmax(0, 760px) 320px; gap: 80px; align-items: start; } }
.article__body { font-size: 17px; }
.article__aside { position: sticky; top: calc(var(--header-h) + 24px); }
.article__body h2 { font-size: clamp(22px, 2.6vw, 28px); }
.article__share { display: flex; gap: 8px; margin-top: 24px; }
.article__share a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; }
.article__share a:hover { border-color: var(--blue); color: var(--blue); }
.contact-card { border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); padding: 26px; }
.contact-card__name { font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.contact-card__row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); font-size: 15px; }
.contact-card__row .ic { color: var(--blue); margin-top: 3px; }
.contact-card__note { font-size: 13.5px; color: var(--mute); margin: 14px 0 0; }

/* ---------- tarjouspyyntö (wizard) ---------- */
.wiz { display: grid; gap: 40px; }
@media (min-width: 1024px) { .wiz { grid-template-columns: 380px 1fr; gap: 64px; align-items: start; } .wiz__side { position: sticky; top: calc(var(--header-h) + 24px); } }
.wiz__steps { margin-top: 28px; border-top: 1px solid var(--line); }
.wiz__steps li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--mute); }
.wiz__steps li b { font-weight: 500; }
.wiz__steps li i { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--mono); font-style: normal; font-size: 10.5px; }
.wiz__steps li.is-now { color: var(--ink); } .wiz__steps li.is-now i { border-color: var(--blue); color: var(--blue); }
.wiz__steps li.is-done i { background: var(--blue); border-color: var(--blue); color: #fff; }
.wiz__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.wiz__bar { height: 3px; background: var(--paper-2); }
.wiz__bar i { display: block; height: 100%; background: var(--blue); transition: width 0.5s var(--ease); }
.wiz__body { padding: clamp(24px, 4vw, 40px); }
.wiz__q { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 8px; }
.wiz__hint { color: var(--mute); font-size: 15px; margin-bottom: 22px; }
.wiz__step { display: none; }
.wiz__step.is-active { display: block; animation: hvFade 0.35s var(--ease); }
@keyframes hvFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.opts { display: grid; gap: 10px; }
@media (min-width: 640px) { .opts { grid-template-columns: repeat(2, 1fr); } .opts--3 { grid-template-columns: repeat(3, 1fr); } }
.opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 56px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius); text-align: left; font-weight: 500; font-size: 15px; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.opt:hover { border-color: var(--navy); }
.opt[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; }
.opt i { width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; }
.opt[aria-pressed="true"] i { border-color: rgba(255, 255, 255, 0.6); }
.opt i .ic { width: 12px; height: 12px; display: none; }
.opt[aria-pressed="true"] i .ic { display: block; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.01em; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: border-color 0.2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--mute); }
.check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue); }
.drop { display: block; border: 1px dashed var(--line); border-radius: var(--radius); padding: 28px 20px; text-align: center; color: var(--mute); transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.drop:hover, .drop.is-over { border-color: var(--blue); background: rgba(2, 18, 238, 0.04); }
.drop .ic { display: block; width: 26px; height: 26px; margin: 0 auto 10px; color: var(--blue); }
.drop > span { display: block; }
.drop input { display: none; }
.drop__list { margin-top: 12px; display: grid; gap: 6px; font-size: 13.5px; text-align: left; }
.drop__list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 10px; background: var(--paper); border-radius: var(--radius); }
.drop__list button { color: var(--err); font-size: 12px; }
.wiz__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.wiz__err { color: var(--err); font-size: 14px; margin: 12px 0 0; min-height: 20px; }
.wiz__done { padding: clamp(28px, 4vw, 44px); }
.wiz__done h3 { font-size: clamp(24px, 3vw, 32px); margin: 10px 0 12px; }
.wiz__done dl { display: grid; gap: 8px 24px; margin: 22px 0 0; border-top: 1px solid var(--line); }
@media (min-width: 640px) { .wiz__done dl { grid-template-columns: 1fr 1fr; } }
.wiz__done dl div { border-bottom: 1px solid var(--line); padding: 10px 0; }
.wiz__done dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.wiz__done dd { margin: 4px 0 0; font-size: 15px; }
.btn.is-busy { opacity: 0.6; pointer-events: none; }

/* ---------- alatunniste ---------- */
.hv-footer { background: var(--navy); color: var(--white); padding: clamp(48px, 7vw, 88px) 0 32px; }
.hv-footer__top { display: grid; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 720px) { .hv-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hv-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; } }
.hv-footer__brand .hv-logo { width: 190px; }
.hv-footer__claim { margin: 22px 0 16px; color: rgba(255, 255, 255, 0.7); max-width: 40ch; font-size: 15px; }
.hv-footer__badge { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 10px; }
.hv-footer__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.hv-footer__h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; }
.hv-footer__col li { margin-bottom: 8px; font-size: 15px; }
.hv-footer__col a { color: rgba(255, 255, 255, 0.85); }
.hv-footer__col a:hover { color: var(--amber); }
.hv-footer__contact p { font-size: 15px; color: rgba(255, 255, 255, 0.85); }
.hv-footer__social { display: flex; gap: 8px; margin-top: 8px; }
.hv-footer__social a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: var(--radius); display: grid; place-items: center; color: rgba(255, 255, 255, 0.85); }
.hv-footer__social a:hover { border-color: var(--amber); color: var(--amber); }
.hv-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 22px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.hv-footer__bottom p { margin: 0; }

/* ---------- apu ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.mt-0 { margin-top: 0; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mb-0 { margin-bottom: 0; }
.grid-2 { display: grid; gap: 40px; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 64px; } .grid-2--narrow { grid-template-columns: 380px 1fr; } }
.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: block; } }

/* Lisäosien elementit, joita ei tarvita */
#gtranslate_wrapper { font-family: var(--font); }
.chaty-widget { z-index: 80 !important; }

/* Yksinäinen viimeinen solu levenee, ettei ruudukkoon jää tyhjää ruutua. */
@media (min-width: 720px) { .why li:last-child:nth-child(odd) { grid-column: span 2; } }
@media (min-width: 640px) and (max-width: 1023.98px) { .types .type:last-child:nth-child(odd) { grid-column: span 2; } }
@media (min-width: 1024px) { .types .type:last-child:nth-child(3n + 1) { grid-column: span 3; } .types .type:last-child:nth-child(3n + 2) { grid-column: span 2; } }
.hero3d .copy .btns { margin-bottom: 8px; }
@media (min-width: 821px) { .hero3d #scrollDown { left: auto; right: var(--gutter); bottom: 96px; } .hero3d #models { left: auto; right: var(--gutter); transform: translateY(14px); } }
@media (min-width: 821px) and (max-width: 1100px) { .hero3d #models { right: 50%; transform: translateX(50%) translateY(14px); } .hero3d #scrollDown { display: none; } }



/* Palvelusivu: sopii-etiketit, tekniset lähtötiedot, lisäosiot */
.chips { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--line); background: var(--white); padding: 7px 11px; border-radius: var(--radius); }
.specs { border-bottom: 1px solid var(--line); background: var(--white); padding: 22px 0; }
.specs__grid { display: grid; gap: 14px 28px; margin: 0; }
@media (min-width: 700px) { .specs__grid { grid-template-columns: repeat(4, 1fr); } }
.specs__grid dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-bottom: 4px; }
.specs__grid dd { margin: 0; font-weight: 600; color: var(--ink); font-size: 15px; }
.specs__note { margin: 14px 0 0; font-size: 12.5px; color: var(--mute); }
.checks--cols { margin-top: 8px; }
@media (min-width: 760px) { .checks--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; } }
.mt-24 { margin-top: 24px; }
.logos__t { text-align: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); margin: 0 0 16px; }

/* Pyydä tarjous -sivu (konseptin QuotePage) */
.qp { display: grid; gap: 32px; }
@media (min-width: 1024px) { .qp { grid-template-columns: 7fr 5fr; gap: 40px; align-items: start; } }
.qf { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3.5vw, 36px); }
.qf__grid { display: grid; gap: 4px 20px; }
@media (min-width: 640px) { .qf__grid { grid-template-columns: 1fr 1fr; } }
.qf .field label, .qf .field legend { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }
.qf .field label b { color: var(--blue); font-weight: 700; }
.qf__env { border: 0; padding: 0; margin: 0 0 16px; min-width: 0; }
.qf__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.qf__chip { cursor: pointer; }
.qf__chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.qf__chip span { display: inline-flex; align-items: center; min-height: 46px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; font-size: 14px; color: var(--navy); transition: all 0.2s; }
.qf__chip:hover span { border-color: var(--blue); }
.qf__chip input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.qf__chip input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.drop--big { padding: 30px 20px; border-width: 2px; }
.drop--big .drop__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--amber); margin: 0 auto 10px; }
.drop--big .drop__ic .ic { width: 20px; height: 20px; margin: 0; color: var(--amber); }
.drop--big strong { display: block; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }
.drop--big > span { display: block; font-size: 13px; color: var(--mute); margin-top: 4px; }
.drop--big em { display: block; font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-top: 8px; }
.qf__hint { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; line-height: 1.6; color: var(--mute); margin: 8px 0 0; }
.qf__submit { width: 100%; justify-content: center; min-height: 56px; margin-top: 22px; }
.qf__note { text-align: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin: 12px 0 0; }
.qf--done h3 { font-size: clamp(24px, 3vw, 32px); margin: 10px 0 12px; }
.qf__summary { display: grid; gap: 0; margin: 10px 0 0; border-top: 1px solid var(--line); background: var(--paper-2); padding: 0 16px; border-radius: var(--radius); }
.qf__summary div { border-bottom: 1px solid var(--line); padding: 10px 0; }
.qf__summary div:last-child { border-bottom: 0; }
.qf__summary dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.qf__summary dd { margin: 4px 0 0; font-size: 15px; }
.qp__side { display: grid; gap: 20px; }
.qcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.qcard--navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.qcard__k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin: 0 0 12px; }
.qcard__k--blue { color: var(--blue); }
.qcard__phone { display: flex; align-items: center; gap: 12px; font-size: clamp(22px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.01em; color: var(--amber); }
.qcard__phone:hover { color: #fff; }
.qcard__phone .ic { width: 20px; height: 20px; }
.qcard__mail { display: flex; align-items: center; gap: 12px; margin-top: 12px; font-family: var(--mono); font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.qcard__mail .ic { color: var(--amber); width: 16px; height: 16px; }
.qcard__mail:hover { color: var(--amber); }
.qcard__foot { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line-dark); font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.qcard:not(.qcard--navy) .qcard__foot { border-top-color: var(--line); color: var(--mute); }
.qcard__foot--mono { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; }
.checks--tight { gap: 10px; }
.checks--tight span { font-size: 14.5px; }
.qnext { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.qnext li { display: flex; gap: 14px; }
.qnext li i { flex: 0 0 36px; height: 36px; display: grid; place-items: center; border-radius: var(--radius); background: var(--navy); color: var(--amber); font-family: var(--mono); font-style: normal; font-size: 11px; }
.qnext li b { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }
.qnext li p { margin: 4px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--mute); }
