:root {
  --blue: #1a4371;
  --blue-light: #2b6b9e;
  --blue-dark: #0e2d4f;
  --ink: #141413;
  --cream: #F3F0EE;
  --cream-lifted: #FCFBFA;
  --white: #FFFFFF;
  --typebox: #EAE6E1;
  --charcoal: #262627;
  --slate: #696969;
  --soft-cream: #E8E2DA;
  --border-soft: rgba(20,20,19,0.1);
  --radius-btn: 4px;
  --radius-hero: 0px;
  --radius-pill: 4px;
  --radius-circle: 50%;
  --radius-card: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --shadow-nav: rgba(0,0,0,0.04) 0px 4px 24px 0px;
  --shadow-card: rgba(0,0,0,0.08) 0px 24px 48px 0px;
  --mercury-red: #c1121f;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  opacity: 0;
  will-change: opacity, transform;
}

.animate-in {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate--fade {
  animation: fadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate--header {
  animation: slideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate--hero {
  animation: fadeInUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate--delay-1 { animation-delay: 0.08s; }
.animate--delay-2 { animation-delay: 0.18s; }
.animate--delay-3 { animation-delay: 0.28s; }
.animate--delay-4 { animation-delay: 0.38s; }
.animate--delay-5 { animation-delay: 0.48s; }
.animate--delay-6 { animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .animate, .animate-in, .animate--hero, .animate--header {
    opacity: 1;
    animation: none;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.016em;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
.btn:hover { opacity: 1; }

.nav,
.header-icon-btn,
.nav-avatar,
button,
.btn,
.btn--svm {
  letter-spacing: normal;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1440px;
}

.text-center { text-align: center; }

.section {
  padding: 96px 0;
}

.section--white {
  background: var(--white);
}

.section--cream {
  background: var(--cream);
  color: var(--ink);
}

.section--lifted {
  background: var(--cream-lifted);
  color: var(--ink);
}

/* Yhtenäinen otsikkokoko kaikille navigaation pääsivuille (etusivu,
   huolto, talvisäilytys, mercury, yhteystiedot): sama koko ja paino
   riippumatta siitä mitä luokkaa sivu käyttää otsikossaan. */
.section-title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}

.ghost-section {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
}

.ghost-text {
  position: relative;
  display: inline-block;
  font-size: clamp(3rem, 11vw, 140px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
  will-change: transform;
  color: rgba(20,20,19,0.12);
}

.ghost-text::after {
  content: attr(data-spotlight);
  position: absolute;
  inset: 0;
  z-index: 1;
  font: inherit;
  letter-spacing: inherit;
  white-space: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(20,20,19,0.45), transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ghost-text::before {
  content: attr(data-spotlight);
  position: absolute;
  inset: 0;
  z-index: 2;
  font: inherit;
  letter-spacing: inherit;
  white-space: inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(20,20,19,0.18) 50%, transparent 100%);
  background-size: 300px 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ghost-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ghost-sweep {
  0%   { background-position: -400px 0; }
  100% { background-position: calc(100% + 400px) 0; }
}

.ghost-section .container {
  position: relative;
  z-index: 1;
}

.section-desc {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

@media (hover: hover) and (pointer: fine) {
  .btn:active {
    transform: scale(0.97);
  }
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 6px 24px;
}

.btn--primary:hover {
  background: #2a2a29;
  transform: translateY(-1px);
  box-shadow: rgba(0,0,0,0.12) 0px 4px 12px;
}

/* Etusivun päätoiminnot käyttävät brändin accent-väriä. */
.home-page .btn--primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.home-page .btn--primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: rgba(26,67,113,.28) 0 6px 18px;
}

/* Kaikkien sivujen yhteydenottolomakkeiden päätoiminto. */
.contact-form .btn--primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.contact-form .btn--primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: rgba(26,67,113,.28) 0 6px 18px;
}

.btn--accent {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
  padding: 12px 32px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: rgba(26,67,113,0.2) 0px 4px 12px;
}

.btn--accent:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: rgba(26,67,113,0.35) 0px 6px 20px;
}

.btn--accent-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 12px 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn--accent-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 6px 24px;
}

.btn--secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 6px 24px;
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--lg {
  padding: 12px 36px;
  font-size: 16px;
}

.btn--sm {
  padding: 8px 24px;
  font-size: 14px;
}

.header {
  position: fixed;
  top: 24px;
  left: 48px;
  right: 48px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.header-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  z-index: 999;
}

.header-pill {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  min-height: 56px;
  background: rgba(245,248,250,0.82);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.38);
  pointer-events: all;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.header-hover-zone:hover ~ .header .header-pill,
.header-pill:hover,
.header-pill:focus-within,
body.is-at-top .header-pill {
  opacity: 1;
  transform: translateY(0);
}

.header-pill .logo {
  justify-self: start;
}

.header-pill .header-cta-wrap {
  justify-self: end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0);
}


@media (max-width: 768px) {
  .logo-text { display: none; }
}

.nav {
  display: flex;
  gap: 0;
}

.nav a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  padding: 4px 16px;
  border-radius: 4px;
  opacity: 0.65;
  transition: opacity 0.2s, background 0.2s;
}

.nav a:hover {
  opacity: 1;
  background: rgba(20, 20, 19, 0.3);
}

.nav a.nav--active {
  opacity: 1;
  font-weight: 600;
}

.nav a.nav--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.mobile-nav-account {
  display: none;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* Navbarin pyöreä profiilikuva -> linkki dashboardille */
.nav-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-avatar:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(26, 67, 113, 0.3);
}

.nav-avatar--active {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--blue);
}

.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------------
   Profiilikuvan tyylinen dropdown (header)
   ------------------------------------------------------------------ */

.nav-avatar-wrap {
  position: relative;
  display: inline-flex;
}

.nav-avatar-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-pill);
  border: 0.5px solid rgba(20,20,19,0.06);
  box-shadow: 0 8px 30px rgba(20,20,19,0.12), 0 1px 6px rgba(20,20,19,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
  z-index: 200;
  overflow: hidden;
}

.nav-avatar-wrap:hover .nav-avatar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-avatar-dd-header {
  padding: 14px 16px 12px;
}

.nav-avatar-dd-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.nav-avatar-dd-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 2px;
}

.nav-avatar-dd-divider {
  height: 1px;
  background: rgba(20,20,19,0.08);
  margin: 0;
}

.nav-avatar-dd-logout {
  appearance: none;
  border: none;
  background: none;
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--status-danger);
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-avatar-dd-logout:hover {
  background: rgba(154, 59, 50, 0.06);
}

.nav-login-hint {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.nav-login-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-login-hint-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.nav-login-hint-text {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-login-hint-text strong {
  color: var(--blue);
  font-weight: 600;
}

.nav-login-hint-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--slate);
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.nav-login-hint-close:hover {
  opacity: 1;
}

.nav-login-hint-arrow {
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
  transform: rotate(45deg);
}

/* ============================================
   SVM-tyylinen header — full-width, litteä,
   nav keskellä, logo vasemmalla, profiili oikealla.
   Läpinäkyvä tumman heron päällä, valkoinen scrollattaessa.
   ============================================ */

.header--svm {
  top: 0;
  left: 0;
  right: 0;
  --header-blur: 20px;
  height: 56px;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.33s cubic-bezier(0.5, 0, 0, 0.75),
              box-shadow 0.33s cubic-bezier(0.5, 0, 0, 0.75);
}

/* Frosted glass on itse fixed-elementissä (.header--svm), ei
   lapsielementissä — näin backdrop-filterillä ei ole animoitua tai
   will-change-merkittyä esi-isää joka katkaisisi sen näytteistyksen
   todellisesta sisällöstä headerin takana. */
body:not(.is-at-top) .header--svm {
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(var(--header-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(180%);
  border-bottom: none;
  box-shadow: none;
}

body:not(.is-at-top) .header--svm::before {
  display: none;
}

/* Vaalea variantti sivuille joilla ei ole tummaa kuvaheroa
   (kirjaudu.html, dashboard.html) — aina päällä, ei riipu scrollista. */
body .header--svm.header--svm-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: none;
  box-shadow: none;
}

/* Dashboard-sivun oma tausta on --cream, joten headerin lasi sävytetään
   samaksi, jotta se sulautuu sivuun eikä erotu valkoisena raitana. */
body .header--svm.header--svm-light.header--svm-cream {
  background: rgba(243, 240, 238, 0.85);
}

/* Dashboardin header ei ole sticky/fixed — se jää sivun yläreunaan ja
   vierii pois muun sisällön mukana, ei seuraa scrollia. */
.header--svm-cream {
  position: absolute;
  top: 0;
}

body .header--svm.header--svm-light::before {
  display: none;
}

.header--svm.header--svm-light .logo-img {
  filter: brightness(0);
}

.header--svm.header--svm-light .hamburger span {
  background: var(--ink);
}

.header--svm.header--svm-light .header-icon-btn {
  color: var(--ink);
}

.header--svm.header--svm-light .nav-avatar {
  color: var(--ink);
}

.header--svm.header--svm-light .nav-avatar--active {
  background: var(--blue);
  color: var(--white);
}

.header--svm .header-pill {
  max-width: none;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  transform: none;
}

/* Teksti pysyy valkoisena molemmissa tiloissa — läpinäkyvänä heron
   päällä ylhäällä, tumman huurrelasin päällä scrollattaessa. */
.header--svm .logo-img {
  filter: brightness(0) invert(1);
}

.header--svm .nav a {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.header--svm .nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.header--svm .nav a.nav--active {
  color: var(--white);
  font-weight: 600;
}

.header--svm .nav a.nav--active::after {
  content: none;
}

.header--svm .hamburger span {
  background: var(--white);
}

/* SVM-tyyliset ikonipainikkeet: pelkkä ikoni, ei ympyrää/reunaa. */
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--white);
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.33s cubic-bezier(0.5, 0, 0, 0.75);
}

.header-icon-btn:hover {
  opacity: 1;
}

.header--svm .nav-avatar {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.85;
  transition: opacity 0.33s cubic-bezier(0.5, 0, 0, 0.75);
}

.header--svm .nav-avatar:hover {
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.header--svm .nav-avatar--active {
  background: var(--blue);
  border: none;
  border-radius: 50%;
  box-shadow: none;
  opacity: 1;
  color: var(--white);
  font-weight: 600;
}

/* Light-variantin nav-tyylit (kirjaudu.html, dashboard.html) - 
   ylikirjoittaa tumman teeman koska tulee myöhemmin */
.header--svm.header--svm-light .nav a {
  color: var(--slate);
  opacity: 1;
  transition: color 0.25s ease;
}

.header--svm.header--svm-light .nav a:hover {
  color: var(--ink);
  background: rgba(20, 20, 19, 0.08);
}

.header--svm.header--svm-light .nav a.nav--active {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 768px) {
  .header--svm {
    padding: 0 20px;
  }

  /* Avattu mobiilivalikko on aina vaalealla taustalla -> tumma teksti */
  .header--svm .nav a {
    color: var(--ink);
    opacity: 0.6;
  }

  .header--svm .nav a.nav--active {
    color: var(--ink);
    opacity: 1;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  background: var(--cream);
  border-color: var(--ink);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 640px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cookie-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cookie-btn-label,
.cookie-btn-check {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}

.cookie-btn-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.4) rotate(-20deg);
}

.cookie-btn--confirmed {
  animation: cookie-btn-pulse 0.5s cubic-bezier(0.16,1,0.3,1);
}

.cookie-btn--confirmed .cookie-btn-label {
  opacity: 0;
  transform: scale(0.6);
}

.cookie-btn--confirmed .cookie-btn-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@keyframes cookie-btn-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.cookie-banner-link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner-link:hover {
  color: var(--white);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hamburger--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger--active span:nth-child(2) { opacity: 0; }
.hamburger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to top, rgba(243,240,238,0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero {
  padding: 140px 48px 60px;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 12px;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

.page-hero--img .page-hero-label {
  color: rgba(255,255,255,0.55);
}

.page-hero .page-hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate);
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin: 16px auto 0;
  border-radius: 2px;
}

.page-hero--img {
  background: var(--ink);
  padding: 180px 48px 100px;
}

.page-hero--img .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.page-hero--img h1,
.page-hero--img .page-hero-label,
.page-hero--img .page-hero-sub,
.page-hero--img .page-hero-accent {
  position: relative;
  z-index: 1;
}

.page-hero--img h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.page-hero--img .page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-top: 16px;
}

.page-hero--img .page-hero-accent {
  background: rgba(255,255,255,0.5);
}

/* Clean hero — SVM-style subpage landing */

.page-hero--clean {
  padding: 120px 48px 48px;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.page-hero--clean h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.page-hero--clean .page-hero-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.page-hero--clean .page-hero-sub {
  font-size: 15px;
  color: var(--slate);
  opacity: 0.7;
  max-width: 400px;
  margin: 8px auto 0;
  line-height: 1.4;
  font-weight: 400;
}

/* Full-screen hero — image + gradient, text bottom-left */

.landing-hero {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 560px;
  margin: 100px 48px 24px;
  border-radius: 12px;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,45,79,0.65) 0%, rgba(26,67,113,0.35) 40%, transparent 65%);
  pointer-events: none;
}

.landing-hero-content {
  position: absolute;
  bottom: 80px;
  left: 48px;
  max-width: 480px;
  color: var(--white);
}

.landing-hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 12px;
}

