/* ==========================================================================
   AURUM — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg:           #FFFFFF;
  --bg-subtle:    #F7F7F8;
  --bg-muted:     #EFEFEF;
  --bg-dark:      #09090B;
  --bg-dark-2:    #111113;

  --text:         #09090B;
  --text-2:       #52525B;
  --text-3:       #A1A1AA;

  --accent:       #22C55E;
  --accent-fg:    #16A34A;
  --accent-dim:   rgba(34, 197, 94, 0.10);

  --border:       #E4E4E7;
  --border-strong:#D4D4D8;
  --border-dark:  rgba(255, 255, 255, 0.08);

  --gold:         #F3B60C;
  --gold-fg:      #8B6800;
  --gold-dim:     rgba(243, 182, 12, 0.10);

  --shadow-sm:    0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);

  --font:         'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max-width:    1200px;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
h3 { font-size: clamp(18px, 2.5vw, 24px); }

p {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 16px;
}
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--max-width);
  z-index: 100;
  border-radius: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.nav--transparent {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav--scrolled {
  background: #142C22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav--scrolled .nav-name-main { color: #fff; }
.nav--scrolled .nav-name-sub  { color: rgba(255, 255, 255, 0.45); }
.nav--scrolled .nav-link      { color: rgba(255, 255, 255, 0.70); }
.nav--scrolled .nav-link:hover   { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav--scrolled .nav-link.active  { color: #F3B60C; }
.nav--scrolled .nav-cta {
  background: #F3B60C;
  color: #0D1F16;
  border-color: transparent;
}
.nav--scrolled .nav-cta:hover { background: #DCA50A; color: #0D1F16; }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo { display: none; }

.nav-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-name-main {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.25s;
}

.nav-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #F3B60C;
  border-radius: 50%;
  margin-left: 2px;
  margin-bottom: 3px;
  vertical-align: bottom;
  flex-shrink: 0;
}

.nav-name-sub {
  font-size: 11px;
  color: var(--text-3);
  transition: color 0.25s;
}

.nav--transparent .nav-name-main { color: #fff; }
.nav--transparent .nav-name-sub  { color: rgba(255,255,255,0.45); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-subtle);
}

.nav-link.active {
  color: #F3B60C;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.nav--transparent .nav-link { color: rgba(255,255,255,0.70); }
.nav--transparent .nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav--transparent .nav-link.active { color: #F3B60C; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #0D1F16;
  background: #F3B60C;
  border: 1px solid transparent;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: inline-block;
  margin-left: 8px;
}

.nav-cta:hover {
  background: #DCA50A;
  color: #0D1F16;
  transform: translateY(-1px);
}

.nav--transparent .nav-cta {
  background: #F3B60C;
  color: #0D1F16;
  border-color: transparent;
}

.nav--transparent .nav-cta:hover {
  background: #DCA50A;
  color: #0D1F16;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav--open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav--open .nav-mobile-menu { max-height: 440px; }

.nav-mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}

.nav-mobile-link:hover,
.nav-mobile-link.active { color: #fff; }

.nav-mobile-cta {
  display: flex;
  justify-content: center;
  margin: 12px 18px 18px;
}

@media (max-width: 768px) {
  .nav,
  .nav.nav--transparent,
  .nav.nav--scrolled {
    top: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
    max-width: none;
    border-radius: 14px;
    background: #142C22;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-inner { padding: 14px 18px; }
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }

  .nav-lang { display: none; }

  .nav-name-main { color: #fff; }
  .nav-name-sub  { color: rgba(255, 255, 255, 0.45); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.18);
}
.btn-primary:hover {
  background: var(--accent-fg);
  border-color: var(--accent-fg);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.32);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.20);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--bg-subtle);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO — etusivun hero (tumma, koko ruutu)
   ========================================================================== */

.hero {
  min-height: 100vh;
  background: #142C22;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 65%; height: 90%;
  background: radial-gradient(ellipse, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -5%;
  width: 55%; height: 75%;
  background: radial-gradient(ellipse, rgba(34,197,94,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: hero-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.4s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-shine {
  from { left: -70%; }
  to   { left: 130%; }
}

.hero h1 {
  color: #fff;
  max-width: 800px;
  margin-bottom: 24px;
  animation: hero-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-h1-accent {
  display: inline;
  color: #F3B60C;
  text-shadow: 0 0 48px rgba(243, 182, 12, 0.28);
}

.hero-sub {
  font-size: 21px;
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
  animation: hero-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

.hero-props {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-prop {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.hero-prop:nth-child(1) { animation: hero-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both; }
.hero-prop:nth-child(2) { animation: hero-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1.02s both; }

.hero-prop-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  animation: hero-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}

.hero-actions .btn {
  padding: 16px 30px;
  font-size: 17px;
}

.hero .btn-primary,
.stl-section .btn-primary,
.cta-strip .btn-primary,
.qa-section .btn-primary {
  background: #F3B60C;
  color: #0D1F16;
  border-color: #F3B60C;
}
.hero .btn-primary:hover,
.stl-section .btn-primary:hover,
.cta-strip .btn-primary:hover,
.qa-section .btn-primary:hover {
  background: #DCA50A;
  border-color: #DCA50A;
  color: #0D1F16;
  box-shadow: 0 8px 24px rgba(243, 182, 12, 0.28);
}

.hero .btn-ghost {
  border-color: #F3B60C;
  border-width: 2px;
  color: rgba(255, 255, 255, 0.85);
}
.hero .btn-ghost:hover {
  background: rgba(243, 182, 12, 0.10);
  border-color: #F3B60C;
  color: #fff;
}

/* ==========================================================================
   HERO VISUAL — market terminal (etusivu, oikea puoli)
   ========================================================================== */

.hero-visual {
  position: relative;
  align-self: stretch;
  animation: hv-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
}

@keyframes hv-enter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -90px -70px;
  background: radial-gradient(ellipse at 55% 50%, rgba(34,197,94,0.20) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hv-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(16, 38, 26, 0.80) 0%, rgba(8, 20, 14, 0.68) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(34, 197, 94, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 90px rgba(34,197,94,0.10),
    0 20px 50px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: hv-float 7s ease-in-out 1.2s infinite;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@keyframes hv-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hv-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 24px 28px 0;
}

.hv-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2.4s ease infinite;
}

.hv-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  flex: 1;
}

.hv-live {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.22);
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.8;
}

.hv-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 20px 28px 0;
}

.hv-price-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hv-price-unit {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  padding-bottom: 4px;
}

.hv-change {
  margin: 10px 28px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hv-chart {
  flex: 1;
  min-height: 140px;
  margin-top: 20px;
  overflow: visible;
  position: relative;
}

.hv-chart svg { width: 100%; height: 100%; }

.hv-chart-fill {
  opacity: 0;
  animation: hv-fade 0.8s ease 2.6s forwards;
}

.hv-chart-line {
  stroke: #F3B60C;
  stroke-width: 0.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: hv-draw 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes hv-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hv-fade {
  to { opacity: 1; }
}

.hv-dot-host {
  position: absolute;
  left: 99%;
  top: 7.5%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hv-dot-circle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F3B60C;
  top: -4px;
  left: -4px;
  opacity: 0;
  animation: hv-fade 0.5s ease 0.5s forwards;
}

.hv-dot-ring {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0.6px solid #F3B60C;
  top: -4px;
  left: -4px;
  transform-origin: center;
  opacity: 0;
  animation:
    hv-fade 0.4s ease 0.5s forwards,
    hv-ring-pulse 2.8s ease-out 0.9s infinite;
}

@keyframes hv-ring-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(4.5); opacity: 0;    }
}

.hv-offer {
  padding: 22px 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hv-offer-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 12px;
}

.hv-offer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.hv-offer-amount {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #F3B60C;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hv-offer-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.30);
  margin-top: 6px;
}

.hv-offer-link {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 3px;
}

.hv-offer-link:hover { color: #F3B60C; }

.hv-title {
  font-size: 23px;
  font-weight: 700;
  color: #F3B60C;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding: 26px 28px 0;
}

.hv-bottom {
  padding: 16px 28px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 9px;
}

.hv-bottom-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

.hv-bottom-link {
  font-size: 15px;
  font-weight: 700;
  color: #F3B60C;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hv-bottom-link:hover { color: #DCA50A; }

.hv-process {
  display: grid;
  grid-template-columns: 11fr 9fr;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: hv-fade 0.6s ease 3.4s forwards;
}

.hv-process-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.15);
}

.hv-process-item + .hv-process-item {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.hv-process-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.20);
  margin-top: 1px;
}

.hv-process-icon--done {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.35);
}

.hv-process-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
}

.hv-process-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-top: 3px;
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 3fr 2fr; gap: 48px; }
  .hv-price-num  { font-size: 50px; }
  .hv-offer-amount { font-size: 36px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ==========================================================================
   PAGE HERO — sisäsivujen hero (tumma, pienempi)
   ========================================================================== */

.page-hero {
  padding: 160px 24px 88px;
  background: #142C22;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(243, 182, 12, 0.80);
  margin-bottom: 20px;
}

.page-hero h1 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.50);
  max-width: 540px;
  line-height: 1.65;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { padding: 96px 24px; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--subtle { background: var(--bg-subtle); }
.section--warm   { background: #ffffff; }
.section--dark   { background: var(--bg-dark); }
.section--top-rounded { border-radius: 28px 28px 0 0; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-fg);
  margin-bottom: 14px;
}

.section--dark .section-label { color: var(--accent); }

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p { font-size: 16px; line-height: 1.65; }

.section--dark .section-header h2 { color: #fff; }
.section--dark .section-header p  { color: rgba(255,255,255,0.55); }

.section-content { max-width: 760px; }
.section-content p { font-size: 16px; line-height: 1.80; margin-bottom: 20px; }

/* ==========================================================================
   STATS GRID
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--bg);
  padding: 40px 36px;
}

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-sublabel {
  font-size: 13px;
  color: var(--text-3);
}

/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; line-height: 1.65; }

/* ==========================================================================
   STEPS
   ========================================================================== */

.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.step:first-child { border-top: none; padding-top: 0; }

.step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p  { font-size: 15px; }

/* ==========================================================================
   CARDS (generic)
   ========================================================================== */

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.card-label-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.card-label-icon.emerald { background: var(--accent); }
.card-label-icon.yellow  { background: #F59E0B; }

/* ==========================================================================
   VALUES LIST (tietoa-meista)
   ========================================================================== */

.values-list { margin-top: 8px; }

.value-block {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  max-width: 760px;
}

.value-block:first-child { border-top: none; padding-top: 0; }

.value-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.value-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
}

/* ==========================================================================
   FACTS GRID (tietoa-meista)
   ========================================================================== */

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.fact-column {
  background: var(--bg);
  padding: 32px;
}

.fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.fact-line {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.55;
}

.fact-line.muted { color: var(--text-2); }

.contact-row {
  display: flex;
  gap: 48px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
}

.contact-item { font-size: 14px; color: var(--text); }
.contact-link { transition: color 0.2s; }
.contact-link:hover { color: var(--accent-fg); }

@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: 1fr;
    background: none;
    border: none;
    border-radius: 0;
  }
  .fact-column {
    background: none;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }
  .fact-column:last-child { border-bottom: none; }
  .contact-row { gap: 24px; }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  background: #edf5ee;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin: 0 24px 24px;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(243,182,12,0.45) 20%, rgba(245,200,66,0.80) 50%, rgba(243,182,12,0.45) 80%, transparent 100%);
  border-radius: 0 0 2px 2px;
}