.landing-hero-content h1 {
  font-size: clamp(2rem, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.landing-hero-content p {
  font-size: 23px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
  max-width: 380px;
}

.landing-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.landing-hero-scroll .scroll-arrow {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
}

.landing-hero-logo {
  position: absolute;
  bottom: 80px;
  right: 48px;
  z-index: 2;
}

.landing-hero-logo-img {
  height: 240px;
  width: auto;
  opacity: 0.9;
}

.landing-hero-content .btn--primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.landing-hero-content .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .landing-hero {
    height: calc(100vh - 80px);
    margin: 80px 16px 16px;
    border-radius: 12px;
    min-height: 480px;
  }

  .landing-hero-content {
    bottom: 48px;
    left: 24px;
    right: 24px;
    max-width: none;
  }
  .landing-hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-hero--clean {
    padding: 100px 24px 40px;
  }
}

/* ============================================
   SVM-tyylinen hero — full-bleed 100vh,
   radikaali vähennys: ei varjoja, ei gradientteja,
   ei pyöristyksiä, yksi kromaattinen väri (CTA).
   ============================================ */

.landing-hero--svm .landing-hero-logo {
  display: none;
}

.landing-hero--svm {
  height: clamp(560px, 78vh, 760px);
  margin: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.landing-hero--svm .landing-hero-bg {
  background-position: center 45%;
}

/* Ei koristeellista gradienttia — vain ohut scrim tekstin luettavuudelle */
.landing-hero--svm .landing-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(23, 26, 32, 0.55) 0%,
    rgba(23, 26, 32, 0.28) 38%,
    rgba(23, 26, 32, 0) 58%,
    rgba(23, 26, 32, 0.3) 100%
  );
}

.landing-hero--svm .landing-hero-content {
  position: relative;
  bottom: auto;
  left: auto;
  max-width: 720px;
  width: 100%;
  padding: 0 24px;
  margin-top: 22vh;
  text-align: center;
}

.landing-hero--svm .landing-hero-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.43;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.landing-hero--svm .landing-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.15;
  margin: 0 0 12px;
  text-shadow: none;
}

.landing-hero--svm .landing-hero-content p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  max-width: none;
  margin: 0;
}

/* CTA-parivalikko — SVM:n 200×40, 4px radius, 0.33s */
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.btn--svm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 40px;
  padding: 4px 24px;
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  text-decoration: none;
  box-shadow: none;
  opacity: 1;
  transition: background 0.33s cubic-bezier(0.5, 0, 0, 0.75),
              color 0.33s cubic-bezier(0.5, 0, 0, 0.75);
}

.btn--svm:hover {
  opacity: 1;
}

.btn--svm-primary {
  background: var(--blue);
  color: var(--white);
}

.btn--svm-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn--svm-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #393c41;
}

.btn--svm-secondary:hover {
  background: rgba(210, 212, 216, 0.92);
  color: #393c41;
}

.landing-hero--svm .landing-hero-scroll {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  margin-bottom: 32px;
}

.landing-hero--svm .landing-hero-scroll .scroll-arrow {
  width: 14px;
  height: 14px;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .landing-hero--svm {
    height: clamp(480px, 72vh, 620px);
    margin: 0;
    border-radius: 0;
  }

  .landing-hero--svm .landing-hero-content {
    margin-top: 18vh;
    padding: 0 24px;
    text-align: center;
  }

  .landing-hero--svm .landing-hero-content h1 {
    font-size: 34px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn--svm {
    width: 100%;
    max-width: 300px;
  }
}

/* Fade-on-scroll for image heroes — keep for reference */
.page-hero--fade {
  position: relative;
  will-change: transform;
}

.product-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 48px 0;
  position: relative;
  overflow: hidden;
}

.product-block--cream {
  background: var(--cream);
}

.product-block--white {
  background: var(--white);
}

.product-block-name {
  font-size: clamp(2.4rem, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

.product-block-hp {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate);
  opacity: 0.6;
  margin: 8px 0 0;
}

.product-block-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--slate);
  opacity: 0.8;
  max-width: 500px;
  line-height: 1.4;
  margin: 12px 0 0;
}

.product-block-btns {
  display: flex;
  gap: 12px;
  margin: 24px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

.product-block-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  flex: 1;
  min-height: 45vh;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .product-block {
    padding: 100px 24px 0;
    min-height: 90vh;
  }
  .product-block-img {
    max-width: 320px;
    min-height: 30vh;
  }
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-trust-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero-trust-bottom {
    bottom: 24px;
    padding: 0 24px;
  }
}

.hero-rating-corner {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-rating-corner {
    right: 0;
    left: 0;
    bottom: 76px;
    display: flex;
    justify-content: center;
    padding: 0 24px;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-slide {
  animation: crossfade1 40s ease-in-out infinite;
  will-change: opacity, filter;
}

.hero-slide--2 {
  animation-name: crossfade2;
}

.hero-slide--3 {
  animation-name: crossfade3;
}

.hero-slide--4 {
  animation-name: crossfade4;
}

@keyframes crossfade1 {
  0%, 2.5% { opacity: 0; }
  5%, 25% { opacity: 1; }
  27.5%, 100% { opacity: 0; }
}

@keyframes crossfade2 {
  0%, 25% { opacity: 0; }
  27.5%, 30% { opacity: 1; }
  50%, 52.5% { opacity: 1; }
  55%, 100% { opacity: 0; }
}

@keyframes crossfade3 {
  0%, 50% { opacity: 0; }
  52.5%, 55% { opacity: 1; }
  75%, 77.5% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

@keyframes crossfade4 {
  0%, 75% { opacity: 0; }
  77.5%, 80% { opacity: 1; }
  100% { opacity: 1; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,15,27,0.82) 0%, rgba(4,15,27,0.62) 34%, rgba(4,15,27,0.22) 65%, rgba(4,15,27,0.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(images/banner.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
  max-width: 1100px;
  padding: 120px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-quicklinks {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 32px auto 0;
}

.hero-quicklink {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-quicklink:hover {
  background: rgba(20, 20, 20, 0.65);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-quicklink-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}

.hero-quicklink-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.hero-quicklink-text strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-quicklinks {
    flex-wrap: wrap;
  }
  .hero-quicklink {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hero-quicklink {
    flex: 1 1 100%;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 96px 40px 96px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 88px 24px 88px;
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── Mobile-specific ── */

.mobile-only {
  display: none;
}

@media (max-width: 480px), (pointer: coarse) and (max-width: 812px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block;
  }

  /* Bottom tab bar */
  .mobile-tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0 env(safe-area-inset-bottom, 8px);
    height: 60px;
  }

  .mobile-tabbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 0.01em;
    opacity: 0.6;
    transition: opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-tabbar a:active,
  .mobile-tabbar a.mobile-tab--active {
    opacity: 1;
    color: var(--blue);
  }

  .mobile-tabbar a svg {
    width: 22px;
    height: 22px;
  }

  /* Mobile hero */
  .mobile-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .mobile-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .mobile-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(26,67,113,0.3) 0%, rgba(14,45,79,0.7) 100%);
    pointer-events: none;
  }

  .mobile-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px 60px;
    color: var(--white);
  }

  .mobile-hero-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 12px;
  }

  .mobile-hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .mobile-hero-content p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
    line-height: 1.5;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2.5s ease-in-out infinite;
  }

  .mobile-hero-scroll .scroll-arrow {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
  }

  /* Mobile sections */
  .mobile-section {
    padding: 48px 20px;
  }

  .mobile-section-title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--ink);
  }

  .mobile-section-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--slate);
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  /* Mobile service card */
  .mobile-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-card:first-of-type {
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-card:active {
    opacity: 0.6;
  }

  .mobile-card-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }

  .mobile-card h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 2px;
  }

  .mobile-card p {
    font-size: 13px;
    font-weight: 400;
    color: var(--slate);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
  }

  .mobile-card-arrow {
    margin-left: auto;
    color: var(--slate);
    opacity: 0.3;
    flex-shrink: 0;
  }

  /* Mobile contact */
  .mobile-contact input,
  .mobile-contact textarea,
  .mobile-contact select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 16px;
    background: var(--white);
    color: var(--ink);
    -webkit-appearance: none;
    appearance: none;
  }

  .mobile-contact .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* Mobile map */
  .mobile-map {
    position: relative;
  }

  .mobile-map-overlay {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
  }

  .mobile-map iframe {
    display: block;
    height: 240px;
  }

  /* Mobile footer */
  .mobile-footer {
    background: var(--ink);
    color: var(--white);
    padding: 40px 20px 80px;
    text-align: center;
  }

  .mobile-footer h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }

  .mobile-footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-footer-info a,
  .mobile-footer-info span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }

  .mobile-footer-info a:active {
    opacity: 0.6;
  }

  .mobile-footer-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 24px 0 16px;
  }

  .mobile-footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
  }
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
  max-width: 640px;
  margin: 0 0 12px;
  text-shadow: none;
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px;
  text-shadow: none;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
}

.btn--hero-primary,
.btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.33s cubic-bezier(0.5, 0, 0, 0.75), border-color 0.33s cubic-bezier(0.5, 0, 0, 0.75);
}