.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-glow--1 {
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(243,182,12,0.11) 0%, transparent 60%);
  animation: cta-breathe 7s ease-in-out infinite alternate;
}

.cta-glow--2 {
  bottom: -25%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(14,44,26,0.9) 0%, transparent 65%);
}

@keyframes cta-breathe {
  from { opacity: 0.65; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;    transform: translateX(-50%) scale(1.10); }
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-col-text {
  text-align: left;
}

.cta-col-text .cta-buttons {
  justify-content: flex-start;
}

.cta-col-img {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-col-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* Live price badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.10s, transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.10s;
}

.cta-badge strong { font-weight: 700; color: var(--text); }

.cta-section.is-visible .cta-badge { opacity: 1; transform: none; }

.cta-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.10s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.10s;
}

.cta-section.is-visible .cta-label { opacity: 1; transform: none; }

.cta-title {
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.04;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease 0.24s, transform 0.65s cubic-bezier(0.22,1,0.36,1) 0.24s;
}

.cta-section.is-visible .cta-title { opacity: 1; transform: none; }

.cta-title-gold {
  background: linear-gradient(135deg, #F5C842 0%, #F3B60C 45%, #C8820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto 52px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.38s, transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.38s;
}

.cta-section.is-visible .cta-body { opacity: 1; transform: none; }

.cta-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.52s, transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.52s;
}

.cta-section.is-visible .cta-buttons { opacity: 1; transform: none; }

.cta-section .btn-primary {
  background: #F3B60C;
  color: #0D1F16;
  border-color: #F3B60C;
}

.cta-section .btn-primary:hover {
  background: #DCA50A;
  border-color: #DCA50A;
  color: #0D1F16;
  box-shadow: 0 8px 24px rgba(243,182,12,0.28);
}

.cta-section .btn-ghost {
  border-color: #F3B60C;
  border-width: 2px;
  color: var(--text);
}

.cta-section .btn-ghost:hover {
  background: rgba(243,182,12,0.12);
  border-color: #F3B60C;
  color: var(--text);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #142C22;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 24px 32px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}

.footer-brand-section { max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon { display: none; }

.footer-logo-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  line-height: 1.65;
}

.footer-column-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.30); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.70); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 11fr 9fr;
    gap: 32px;
  }
  .footer-brand-section { grid-column: 1 / -1; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MOBILE GENERAL
   ========================================================================== */

@media (max-width: 768px) {
  .section    { padding: 64px 20px; }
  .hero       { padding: 100px 20px 60px; min-height: 90vh; }
  .page-hero  { padding: 120px 20px 64px; }
  .cta-section { padding: 56px 20px; }
  .cta-inner { grid-template-columns: 1fr; gap: 0; }
  .cta-col-text { text-align: center; }
  .cta-col-text .cta-buttons { justify-content: center; }
  .cta-col-img { display: none; }
  .card       { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .section  { padding: 56px 16px; }
  .hero     { padding: 90px 16px 56px; }
  .page-hero { padding: 110px 16px 56px; }
}

/* ==========================================================================
   SPOT BAR (hinnoittelu)
   ========================================================================== */

.spot-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
}

.spot-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2.4s ease infinite;
}

.spot-sep { color: rgba(255, 255, 255, 0.25); }

.spot-price {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.spot-meta { color: rgba(255, 255, 255, 0.40); }

/* ==========================================================================
   CALCULATOR (hinnoittelu)
   ========================================================================== */

.calc-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 680px;
  box-shadow: var(--shadow-md);
}

.calc-inputs {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 16px;
  margin-bottom: 32px;
}

.calc-input-group { display: flex; flex-direction: column; gap: 8px; }

.calc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.calc-input {
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.calc-input:focus { border-color: var(--accent); }
.calc-select { cursor: pointer; }

.calc-breakdown { margin-bottom: 20px; }

.calc-placeholder {
  font-size: 14px;
  color: var(--text-3);
  padding: 20px 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.calc-row:first-child { border-top: none; }

.calc-row--minus { color: var(--text-2); }

.calc-row--minus span:last-child { color: var(--text-2); }

.calc-row--total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border-strong);
  padding-top: 16px;
  margin-top: 4px;
}

.calc-row-note {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 400;
  margin-left: 4px;
}

.calc-note {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-box { padding: 24px 20px; }
}

/* ==========================================================================
   FEE LAYOUT (hinnoittelu)
   ========================================================================== */

.fee-layout {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 48px;
  align-items: start;
}

.fee-desc p { font-size: 16px; line-height: 1.80; }

.fee-breakdown-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.section--subtle .fee-breakdown-box { background: var(--bg-muted); }
.section--subtle .fee-breakdown-box--items { background: var(--bg-subtle); }

.fee-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.fee-breakdown-row:last-child { border-bottom: none; }

.fee-breakdown-total {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-subtle);
}

.fee-breakdown-box--items .fee-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.fee-breakdown-box--items .fee-item:last-child { border-bottom: none; }

.fee-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.fee-item-body { font-size: 13px; color: var(--text-2); line-height: 1.65; }

@media (max-width: 768px) {
  .fee-layout { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   PRICE TABLE (hinnoittelu)
   ========================================================================== */

.price-table-wrap { overflow-x: auto; }

.price-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 20px 14px 0;
  border-bottom: 1px solid var(--border-strong);
}

.price-table td {
  padding: 14px 20px 14px 0;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.price-table tbody tr:last-child td { border-bottom: none; }

.price-table tbody tr:hover td { background: var(--bg-subtle); }

.price-cell {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

.table-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  margin-bottom: 0;
}

/* ==========================================================================
   EXAMPLE CARDS (hinnoittelu)
   ========================================================================== */

.example-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.example-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.example-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.example-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 24px;
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.example-row--minus { color: var(--text-3); }

.example-row--total {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-subtle);
  border-bottom: none;
}

@media (max-width: 768px) {
  .example-cards { grid-template-columns: 1fr; max-width: 400px; }
}

/* ==========================================================================
   FORMULA (hinnoittelu)
   ========================================================================== */

.formula-layout {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 48px;
  align-items: start;
}

.formula-desc p { font-size: 16px; line-height: 1.80; }

.formula-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.formula-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.formula-step:first-child { border-top: none; }

.formula-op {
  width: 24px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-3);
  text-align: center;
}

.formula-text {
  font-size: 14px;
  color: var(--text-2);
}

.formula-step--eq .formula-text,
.formula-step--result .formula-text {
  color: var(--text);
  font-weight: 500;
}

.formula-step--result {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 2px solid var(--border-strong);
}

.formula-step--result .formula-text {
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .formula-layout { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   PROCESS STEPS (miten-se-toimii)
   ========================================================================== */

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.process-step:first-child { border-top: none; padding-top: 0; }

.process-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding-top: 6px;
}

.process-content h3 { font-size: 22px; margin-bottom: 20px; }

.process-body p { font-size: 15px; line-height: 1.75; max-width: 600px; }

.process-body p:last-child { margin-bottom: 0; }

.process-cta { margin-top: 24px; }

.process-option-group { margin-bottom: 24px; }
.process-option-group:last-child { margin-bottom: 0; }

.process-option-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.process-option-row {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 10px;
  max-width: 560px;
}

.process-option-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.process-option-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.process-option-value { font-size: 12px; color: var(--text-2); line-height: 1.5; }

@media (max-width: 640px) {
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .process-number { padding-top: 0; }
  .process-option-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COMPARE LIST (etusivu — Kuulostaako tutulta?)
   ========================================================================== */

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  margin-bottom: 4px;
}

.compare-header-cell {
  padding: 0 36px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare-header-cell--problem { color: var(--text-3); }
.compare-header-cell--solution { color: #8B6800; }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: stretch;
}

.compare-cell {
  position: relative;
  padding: 28px 36px 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
}

.compare-cell--problem {
  overflow: hidden;
}

.compare-cell--problem::after {
  content: '✕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(200, 40, 40, 0.09);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.compare-cell--solution {
  border: 1px solid rgba(243, 182, 12, 0.22);
  border-left: 3px solid #F3B60C;
  background: #FDFCF7;
}

.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A008;
  opacity: 0.5;
  flex-shrink: 0;
}

.compare-stack {
  padding: 0 40px;
}

.compare-two-cards {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.compare-left-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.compare-left-header {
  margin-bottom: 32px;
}

.compare-left-header .section-label { display: block; margin-bottom: 12px; }
.compare-left-header h2 { margin-bottom: 12px; }
.compare-left-header p { color: var(--text-2); font-size: 16px; line-height: 1.6; margin: 0; }

.compare-left-problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: auto;
  margin-left: -40px;
  margin-right: -40px;
}

.compare-left-problems .compare-cell--problem {
  border-radius: 0;
  border: none;
  padding-left: 40px;
  padding-right: 36px;
}

.compare-right-card {
  background: #edf5ee;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.compare-right-card .section-label { display: block; }

.compare-right-body {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

@media (max-width: 860px) {
  .compare-two-cards {
    grid-template-columns: 1fr;
  }
}

.compare-stack-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.compare-stack-header .section-label { display: block; margin-bottom: 16px; }
.compare-stack-header h2 { margin-bottom: 20px; }

.compare-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.compare-cell--problem:not(:last-child) {
  border-right: 1px solid var(--border);
}

.compare-cell--quote {
  display: flex;
  align-items: center;
  padding: 28px 36px 32px;
  border-left: 1px solid var(--border);
}

.compare-quote-text {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}


@media (max-width: 860px) {
  .compare-stack {
    padding: 0 20px;
  }
  .compare-cards-row {
    grid-template-columns: 1fr;
  }
}

.compare-cell--problem .compare-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
}

.compare-cell--solution .compare-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #6B4900;
}

.compare-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-3);
  margin-bottom: 0;
}

.compare-list .reveal:nth-child(2) { transition-delay: 0.10s; }
.compare-list .reveal:nth-child(3) { transition-delay: 0.20s; }
.compare-list .reveal:nth-child(4) { transition-delay: 0.30s; }
.compare-list .reveal:nth-child(5) { transition-delay: 0.40s; }

@media (max-width: 768px) {
  .compare-header { grid-template-columns: 1fr; }
  .compare-header-spacer { display: none; }
  .compare-header-cell--solution { padding-top: 0; }
  .compare-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .compare-arrow { display: none; }
  .compare-cell--problem { border-radius: 16px 16px 4px 4px; }
  .compare-cell--solution { border-radius: 4px 4px 16px 16px; }
}