.btn--hero-primary {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.btn--hero-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn--hero-secondary {
  background: rgba(255,255,255,0.92);
  color: #393c41;
  border: none;
}

.btn--hero-secondary:hover {
  background: rgba(210,212,216,0.92);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 4px;
  background: rgba(8,18,28,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-rating:hover {
  background: rgba(8,18,28,0.7);
  border-color: rgba(255,255,255,0.28);
}

.hero-rating-g,
.hero-rating-stars {
  flex-shrink: 0;
}

.hero-rating-score {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.hero-rating-score strong {
  font-weight: 700;
  color: var(--white);
}

.hero-rating-count {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  padding-left: 6px;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.hero-trust-list li {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.hero-trust-list li + li::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translateY(-50%);
}

.hero-trust-list--below {
  justify-content: center;
}

.hero-trust-list--below li {
  color: #393c41;
  text-shadow: none;
}

.hero-trust-list--below li + li::before {
  background: rgba(20,20,19,0.25);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-inner {
  position: relative;
  border-radius: 4px;
  min-height: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.32, 0.94, 0.6, 1), box-shadow 0.45s cubic-bezier(0.32, 0.94, 0.6, 1);
}

.service-card-inner:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  opacity: 1;
}

.service-card-inner:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition-duration: 0.1s;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,45,79,0.9) 0%, rgba(26,67,113,0.4) 40%, transparent 70%);
  pointer-events: none;
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-card-content h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.service-card-content p {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
  line-height: 1.4;
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  background-image: linear-gradient(var(--white), var(--white));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: opacity 0.3s ease, background-size 0.4s cubic-bezier(0.32, 0.94, 0.6, 1);
}

.service-card-inner:hover .card-link {
  opacity: 1;
  background-size: 100% 1px;
}

.card-link:hover {
  opacity: 1;
}

.extra-services {
  margin-top: 64px;
  text-align: left;
}

.extra-services-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.extra-services-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.extra-services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.extra-service-card {
  position: relative;
  border-radius: 4px;
  height: 18vh;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.extra-service-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.extra-service-card:active {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.extra-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,45,79,0.85) 0%, rgba(26,67,113,0.6) 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.extra-service-name {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  padding: 12px 0;
}

.extra-service-card p {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.4;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.brand-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-band-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 20px;
}

.brand-band-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate);
  max-width: 460px;
  margin: 0;
}

.brand-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 40px 32px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.brand-panel-logo {
  height: 56px;
  width: auto;
  filter: brightness(0);
  margin-bottom: 10px;
}

.brand-panel-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 28px;
}

.brand-panel-divider {
  width: 48px;
  height: 1px;
  background: var(--border-soft);
  margin-bottom: 20px;
}

.brand-panel-also {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.7;
  margin-bottom: 16px;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: var(--cream-lifted);
  border: 1px solid var(--border-soft);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.brand-badge--muted {
  background: transparent;
  border-color: transparent;
  color: var(--slate);
}

.detail-cards-grid {
  display: grid;
  gap: 24px;
}

.detail-cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.detail-cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.detail-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(20,20,19,0.06), 0 8px 24px rgba(20,20,19,0.05);
  transition: box-shadow 0.4s ease;
}

.detail-card:hover {
  box-shadow: 0 20px 40px rgba(20,20,19,0.1);
}

.detail-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: none;
}

.detail-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.detail-card:hover .detail-card-img::before {
  transform: scale(1.08);
}

.detail-card-body {
  padding: 32px 32px 36px;
}

.detail-card-index {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slate);
  opacity: 0.6;
  margin-bottom: 10px;
}

.detail-card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

.detail-card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 22px;
}

.detail-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(20,20,19,0.08);
}

.detail-card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.75;
}

.detail-card-list li::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 6px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(45deg);
}

.container--flush {
  padding: 0;
}

.feature-banners {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%;
  align-items: stretch;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
}

.feature-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 0;
}

.feature-banner--navy .feature-banner-bg {
  background: linear-gradient(100deg, var(--cream) 0%, var(--cream) 45%, var(--charcoal) 100%);
}

.feature-banner--charcoal .feature-banner-bg {
  background: linear-gradient(100deg, var(--cream) 0%, var(--cream) 45%, var(--blue-dark) 100%);
}

.feature-banner-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 40px 56px 96px;
  max-width: 420px;
}

.feature-banner-headline {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.feature-banner-headline strong {
  font-weight: 600;
  color: var(--white);
}

.feature-banner--navy .feature-banner-headline,
.feature-banner--charcoal .feature-banner-headline {
  color: rgba(20,20,19,0.75);
}

.feature-banner--navy .feature-banner-headline strong,
.feature-banner--charcoal .feature-banner-headline strong {
  color: var(--ink);
}

.feature-banner-more {
  display: inline-block;
  align-self: flex-start;
  margin-top: 18px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.feature-banner-more:hover {
  opacity: 0.75;
}

.feature-banner--navy .feature-banner-more,
.feature-banner--charcoal .feature-banner-more {
  color: var(--ink);
}

/* ==================================================================
   Lue lisää -overlay: fullscreen-banneri (Tesla-tyyli)
   Lähes koko näytön täyttävä kortti: yläosassa täysleveä kuva, jonka
   päällä otsikko ja kuvaus vasemmassa yläkulmassa valkoisella
   tekstillä, alaosassa vierivä valkoinen alue suurella keskitetyllä
   info-tekstillä. Kuva on valinnainen – ilman .has-image-luokkaa
   otsikko siirtyy tavalliseksi ylätunnisteeksi vierivän alueen alkuun.
   Ei kehyksiä, fonttipainot vain 400/500, normaali kirjainväli,
   0.33s siirtymät.
   ================================================================== */

/* Kortti roikkuu näytön alareunassa kiinni, ei keskellä – kuten Teslan
   omat lightboxit. Siksi align-items on flex-end eikä center, ja alapehmuste
   on 0 niin kortin alareuna koskettaa näytön reunaa. */
.info-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 16px 0;
  background: rgba(23,26,32,0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.42s;
}

.info-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.info-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1720px;
  height: min(92vh, 960px);
  max-height: 94vh;
  overflow: hidden;
  background: var(--white);
  /* Vain yläkulmat pyöristetty – alareuna on suora koska se on kiinni
     näytön alalaidassa. */
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-card);
  opacity: 0.94;
  transform: scale(0.975) translateY(28px);
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.info-modal-overlay.is-open .info-modal {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Sulkunappi: ainoa kiinteä elementti kortissa (ks. .info-modal-scroll,
   jonka ulkopuolella tämä on). Aina sama tumma ympyrä riippumatta siitä
   mikä sisältö sattuu vierimään sen alle – kuva tai valkoinen teksti –
   koska huurrettu valkoinen versio katoaisi valkoista taustaa vasten. */
.info-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.28);
  transition: background 0.33s ease, color 0.33s ease;
}

.info-modal-close:hover {
  background: #2a2a29;
}

/* ------------------------------------------------------------------
   Vierivä alue: kuva JA teksti vierivät yhdessä samana sisältönä.
   Sulkunappi jää tämän elementin ulkopuolelle (ks. .info-modal-close),
   joten se ei liiku vieritettäessä, vaikka kuva vierii pois näkyvistä.
   ------------------------------------------------------------------ */
.info-modal-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

/* Kuva-alue: n. 55% näytön korkeudesta, otsikko ja kuvaus vasemmassa
   yläkulmassa valkoisella tekstillä – näkyy vain kun .has-image on
   asetettu. Liuku ylhäältä tekee tekstistä luettavan kuvan päällä. */
.info-modal-media {
  display: none;
  position: relative;
  width: 100%;
  height: min(55vh, 560px);
  overflow: hidden;
  background: #e5e5e0;
  opacity: 0;
  transform: scale(1.025);
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-modal.has-image .info-modal-media {
  display: block;
}

.info-modal-overlay.is-open .info-modal.has-image .info-modal-media {
  opacity: 1;
  transform: scale(1);
}

.info-modal-media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-modal-media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 40px 56px;
  background: linear-gradient(to bottom, rgba(23,26,32,0.72) 0%, rgba(23,26,32,0.3) 45%, rgba(23,26,32,0) 75%);
}

/* Info-teksti on iso ja keskitetty, kuin bannerin alla oleva väite,
   eikä tavallinen vasemmalle tasattu kappale. */
.info-modal-scroll-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 56px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.36s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-modal-overlay.is-open .info-modal-scroll-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.info-modal-overlay.is-open .info-modal:not(.has-image) .info-modal-scroll-inner {
  transition-delay: 0.08s;
}

/* Sisä- ja ulkosäilytys ovat saman vaihtuvan kortin kaksi vaihtoehtoa. */
.svm-card--wide .storage-tabs {
  gap: 8px;
}

.svm-card--wide .storage-tabs .storage-dot {
  width: auto;
  height: 34px;
  padding: 0 14px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-btn);
  background: rgba(20, 20, 19, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.svm-card--wide .storage-tabs .storage-dot--active {
  width: auto;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.svm-card--wide .storage-tabs .storage-dot::after {
  display: none;
}

.svm-card--wide .storage-tabs .storage-dot:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.svm-card--wide .storage-tabs .storage-dot--active:hover {
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 560px) {
  .svm-card--wide .storage-tabs {
    top: 16px;
    width: calc(100% - 32px);
    justify-content: center;
  }

  .svm-card--wide .storage-tabs .storage-dot {
    flex: 1;
    padding: 0 8px;
    font-size: 12px;
  }
}

/* Väliotsikollinen kortti (intro + sections) tarvitsee enemmän leveyttä
   kuin pelkkä keskitetty lause, koska väliotsikot lukevat artikkelina. */
.info-modal-scroll-inner.has-sections {
  max-width: 900px;
}

/* Ilman kuvaa otsikko on tavallinen ylätunniste vierivän alueen
   alussa, vasemmalle tasattuna kuten muukin sivun teksti. */
.info-modal.has-image .info-modal-header {
  display: none;
}

.info-modal:not(.has-image) .info-modal-scroll-inner {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.info-modal-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--blue);
  margin-bottom: 10px;
}

.info-modal-title {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}

/* Kuvan päällä oleva versio: valkoinen teksti, isompi otsikko kuten
   fullscreen-bannerissa. */
.info-modal-eyebrow--media {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

.info-modal-title--media {
  font-size: 44px;
  color: var(--white);
  margin-bottom: 8px;
}

.info-modal-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: #5c5e62;
  margin-bottom: 24px;
}

.info-modal:not(.has-image) .info-modal-body {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: #5c5e62;
}

/* ------------------------------------------------------------------
   Rikas sisältö: iso keskitetty intro ja sen alla väliotsikoin jaetut
   kappaleet vasemmalle tasattuna – kuten pitkä Tesla-artikkelisivu
   pienoiskoossa fullscreen-bannerin sisällä.
   ------------------------------------------------------------------ */
.info-modal-intro {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}

.info-modal-sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
  margin-bottom: 8px;
}

.info-modal-section-heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 8px;
}

.info-modal-section-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
  color: #5c5e62;
  margin: 0;
}

.info-modal-link {
  color: var(--blue);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: normal;
  transition: opacity 0.33s ease;
}

.info-modal-link:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .info-modal { height: min(94vh, 900px); }
  .info-modal-media { height: min(38vh, 340px); }
  .info-modal-media-overlay { padding: 24px; }
  .info-modal-scroll-inner { padding: 28px 24px; }
  .info-modal-title { font-size: 26px; }
  .info-modal-title--media { font-size: 30px; }
  .info-modal-eyebrow--media { font-size: 15px; }
  .info-modal-body,
  .info-modal:not(.has-image) .info-modal-body { font-size: 17px; }
  .info-modal-intro { font-size: 20px; margin-bottom: 24px; padding-bottom: 24px; }
  .info-modal-sections { gap: 20px; }
  .info-modal-section-heading { font-size: 18px; }
  .info-modal-section-text { font-size: 17px; }
}

.feature-banner-media {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
}

.feature-banner-media--right {
  justify-content: flex-end;
  padding-right: 0px;
}

.feature-banner-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.svm-cards-heading {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
  margin: 0 0 48px;
}

.svm-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svm-cards-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.extra-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.extra-services-list span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.04);
  font-size: 12px;
  font-weight: 500;
  color: #1d1d1f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.container--pricing {
  max-width: 1280px;
}

@media (min-width: 1440px) {
  .container--pricing {
    max-width: 1440px;
  }

  .pricing-grid {
    gap: 36px;
  }

  .pricing-card {
    padding: 40px 32px 28px;
  }
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 420px;
}

.price-calculator {
  display: flex;
  flex-direction: column;
}

.calc-price-sep {
  font-size: 24px;
  font-weight: 400;
  color: #b0b0b0;
  margin: 0 4px;
  align-self: center;
}

.calc-boat-wrap {
  position: relative;
  margin-bottom: 4px;
  aspect-ratio: 100/50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-boat-img {
  width: 45%;
  height: 95%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.calc-boat-img--fading {
  opacity: 0;
}

.calc-boat-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.calc-svg-label {
  font-size: 8px;
  font-weight: 600;
  fill: #1d1d1f;
  paint-order: stroke fill;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.calc-compact-slider {
  width: 100%;
  margin-bottom: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.calc-compact-slider label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.calc-compact-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #c1c1c1;
  outline: none;
  cursor: pointer;
}

.calc-compact-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0071e3;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  margin-top: -7px;
}

.calc-compact-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0071e3;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
}

.pricing-card--calc .btn--pricing {
  align-self: center;
}

.pricing-card--calc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 64px 64px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pricing-card--featured {
  background: #1d1d1f;
  color: #fff;
  border-color: transparent;
}

.pricing-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0071e3;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.pricing-card-header {
  margin-bottom: 6px;
}

.pricing-size {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.pricing-type {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #86868b;
}

.pricing-card--featured .pricing-type {
  color: rgba(255,255,255,0.6);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.pricing-from {
  font-size: 12px;
  font-weight: 400;
  color: #86868b;
  margin-right: 4px;
}

.pricing-card--featured .pricing-from {
  color: rgba(255,255,255,0.5);
}

.pricing-amount {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-unit {
  font-size: 14px;
  font-weight: 500;
  color: #86868b;
}

.pricing-card--featured .pricing-unit {
  color: rgba(255,255,255,0.6);
}

.pricing-currency {
  font-size: 18px;
  font-weight: 500;
  color: #86868b;
}

.pricing-card--featured .pricing-currency {
  color: rgba(255,255,255,0.6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  width: 100%;
}

.pricing-features li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #1d1d1f;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card--featured .pricing-features li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-extra {
  font-size: 15px;
  font-weight: 500;
  color: #0071e3;
  padding: 8px 16px;
  background: rgba(0,113,227,0.06);
  border-radius: 8px;
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-extra {
  background: rgba(0,113,227,0.15);
  color: #4da3ff;
}

.pricing-footer {
  font-size: 12px;
  line-height: 1.4;
  color: #86868b;
  margin: auto 0 8px;
  text-align: center;
  width: 100%;
}

.pricing-card--featured .pricing-footer {
  color: rgba(255,255,255,0.45);
}

.service-pricing {
  max-width: 600px;
  margin: 0 auto;
}

.service-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-pricing-row:last-child {
  border-bottom: none;
}

.service-pricing-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  flex: 1;
  text-align: left;
}

.service-pricing-note {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  white-space: nowrap;
}

.service-pricing-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

.btn--pricing {
  width: 100%;
  justify-content: center;
  max-width: 220px;
}

.svm-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 1px 3px rgba(20,20,19,0.05), 0 8px 20px rgba(20,20,19,0.04);
}

.svm-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.svm-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.4) 30%, rgba(10,10,10,0) 55%);
  z-index: 1;
  pointer-events: none;
}

.svm-card-text {
  position: relative;
  z-index: 2;
  padding: 48px 40px 0;
}

.svm-card-eyebrow {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}

.svm-card-title {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin: 0 0 16px;
}

.svm-card-link {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.svm-card-link:hover {
  opacity: 0.75;
}

.svm-card--wide {
  grid-column: 1 / -1;
}

.svm-card--wide .storage-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.svm-card--wide .storage-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.svm-card--wide .storage-arrow--prev {
  left: 24px;
}

.svm-card--wide .storage-arrow--next {
  right: 24px;
}

.svm-card--wide .storage-content {
  text-align: center;
  transition: opacity 0.3s ease;
}

.svm-card--wide .storage-dots {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.svm-card--wide .storage-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width 0.4s ease, background 0.3s;
}

.svm-card--wide .storage-dot--active {
  width: 28px;
  background: rgba(255,255,255,0.2);
}

.svm-card--wide .storage-dot--active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--white);
  border-radius: 3px;
}

.svm-card--wide .storage-dot--animating::after {
  animation: storageProgress 10s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.svm-card--wide .storage-paused .storage-dot--animating::after {
  animation-play-state: paused;
}

.svm-card--wide .storage-paused .storage-dot {
  opacity: 0.4;
}

@keyframes storageProgress {
  from { width: 0; }
  to { width: 100%; }
}

.section-banner {
  line-height: 0;
}

.section-banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.motor-showcase-heading {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.motor-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%;
  align-items: stretch;
  height: 440px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.motor-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.motor-showcase-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.motor-showcase-bg-layer.is-active {
  opacity: 1;
}

.motor-showcase-bg-layer--verado {
  background: linear-gradient(100deg, transparent 0%, transparent 45%, #c8d4e3 100%);
}

.motor-showcase-bg-layer--proxs {
  background: linear-gradient(100deg, transparent 0%, transparent 45%, #6e1414 100%);
}

.motor-showcase-bg-layer--fourstroke {
  background: linear-gradient(100deg, transparent 0%, transparent 45%, #c5c4c0 100%);
}

.motor-showcase-bg-layer--seapro {
  background: linear-gradient(100deg, transparent 0%, transparent 45%, #1a3a6e 100%);
}

.motor-showcase-bg-layer--jet {
  background: linear-gradient(100deg, transparent 0%, transparent 45%, #4a4a48 100%);
}

.motor-showcase-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 40px 56px 56px;
  max-width: 380px;
}

.motor-showcase-lede {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px;
}

.motor-showcase-lede strong {
  color: var(--white);
}

.motor-showcase-cta {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.motor-showcase-cta:hover {
  background: #fbfafa;
  border-color: #f0f0f0;
}

.motor-showcase-media {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.motor-showcase-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 70%;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  filter: brightness(0.25);
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.motor-showcase-img.is-active {
  opacity: 1;
  filter: brightness(1);
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  z-index: 3;
}

.motor-showcase-img.is-prev,
.motor-showcase-img.is-next {
  opacity: 0.25;
  filter: brightness(0.25);
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.motor-showcase-img.is-prev {
  transform: translate(-50%, -50%) translateX(-62%) scale(0.75);
}

.motor-showcase-img.is-next {
  transform: translate(-50%, -50%) translateX(62%) scale(0.75);
}

.motor-showcase-img.is-prev:hover,
.motor-showcase-img.is-next:hover {
  filter: brightness(0.4);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 25vh;
  margin-top: 48px;
}

.service-block {
  padding: 28px 24px 32px;
  background: var(--white);
  border-right: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-block:last-child {
  border-right: none;
}

.service-block:hover {
  background: #f7f7f7;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.08);
}

.service-block-dot {
  display: none;
}

.service-block p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate);
  width: 100%;
  opacity: 0.8;
}

.service-highlight {
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  opacity: 1;
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--dark .section-title {
  color: var(--white);
}

.mercury-tile {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient(170deg, #070708 0%, #0d0d10 30%, #111114 50%, #0a0a0c 75%, #050506 100%);
  color: var(--white);
  text-align: center;
}

.mercury-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(images/mercurybanner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;
  filter: brightness(0);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.mercury-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  mix-blend-mode: soft-light;
}

.mercury-tile > .container {
  position: relative;
  z-index: 3;
}

.spotlight {
  position: absolute;
  inset: -20px -40px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), var(--spotlight-color, rgba(255,255,255,0.03)), transparent 60%);
}

.mercury-title {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--white);
}

.mercury-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0 auto 48px;
  max-width: 620px;
}

.mercury-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mercury-feature {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mercury-feature:last-child {
  border-right: none;
}

.mercury-feature strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.mercury-feature p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.mercury-cta {
  margin-top: 40px;
}

.card-hover {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s cubic-bezier(0.16,1,0.3,1);
}

@media (hover: hover) and (pointer: fine) {
  .card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  }
}

.form-success {
  text-align: center;
  padding: 16px 24px;
  margin-top: 16px;
  border-radius: var(--radius-btn);
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  animation: formSuccessIn 0.5s cubic-bezier(0.25,0.1,0.25,1) forwards;
}

@keyframes formSuccessIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .form-success {
    animation: none;
  }
}

.grid-stagger > * {
  will-change: opacity, transform;
}

.section.animate-in .grid-stagger > * {
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.section.animate-in .grid-stagger > *:nth-child(1) { animation-delay: 0s; }
.section.animate-in .grid-stagger > *:nth-child(2) { animation-delay: 0.04s; }
.section.animate-in .grid-stagger > *:nth-child(3) { animation-delay: 0.08s; }
.section.animate-in .grid-stagger > *:nth-child(4) { animation-delay: 0.12s; }
.section.animate-in .grid-stagger > *:nth-child(5) { animation-delay: 0.16s; }
.section.animate-in .grid-stagger > *:nth-child(6) { animation-delay: 0.2s; }

.contact-form {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--white);
  padding: 56px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(20,20,19,0.08), 0 4px 16px rgba(20,20,19,0.04);
  border: 1px solid var(--border-soft);
  text-align: left;
}

.contact-form--flat {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.field-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--slate);
}

.field-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.field-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--slate);
  background: none;
  padding: 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 7px;
  font-weight: 600;
  line-height: 1;
  color: var(--slate);
  cursor: default;
  opacity: 0.55;
  transition: opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.field-info-wrap:hover .field-info-btn,
.field-info-btn.is-active {
  opacity: 1;
  border-color: var(--blue);
  color: var(--blue);
}

.field-tooltip {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  width: 320px;
  max-width: min(320px, 80vw);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(20,20,19,0.14), 0 2px 8px rgba(20,20,19,0.06);
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  z-index: 30;
}

.field-tooltip.is-open {
  display: block;
  animation: fieldTooltipIn 0.18s ease both;
}

@keyframes fieldTooltipIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  background: var(--typebox);
  border-color: var(--border-soft);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.multi-select-trigger:hover {
  border-color: var(--slate);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238e8e93' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--slate);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,67,113,0.1);
}

.contact-form .btn {
  margin-top: 4px;
  align-self: center;
  width: auto;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: #ffffff;
}

.contact-form .btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.multi-select {
  position: relative;
  width: 100%;
}

.multi-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 4px;
  background: var(--typebox);
  cursor: pointer;
  height: 48px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.multi-select-trigger:hover {
  border-color: var(--slate);
}

.multi-select-trigger:focus,
.multi-select--open .multi-select-trigger {
  border-color: var(--blue);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,67,113,0.1);
}

.multi-select-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.multi-select-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,67,113,0.08);
  color: var(--blue);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.multi-select-tag-remove {
  cursor: pointer;
  opacity: 0.4;
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.15s;
}

.multi-select-tag-remove:hover {
  opacity: 1;
}

.multi-select-placeholder {
  color: var(--slate);
  opacity: 0.5;
  font-size: 15px;
}

.multi-select-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  flex-shrink: 0;
  font-size: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238e8e93' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat center / 12px 8px;
  transition: transform 0.2s;
}

.multi-select--open .multi-select-arrow {
  transform: rotate(180deg);
}

.multi-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 6px;
  display: none;
  z-index: 10;
  max-height: 280px;
  overflow-y: auto;
}

.multi-select--open .multi-select-dropdown {
  display: block;
}

.multi-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  transition: background 0.15s;
}

.multi-select-option:hover {
  background: rgba(26,67,113,0.04);
}

.multi-select-option input {
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.multi-select-option--top {
  font-weight: 500;
}

.multi-select-group {
  border-radius: 4px;
  overflow: hidden;
}

.multi-select-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}