@media (max-width: 480px) {
  .compare-cell { padding: 22px 24px; }
  .compare-cell--problem .compare-title,
  .compare-cell--solution .compare-title { font-size: 17px; }
}

/* ==========================================================================
   PRICING VISUAL (etusivu)
   ========================================================================== */

.pricing-visual {
  background: #0B1E13;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.pricing-visual::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 55%; height: 130%;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: -5%;
  width: 45%; height: 80%;
  background: radial-gradient(ellipse, rgba(243, 182, 12, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Top content area ── */
.prc-top {
  padding: 52px 60px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.prc-left { min-width: 0; }

.prc-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 16px;
}

.prc-headline {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 540px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.prc-spot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.prc-spot-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2.4s ease infinite;
}

.prc-spot-price {
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}

.prc-spot-date { color: rgba(255, 255, 255, 0.26); }
.prc-spot-sep  { color: rgba(255, 255, 255, 0.16); }

/* ── Plan toggle ── */
.prc-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
  align-self: flex-start;
}

.prc-tab {
  padding: 9px 20px;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  white-space: nowrap;
}

.prc-tab--active {
  background: #F3B60C;
  color: #0D1F16;
}

/* ── Laskuri/Kaava toggle ── */
.lk-toggle {
  display: inline-flex;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 40px;
}

.lk-tab {
  padding: 9px 22px;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  color: var(--text-2);
  background: transparent;
  white-space: nowrap;
}

.lk-tab--active {
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.lk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .lk-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
    row-gap: 0;
    align-items: start;
  }
  .lk-section-inner {
    position: relative;
    overflow: visible;
  }
  .lk-grid > .lk-panel-wrap {
    position: absolute;
    left: calc(50% + 36px);
    top: 50%;
    transform: translateY(-50%);
    width: calc(50% - 76px);
    z-index: 2;
  }
}

.lk-panel-wrap {
  display: grid;
}
.lk-panel-wrap > * {
  grid-area: 1 / 1;
}
.lk-panel--hidden {
  visibility: hidden;
  pointer-events: none;
}

#lk-panel-laskuri,
#lk-panel-kaava {
  display: flex;
  flex-direction: column;
}

.lk-panel-wrap .calc-box,
.lk-panel-wrap .formula-box {
  background: var(--bg-subtle);
  flex: 1;
}

/* ── Fee display ── */
.prc-fees {
  display: grid;
  grid-template-columns: 11fr 9fr;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.prc-fees::before {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.prc-fee {
  padding: 48px 60px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.prc-fee:hover { background: rgba(255, 255, 255, 0.02); }

.prc-fee-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  margin-bottom: 14px;
}

.prc-fee-amount {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.prc-fee-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0;
  max-width: 260px;
}

.prc-fee-bullets {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.prc-fee-bullet {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.26);
  display: flex;
  align-items: center;
  gap: 9px;
}

.prc-fee-bullet-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #F3B60C;
  flex-shrink: 0;
  opacity: 0.55;
}

/* "+" between the two fee cards */
.prc-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: #0B1E13;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  z-index: 2;
}

/* ── Footer bar ── */
.prc-footer {
  padding: 20px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.prc-footer-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0;
}

.prc-footer-note strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.prc-footer-link {
  font-size: 13px;
  font-weight: 600;
  color: #F3B60C;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.prc-footer-link:hover { color: #DCA50A; }

@media (max-width: 960px) {
  .prc-top { padding: 44px 44px 36px; }
  .prc-fee { padding: 40px 44px; }
  .prc-fee-amount { font-size: 64px; }
  .prc-footer { padding: 18px 44px; }
}

@media (max-width: 768px) {
  .prc-top { grid-template-columns: 1fr; gap: 24px; padding: 36px 32px 28px; }
  .prc-fees { grid-template-columns: 1fr; }
  .prc-fees::before { display: none; }
  .prc-fee { padding: 32px 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .prc-fee:last-child { border-bottom: none; }
  .prc-fee-amount { font-size: 56px; }
  .prc-plus { display: none; }
  .prc-footer { padding: 16px 32px; }
}

@media (max-width: 480px) {
  .prc-top { padding: 28px 24px 24px; }
  .prc-fee { padding: 28px 24px; }
  .prc-fee-amount { font-size: 48px; }
  .prc-footer { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==========================================================================
   PATIENCE / TIMING VISUAL (etusivu)
   ========================================================================== */

.patience-visual {
  background: #0B1E13;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.patience-visual::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 55%; height: 110%;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Top ── */
.patience-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 52px 60px 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.patience-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 16px;
}

.patience-headline {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 520px;
}

.patience-intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.46);
  max-width: 480px;
  margin-bottom: 0;
}

/* "30 päivää" badge */
.patience-days-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  min-width: 140px;
}

.patience-days-num {
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.patience-days-unit {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F3B60C;
  margin-bottom: 8px;
}

.patience-days-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.4;
}

/* ── Reason cards ── */
.patience-reasons {
  display: grid;
  grid-template-columns: 11fr 9fr;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.patience-reasons::before {
  content: '';
  position: absolute;
  top: 20%; bottom: 20%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.patience-reason {
  padding: 40px 60px;
  transition: background 0.3s ease;
}

.patience-reason:hover { background: rgba(255, 255, 255, 0.02); }

.patience-reason-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.patience-reason-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}

.patience-reason-body {
  font-size: 13px;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 0;
}

/* ── Quote ── */
.patience-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #F3B60C;
  margin: 0;
  padding: 32px 60px;
  background: rgba(243, 182, 12, 0.03);
  position: relative;
  z-index: 1;
}

.patience-quote-text {
  font-size: 16px;
  line-height: 1.80;
  color: rgba(255, 255, 255, 0.52);
  font-style: italic;
  margin-bottom: 0;
}

/* ── Priority bar ── */
.patience-priority {
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.patience-priority-badge {
  padding: 28px 36px;
  background: #F3B60C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
}

.patience-priority-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 31, 22, 0.55);
}

.patience-priority-badge-days {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0D1F16;
  line-height: 1;
}

.patience-priority-badge-unit {
  font-size: 11px;
  font-weight: 600;
  color: rgba(13, 31, 22, 0.55);
}

.patience-priority-content {
  padding: 28px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.patience-priority-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.patience-priority-body {
  font-size: 13px;
  line-height: 1.60;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .patience-top { padding: 44px 44px 36px; gap: 32px; }
  .patience-reason { padding: 36px 44px; }
  .patience-quote { padding: 28px 44px; }
  .patience-priority-content { padding: 24px 36px; }
}

@media (max-width: 768px) {
  .patience-top { grid-template-columns: 1fr; padding: 36px 32px 28px; }
  .patience-days-badge { flex-direction: row; align-items: center; gap: 16px; min-width: 0; align-self: start; padding: 16px 24px; }
  .patience-days-num { font-size: 56px; }
  .patience-days-unit { margin-bottom: 0; }
  .patience-reasons { grid-template-columns: 1fr; }
  .patience-reasons::before { display: none; }
  .patience-reason { padding: 28px 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .patience-reason:last-child { border-bottom: none; }
  .patience-quote { padding: 24px 32px; }
  .patience-priority-badge { padding: 20px 24px; }
  .patience-priority-content { padding: 20px 28px; }
}

@media (max-width: 480px) {
  .patience-top { padding: 28px 24px 24px; }
  .patience-reason { padding: 24px 24px; }
  .patience-quote { padding: 20px 24px; }
  .patience-priority-content { padding: 18px 20px; }
}

/* ==========================================================================
   PROCESS VISUAL (etusivu — Näin palvelu toimii)
   ========================================================================== */

.process-visual {
  background: #0B1E13;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.process-visual::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 60%; height: 150%;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process-visual::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse, rgba(243, 182, 12, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pv-step {
  padding: 52px 44px 44px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.3s ease;
}

.pv-step:last-child { border-right: none; }
.pv-step:nth-child(2) { transition-delay: 0.13s; }
.pv-step:nth-child(3) { transition-delay: 0.26s; }

.pv-step.pv-step--in {
  opacity: 1;
  transform: translateY(0);
}

.pv-step:hover { background: rgba(255, 255, 255, 0.025); }

.pv-num {
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-size: 130px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pv-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F3B60C;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.pv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.pv-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.pv-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.pv-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.pv-time-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pv-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.pv-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.34);
  line-height: 1.45;
}

.pv-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #F3B60C;
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.65;
}

.pv-bottom {
  padding: 22px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pv-bottom-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.34);
  margin-bottom: 0;
}

.pv-bottom-link {
  font-size: 13px;
  font-weight: 600;
  color: #F3B60C;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.pv-bottom-link:hover { color: #DCA50A; }

@media (max-width: 900px) {
  .pv-grid { grid-template-columns: 1fr; }
  .pv-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 36px 36px;
  }
  .pv-step:last-child { border-bottom: none; }
  .pv-num { font-size: 96px; }
  .pv-bottom { padding: 20px 36px; }
}

@media (max-width: 480px) {
  .pv-step { padding: 32px 24px 28px; }
  .pv-num  { font-size: 72px; }
  .pv-bottom { padding: 18px 24px; }
}

/* ==========================================================================
   UNIFIED VISUAL (etusivu — Prosessi · Hinnoittelu · Aikataulu)
   ========================================================================== */

.unified-visual {
  background: #0B1E13;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.unified-visual::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.unified-visual::after {
  content: '';
  position: absolute;
  bottom: 5%; left: -5%;
  width: 40%; height: 35%;
  background: radial-gradient(ellipse, rgba(243, 182, 12, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ch-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.ch-divider--first {
  border-top: none;
  padding-top: 32px;
}

.ch-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #F3B60C;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ch-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.ch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  flex-shrink: 0;
}

.prc-content {
  padding: 24px 60px 36px;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .ch-divider { padding: 20px 36px; }
  .ch-divider--first { padding-top: 28px; }
  .prc-content { padding: 20px 36px 28px; }
}

@media (max-width: 480px) {
  .ch-divider { padding: 18px 24px; flex-wrap: wrap; gap: 10px; }
  .ch-divider--first { padding-top: 24px; }
  .ch-divider .prc-toggle { width: 100%; }
  .prc-content { padding: 16px 24px 24px; }
}

/* ==========================================================================
   FAQ (miten-se-toimii)
   ========================================================================== */

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  background: #142C22;
  padding: 96px 0 104px;
  border-radius: 28px;
  margin: 0 24px;
}

.faq-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0 80px;
  align-items: start;
}

.faq-section-head {
  position: sticky;
  top: 100px;
}

.faq-section-head .section-label {
  color: var(--gold);
  opacity: 0.85;
}

.faq-section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.faq-section-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

.faq-list {
  max-width: none;
  border-top: none;
}