.multi-select-group-toggle:hover {
  background: rgba(26,67,113,0.04);
}

.multi-select-group-plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.multi-select-group-plus::before,
.multi-select-group-plus::after {
  content: '';
  position: absolute;
  background: var(--slate);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.multi-select-group-plus::before {
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
}

.multi-select-group-plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
}

.multi-select-group--open .multi-select-group-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.multi-select-subgroup {
  display: none;
  flex-direction: column;
  padding: 2px 0 6px 14px;
  gap: 2px;
}

.multi-select-group--open .multi-select-subgroup {
  display: flex;
}

.multi-select-subgroup .multi-select-option {
  font-size: 14px;
  padding: 8px 14px;
}

.multi-select-subgroup .multi-select-option input {
  width: 16px;
  height: 16px;
}

.multi-select-subgroup-link {
  font-size: 13px;
  color: var(--blue);
  text-decoration: underline;
  padding: 6px 14px 4px;
}

.multi-select-subgroup-link:hover {
  color: var(--blue-light);
}

/* ------------------------------------------------------------------
   Universaali dropdown-menu (Valitse palvelut -tyylinen)
   Käytettävissä kaikkialla – myös dashboardissa (style.css latautuu
   dashboard-sivulle). Peruskuvio:
     <div class="udrop">
       <button type="button" class="udrop-trigger">
         <span class="udrop-value">Valitse…</span>
         <span class="udrop-arrow"></span>
       </button>
       <div class="udrop-menu">
         <button type="button" class="udrop-item" data-value="x">…</button>
       </div>
     </div>
   - .udrop-menu--right: avautuu oikeaan reunaan
   - .udrop-menu--fixed: irrallinen ehdotuslista (position: fixed),
     koordinaatit annetaan JS:n kautta (esim. osahaku)
   ------------------------------------------------------------------ */
.udrop {
  position: relative;
  display: inline-block;
}

.udrop-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 4px;
  background: var(--typebox);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.udrop-trigger:hover {
  border-color: var(--slate);
}

.udrop.is-open .udrop-trigger,
.udrop-trigger:focus-visible {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,67,113,0.1);
  outline: none;
}

.udrop-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.udrop-placeholder {
  color: var(--slate);
  opacity: 0.5;
}

.udrop-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238e8e93' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat center / 12px 8px;
  transition: transform 0.2s;
}

.udrop.is-open .udrop-arrow {
  transform: rotate(180deg);
}

.udrop-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  padding: 6px;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

.udrop.is-open .udrop-menu {
  display: block;
  animation: udrop-in 0.16s ease;
}

.udrop-menu--right {
  left: auto;
  right: 0;
}

.udrop-menu--fixed {
  position: fixed;
  min-width: 0;
  max-width: none;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  padding: 4px;
  max-height: 200px;
  z-index: 9999;
}

@keyframes udrop-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.udrop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  transition: background 0.15s;
}

.udrop-item:hover {
  background: rgba(26,67,113,0.04);
}

.udrop-item.is-selected {
  color: var(--blue);
  font-weight: 600;
}

.udrop-item.is-disabled,
.udrop-item.is-used {
  opacity: 0.4;
  cursor: default;
  text-decoration: line-through;
}

.udrop-item.is-disabled:hover,
.udrop-item.is-used:hover {
  background: transparent;
}

.udrop-sep {
  height: 1px;
  background: var(--border-soft);
  margin: 6px 4px;
}

.udrop-label {
  padding: 8px 14px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
}

/* Hakuehdotusrivit (esim. osakatalogi): koodi, kuvaus ja hinta. */
.udrop-item--suggest {
  padding: 8px 12px;
  font-size: 13px;
  min-height: 36px;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
}
.udrop-item--suggest:last-child { border-bottom: none; }
.udrop-item--suggest .udrop-item-code { font-weight: 600; color: var(--blue); white-space: nowrap; }
.udrop-item--suggest .udrop-item-desc { color: #555; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.udrop-item--suggest .udrop-item-price { color: #333; font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }

.map-section {
  line-height: 0;
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.map-container iframe {
  display: block;
}

/* Täysleveä pinta-ala: koko ikkuna, 50px reunaväli kummallakin puolella.
   Syntyi kartta-osiosta mutta on nyt yleiskäyttöinen – mikä tahansa
   osio voi käyttää .full-bleed-a saadakseen saman rytmin kuin kartta. */
.full-bleed,
.map-section {
  padding: 0 50px;
  background: var(--white);
}

.map-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.dealer-map {
  width: 100%;
  height: 550px;
  background: #e5e5e0;
}

/* Kuva karttaosion mitoilla (talvisäilytys). Sama korkeus ja pyöristys
   kuin .dealer-map, jotta lohkot ovat sivujen välillä samankokoiset. */
.map-photo {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.map-section--photo {
  margin-bottom: 96px;
}

.dealer-pin span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1a73e8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.dealer-pin--light span {
  background: #9fc7f5;
}

.dealer-pin--shop span,
.dealer-pin--launch span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.dealer-pin--shop span {
  width: 32px;
  height: 32px;
  background: #1a73e8;
}

.dealer-pin--shop span img {
  width: 18px;
  height: 18px;
  display: block;
}

.dealer-pin--launch span {
  width: 22px;
  height: 22px;
  background: #8a8a8a;
}

.dealer-pin--launch span svg {
  width: 12px;
  height: 12px;
}

.map-locate-btn,
.map-fullscreen-btn {
  position: absolute;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  line-height: 1;
}

.map-locate-btn {
  bottom: 16px;
  left: 16px;
  padding: 10px 16px;
}

.map-locate-btn:hover,
.map-fullscreen-btn:hover {
  background: #f5f5f5;
}

.map-fullscreen-btn {
  bottom: 16px;
  right: 16px;
  padding: 10px;
  border-radius: 50%;
}

.map-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 50px 48px;
  background: var(--white);
  line-height: 1.5;
}

.map-info-main h3 {
  margin: 0 0 8px;
  font-size: 47px;
  font-weight: 700;
}

.map-info-main p {
  margin: 0 0 20px;
  font-size: 23px;
  color: var(--ink-soft, #5a5a5a);
  max-width: 480px;
}

.map-info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-legend {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.map-legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 180px;
}

.map-legend-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-legend-number {
  font-size: 47px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.map-legend-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-legend-dot img,
.map-legend-dot svg {
  width: 32px;
  height: 32px;
  display: block;
}

.map-legend-dot--shop {
  background: #1a73e8;
}

.map-legend-dot--launch {
  background: #8a8a8a;
}

.map-legend-label {
  font-size: 20px;
  color: var(--ink);
}

@media (max-width: 767px) {
  .map-info {
    padding: 24px 16px 40px;
  }

  .map-legend {
    gap: 24px;
  }
}

.footer {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer--minimal {
  padding: 24px 0;
}

.footer-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  text-align: center;
}

.footer-minimal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  line-height: 0;
  color: var(--ink);
}

.footer-minimal-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-minimal-copy {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: var(--ink);
}

.footer-minimal-inner a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}

.footer-minimal-inner a:hover {
  text-decoration: underline;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0);
  opacity: 0.85;
}

.footer-brand-header span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20,20,19,0.4);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(20,20,19,0.7);
}

.footer-col a {
  position: relative;
  width: fit-content;
  transition: color 0.25s ease;
}

.footer-col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  opacity: 0.5;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-col a:hover::after {
  transform: scaleX(1);
}

.footer-hours {
  margin-bottom: 12px;
  opacity: 0.6;
}