.faq-item {
  border-bottom: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.25s;
}

.faq-item--open {
  background: rgba(255,255,255,0.08);
  border-color: rgba(243,182,12,0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  color: rgba(255,255,255,0.88);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: #fff; }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.28s ease;
}

.faq-item--open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #0D1F16;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-answer { max-height: 520px; }

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .faq-section-inner {
    grid-template-columns: 1fr;
    gap: 36px 0;
    padding: 0 20px;
  }
  .faq-section-head { position: static; }
  .faq-section { padding: 64px 0 72px; }
}

/* ==========================================================================
   LANGUAGE SELECTOR
   ========================================================================== */

.nav-lang {
  position: relative;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.80);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.nav-lang-toggle:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.nav-lang-flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-lang-chevron {
  color: rgba(255, 255, 255, 0.50);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-lang--open .nav-lang-chevron { transform: rotate(180deg); }

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #142C22;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  min-width: 80px;
}

.nav-lang--open .nav-lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

.nav-lang-option:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav-lang-option--active { color: #fff; }

.nav-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.50);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.nav-lang-btn:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ==========================================================================
   HERO ENHANCEMENTS — orbs, trust row
   ========================================================================== */

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.hero-orb--green {
  width: 700px; height: 700px;
  top: -25%; right: -15%;
  background: radial-gradient(circle, rgba(34,197,94,0.13) 0%, transparent 65%);
  animation: orb-drift 16s ease-in-out infinite;
}

.hero-orb--gold {
  width: 420px; height: 420px;
  bottom: -15%; left: -8%;
  background: radial-gradient(circle, rgba(243,182,12,0.08) 0%, transparent 65%);
  animation: orb-drift 20s ease-in-out 5s infinite reverse;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(50px, -35px) scale(1.07); }
  66%       { transform: translate(-30px, 25px) scale(0.93); }
}

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: hero-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.3s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .hero-trust { gap: 14px; }
  .hero-trust-item { font-size: 12px; }
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */

/* ============================================================
   TOTEUTUNEITA KAUPPOJA
   ============================================================ */

.ttj-section {
  background: #FFFDF7;
  border-bottom: 1px solid var(--border);
}

.ttj-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.ttj-header {
  text-align: center;
  margin-bottom: 52px;
}

.ttj-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ttj-heading {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.ttj-sub {
  font-size: 16px;
  color: var(--text-3);
  margin: 0;
}

.ttj-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.ttj-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 36px 20px 28px;
  text-align: center;
  border-top: 3px solid var(--gold);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--ttj-delay, 0s);
}

.ttj-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.ttj-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 24px;
}

.ttj-icon {
  height: 100%;
  width: auto;
  max-width: 180px;
}

.ttj-photo {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
}

.ttj-price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.ttj-eur {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-3);
}

.ttj-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  line-height: 1.35;
  margin-bottom: 10px;
}

.ttj-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #7A5F00;
  background: rgba(243, 182, 12, 0.10);
  border: 1px solid rgba(243, 182, 12, 0.28);
  border-radius: 20px;
  padding: 4px 12px;
}

.stat-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 11px 0 13px;
}

.stat-ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: stat-scroll 90s linear infinite;
}

@keyframes stat-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stat-ticker-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 72px;
}

.stat-ticker-item {
  font-size: 13px;
  color: var(--text-3);
  padding: 0 56px;
}

.stat-ticker-pct {
  color: #22C55E;
  font-weight: 700;
}

.stat-ticker-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .stat-ticker-track { animation: none; }
}

@media (max-width: 900px) {
  .ttj-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ttj-inner {
    padding: 52px 20px 44px;
  }
  .ttj-price {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .ttj-cards {
    grid-template-columns: 1fr;
  }
  .ttj-icon-wrap {
    height: 80px;
  }
}

/* ==========================================================================
   THREE PILLARS
   ========================================================================== */

.pillar-section { padding-top: 100px; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pillar-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.09), 0 0 0 1px rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.28);
}

.pillar-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.25s, border-color 0.25s;
}

.pillar-card:hover .pillar-icon-wrap {
  background: rgba(34,197,94,0.13);
  border-color: rgba(34,197,94,0.28);
}

.pillar-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
}

.pillar-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0;
}

@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar-card { padding: 32px 28px; }
  .pillar-section { padding-top: 72px; }
}

/* ==========================================================================
   STATEMENT SECTION
   ========================================================================== */

.statement-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 40%, #FAFAF8 100%);
}

.statement-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.statement-wrap .section-label { display: block; margin-bottom: 10px; }

.statement-section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 36px;
}

.statement-rule {
  width: 0;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 44px;
  border-radius: 2px;
  transition: width 0.6s ease 0.2s;
}

.statement-wrap.revealed .statement-rule {
  width: 40px;
}

.statement-heading {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}

.statement-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0;
}

@media (max-width: 768px) {
  .statement-section { padding: 80px 20px; }
  .statement-body { font-size: 16px; }
}

/* ── Vaihtoehto A: rinnakkain ───────────────────────────────────────── */
.statement-section--cols {
  padding: 120px 40px;
}

.statement-grid-title {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 auto 72px;
}

.statement-grid,
.statement-stagger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.statement-grid .statement-wrap,
.statement-stagger .statement-wrap {
  max-width: none;
  margin: 0;
}

.statement-grid .statement-heading,
.statement-stagger .statement-heading {
  font-size: clamp(19px, 1.8vw, 28px);
}

.statement-grid .statement-rule,
.statement-stagger .statement-rule {
  margin-left: auto;
  margin-right: auto;
}

.statement-grid .statement-wrap {
  text-align: left;
}

.statement-grid .statement-rule {
  margin-left: 0;
  margin-right: 0;
}

.statement-grid .statement-wrap:nth-child(2) { transition-delay: 0.15s; }
.statement-grid .statement-wrap:nth-child(3) { transition-delay: 0.30s; }

/* ── Vaihtoehto B: lomittain ────────────────────────────────────────── */
.statement-stagger .statement-wrap:nth-child(2) { margin-top: 80px; }
.statement-stagger .statement-wrap:nth-child(3) { margin-top: 160px; }

@media (max-width: 900px) {
  .statement-section--cols { padding: 80px 24px; }

  .statement-grid,
  .statement-stagger {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }

  .statement-stagger .statement-wrap:nth-child(2),
  .statement-stagger .statement-wrap:nth-child(3) { margin-top: 0; }

  .statement-grid .statement-heading,
  .statement-stagger .statement-heading {
    font-size: clamp(22px, 5vw, 30px);
  }
}

/* ==========================================================================
   CTA STRIP — slim dark band before hinnoittelu
   ========================================================================== */

/* ==========================================================================
   CONNECTED NETWORK CARDS
   ========================================================================== */

.cnc-section {
  background: #0D1F16;
  padding: 120px 40px;
}

.cnc-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.cnc-grid {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  grid-template-rows: auto 72px auto;
  grid-template-areas:
    "n1 ch n2"
    "cv .  .  "
    "n3 .  .  ";
}

.cnc-cell--1 { grid-area: n1; }
.cnc-cell--2 { grid-area: n2; }
.cnc-cell--3 { grid-area: n3; }
.cnc-conn--h { grid-area: ch; display: flex; align-items: flex-start; padding-top: 22px; }
.cnc-conn--v { grid-area: cv; display: flex; justify-content: flex-start; padding-left: 30px; }

/* ── Lines ─────────────────────────────────────────────────────────── */

.cnc-line--h {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(243,182,12,0.7), rgba(243,182,12,0.15));
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 6px rgba(243,182,12,0.3);
}

.cnc-line--v {
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, rgba(243,182,12,0.7), rgba(243,182,12,0.15));
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 6px rgba(243,182,12,0.3);
}

.cnc-section.draw-h .cnc-line--h { width: 100%; }
.cnc-section.draw-v .cnc-line--v { height: 100%; }

/* ── Cards ─────────────────────────────────────────────────────────── */

.cnc-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 44px 32px 32px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.4s, box-shadow 0.4s;
}

.cnc-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cnc-card.is-active {
  border-color: rgba(243,182,12,0.3);
  box-shadow: 0 0 32px rgba(243,182,12,0.06);
}

/* ── Node dot ──────────────────────────────────────────────────────── */

.cnc-dot {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  background: transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.4s;
}

.cnc-card.is-active .cnc-dot {
  background: #F3B60C;
  border-color: #F3B60C;
  box-shadow: 0 0 0 4px rgba(243,182,12,0.18), 0 0 14px rgba(243,182,12,0.45);
  animation: cnc-pulse 2s ease-in-out infinite;
}

@keyframes cnc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(243,182,12,0.18), 0 0 14px rgba(243,182,12,0.45); }
  50%       { box-shadow: 0 0 0 8px rgba(243,182,12,0.08), 0 0 22px rgba(243,182,12,0.25); }
}

.cnc-heading {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.cnc-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@media (max-width: 860px) {
  .cnc-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "n1" "n2" "n3";
    gap: 16px;
  }
  .cnc-conn { display: none; }
  .cnc-section { padding: 80px 24px; }
}

/* ==========================================================================
   SCROLL-DRIVEN PROOF SECTION
   ========================================================================== */

.sdp-section {
  background: #F7F7F5;
  padding: 120px 40px;
}

.sdp-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

.sdp-left { display: none; }

/* ── Left: sticky ──────────────────────────────────────────────────── */

.sdp-sticky {
  position: sticky;
  top: 120px;
  padding-bottom: 80px;
}

.sdp-tagline {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 48px;
}

.sdp-progress {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sdp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.sdp-dot.is-active {
  background: #F3B60C;
  border-color: #F3B60C;
  box-shadow: 0 0 0 4px rgba(243,182,12,0.2);
}

.sdp-prog-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin-left: 4px;
}

/* ── Right: cards ──────────────────────────────────────────────────── */

.sdp-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto;
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
}

.sdp-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.4s;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  align-content: start;
}

.sdp-card:nth-child(2) { transition-delay: 0.15s; }
.sdp-card:nth-child(3) { transition-delay: 0.30s; }

.sdp-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elementtien sisääntulo kortin sisällä */
.sdp-card .sdp-card-question,
.sdp-card .sdp-visual,
.sdp-card .sdp-card-heading,
.sdp-card .sdp-card-body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.sdp-card.is-visible .sdp-card-question {
  opacity: 1; transform: none; transition-delay: 0.10s;
}
.sdp-card.is-visible .sdp-visual {
  opacity: 1; transform: none; transition-delay: 0.22s;
}
.sdp-card.is-visible .sdp-card-heading {
  opacity: 1; transform: none; transition-delay: 0.34s;
}
.sdp-card.is-visible .sdp-card-body {
  opacity: 1; transform: none; transition-delay: 0.44s;
}