.footer-hours .hours-time {
  opacity: 1;
  font-weight: 500;
  color: var(--ink);
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  display: block;
  filter: brightness(0);
  opacity: 0.85;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.google-rating:hover {
  transform: translateY(-2px);
}

.google-rating-icon {
  flex-shrink: 0;
}

.google-rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.google-rating-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-rating-stars {
  display: inline-block;
  flex-shrink: 0;
}

.google-rating-text span:last-child {
  font-size: 12px;
  color: rgba(20,20,19,0.45);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(20,20,19,0.55);
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(20,20,19,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(20,20,19,0.45);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--ink);
}

@media (max-width: 1024px) {
  .header {
    left: 24px;
    right: 24px;
  }

  .nav {
    gap: 40px;
  }

  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .service-block {
    min-height: 18vh;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-calculator {
    grid-template-columns: 1fr;
  }

  .price-calc-image-wrap {
    min-height: 300px;
  }

  .price-calc-sliders {
    padding: 28px 24px;
  }
}

@media (max-width: 1024px) {
  .mercury-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .header {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .header-pill {
    padding: 10px 20px;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-card);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav--open {
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(20,20,19,0.05);
    opacity: 0.6;
  }
  .nav a.nav--active {
    opacity: 1;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .header-cta-wrap .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .page-hero {
    padding: 100px 24px 40px;
  }

  .page-hero--img {
    padding: 120px 24px 60px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-block {
    min-height: auto;
    padding: 24px 20px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }

  .btn--hero-primary,
  .btn--hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-bar {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto 24px;
  display: block;
}

.section-tagline {
  display: block;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--blue);
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .extra-services-grid,
  .extra-services-grid--2,
  .extra-services-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-circle {
    width: 220px;
    height: 220px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mercury-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .mercury-text {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .mercury-features {
    gap: 20px 24px;
  }

  .mercury-table-title {
    font-size: 18px;
    margin: 48px 0 16px;
    padding-top: 36px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .pricing-grid--3col {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .price-calc-prices {
    grid-template-columns: 1fr;
  }

  .pricing-amount {
    font-size: 34px;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide-inner {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
}

.carousel-dot:hover {
  transform: scale(1.3);
}

.carousel-dot--active {
  background: var(--blue);
  transform: scale(1.15);
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dual-grid .dual-block:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  height: calc((100vw - 12px) * 3 / 8);
}

.dual-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 48px 36px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.dual-block--verado {
  background:
    linear-gradient(135deg, #f5f5f5 20%, #e8ebf0 40%, #dce3ed 60%, #c8d4e3 80%),
    linear-gradient(315deg, rgba(255,255,255,0.5) 0%, transparent 50%);
  color: var(--ink);
}

.dual-block--proxs {
  background:
    linear-gradient(135deg, #2a0a0a 20%, #1e0e0e 40%, #111110 60%, #1a0808 80%),
    linear-gradient(315deg, rgba(60,20,20,0.4) 0%, transparent 50%);
  color: #fff;
}

.dual-block--fourstroke {
  background:
    linear-gradient(135deg, #eeedea 20%, #e5e4e1 40%, #d4d3d0 60%, #c5c4c0 80%),
    linear-gradient(315deg, rgba(255,255,255,0.5) 0%, transparent 50%);
  color: var(--ink);
}

.dual-block--seapro {
  background:
    linear-gradient(135deg, #1a3a6e 20%, #132b5e 40%, #0c1e3f 60%, #0a1628 80%),
    linear-gradient(315deg, rgba(26,51,102,0.5) 0%, transparent 50%);
  color: #fff;
}

.dual-block--jet {
  background:
    linear-gradient(135deg, #3a3a39 20%, #2e2e2d 40%, #222221 60%, #161615 80%),
    linear-gradient(315deg, rgba(80,80,80,0.35) 0%, transparent 50%);
  color: #fff;
}

.dual-block-title {
  font-size: clamp(1.6rem, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 2px;
}

.dual-block-hp {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
  margin: 0 0 8px;
}

.dual-block-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.7;
  max-width: 300px;
  margin: 0 auto;
}

.dual-block-price {
  font-size: 15px;
  font-weight: 500;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  color: inherit;
}

.dual-block--verado .dual-block-price,
.dual-block--seapro .dual-block-price,
.dual-block--jet .dual-block-price {
  opacity: 0.9;
}

.dual-block--fourstroke .dual-block-price,
.dual-block--proxs .dual-block-price {
  opacity: 0.7;
}

.dual-block-img {
  flex: 1;
  width: 100%;
  margin-top: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
}

@media (max-width: 768px) {
  .dual-grid {
    grid-template-columns: 1fr;
  }
  .dual-grid .dual-block:last-child:nth-child(odd) {
    height: auto;
  }
  .dual-block {
    aspect-ratio: auto;
    min-height: 60vh;
    padding: 36px 24px 0;
  }
  .dual-block-img {
    min-height: 160px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .extra-services-grid,
  .extra-services-grid--2,
  .extra-services-grid--3 {
    grid-template-columns: 1fr;
  }

  .service-card-circle {
    width: 180px;
    height: 240px;
  }

  .mercury-features {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .mercury-feature {
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mercury-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mercury-cta {
    width: 100%;
  }
}

/* Tiimiruudukko (yhteystiedot): neljä henkilöä yhdellä rivillä. */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.review-card--hidden {
  display: none;
}

.review-grid--all .review-card--hidden {
  display: flex;
}

.review-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f59e0b;
  line-height: 1;
}

.review-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(20,20,19,0.05);
}

.review-author strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.review-author span {
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================================
   Talvisäilytys – hintarivi ja lisäpalvelut (Tesla-linja)
   Valkoinen sivupohja, vaaleanharmaat paneelit, ei kehyksiä eikä
   varjoja. Fonttipainot 400–500, normaali kirjainväli, terävät kulmat
   paneeleissa ja 4px napeissa.
   ================================================================== */

.svm-stats-section {
  padding: 96px 0;
}

.svm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Ei pystyerottimia: Tesla-linjassa jako tehdään välistyksellä. */
.svm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.svm-stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.2;
  color: var(--ink);
}

.svm-stat-unit {
  margin-left: 5px;
  font-size: 20px;
  font-weight: 400;
  color: #5c5e62;
}

.svm-stat-icon {
  color: var(--ink);
  width: 53px;
  height: 53px;
}

.svm-stat-label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: normal;
  color: #393c41;
}

/* ------------------------------------------------------------------
   Lisäpalvelut – vaakakortit
   Vaalea paneeli, vasemmalla otsikko, kuvaus ja valkoinen nappi,
   oikealla kuva reunasta reunaan.
   ------------------------------------------------------------------ */
.svm-services-section {
  padding: 96px 0;
}

.svm-services-title {
  margin: 0 0 32px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.svm-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.svm-svc-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38%;
  align-items: stretch;
  height: 190px;
  max-height: 190px;
  border-radius: 4px;
  background: #f4f4f4;
  overflow: hidden;
}

.svm-svc-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 32px;
}

.svm-svc-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.2;
  color: #171a20;
}

.svm-svc-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: normal;
  color: #393c41;
}

/* Tesla-linjan toissijainen CTA: valkoinen pohja, 4px kulmat, 0.33s. */
.svm-svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 170px;
  margin-top: 12px;
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  color: #393c41;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.33s ease, color 0.33s ease;
}

.svm-svc-btn:hover {
  background: #171a20;
  color: #ffffff;
}

.svm-svc-visual {
  position: relative;
  overflow: hidden;
}

.svm-svc-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Palveluille joilta ei ole valokuvaa: sama paneeli, ikoni keskellä. */
.svm-svc-visual--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9e9;
  color: #5c5e62;
}

@media (max-width: 900px) {
  .svm-services { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .svm-stats-section,
  .svm-services-section { padding: 64px 0; }

  .svm-stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svm-svc-card {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .svm-svc-visual {
    order: -1;
    height: 160px;
  }

  .svm-svc-body { padding: 24px; }

  .svm-svc-btn { width: 100%; }
}

/* Asiakasnäkymän esittely: suuri käyttöliittymäkuva ja rauhallinen, selkeä sisältö. */
.customer-portal-section {
  padding: 112px 0 120px;
  overflow: hidden;
}

.customer-portal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 56px);
  width: min(calc(100% - 96px), 1720px);
  height: 600px;
  margin: 0 auto 64px;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(135deg, #0e2d4f 0%, #1a4371 48%, #262627 100%);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.customer-portal-visual img {
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 44px rgba(20, 20, 19, 0.22);
}

.customer-portal-dashboard {
  width: auto;
  height: 488px;
  max-width: 72%;
  object-fit: contain;
}

.customer-portal-phone {
  width: auto;
  height: min(500px, 100%);
  max-width: 24%;
  object-fit: contain;
}

.customer-portal-content {
  width: min(calc(100% - 192px), 1600px);
  margin: 0 auto;
}

.customer-portal-title {
  max-width: none;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.customer-portal-intro {
  max-width: 1480px;
  margin: 0;
  color: #5c5e62;
  font-size: 18px;
  letter-spacing: -0.016em;
  line-height: 1.5;
}

.customer-portal-intro p + p {
  margin-top: 16px;
}

.customer-portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.customer-portal-cta {
  display: inline-flex;
  min-width: 224px;
  justify-content: center;
}

.customer-portal-cta--secondary {
  min-width: 130px;
}

/* Asiakasportaali – tulevaisuus-sivu. */
.future-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  min-height: 700px;
  padding: 152px max(48px, calc((100vw - 1440px) / 2)) 80px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 45%, #314d68 0%, #182b3e 38%, #0e1822 75%);
}

.future-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.future-hero-copy > p {
  margin: 0 0 16px;
  color: #a9c2d8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.future-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.future-hero-copy > span {
  display: block;
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

.future-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.future-hero-visual {
  position: relative;
  min-height: 450px;
}

.future-dashboard {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(100%, 800px);
  border-radius: 4px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.48);
  transform: translateY(-50%);
}

.future-phone {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: -56px;
  width: 22%;
  min-width: 120px;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.52);
}

.future-intro,
.future-flow {
  padding: 112px 0;
}

.future-intro--opening {
  padding-top: 176px;
}

.future-intro--opening h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.future-intro h2,
.future-flow h2,
.future-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.future-intro > .container > p {
  max-width: 1180px;
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.future-intro > .container > .future-opening-lead {
  max-width: 980px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.future-intro > .container > .future-opening-copy {
  max-width: 980px;
}

.future-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 72px);
  margin-top: 64px;
}

.future-feature-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.future-feature-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.future-flow {
  background: #f3f5f6;
}

.future-flow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 10vw, 180px);
}

.future-flow h2 + p {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.future-flow-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  border-top: 1px solid rgba(20, 20, 19, 0.14);
}

.future-flow-list > div:last-child {
  border-bottom: 1px solid rgba(20, 20, 19, 0.14);
}

.future-flow-list strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.future-flow-list span {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.016em;
}

.future-journey {
  padding: 112px 0;
  background: #f3f5f6;
}

.future-journey-heading {
  max-width: 960px;
  margin-bottom: 42px;
}

.future-journey-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.future-journey-heading p {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.future-journey-visual {
  position: relative;
  width: min(calc(100% - 160px), 1320px);
  height: clamp(355px, calc(31vw + 75px), 575px);
  margin: 0 auto 36px;
  overflow: hidden;
  border-radius: 4px;
  background: #d8e0e5;
}

.future-journey-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 0.55s ease;
}

.future-journey-image--active {
  opacity: 1;
}

.future-journey-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.future-journey-tabs::-webkit-scrollbar {
  display: none;
}

.future-journey-tab {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 182px;
  padding: 20px 0 0;
  border: 0;
  border-top: 4px solid rgba(20, 20, 19, 0.22);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  scroll-snap-align: center;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.future-journey-tab:not(.future-journey-tab--active) {
  opacity: 0.42;
}

.future-journey-tab--active {
  border-color: var(--ink);
}

.future-journey-tab strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.future-journey-tab p {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

.future-journey-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.future-cta {
  padding: 112px 24px;
  text-align: center;
  background: var(--white);
}

.future-cta h2 {
  max-width: 700px;
  margin: 0 auto;
}

.future-cta p {
  margin: 16px auto 30px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.5;
}

.future-feedback {
  padding: 112px 24px;
  background: var(--white);
}

.future-feedback-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.future-feedback-copy {
  max-width: 680px;
}

.future-feedback h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.future-feedback-copy > p:not(.future-feedback-status) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

.future-feedback-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.future-feedback-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(20, 20, 19, 0.2);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.016em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.future-feedback-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #a5a9ad;
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.future-feedback-icon svg {
  width: 17px;
  height: 17px;
}

.future-feedback-icon--up {
  background: var(--blue);
}

.future-feedback-button--positive,
.future-feedback-button:hover,
.future-feedback-button--selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.future-feedback-button:hover .future-feedback-icon,
.future-feedback-button--selected .future-feedback-icon {
  transform: translateY(-2px) scale(1.08);
}

.future-feedback-button:not(.future-feedback-button--positive):hover .future-feedback-icon,
.future-feedback-button[data-feedback="ei_kannatusta"].future-feedback-button--selected .future-feedback-icon {
  transform: translateY(2px) scale(1.08);
}

.future-feedback-button--selected {
  animation: future-feedback-confirm 0.42s ease-out;
}

@keyframes future-feedback-confirm {
  50% { transform: scale(1.035); }
}

.future-feedback-button:disabled {
  cursor: default;
  opacity: 0.72;
}

.future-feedback-status {
  min-height: 24px;
  margin-top: 18px !important;
  color: var(--blue) !important;
  font-size: 14px !important;
  font-weight: 500;
}

.future-feedback-counters {
  display: flex;
  flex-shrink: 0;
  gap: 42px;
}

.future-feedback-counter {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  align-items: center;
}

.future-feedback-counter strong {
  color: var(--ink);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.future-feedback-counter .future-feedback-icon {
  width: 34px;
  height: 34px;
}

.future-feedback-counter p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .future-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 132px 28px 66px;
  }

  .future-hero-visual {
    min-height: 350px;
  }

  .future-feature-grid,
  .future-flow-grid {
    grid-template-columns: 1fr;
  }

  .future-journey-tab {
    flex-basis: min(82vw, 360px);
  }

  .future-intro,
  .future-flow,
  .future-journey,
  .future-cta,
  .future-feedback {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .future-intro--opening {
    padding-top: 142px;
  }

  .future-feedback-layout {
    display: grid;
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .future-hero h1 {
    font-size: 42px;
  }

  .future-intro--opening h1 {
    font-size: 42px;
  }

  .future-hero-copy > span,
  .future-intro > .container > p,
  .future-flow h2 + p,
  .future-cta p {
    font-size: 16px;
  }

  .future-intro > .container > .future-opening-lead {
    font-size: 19px;
  }

  .future-hero-actions .btn--svm {
    width: 100%;
    justify-content: center;
  }

  .future-hero-visual {
    min-height: 260px;
  }

  .future-journey-visual {
    width: min(calc(100% - 32px), 1940px);
  }

  .future-journey-heading h2,
  .future-journey-tab strong {
    font-size: 24px;
  }

  .future-phone {
    bottom: -24px;
    min-width: 90px;
  }

  .future-intro h2,
  .future-flow h2,
  .future-cta h2,
  .future-feedback h2 {
    font-size: 34px;
  }

  .future-feedback-actions {
    display: grid;
  }

  .future-feedback-counters {
    justify-content: flex-start;
    gap: 32px;
  }
}

/* Mercury: tumma, tuotekuva edellä -esittely. */
.mercury-tile {
  padding: 104px 0 72px;
  background: #0b0d10;
  text-align: left;
}

.mercury-tile::before,
.mercury-tile::after {
  display: none;
}

.mercury-showcase-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  width: min(calc(100% - 96px), 1440px);
  margin: 0 auto;
  column-gap: clamp(48px, 8vw, 140px);
  row-gap: 64px;
  align-items: center;
}

.mercury-showcase-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
}

.mercury-showcase-title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.mercury-showcase-intro {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.55;
}

.mercury-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
}

.mercury-showcase-cta span {
  font-size: 24px;
  line-height: 0.7;
}

.mercury-showcase-cta:hover {
  opacity: 1;
  color: #d7e7f7;
}

.mercury-showcase-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, #36546d 0%, #1b2a36 38%, #0b0d10 74%);
  border-radius: var(--radius-card);
}

.mercury-showcase-visual img {
  display: block;
  width: min(80%, 390px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.48));
}

.mercury-showcase-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mercury-showcase-features > div {
  min-height: 112px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.mercury-showcase-features > div:first-child {
  padding-left: 0;
  border-left: none;
}

.mercury-showcase-features strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.mercury-showcase-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.5;
}

/* Palvelut: kuvat edellä, selkeä sisältöhierarkia ja rauhallinen vaalea pinta. */
.services-showcase {
  padding: 112px 0 104px;
}

.services-showcase-inner {
  width: min(calc(100% - 96px), 1440px);
  margin: 0 auto;
}

.services-showcase-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.services-showcase-header h2,
.services-showcase-secondary > h3 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.services-showcase-header p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.5;
}

.services-showcase-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-showcase-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-card);
  color: var(--ink);
}

.services-showcase-card:hover {
  opacity: 1;
}

.services-showcase-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.services-showcase-card video {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 15%;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-showcase-card.is-fallback video {
  opacity: 0;
}

.services-showcase-card-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-showcase-card.is-fallback .services-showcase-card-fallback.is-active {
  opacity: 1;
}

.services-showcase-card-slides {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.services-showcase-card .services-showcase-card-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-showcase-card .services-showcase-card-slides img.is-active {
  opacity: 1;
}

.services-showcase-card .services-showcase-card-slides img.slide-crop-lower {
  object-position: center 60%;
}

.services-showcase-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.services-showcase-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services-showcase-card p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.5;
}

.services-showcase-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
}

.services-showcase-card b {
  font-size: 22px;
  font-weight: 400;
  line-height: 0.7;
}

.services-showcase-secondary {
  margin-top: 88px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}

.services-showcase-secondary > h3 {
  margin-bottom: 32px;
  font-size: 28px;
}

.services-showcase-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.services-showcase-secondary-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  padding: 0 24px;
  border-left: 1px solid var(--border-soft);
}

.services-showcase-secondary-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.services-showcase-secondary-grid h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.services-showcase-secondary-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
}

/* Huoltosivun palvelunostot. */
.service-offerings {
  padding: 104px 0;
}

.service-offerings-inner,
.motor-ad-inner {
  width: min(calc(100% - 96px), 1440px);
  margin: 0 auto;
}

.service-offerings-header {
  max-width: 660px;
  margin-bottom: 44px;
}

.service-offerings-header h2,
.motor-ad-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-offerings-header p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.5;
}

.service-offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-offering-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  min-height: 370px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-card);
}

.service-offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-offering-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px;
}

.service-offering-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-offering-content p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.5;
}

.service-offering-link {
  margin-top: 28px;
  padding: 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
}

.service-offering-link span {
  margin-left: 5px;
  font-size: 22px;
  line-height: 0.7;
}

.service-offering-card--dark {
  background: #1c2025;
}

.service-offering-card--dark .service-offering-content h3 {
  color: var(--white);
}

.service-offering-card--dark .service-offering-content p {
  color: rgba(255, 255, 255, 0.65);
}

.service-offering-card--dark .service-offering-link {
  color: #d7e7f7;
}

/* Mercury-mainos: mallikuva ja sen nimi vaihtuvat nykyisellä karusellilla. */
.motor-ad-section {
  padding: 0 0 104px;
}

.motor-ad-header {
  margin-bottom: 28px;
}

.motor-ad-header > span {
  display: block;
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
}

.motor-showcase {
  height: 500px;
  max-width: none;
  border-radius: var(--radius-card);
}

.motor-showcase-bg {
  background: #0b0d10;
}

.motor-showcase-text {
  max-width: 470px;
  padding: 64px;
}

.motor-showcase-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
}

.motor-showcase-lede {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.motor-showcase-lede strong {
  font-weight: 600;
}

.motor-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 8px;
  min-height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
}

.motor-showcase-cta span {
  font-size: 24px;
  font-weight: 400;
  line-height: 0.7;
}

.motor-showcase-cta:hover {
  background: #e8e8e8;
  color: var(--ink);
}

.motor-showcase-img {
  width: 62%;
  height: 82%;
}

@media (max-width: 768px) {
  .mercury-tile {
    padding: 72px 0 56px;
  }

  .mercury-showcase-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 560px);
    row-gap: 40px;
  }

  .mercury-showcase-title {
    font-size: clamp(38px, 11vw, 52px);
  }

  .mercury-showcase-visual {
    min-height: 400px;
    order: -1;
  }

  .mercury-showcase-visual img {
    max-height: 380px;
  }

  .mercury-showcase-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mercury-showcase-features > div,
  .mercury-showcase-features > div:first-child {
    min-height: 0;
    padding: 0 0 20px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mercury-showcase-features > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .services-showcase {
    padding: 72px 0;
  }

  .services-showcase-inner {
    width: min(calc(100% - 40px), 560px);
  }

  .services-showcase-header {
    margin-bottom: 32px;
  }

  .services-showcase-header h2 {
    font-size: 40px;
  }

  .services-showcase-primary,
  .services-showcase-secondary-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase-card {
    min-height: 0;
  }

  .services-showcase-card img {
    height: 220px;
  }

  .services-showcase-secondary {
    margin-top: 64px;
  }

  .services-showcase-secondary-grid {
    gap: 20px;
  }

  .services-showcase-secondary-grid article,
  .services-showcase-secondary-grid article:first-child {
    min-height: 0;
    padding: 0 0 20px;
    border: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .services-showcase-secondary-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .service-offerings,
  .motor-ad-section {
    padding: 72px 0;
  }

  .motor-ad-section {
    padding-top: 0;
  }

  .service-offerings-inner,
  .motor-ad-inner {
    width: min(calc(100% - 40px), 560px);
  }

  .service-offerings-grid {
    grid-template-columns: 1fr;
  }

  .service-offering-card {
    grid-template-columns: 1fr;
  }

  .service-offering-card img {
    height: 220px;
  }

  .service-offering-content {
    padding: 28px;
  }

  .motor-showcase {
    display: flex;
    height: auto;
    min-height: 600px;
    flex-direction: column;
  }

  .motor-showcase-text {
    padding: 40px 28px 0;
  }

  .motor-showcase-lede {
    font-size: 29px;
  }

  .motor-showcase-media {
    min-height: 330px;
  }

  .motor-showcase-img {
    width: 76%;
    height: 88%;
  }
}

@media (max-width: 768px) {
  .customer-portal-section {
    padding: 72px 0 80px;
  }

  .customer-portal-visual,
  .customer-portal-content {
    width: min(calc(100% - 40px), 980px);
  }

  .customer-portal-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(84px, 0.26fr);
    align-items: center;
    gap: 12px;
    height: auto;
    margin-bottom: 40px;
    padding: 12px;
  }

  .customer-portal-dashboard {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .customer-portal-phone {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .customer-portal-title {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.1;
  }

  .customer-portal-intro {
    font-size: 17px;
  }

  .customer-portal-cta {
    width: 100%;
  }

  .customer-portal-actions {
    display: grid;
  }
}

/* Telakointi ja talvisäilytys: yksi vaihtuva säilytyskortti + tukipalvelut. */
.winter-service-section {
  padding: 112px 0;
}

.winter-service-inner {
  width: min(calc(100% - 96px), 1440px);
  margin: 0 auto;
}

.winter-service-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.winter-service-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.winter-service-header p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.5;
}

.winter-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: 20px;
}

.winter-storage-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #1a2530;
}

.winter-storage-media,
.winter-storage-shade {
  position: absolute;
  inset: 0;
}

.winter-storage-media {
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
}

.winter-storage-shade {
  background: linear-gradient(180deg, rgba(10, 14, 18, 0.58) 0%, rgba(10, 14, 18, 0.08) 45%, rgba(10, 14, 18, 0.78) 100%);
}

.winter-storage-card .storage-tabs {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.winter-storage-card .storage-dot {
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-btn);
  background: rgba(20, 20, 19, 0.25);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: 500 14px var(--font);
  letter-spacing: normal;
}

.winter-storage-card .storage-dot--active {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.winter-storage-content {
  position: absolute;
  right: 48px;
  bottom: 44px;
  left: 48px;
  z-index: 2;
  max-width: 580px;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.winter-storage-content > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
}

.winter-storage-content h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.winter-service-link {
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: 500 15px var(--font);
  letter-spacing: normal;
}

.winter-storage-content .winter-service-link {
  min-width: 132px;
  padding: 0 18px;
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--ink);
}

.winter-service-support {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.winter-service-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-card);
}

.winter-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winter-service-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.winter-service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.winter-service-card p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.5;
}

.winter-service-card .winter-service-link {
  margin-top: 20px;
  color: var(--blue);
}

.winter-service-card--dark {
  background: #222a30;
}

.winter-service-card--dark h3 {
  color: var(--white);
}

.winter-service-card--dark p {
  color: rgba(255, 255, 255, 0.64);
}

.winter-service-card--dark .winter-service-link {
  color: #d7e7f7;
}

@media (max-width: 900px) {
  .winter-service-grid {
    grid-template-columns: 1fr;
  }

  .winter-storage-card {
    min-height: 540px;
  }

  .winter-service-support {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .winter-service-card {
    min-height: 300px;
    grid-template-columns: 1fr;
  }

  .winter-service-card img {
    height: 150px;
  }
}

@media (max-width: 560px) {
  .winter-service-section {
    padding: 72px 0;
  }

  .winter-service-inner {
    width: min(calc(100% - 40px), 560px);
  }

  .winter-service-header {
    margin-bottom: 32px;
  }

  .winter-storage-card {
    min-height: 500px;
  }

  .winter-storage-card .storage-tabs {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .winter-storage-card .storage-dot {
    flex: 1;
    padding: 0 8px;
    font-size: 12px;
  }

  .winter-storage-content {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .winter-storage-content h3 {
    font-size: 36px;
  }

  .winter-service-support {
    grid-template-columns: 1fr;
  }

  .winter-service-card {
    grid-template-columns: 40% 1fr;
    min-height: 190px;
  }

  .winter-service-card img {
    height: 100%;
  }

  .winter-service-card > div {
    padding: 22px;
  }

  .winter-service-card h3 {
    font-size: 20px;
  }

  .winter-service-card p {
    font-size: 14px;
  }
}

/* Talvisäilytyksen hinnasto: säilytyspaketit ja toimiva laskuri omiksi kokonaisuuksikseen. */
.winter-pricing-section {
  padding: 112px 0;
  background: #fbfbfb;
}

.winter-pricing-inner {
  width: min(calc(100% - 96px), 1240px);
  margin: 0 auto;
}

.winter-pricing-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.winter-pricing-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.winter-pricing-header p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.5;
}

.winter-pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.winter-pricing-card {
  min-height: 540px;
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: none;
  transition: none;
}

.winter-pricing-card:hover {
  transform: none;
  box-shadow: none;
}

.winter-pricing-card .pricing-size {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.winter-pricing-card .pricing-type {
  margin-top: 6px;
  font-size: 16px;
}

.winter-pricing-card .pricing-amount {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.winter-pricing-card .pricing-unit {
  font-size: 17px;
}

.winter-pricing-card .pricing-features {
  margin: 28px 0;
}

.winter-pricing-card .pricing-features li {
  padding: 11px 0;
  font-size: 16px;
}

.winter-pricing-card .btn--pricing {
  margin-top: auto;
}

.winter-calculator-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.7fr) minmax(340px, 1.3fr);
  grid-template-rows: auto 1fr auto;
  align-items: center;
  min-height: 460px;
  padding: 44px 52px 32px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: none;
}

.winter-calculator-card::before {
  display: none;
}

.winter-calculator-card .pricing-card-header {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0 0 10px;
}

.winter-calculator-card .pricing-price {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: 0;
}

.winter-calculator-card .calc-boat-wrap {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: 340px;
  margin: 0;
}

.winter-calculator-card .calc-boat-img {
  width: 48%;
}

.winter-calculator-card .calc-compact-slider {
  grid-column: 1 / -1;
  grid-row: 3;
  padding: 24px 0 0;
  border-top: 1px solid var(--border-soft);
}

.winter-calculator-card .calc-compact-slider label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 16px;
}

.winter-calculator-card .calc-compact-slider label::before {
  content: 'Venemalli';
  color: var(--slate);
  font-size: 14px;
  font-weight: 400;
}

.winter-pricing-note {
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 14px;
  letter-spacing: -0.016em;
}

@media (max-width: 768px) {
  .winter-pricing-section {
    padding: 72px 0;
  }

  .winter-pricing-inner {
    width: min(calc(100% - 40px), 560px);
  }

  .winter-pricing-grid {
    grid-template-columns: 1fr;
  }

  .winter-pricing-card {
    min-height: 0;
    padding: 32px 28px;
  }

  .winter-calculator-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 24px;
    padding: 32px 28px;
  }

  .winter-calculator-card .pricing-card-header,
  .winter-calculator-card .pricing-price,
  .winter-calculator-card .calc-boat-wrap,
  .winter-calculator-card .calc-compact-slider {
    grid-column: 1;
    grid-row: auto;
  }

  .winter-calculator-card .calc-boat-wrap {
    height: 220px;
  }

  .winter-calculator-card .calc-compact-slider {
    padding-top: 20px;
  }

  .winter-pricing-card .pricing-amount {
    font-size: 54px;
  }
}