/* Kortti 2: lisätään kortin oman staggerin verran */
.sdp-card:nth-child(2).is-visible .sdp-card-question  { transition-delay: 0.25s; }
.sdp-card:nth-child(2).is-visible .sdp-visual          { transition-delay: 0.37s; }
.sdp-card:nth-child(2).is-visible .sdp-card-heading    { transition-delay: 0.49s; }
.sdp-card:nth-child(2).is-visible .sdp-card-body       { transition-delay: 0.59s; }

/* Kortti 3 */
.sdp-card:nth-child(3).is-visible .sdp-card-question  { transition-delay: 0.40s; }
.sdp-card:nth-child(3).is-visible .sdp-visual          { transition-delay: 0.52s; }
.sdp-card:nth-child(3).is-visible .sdp-card-heading    { transition-delay: 0.64s; }
.sdp-card:nth-child(3).is-visible .sdp-card-body       { transition-delay: 0.74s; }

.sdp-card.is-active {
  border-color: rgba(243,182,12,0.35);
}

.sdp-card-question {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.sdp-card-heading {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

.sdp-card-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  margin: 0;
}

/* ── Visual areas ──────────────────────────────────────────────────── */

.sdp-visual {
  margin-bottom: 24px;
  padding: 20px 22px;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
}

/* Ticker */
.sdp-ticker-row { display: flex; align-items: baseline; gap: 2px; }

.sdp-ticker-val {
  font-size: 34px;
  font-weight: 800;
  color: #F3B60C;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.sdp-ticker-unit {
  font-size: 17px;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
}


.sdp-ticker-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sdp-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}

/* XRF */
.sdp-xrf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.sdp-xrf-row:last-child { border-bottom: none; }

.sdp-section .sdp-xrf-row { border-bottom: none; }

/* Bar animations: start after the visual has faded in for each card */
.sdp-section .sdp-xrf-bar                              { transition-delay: 0.90s; }
.sdp-section .sdp-xrf-row:nth-child(2) .sdp-xrf-bar   { transition-delay: 1.10s; }
.sdp-section .sdp-vol-bar-fill                         { transition-delay: 1.05s; }
.sdp-section .sdp-vol-row:nth-child(2) .sdp-vol-bar-fill { transition-delay: 1.25s; }

/* Ticker label in sdp-section: match xrf-name style */
.sdp-section .sdp-ticker-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0,0,0,0.45);
  margin-top: 10px;
}

.sdp-xrf-el {
  font-size: 13px;
  font-weight: 700;
  color: #F3B60C;
  width: 28px;
  flex-shrink: 0;
}

.sdp-xrf-name {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  width: 60px;
  flex-shrink: 0;
}

.sdp-xrf-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.sdp-xrf-bar {
  height: 100%;
  border-radius: 2px;
  background: #F3B60C;
  width: 0;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sdp-card.is-active .sdp-xrf-bar,
.cnc-card.is-active .sdp-xrf-bar {
  width: var(--w);
}

.sdp-xrf-row:nth-child(2) .sdp-xrf-bar { transition-delay: 0.12s; }
.sdp-xrf-row:nth-child(3) .sdp-xrf-bar { transition-delay: 0.24s; }

.sdp-xrf-pct {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}

/* Volume bars */
.sdp-vol-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.sdp-vol-label {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  width: 120px;
  flex-shrink: 0;
}

.sdp-vol-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.sdp-vol-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: #F3B60C;
  width: 0;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.sdp-vol-row:nth-child(2) .sdp-vol-bar-fill { transition-delay: 0.4s; }

.sdp-card.is-active .sdp-vol-bar-fill,
.cnc-card.is-active .sdp-vol-bar-fill {
  width: var(--w);
}

@media (max-width: 900px) {
  .sdp-section { padding: 80px 24px; }
  .sdp-right { grid-template-columns: 1fr; }
}

/* ==========================================================================
   QA SECTION — tree hierarchy: root card → branching lines → two leaf cards
   ========================================================================== */

.qa-section {
  background: #edf5ee;
  padding: 32px 24px 50px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.qa-section--cta {
  border-radius: 28px;
  margin: 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
}

.qa-section.is-visible {
  opacity: 1;
  transform: none;
}

.qa-tree {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

/* ── Root: left column ── */

.qa-root {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 0;
  position: sticky;
  top: 120px;
}

/* When qa-root is the only child (no right column) — horizontal two-col layout */
.qa-tree:not(:has(.qa-leaves)) .qa-root {
  flex: 1;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  position: static;
}

.qa-root-left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-root-img {
  width: 260px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 36px;
  margin-top: -80px;
  margin-left: -40px;
  align-self: flex-start;
}

.qa-root-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qa-root-ticker {
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.54s, transform 0.65s cubic-bezier(0.22,1,0.36,1) 0.54s;
}
.qa-root.is-visible .qa-root-ticker { opacity: 1; transform: none; }

.qa-root .sdp-ticker-val {
  font-size: clamp(52px, 7.5vw, 96px);
}
.qa-root .sdp-ticker-unit {
  font-size: clamp(22px, 3.2vw, 42px);
  align-self: flex-end;
  padding-bottom: 8px;
}

.qa-root-rule {
  width: 40px;
  height: 2px;
  background: rgba(243,182,12,0.6);
  margin: 24px 0 24px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.4s ease 0.42s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.42s;
}
.qa-root.is-visible .qa-root-rule { opacity: 1; transform: scaleX(1); }

.qa-root-rule--bottom {
  transition-delay: 0.78s, 0.78s;
  margin-top: 28px;
  margin-bottom: 24px;
}

.qa-root-cta {
  margin-left: 0;
  margin-top: 28px;
  margin-bottom: 16px;
  padding: 13px 16px;
  align-self: flex-start;
}

#qa-root-2 .qa-root-img {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .qa-root-img { display: none; }
}

#qa-root-2 .qa-root-body {
  margin-top: 32px;
}

#qa-root-2 .qa-root-right {
  padding-top: 88px;
}

.qa-root-heading {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 0;
  max-width: 480px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.30s, transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.30s;
}
.qa-root.is-visible .qa-root-heading { opacity: 1; transform: none; }

.qa-root-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  margin: 0;
  max-width: 440px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease 0.46s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.46s;
}
.qa-root.is-visible .qa-root-body { opacity: 1; transform: none; }

/* ── Branching connector ── */

.qa-connector {
  position: relative;
  width: 100%;
  height: 80px;
}

.qa-conn-stem {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 0;
  background: rgba(243,182,12,0.45);
  transform: translateX(-50%);
  transition: height 0.45s cubic-bezier(0.22,1,0.36,1);
}

.qa-conn-bar {
  position: absolute;
  top: 40px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: rgba(243,182,12,0.45);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.40s;
}

.qa-conn-drop--l,
.qa-conn-drop--r {
  position: absolute;
  top: 40px;
  width: 2px;
  height: 0;
  background: rgba(243,182,12,0.45);
  transition: height 0.35s cubic-bezier(0.22,1,0.36,1) 0.78s;
}
.qa-conn-drop--l { left: calc(25% - 1px); }
.qa-conn-drop--r { right: calc(25% - 1px); }

.qa-connector.is-drawn .qa-conn-stem              { height: 40px; }
.qa-connector.is-drawn .qa-conn-bar               { transform: scaleX(1); }
.qa-connector.is-drawn .qa-conn-drop--l,
.qa-connector.is-drawn .qa-conn-drop--r           { height: 40px; }

/* ── Leaf cards ── */

.qa-leaves {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-leaf {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-leaf-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-leaf-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F3B60C;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.qa-leaf.is-visible .qa-leaf-num { opacity: 1; }
.qa-leaf:nth-child(2) .qa-leaf-num { transition-delay: 0.10s; }

.qa-leaf-q {
  font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease 0.10s, transform 0.65s cubic-bezier(0.22,1,0.36,1) 0.10s;
}
.qa-leaf:nth-child(2) .qa-leaf-q { transition-delay: 0.22s; }
.qa-leaf.is-visible .qa-leaf-q { opacity: 1; transform: none; }

/* ── Answer card ── */

.qa-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateX(28px) translateY(8px);
  transition: opacity 0.6s ease 0.20s, transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.20s;
}

.qa-leaf:nth-child(2) .qa-card { transition-delay: 0.36s; }
.qa-leaf.is-visible .qa-card { opacity: 1; transform: none; }

.qa-heading {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.qa-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,0.5);
  margin: 0;
}

/* ── Gold accent line — grows left-to-right after card appears ── */

.qa-leaf .qa-card::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F3B60C, rgba(243,182,12,0.15));
  border-radius: 2px;
  margin-bottom: 24px;
  transition: width 0.65s cubic-bezier(0.22,1,0.36,1) 0.38s;
}
.qa-leaf.is-visible .qa-card::before { width: 48px; }
.qa-leaf:nth-child(2) .qa-card::before { transition-delay: 0.54s; }

/* ── Card internal stagger ── */

.qa-card .qa-heading {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease 0.36s, transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.36s;
}
.qa-card .qa-body {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease 0.50s, transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.50s;
}

.qa-leaf:nth-child(2) .qa-card .qa-heading { transition-delay: 0.52s; }
.qa-leaf:nth-child(2) .qa-card .qa-body    { transition-delay: 0.66s; }

.qa-leaf.is-visible .qa-card .qa-heading { opacity: 1; transform: none; }
.qa-leaf.is-visible .qa-card .qa-body    { opacity: 1; transform: none; }

/* ── Ticker label ── */

.qa-section .sdp-ticker-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(0,0,0,0.45);
  margin-top: 10px;
}

.qa-root .qa-root-meta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.68s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.68s;
}
.qa-root.is-visible .qa-root-meta { opacity: 1; transform: none; }

.qa-section .sdp-xrf-row { border-bottom: none; }

@media (max-width: 860px) {
  .qa-section { padding: 80px 24px; opacity: 1; transform: none; }
  .qa-tree { flex-direction: column; gap: 48px; padding: 0 16px; }
  .qa-root { position: static; flex: none; width: 100%; }
  .qa-tree:not(:has(.qa-leaves)) .qa-root { flex-direction: column; gap: 40px; }
  .qa-root-left { flex: none; }
  .qa-root-heading { max-width: none; }
  .qa-root-body { max-width: none; }

  /* CTA: siirrä hinta otsikon jälkeen, ennen tekstiä */
  #qa-root-2 { display: flex; flex-direction: column; gap: 0; }
  #qa-root-2 .qa-root-left { display: contents; }
  #qa-root-2 .qa-root-heading { order: 1; margin-bottom: 16px; }
  #qa-root-2 .qa-root-right { order: 2; padding-top: 0; margin-bottom: 20px; }
  #qa-root-2 .qa-root-body { order: 3; margin-top: 0; }
  #qa-root-2 .qa-root-cta { order: 4; }
}

/* ── Standalone cards strip (after hinnoittelu) ── */

.qa-cards-strip {
  background: var(--bg);
  padding: 80px 40px 100px;
}

/* ── Insight card ── */
.ppreview-insight {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 0 rgba(255,255,255,0.9) inset, 0 8px 40px rgba(0,0,0,0.08);
  max-width: 380px;
  position: relative;
}

.insight-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(243, 182, 12, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #b88a00;
}

.insight-card-heading {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 10px;
}

.insight-card-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}

.qa-cards-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 20px;
}

.qa-cards-strip .qa-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

@media (max-width: 700px) {
  .qa-cards-strip { padding: 0 20px 64px; }
  .qa-cards-strip-inner { grid-template-columns: 1fr; }
}

/* ========================================================================== */

.cta-strip {
  background: #142C22;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.cta-strip-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.cta-strip-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-strip-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.cta-strip-link {
  font-size: 15px;
  font-weight: 600;
  color: #F3B60C;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.cta-strip-link:hover {
  color: #fff;
}

.cta-strip-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.cta-strip-price-val {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cta-strip-price-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

.cta-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

@media (max-width: 640px) {
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   CTA TEKSTI — subtle text CTA after compare table
   ========================================================================== */

.cta-text-strip {
  padding: 64px 40px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-text-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-text-strip-line {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.cta-text-strip-link {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.cta-text-strip-link:hover { opacity: 0.7; }

/* ==========================================================================
   ARVOLAUSE — dark statement break
   ========================================================================== */

.arvolause-wrap {
  background: var(--bg-subtle);
}

.arvolause-section {
  background: #fff;
  border-radius: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 40px;
}

.arvolause-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.arvolause-text {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}

.arvolause-text::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .arvolause-section { padding: 80px 24px; border-radius: 20px; }
}

/* ==========================================================================
   TURVALLISUUS — two-column layout with feature card
   ========================================================================== */

.turv-layout {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 0 80px;
  align-items: center;
  padding: 0 40px;
}

.turv-feature-card {
  background: #edf5ee;
  border: 1px solid rgba(243,182,12,0.18);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.turv-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.turv-coming {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-fg);
  background: var(--accent-dim);
  border-radius: 20px;
  padding: 4px 12px;
  align-self: flex-start;
}

.turv-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.turv-live-icon {
  flex-shrink: 0;
  margin-top: 6px;
}

.turv-feature-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}

.turv-feature-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}

.turv-feature-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.6;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .turv-layout {
    grid-template-columns: 1fr;
    gap: 12px 0;
    padding: 0 20px;
  }
  .turv-layout .section-header {
    margin-bottom: 0;
  }
  .turv-layout .turv-feature-card {
    margin-top: 0;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   STICKY EVIDENCE TIMELINE
   ========================================================================== */

.stl-section {
  background: #142C22;
  padding: 100px 0 0;
  border-radius: 0 0 28px 28px;
}

.stl-section--card {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 28px;
}

.stl-header {
  text-align: center;
  padding: 0 40px 80px;
}

.stl-main-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 12px 0 0;
}

.stl-layout {
  display: grid;
  grid-template-columns: 11fr 9fr;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0 80px;
  align-items: start;
}

/* ── Left: steps ─────────────────────────────────────────────────────── */

.stl-steps {
  padding-bottom: 120px;
}

.stl-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 24px;
  min-height: 340px;
  padding-top: 4px;
}

.stl-step--last {
  min-height: 260px;
}

.stl-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  flex-shrink: 0;
  margin-top: 7px;
  transition: border-color 0.35s, background 0.35s;
}

.stl-dot--final {
  border-color: #22C55E;
}

.stl-step.is-active .stl-dot {
  border-color: #F3B60C;
  background: #F3B60C;
  box-shadow: 0 0 0 4px rgba(243,182,12,0.15);
}

.stl-step.is-active .stl-dot--final {
  border-color: #22C55E;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
}

.stl-line {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,0.1);
  margin-top: 8px;
}

.stl-step-content {
  padding-bottom: 56px;
}

.stl-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #F3B60C;
  opacity: 0.55;
  display: block;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.stl-step.is-active .stl-num {
  opacity: 1;
}

.stl-step-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.25);
  margin: 0 0 16px;
  transition: color 0.35s;
}

.stl-step.is-active .stl-step-title {
  color: #fff;
}

.stl-step-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
  margin: 0 0 20px;
  transition: color 0.35s;
}

.stl-step.is-active .stl-step-body {
  color: rgba(255,255,255,0.65);
}

.stl-step-attrs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s;
}

.stl-step.is-active .stl-step-attrs {
  opacity: 1;
}

.stl-attr {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.stl-attr-key {
  color: rgba(255,255,255,0.4);
  min-width: 110px;
  flex-shrink: 0;
}

.stl-attr-val {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.stl-delivery-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.stl-delivery-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.stl-delivery-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(243,182,12,0.45);
}

.stl-delivery-card-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stl-delivery-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

.stl-delivery-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.stl-delivery-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.stl-delivery-price {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  flex-shrink: 0;
}

.stl-cta {
  margin-top: 32px;
  display: inline-block;
}

/* ── Right: sticky visual ────────────────────────────────────────────── */

.stl-visual-wrap {
  position: sticky;
  top: 120px;
  padding-bottom: 40px;
}

.stl-visual {
  position: relative;
  height: 380px;
}

.stl-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px 40px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.stl-panel--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stl-panel-icon {
  opacity: 0.9;
}

.stl-panel-label {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-align: center;
  margin: 0;
}

.stl-panel-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   TURVALLISUUS — safety cards
   ========================================================================== */

.tsec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tsec-card {
  background: #edf5ee;
  border-radius: 16px;
  padding: 36px 32px;
}

.tsec-card-icon {
  margin-bottom: 20px;
}

.tsec-card-title {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}

.tsec-card-lead {
  font-size: 14px;
  font-weight: 600;
  color: #2D6A4F;
  margin: 0 0 20px;
}

.tsec-card-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 0 14px;
}

.tsec-card-body:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .tsec-grid { grid-template-columns: 1fr; }
}

/* Step icon */
.stl-step-icon {
  display: block;
  margin-top: 12px;
  margin-bottom: 12px;
  opacity: 0.3;
  transition: opacity 0.35s;
}
.stl-step.is-active .stl-step-icon {
  opacity: 1;
}

/* Text panel variant (replaces icon card with paragraphs) */
.stl-panel--text {
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.stl-panel--text p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.stl-section--light .stl-panel--text p {
  color: var(--text-2);
}
.stl-section--light .stl-panel--text a {
  color: var(--accent-fg);
}

/* Light variant */
.stl-section--light {
  background: var(--bg-subtle);
}
/* Single full-width column — no sticky panel */
.stl-section--light .stl-layout {
  grid-template-columns: 1fr;
}
/* Each step gets 3 columns: indicator | left content | right detail */
.stl-section--light .stl-step {
  grid-template-columns: 28px 2fr 3fr;
  gap: 0 48px;
  min-height: 0;
}
.stl-section--light .stl-step--last {
  min-height: 0;
}
.stl-section--light .stl-dot {
  border-color: rgba(0,0,0,0.15);
}
.stl-section--light .stl-line {
  background: rgba(0,0,0,0.08);
}
.stl-section--light .stl-step-title {
  color: rgba(0,0,0,0.2);
}
.stl-section--light .stl-step.is-active .stl-step-title {
  color: var(--text);
}
.stl-section--light .stl-step-body {
  color: rgba(0,0,0,0.2);
}
.stl-section--light .stl-step.is-active .stl-step-body {
  color: var(--text-2);
}
.stl-section--light .stl-attr-key {
  color: var(--text-2);
}
.stl-section--light .stl-attr-val {
  color: var(--text);
}
/* Detail column: aligns with heading via padding-top = section-label + icon height */
.stl-step-detail {
  padding-top: 0;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.stl-step.is-active .stl-step-detail {
  opacity: 1;
  pointer-events: auto;
}
.stl-step-detail p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0,0,0,0.2);
  margin: 0 0 18px;
  transition: color 0.35s;
}
.stl-step.is-active .stl-step-detail p {
  color: var(--text-2);
}
.stl-step-detail a {
  color: var(--accent-fg);
}

@media (max-width: 900px) {
  .stl-section { padding: 80px 0 0; }
  .stl-layout { grid-template-columns: 1fr; padding: 0 24px; gap: 0; }
  .stl-visual-wrap { display: none; }
  .stl-step { min-height: auto; }
  .stl-step-attrs { opacity: 1; }
}

/* ==========================================================================
   Myy kultasi — contact form page
   ========================================================================== */

.sell-nav-bar {
  position: relative;
  background: #fff;
  height: 88px;
  width: 100%;
}

.sell-nav-bar::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--max-width);
  bottom: 0;
  background: #142C22;
  border-radius: 14px;
}

.sell-section {
  padding: 72px 0 96px;
}

.sell-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.sell-form-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 32px;
}

/* Delivery method selector */
.sell-method-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin: 0 0 12px;
}

.sell-method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.sell-method-card {
  position: relative;
  cursor: pointer;
}

.sell-method-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sell-method-card-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  user-select: none;
}

.sell-method-card input[type="radio"]:checked + .sell-method-card-inner {
  border-color: #2D6A4F;
  background: #edf5ee;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.10);
}

.sell-method-card-inner:hover {
  border-color: #2D6A4F;
}

.sell-method-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.sell-method-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.sell-method-card-price {
  font-size: 13px;
  font-weight: 700;
  color: #2D6A4F;
  white-space: nowrap;
  flex-shrink: 0;
}

.sell-method-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

@media (max-width: 520px) {
  .sell-method-cards { grid-template-columns: 1fr; }
}

.sell-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sell-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.sell-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.sell-label span {
  color: #2D6A4F;
}

.sell-input,
.sell-select,
.sell-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
  appearance: none;
}

.sell-input:focus,
.sell-select:focus,
.sell-textarea:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.sell-input::placeholder,
.sell-textarea::placeholder {
  color: var(--text-3);
}

.sell-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352525B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}

.sell-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.sell-submit-wrap {
  margin-top: 8px;
}

.sell-success {
  display: none;
  padding: 20px 24px;
  background: #edf5ee;
  border-radius: 12px;
  border-left: 4px solid #2D6A4F;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.sell-success strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Right column */
.sell-info {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sell-info-card {
  background: var(--bg-subtle);
  border-radius: 16px;
  padding: 28px 28px 24px;
}

.sell-info-card-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin: 0 0 16px;
}

.sell-info-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
}

.sell-info-contact-row:last-child {
  margin-bottom: 0;
}

.sell-info-contact-row a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.sell-info-contact-row a:hover {
  color: #2D6A4F;
}

.sell-info-contact-icon {
  flex-shrink: 0;
  color: #2D6A4F;
}