/* Kolmen kortin hinnaston palautus: laskuri on yhtä kevyt kuin säilytyspaketit. */
.winter-pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.winter-pricing-inner {
  width: min(calc(100% - 96px), 1440px);
}

.winter-pricing-card {
  min-height: 520px;
  padding: 40px 36px;
}

.winter-calculator-card {
  display: flex;
  grid-column: auto;
  min-height: 540px;
  padding: 40px;
  background: #e8edf1;
  border: 0;
}

.winter-calculator-card .pricing-card-header,
.winter-calculator-card .pricing-price,
.winter-calculator-card .calc-boat-wrap,
.winter-calculator-card .calc-compact-slider {
  display: block;
  grid-column: auto;
  grid-row: auto;
}

.winter-calculator-card .pricing-card-header {
  order: 0;
  align-self: auto;
  margin: 0 0 6px;
}

.winter-calculator-card .pricing-price {
  align-self: auto;
  margin: 0 4px;
}

.winter-calculator-card .calc-boat-wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 100 / 50;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.winter-calculator-card .calc-boat-img {
  width: 45%;
  height: 95%;
  object-fit: contain;
}

.winter-calculator-card .calc-boat-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.winter-calculator-card .calc-compact-slider {
  width: 100%;
  margin-bottom: 0;
  padding: 0 8px;
  border: 0;
}

.winter-calculator-card .calc-compact-slider label {
  display: block;
  font-size: 12px;
}

.winter-calculator-card .calc-compact-slider label::before {
  display: none;
}

@media (max-width: 1024px) {
  .winter-pricing-grid {
    grid-template-columns: 1fr;
  }

  .winter-calculator-card {
    min-height: 0;
  }
}

/* Hintalaskurin selkeä valinta-, mitta- ja hintahierarkia. */
.winter-calculator-card {
  justify-content: flex-start;
}

.winter-calculator-card .calc-boat-wrap {
  order: 2;
  height: 285px;
  margin: 10px 0 14px;
}

.winter-calculator-card .calc-boat-img {
  width: 68%;
}

.calc-price-grid {
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 -4px 20px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.calc-price-grid > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 12px;
}

.calc-price-grid > div + div {
  border-left: 1px solid var(--border-soft);
}

.calc-price-grid span {
  color: var(--slate);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.016em;
}

.calc-price-grid strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.calc-model-controls {
  order: 3;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
}

.calc-model-controls button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(20, 20, 19, 0.16);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.calc-model-controls button:hover {
  background: #f0f2f3;
}

/* Venevisualisointi täyttää laskurikortin, tiedot pysyvät sen päällä. */
.winter-calculator-card {
  position: relative;
  overflow: hidden;
  background: #e8edf1;
}

.winter-calculator-card .pricing-size {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.winter-calculator-card .pricing-type {
  margin-top: 6px;
  color: #86868b;
  font-size: 16px;
}

.winter-calculator-card .pricing-card-header,
.winter-calculator-card .calc-price-grid,
.winter-calculator-card .calc-model-controls {
  position: relative;
  z-index: 2;
}

.winter-calculator-card .calc-boat-wrap {
  position: absolute;
  inset: 94px 8px 52px;
  z-index: 3;
  width: auto;
  height: auto;
  margin: 0;
  pointer-events: none;
}

.winter-calculator-card .calc-boat-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 16% 6% 4%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(85, 125, 162, 0.32) 0%, rgba(115, 147, 175, 0.16) 45%, transparent 72%);
  content: '';
  filter: blur(14px);
}

.winter-calculator-card .calc-boat-img {
  width: auto;
  max-width: none;
  height: 170%;
  object-fit: contain;
  filter: drop-shadow(0 26px 20px rgba(0, 0, 0, 0.58));
}

/* Mercury-sivun tehdaskoulutettujen asiantuntijoiden esittely. */
.mercury-experts {
  padding: 100px 0;
  background: var(--white);
  color: var(--ink);
}

.mercury-experts-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.mercury-expert-role {
  margin: 0;
  color: #9bb6d1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mercury-experts h2 {
  max-width: 470px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mercury-experts-intro > p:not(.mercury-experts-kicker) {
  max-width: 500px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

.mercury-experts-cta {
  margin-top: 30px;
  border-radius: 4px;
  text-decoration: none;
}

.mercury-expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mercury-expert-card {
  padding: 0 0 12px;
}

.mercury-expert-certificate {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #e9edf0;
}

.mercury-expert-certificate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mercury-expert-card .mercury-expert-role {
  margin: 20px 0 8px;
  font-size: 10px;
}

.mercury-expert-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.mercury-expert-card > p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
}

/* Yhteystiedot – Tesla-henkinen yritystarina. */
.company-story {
  padding: 28px 0 108px;
  background: var(--white);
}

.company-story-visual {
  position: relative;
  width: 100%;
  height: clamp(180px, 22vw, 350px);
  margin: 52px auto 56px;
  border-radius: 4px;
  overflow: hidden;
  background: #dfe6ea;
}

.company-story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 1.1s ease-in-out;
}

.company-story-slide:first-child {
  background-position: center 68%;
}

.company-story-slide--active {
  opacity: 1;
}

.company-story-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.company-story-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(20, 20, 19, 0.22);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.company-story-visual:hover .company-story-control,
.company-story-control:focus-visible {
  opacity: 1;
}

.company-story-control:hover {
  background: rgba(20, 20, 19, 0.5);
}

.company-story-control--prev {
  left: 18px;
}

.company-story-control--next {
  right: 18px;
}

.company-story-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.company-story-dot--active {
  width: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.company-story-dot--active::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: var(--white);
  content: '';
  animation: company-story-progress 7s linear forwards;
}

@keyframes company-story-progress {
  to { width: 100%; }
}

.company-story-content {
  max-width: 1640px;
}

.company-story-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-story h2 {
  max-width: 900px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.company-story-lead {
  max-width: 1430px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.company-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 96px);
  margin-top: 62px;
}

.company-story-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.company-story-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.016em;
}

.company-location {
  padding: 108px 0;
  background: #f3f5f6;
}

.company-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 8vw, 136px);
}

.company-photo-placeholder {
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  padding: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #cbd5dc, #e7ecef);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: rgba(20, 20, 19, 0.54);
}

.company-photo-placeholder span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.company-photo-placeholder--workshop {
  min-height: 440px;
}

.company-location-copy h2,
.company-work-heading h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.company-location-copy p,
.company-work-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.company-location-copy p + p {
  margin-top: 18px;
}

.company-work {
  padding: 108px 0;
  background: var(--white);
}

.company-work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.company-work-heading h2 {
  margin-bottom: 0;
}

.company-work-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 16px;
}

.company-photo-placeholder--wide {
  min-height: 460px;
}

.company-photo-placeholder--detail {
  min-height: 460px;
  height: 100%;
  background: linear-gradient(135deg, #dce3e7, #bfcbd3);
  background-color: #dce3e7;
  background-size: cover;
  background-position: center 52%;
}

@media (max-width: 900px) {
  .company-story {
    padding: 20px 0 76px;
  }

  .company-story-visual {
    margin: 40px auto;
  }

  .company-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 44px;
  }

  .company-location,
  .company-work {
    padding: 76px 0;
  }

  .company-location-grid,
  .company-work-gallery {
    grid-template-columns: 1fr;
  }

  .company-work-heading {
    display: block;
    margin-bottom: 32px;
  }

  .company-work-heading h2 {
    margin-bottom: 14px;
  }

  .company-photo-placeholder--workshop,
  .company-photo-placeholder--wide,
  .company-photo-placeholder--detail {
    min-height: 320px;
  }

  .company-photo-placeholder--detail {
    height: auto;
  }
}

@media (max-width: 560px) {
  .company-story h2 {
    font-size: 34px;
  }

  .company-story-lead,
  .company-story-grid p {
    font-size: 16px;
  }

  .company-story-grid h3 {
    font-size: 24px;
  }

  .company-location-copy h2,
  .company-work-heading h2 {
    font-size: 34px;
  }

  .company-location-copy p,
  .company-work-heading p {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .mercury-experts {
    padding: 76px 0;
  }

  .mercury-experts-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 560px) {
  .mercury-experts h2 {
    font-size: 34px;
  }

  .mercury-expert-grid {
    grid-template-columns: 1fr;
  }
}

.winter-calculator-card .calc-boat-svg {
  display: block;
  opacity: 0.82;
  transform: none;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.98)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.72));
}

.winter-calculator-card .calc-boat-svg line {
  stroke: var(--blue);
  stroke-width: 1.4px;
  stroke-linecap: round;
}

.winter-calculator-card .calc-boat-svg marker path {
  fill: var(--blue);
}

.winter-calculator-card .calc-boat-svg text {
  display: none;
}

.winter-calculator-card .calc-price-grid {
  width: 100%;
  margin: 12px 0 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.winter-calculator-card .calc-model-controls {
  z-index: 4;
  padding: 12px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.calc-control-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.calc-control-summary strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.calc-control-summary small {
  color: var(--slate);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.016em;
}

@media (max-width: 1024px) {
  .winter-calculator-card .calc-boat-wrap {
    position: relative;
    inset: auto;
    height: 250px;
    margin: 10px 0;
  }

  .winter-calculator-card .calc-boat-img {
    width: auto;
    height: 125%;
  }

}

.winter-calculator-card .calc-compact-slider {
  margin-top: auto;
  padding: 0;
}

.winter-calculator-card .calc-compact-slider label {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.calc-slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--slate);
  font-size: 12px;
  letter-spacing: -0.016em;
}

@media (max-width: 1024px) {
  .winter-calculator-card .calc-boat-wrap {
    height: 190px;
  }
}