.sell-ticker-price {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.sell-ticker-meta {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sell-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sell-steps-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.sell-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2D6A4F;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.sell-loc-heading {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
}

/* Location search */
.sell-loc-search {
  margin-bottom: 20px;
}

.sell-loc-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.sell-loc-input {
  flex: 1;
  min-width: 160px;
}

.sell-loc-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.sell-loc-geo-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #2D6A4F;
  background: #edf5ee;
  border: 1.5px solid #b7dfc4;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

.sell-loc-geo-btn:hover {
  background: #d8eedd;
  border-color: #2D6A4F;
}

.sell-loc-status {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-3);
  min-height: 18px;
}

/* Multi-step pickup form */
.slv-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.slv-prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
}
.slv-prog-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.slv-prog-step em {
  font-style: normal;
  font-size: 11px;
  color: var(--text-3);
  transition: color 0.2s;
}
.slv-prog-step.active span { background: #2D6A4F; color: #fff; }
.slv-prog-step.active em  { color: #2D6A4F; font-weight: 600; }
.slv-prog-step.done span  { background: #edf5ee; color: #2D6A4F; }
.slv-prog-step.done em    { color: #2D6A4F; }
.slv-prog-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  margin-bottom: 20px;
}

.slv-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.slv-back:hover { color: var(--text); }

.slv-area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf5ee;
  color: #2D6A4F;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.slv-error {
  margin-top: 10px;
  font-size: 13px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
}

/* Date tabs */
.slv-date-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.slv-date-tab {
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.slv-date-tab:hover { border-color: #2D6A4F; color: #2D6A4F; }
.slv-date-tab.active { border-color: #2D6A4F; background: #edf5ee; color: #2D6A4F; }

/* Slot grid */
.slv-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.slv-slot {
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.slv-slot:hover { border-color: #2D6A4F; color: #2D6A4F; }
.slv-slot--selected { border-color: #2D6A4F; background: #2D6A4F; color: #fff; }
.slv-slot--selected:hover { background: #2D6A4F; color: #fff; }
.slv-slot--booked {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-align: center;
  text-decoration: line-through;
  cursor: not-allowed;
}
.slv-slot-hint {
  font-size: 13px;
  color: #b91c1c;
  margin-top: 4px;
}

/* No-slots message */
.slv-no-slots-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #edf5ee;
  border-radius: 12px;
  margin-top: 16px;
}
.slv-no-slots-msg svg { flex-shrink: 0; margin-top: 2px; }
.slv-no-slots-msg strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.slv-no-slots-msg p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.6; }

@media (max-width: 520px) {
  .slv-slot-grid { grid-template-columns: repeat(3, 1fr); }
  .slv-date-tabs { gap: 6px; }
  .slv-date-tab { padding: 7px 10px; font-size: 12px; }
}

.sell-pickup-addr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #edf5ee;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.sell-loc-empty {
  font-size: 14px;
  color: var(--text-3);
  margin: 0;
}

/* Location view */
.sell-location-card {
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
}

.sell-location-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.sell-location-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.sell-location-details {
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sell-location-row {
  display: flex;
  gap: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.sell-location-key {
  flex-shrink: 0;
  width: 110px;
  color: var(--text-3);
  font-weight: 500;
}

.sell-location-val {
  color: var(--text);
}

.sell-location-val a {
  color: var(--text);
  text-decoration: none;
}

.sell-location-val a:hover {
  color: #2D6A4F;
}

.sell-location-dist {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: #2D6A4F;
  background: #edf5ee;
  padding: 3px 8px;
  border-radius: 20px;
}

.sell-location-map {
  padding: 0 16px 0;
}

.sell-location-directions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #2D6A4F;
  text-decoration: none;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  transition: color 0.15s;
}

.sell-location-directions:hover {
  color: #1b4332;
}

/* Accordion pickup stepper */
.slv-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slv-acc-step {
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.slv-acc-step[data-state="active"] {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.slv-acc-step[data-state="pending"] {
  opacity: 0.45;
}

.slv-acc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.slv-acc-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-3);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.slv-acc-step[data-state="active"] .slv-acc-num {
  background: #2D6A4F;
  color: #fff;
}

.slv-acc-step[data-state="done"] .slv-acc-num {
  background: #edf5ee;
  color: #2D6A4F;
}

.slv-acc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.slv-acc-step[data-state="pending"] .slv-acc-title {
  color: var(--text-3);
}

.slv-acc-summary {
  flex: 1;
  font-size: 13px;
  color: var(--text-3);
  margin-left: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slv-acc-edit {
  flex-shrink: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #2D6A4F;
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}

.slv-acc-edit:hover {
  background: #edf5ee;
}

.slv-acc-body {
  padding: 4px 18px 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .sell-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sell-info {
    position: static;
    order: -1;
  }
  .sell-field-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMPACT PROCESS — dark green section
   ========================================================================== */

.section--dark-green {
  background: #0B1E13;
}

.section--dark-green .section-header h2 { color: #fff; }
.section--dark-green .section-header p { color: rgba(255,255,255,0.45); }

.section-label--light { color: rgba(255,255,255,0.32) !important; }
.heading--light { color: #fff !important; }

.cproc {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
}

.cproc-step {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.cproc-step:first-child { padding-left: 0; }
.cproc-step:last-child  { padding-right: 0; }

.cproc-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #F3B60C;
  margin-bottom: 20px;
  background: rgba(243,182,12,0.1);
  border: 1px solid rgba(243,182,12,0.2);
  border-radius: 100px;
  padding: 4px 10px;
}

.cproc-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.cproc-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cproc-body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.40);
}

.cproc-conn {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  margin-top: 62px;
}

.cproc-footer {
  margin-top: 56px;
  text-align: center;
}

.cproc-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}

.cproc-link:hover { color: #F3B60C; }

@media (max-width: 860px) {
  .cproc { flex-direction: column; gap: 0; }
  .cproc-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 20px;
    padding: 0 0 32px 0;
    text-align: left;
    align-items: start;
  }
  .cproc-num { grid-column: 1; grid-row: 1; margin-bottom: 12px; }
  .cproc-icon { grid-column: 1; grid-row: 2; font-size: 28px; margin-bottom: 0; justify-self: center; }
  .cproc-title { grid-column: 2; grid-row: 1 / 3; align-self: center; margin-bottom: 8px; }
  .cproc-body { grid-column: 2; grid-row: 3; }
  .cproc-conn { display: none; }
}

/* ==========================================================================
   PRICING PREVIEW
   ========================================================================== */

.ppreview {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ppreview-left {
  max-width: 640px;
  margin-bottom: 52px;
  padding-left: 40px;
}

.ppreview-left .section-label { display: block; margin-bottom: 16px; }

.ppreview-left h2 { margin-bottom: 20px; }

.ppreview-calc-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0 40px;
}

.ppreview-calc-bar .ppreview-calc-row,
.ppreview-calc-bar .ppreview-fee-card {
  flex: 1;
  min-width: 0;
  padding: 20px 18px;
}

.ppreview-calc-bar .ppreview-fee-amount {
  font-size: clamp(20px, 2.2vw, 32px);
}

.ppreview-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.ppreview-calc-link-row {
  padding: 0 40px 24px;
}

.ppreview-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 28px;
}

.ppreview-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-fg);
  transition: opacity 0.2s;
}

.ppreview-link:hover { opacity: 0.65; }

.ppreview-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ppreview-calc-row {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.ppreview-calc-row--source {
  background: #F1F5FE;
  border-top: 2px solid var(--accent);
}

.ppreview-calc-row--result {
  background: rgba(22,163,74,0.05);
  border-color: rgba(22,163,74,0.22);
}

.ppreview-result-amount { color: var(--accent-fg); }

.ppreview-calc-connector {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ppreview-calc-connector::before {
  content: none;
}

.ppreview-calc-connector span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.ppreview-calc-connector--equals span {
  color: var(--accent-fg);
}

.ppreview-fee-card {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #F1F5FE;
  transition: border-color 0.25s;
}

.ppreview-fee-card:hover { border-color: rgba(34,197,94,0.25); }

.ppreview-fee-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.ppreview-fee-amount {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.ppreview-fee-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.ppreview-calc-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.2s;
}

.ppreview-calc-link:hover { color: var(--accent-fg); }

@media (max-width: 860px) {
  .ppreview-left { margin-bottom: 36px; }
  .ppreview-calc-bar { flex-direction: column; }
  .ppreview-calc-bar .ppreview-calc-row,
  .ppreview-calc-bar .ppreview-fee-card { padding: 22px 24px; }
  .ppreview-calc-bar .ppreview-fee-amount { font-size: 36px; }
  .ppreview-calc-connector {
    width: auto;
    height: 36px;
    justify-content: flex-start;
    padding-left: 16px;
  }
  .ppreview-links-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==========================================================================
   SAFETY CARDS
   ========================================================================== */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.safety-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09), 0 0 0 1px rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.22);
}

.safety-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.safety-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.safety-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.safety-footer {
  margin-top: 36px;
  text-align: center;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.2s;
}

.text-link:hover { color: var(--accent-fg); }

@media (max-width: 860px) {
  .safety-grid { grid-template-columns: 1fr; gap: 14px; }
  .safety-card { padding: 28px 24px; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pillar-grid .reveal:nth-child(2),
.safety-grid .reveal:nth-child(2),
.cproc .reveal:nth-child(3) { transition-delay: 0.10s; }

.pillar-grid .reveal:nth-child(3),
.safety-grid .reveal:nth-child(3),
.cproc .reveal:nth-child(5) { transition-delay: 0.20s; }

.cproc .reveal:nth-child(7) { transition-delay: 0.30s; }

.example-cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.example-cards .reveal:nth-child(3) { transition-delay: 0.24s; }

.hub-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.hub-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.hub-grid .reveal:nth-child(4) { transition-delay: 0.36s; }
.nav-lang-btn--active { color: #fff; }

/* ==========================================================================
   PROSESSI — Premium 3-step visualization
   ========================================================================== */

.proc-section {
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(243,182,12,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.proc-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.proc-orb--gold {
  width: 520px; height: 520px;
  top: -160px; left: -80px;
  background: radial-gradient(circle, rgba(243,182,12,0.09) 0%, transparent 70%);
}
.proc-orb--green {
  width: 380px; height: 380px;
  bottom: -100px; right: -60px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
}

/* ── Header ────────────────────────────────────────────────────── */
.proc-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.proc-header .section-label { margin-bottom: 14px; }
.proc-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.38);
  margin: 8px 0 0;
}

/* ── Row layout ────────────────────────────────────────────────── */
.proc-layout {
  display: flex;
  align-items: flex-start;
}

/* ── Card ──────────────────────────────────────────────────────── */
.proc-card {
  flex: 1;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 20px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.proc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,182,12,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.proc-card:hover {
  border-color: rgba(243,182,12,0.22);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.38), 0 0 48px rgba(243,182,12,0.06);
}
.proc-card:hover::before { opacity: 1; }

/* Ghost background step number */
.proc-card-bg-num {
  position: absolute;
  top: -14px; right: 12px;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.022);
  pointer-events: none;
  user-select: none;
}

/* Step badge */
.proc-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #F3B60C;
  background: rgba(243,182,12,0.09);
  border: 1px solid rgba(243,182,12,0.18);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 20px;
}

/* Icon ring */
.proc-card-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: rgba(243,182,12,0.07);
  border: 1px solid rgba(243,182,12,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s, border-color 0.3s;
}
.proc-card-icon svg { transition: transform 0.3s ease; }
.proc-card:hover .proc-card-icon {
  background: rgba(243,182,12,0.13);
  border-color: rgba(243,182,12,0.28);
}
.proc-card:hover .proc-card-icon svg { transform: scale(1.08); }

/* Time pill */
.proc-card-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 2px 9px;
  margin-bottom: 12px;
}

.proc-card-title {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.proc-card-body {
  font-size: 15px;
  color: rgba(255,255,255,0.46);
  line-height: 1.65;
  margin-bottom: 20px;
}

.proc-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0; padding: 0;
}
.proc-card-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.34);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.proc-card-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #F3B60C;
  opacity: 0.55;
  flex-shrink: 0;
}

/* ── Arrow connector ──────────────────────────────────────────── */
.proc-arrow-wrap {
  flex-shrink: 0;
  width: 72px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-arrow-inner {
  position: relative;
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}
.proc-arrow-line {
  position: absolute;
  top: 50%; left: 0;
  width: calc(100% - 10px);
  height: 1px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    rgba(243,182,12,0.3) 0px,
    rgba(243,182,12,0.3) 4px,
    transparent 4px,
    transparent 8px
  );
}
.proc-arrow-head {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(243,182,12,0.42);
}
.proc-arrow-dot {
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F3B60C;
  transform: translateY(-50%);
  box-shadow: 0 0 7px rgba(243,182,12,0.7);
  animation: procDotFlow 2.6s ease-in-out infinite;
}
.proc-layout > .proc-arrow-wrap:nth-child(4) .proc-arrow-dot {
  animation-delay: 1.3s;
}
@keyframes procDotFlow {
  0%   { left: 0; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.85; }
  100% { left: calc(100% - 14px); opacity: 0; }
}

/* ── Footer ───────────────────────────────────────────────────── */
.proc-footer {
  text-align: center;
  margin-top: 56px;
}
.proc-footer-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.36);
  transition: color 0.2s;
}
.proc-footer-link:hover { color: #F3B60C; }

/* ── Staggered scroll reveal ──────────────────────────────────── */
.proc-layout .proc-card:nth-child(1) { transition-delay: 0s; }
.proc-layout .proc-card:nth-child(3) { transition-delay: 0.13s; }
.proc-layout .proc-card:nth-child(5) { transition-delay: 0.26s; }

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .proc-layout { flex-direction: column; }
  .proc-arrow-wrap {
    width: 100%;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
  .proc-arrow-inner {
    width: 1px;
    height: 100%;
    flex-direction: column;
  }
  .proc-arrow-line {
    top: 0; left: 0;
    width: 1px;
    height: 100%;
    transform: none;
    background: repeating-linear-gradient(
      180deg,
      rgba(243,182,12,0.3) 0px,
      rgba(243,182,12,0.3) 4px,
      transparent 4px,
      transparent 8px
    );
  }
  .proc-arrow-head {
    right: auto; top: auto;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid rgba(243,182,12,0.42);
    border-bottom: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .proc-arrow-dot {
    left: 50%; top: 0;
    transform: translateX(-50%);
    animation: procDotFlowV 2.6s ease-in-out infinite;
  }
  .proc-layout > .proc-arrow-wrap:nth-child(4) .proc-arrow-dot {
    animation-delay: 1.3s;
  }
}
@keyframes procDotFlowV {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.85; }
  100% { top: calc(100% - 14px); opacity: 0; }
}

/* ==========================================================================
   MITEN SE TOIMII — Step 01 layout, service cards, delivery options
   ========================================================================== */

/* Step intro badge */
.how-step-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.how-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step-icon--sm {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.how-step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.how-step-h2 { margin-bottom: 14px; }

.how-step-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.how-select-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

/* Process step number with icon */
.process-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding-top: 6px;
}

/* Service comparison grid */
.sc-grid {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 16px;
  margin-bottom: 56px;
}

.sc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sc-card--priority {
  border-color: rgba(243, 182, 12, 0.30);
}

.sc-card-top {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-subtle);
}

.sc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--text-3);
  flex-shrink: 0;
}

.sc-dot--filled { background: var(--text-3); }

.sc-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.sc-card-inner {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sc-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.sc-card-text {
  font-size: 14px;
  line-height: 1.70;
  color: var(--text-2);
  margin-bottom: 16px;
}

.sc-card-reason {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 20px;
}

.sc-card-reason-q {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.sc-card-reason-a {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.sc-card-attrs {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.sc-card-attr {
  flex: 1;
  padding: 11px 12px;
  background: var(--bg-subtle);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sc-card-attr + .sc-card-attr { border-left: 1px solid var(--border); }

.sc-card-attr-key {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
}

.sc-card-attr-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.sc-card-note {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
  margin-top: auto;
  padding-top: 2px;
}

/* Delivery options */
.dl-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.dl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
}

.dl-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s;
}

.dl-item:hover { border-color: var(--border-strong); }

.dl-item-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.dl-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dl-item-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.dl-item-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dl-item-row {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.dl-item-row::before {
  content: '→';
  color: var(--text-3);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.dl-item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sc-card-attrs { flex-direction: column; }
  .sc-card-attr + .sc-card-attr {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .dl-item { flex-direction: column; gap: 12px; }
  .dl-item-price { align-self: flex-end; }
}

/* ── TUTUSTU ENEMMÄN hub ──────────────────────────────────────────── */
.hub-section { background: var(--bg); padding-top: 48px; }
.hub-section .section-inner { padding: 0 40px; }


.hub-title {
  color: var(--text);
  margin-bottom: 40px;
}

.hub-grid {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 20px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f5f0e8;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.hub-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hub-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-fg);
}

.hub-card-heading {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

.hub-card-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  flex: 1;
  margin: 0;
}

.hub-card-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
}

.hub-card:hover .hub-card-link { opacity: 0.6; }

.hub-arrow-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.hub-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.hub-arrow:hover { border-color: var(--border-strong); color: var(--text); }

@media (max-width: 640px) {
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card { padding: 24px 22px; }
}

/* ==========================================================================
   KATEGORIAT — kapea strip heron alla
   ========================================================================== */

.cats-strip {
  position: relative;
  z-index: 2;
  padding: 0 24px 64px;
  margin-top: -36px;
}

.cats-strip-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #edf5ee;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.cats-strip-card.is-visible {
  opacity: 1;
  transform: none;
}

.cats-strip-card--wide .cats-strip-inner {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.cats-strip-card--wide .cats-strip-header {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
}

.cats-strip-card--wide .cats-strip-heading {
  margin-bottom: 0;
}

.cats-strip-card--wide .cats-strip-item {
  padding: 26px 28px;
}

.cats-strip-card--wide .cats-marquee-wrap {
  flex: none;
  min-width: 0;
  width: 100%;
}

.cats-strip-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* ── Left: heading + description ── */
.cats-strip-header {
  flex: 0 0 280px;
  padding-top: 4px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.cats-strip-card.is-visible .cats-strip-header {
  opacity: 1;
  transform: none;
}

.cats-strip-heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.cats-strip-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}

/* ── Right: marquee ── */
@keyframes cats-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cats-marquee-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0px, black 100px, black calc(100% - 100px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, black 100px, black calc(100% - 100px), transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cats-strip-card.is-visible .cats-marquee-wrap {
  opacity: 1;
  transition-delay: 1.0s;
}

.cats-marquee-track {
  display: flex;
  width: max-content;
  animation: cats-marquee 50s linear infinite;
  animation-play-state: paused;
}

.cats-marquee-track.is-running {
  animation-play-state: running;
}


.cats-strip-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 44px 28px;
  background: #edf5ee;
  flex-shrink: 0;
  min-width: 216px;
  transition: background 0.2s ease;
}

.ttj-marquee-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 32px 28px;
  flex-shrink: 0;
  width: 220px;
}

.ttj-marquee-img {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ttj-marquee-img img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ttj-marquee-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.ttj-marquee-price span {
  font-size: 18px;
  font-weight: 700;
}

.ttj-marquee-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.ttj-marquee-meta {
  font-size: 12px;
  color: var(--text-3);
}

.cats-strip-item:hover {
  background: var(--bg-subtle);
}

.cats-strip-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cats-strip-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  stroke: var(--gold);
  fill: none;
}

.cats-strip-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.cats-strip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cats-strip-desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-2);
  max-width: 150px;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cats-strip-inner { flex-direction: column; gap: 32px; padding: 48px 24px; }
  .cats-strip-header { flex: none; }
}

@media (max-width: 560px) {
  .cats-marquee-track { animation-duration: 20s; }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS — perusteellinen mobiiliauditointi
   ========================================================================== */

/* ── Hero: pienennä tekstit ja napit pienimmillä näytöillä ─────────── */
@media (max-width: 480px) {
  .hero-sub { font-size: 17px; }
  .hero-prop { font-size: 15px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 15px; }
  .page-hero-sub { font-size: 16px; }
}

/* ── Sell-section: palauta sivupadding mobiilissa ───────────────────── */
/* .sell-section { padding: 72px 0 96px } ohittaa .section:n mobiilimediakyselyn,
   koska se on julistettu myöhemmin CSS:ssä. Palautetaan side padding. */
@media (max-width: 860px) {
  .sell-section { padding: 72px 20px 80px; }
}
@media (max-width: 480px) {
  .sell-section { padding: 60px 16px 64px; }
}

/* ── STL light: kutista 3 saraketta → 2 saraketta pienillä näytöillä ─ */
@media (max-width: 700px) {
  .stl-section--light .stl-step { grid-template-columns: 28px 1fr; gap: 0 20px; }
  .stl-step-detail { display: none; }
}

/* ── Fee two-column grid (hinnoittelu) ──────────────────────────────── */
.fee-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 28px;
  align-items: start;
  padding: 48px 40px;
}
@media (max-width: 768px) {
  .fee-two-col-grid { grid-template-columns: 1fr; column-gap: 0; padding: 32px 24px; }
}
@media (max-width: 480px) {
  .fee-two-col-grid { padding: 24px 16px; }
}

/* ── LK section inner (hinnoittelu laskuri/kaava) ───────────────────── */
.lk-section-inner { padding: 48px 40px; }
@media (max-width: 768px) {
  .lk-section-inner { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .lk-section-inner { padding: 28px 16px; }
}

/* ── Esimerkkilaskelmat section side padding ────────────────────────── */
@media (max-width: 768px) {
  .esimerkit-inner { padding-left: 20px !important; padding-right: 20px !important; }
}
@media (max-width: 480px) {
  .esimerkit-inner { padding-left: 16px !important; padding-right: 16px !important; }
}

/* ── Hub section inner padding ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hub-section .section-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .hub-section .section-inner { padding: 0 16px; }
}
