/* ============================================================
   PIENENPIENI TILITOIMISTO OY — PÄÄTYYLITIEDOSTO v2.0
   Fontit (@font-face) ovat erillisessä tiedostossa: assets/css/fonts.css
   (Nunito, self-hostattu /assets/fonts/-kansiosta).
   ============================================================ */


/* ============================================================
   DESIGN TOKENS — CSS-muuttujat
   ============================================================ */
:root {

  /* Värit — vihreä pääilme */
  --pp-forest:       #233127;
  --pp-forest-dark:  #101c14;
  --pp-forest-mid:   #2e4234;
  --pp-forest-light: #3a5542;

  /* Värit — kupari/kulta aksentti */
  --pp-copper:       #b89b6d;
  --pp-copper-soft:  rgba(184, 155, 109, 0.12);
  --pp-copper-line:  rgba(184, 155, 109, 0.13);

  /* Värit — ruskea toiminnallinen teema */
  --pp-brown:        #5c3d2e;
  --pp-brown-dark:   #3b2318;
  --pp-brown-light:  #7a5240;
  --pp-brown-tint:   rgba(92, 61, 46, 0.07);
  --pp-brown-line:   rgba(92, 61, 46, 0.18);
  --pp-brown-warm:   #f5ede6;

  /* Värit — taustat */
  --pp-bg:           #f6f2ea;   /* vaalea luonnonvalkoinen — valkoisen ja aiemman #efe8db väliltä */
  --pp-bg-soft:      #f7f2e8;
  --pp-card:         #ece4d6;   /* korttien väri = split-kuvan takana oleva paneelin sävy */
  --pp-white:        #ffffff;

  /* Värit — teksti */
  --pp-text:         #1f241f;
  --pp-muted:        #5f665c;
  --pp-muted-light:  #8a9186;

  /* Pyöristykset */
  --pp-radius-sm:    14px;
  --pp-radius-md:    22px;
  --pp-radius-lg:    34px;

  /* Varjot */
  --pp-shadow-soft:  0 24px 70px rgba(30, 33, 28, 0.08);
  --pp-shadow-card:  0 8px 32px rgba(30, 33, 28, 0.06);

  /* Layout */
  --pp-container:    1180px;
  --pp-text-width:   68ch;
  --pp-section-y:    clamp(4rem, 7vw, 7.5rem);

  /* Hero-nappien yhtenäinen leveys (desktop); mobiilissa katto on 75vw */
  --hero-elem-w:     18rem;

  /* Typografia */
  --pp-font:         'Nunito', system-ui, -apple-system, sans-serif;

  /* CTA-napit — toiminnallinen väritys */
  --cta-primary:         #2e7d4a;  /* raikas metsänvihreä — yhteydenotto / lomakkeelle ohjaus */
  --cta-primary-hover:   #379159;
  --cta-secondary:       #6b4b33;  /* maanruskea — lomakkeen lähetys, laskurit, pehmeät CTA:t */
  --cta-secondary-hover: #835d42;
  --cta-call:            #d3b683;  /* hiekka — puhelunappi */
  --cta-call-hover:      #e0c79c;
}


/* ============================================================
   RESET & PERUSTA
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: var(--pp-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--pp-font);
  /* Leipätekstin peruskoko 17px (Nuniton luettavuus) — otsikoilla omat rem-koot, eivät kasva. */
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--pp-text);
  background: var(--pp-bg);
  position: relative;
  overflow-x: hidden;
  /* Ylipitkä sana ei venytä sivua millään näytöllä: overflow-wrap katkaisee sen
     tarvittaessa (ilman tavuviivaa, vasta kun sana ei mitenkään mahdu). Varsinainen
     tavutus (hyphens: auto) kytketään päälle VAIN kapeilla näytöillä alla — leveällä
     desktop-palstalla ei tavuteta otsikoita eikä sanoja turhaan. Periytyy kaikkeen. */
  overflow-wrap: break-word;
}

/* Automaattinen tavutus vain kapeilla näytöillä (puhelin/tabletti), missä pitkä sana
   muuten venyttäisi sivua sivusuunnassa. hyphens: auto käyttää suomen tavutusta
   (html lang="fi"). Desktopilla tätä ei sovelleta — leveä palsta riittää ilman tavutusta. */
@media (max-width: 768px) {
  body {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}


/* ============================================================
   SIVUN POHJA
   Tasainen tausta, ei kuviointia.
   ============================================================ */

/* Sisältö sivun taustan päällä */
body.pp-editorial-site main {
  position: relative;
  z-index: 1;
  background: transparent;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--pp-forest);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pp-font);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--pp-forest-dark);
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p {
  margin: 0 0 1.1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.5rem;
}

button {
  font-family: var(--pp-font);
}


/* ============================================================
   TAUSTAVERKKO
   ============================================================ */

/* Tausta on tasainen — kuviointi poistettu. */


/* ============================================================
   LAYOUT — CONTAINER & SECTION
   ============================================================ */

.container {
  width: min(calc(100% - 2rem), var(--pp-container));
  margin-inline: auto;
}

.section {
  padding-block: var(--pp-section-y);
  background: transparent;
  position: relative;
  z-index: 1;
}

.section--tight {
  padding-block: clamp(2.5rem, 4vw, 4rem);
}

.section--flush-top {
  padding-top: 0;
}

main {
  position: relative;
  z-index: 1;
}

.text-measure {
  max-width: var(--pp-text-width);
}


/* ============================================================
   TYPOGRAFIA — OTSIKKOJÄRJESTELMÄ
   ============================================================ */

.section__eyebrow,
.pp-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pp-copper);
}

/* Tummanruskea eyebrow — käytössä toistaiseksi vain etusivun sisältöalueilla */
.pp-eyebrow--dark {
  color: var(--pp-brown-dark);
}

.section__title {
  margin: 0;
  max-width: 900px;
  font-family: var(--pp-font);
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--pp-forest-dark);
}

.section__lead {
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
  max-width: 760px;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.65;
  color: var(--pp-muted);
}

.section__body {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  max-width: var(--pp-text-width);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--pp-text);
}

.section__body p {
  margin: 0 0 1.15rem;
}

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

.section__header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}


/* ============================================================
   HEADER & NAVIGAATIO
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 28, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 155, 109, 0.14);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

/* Tekstilogo — kaksirivinen */
.site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-brand__text {
  display: inline-block;
  width: min-content;
  font-family: var(--pp-font);
  color: var(--pp-brown-warm);
  line-height: 1.02;
}

/* Ylärivi — määrittää logon leveyden, tumma beige */
.site-brand__name {
  display: block;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--pp-copper);
}

/* Alarivi — tasaisesti harvennettu, keskitetty ylärivin alle */
.site-brand__sub {
  display: block;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Navigaatio desktop */
.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 250, 240, 0.85);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__item:hover > .site-nav__link,
.site-nav__item.is-hover > .site-nav__link {
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
}

/* Mega-valikon kohteissa nuoli tulee tekstin viereen */
.site-nav__item[data-menu] > .site-nav__link {
  padding-right: 0.15rem;
}

/* Alavalikon avausnappi (nuoli) */
.site-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.5rem;
  margin: 0;
  background: none;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.85);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__toggle:hover {
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
}

/* Dropdown-nuoli */
.site-nav__arrow {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.site-nav__item.is-open .site-nav__arrow {
  transform: rotate(180deg);
}

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #101c14;
  border: 1px solid rgba(184, 155, 109, 0.18);
  border-radius: var(--pp-radius-md);
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  min-width: 560px;
  z-index: 200;
  gap: 1.5rem;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
}

/* Näkymätön "silta" navin ja valikon välissä — kursori ei tipu rakoon */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

/* Alavalikko avautuu klikkauksella (.is-open) — sama työpöydällä ja mobiilissa */
.site-nav__item.is-open .mega-menu {
  display: grid;
}

/* Mega menu sisältö */
.mega-menu__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-copper);
  margin: 0 0 0.6rem;
}

.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mega-menu__list a {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 250, 240, 0.78);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}

.mega-menu__list a:hover {
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
}

/* Header CTA */
.site-header__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.75rem;
}

/* Header-CTA hyödyntää .cta-järjestelmää, hieman tiiviimpänä */
.site-header__cta .cta {
  min-height: 2.5rem;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-toggle:hover {
  background: rgba(255, 250, 240, 0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fffaf0;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBIILINAVIGAATIO
   ============================================================ */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(14, 24, 17, 0.98);
    border-bottom: 1px solid rgba(184, 155, 109, 0.14);
    display: none;
    overflow-y: auto;
    max-height: calc(100vh - 68px);
    padding: 1rem 0 2rem;
  }

  .site-nav.is-active {
    display: block;
  }

  /* Linkki + nuolinappi samalle riville (kuten desktopilla); mega-menu kiertää alle */
  .site-nav__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1rem;
  }

  .site-nav__link {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  .site-nav__toggle {
    flex: 0 0 auto;
    padding: 0.85rem;
  }

  /* Mobiilin mega-menu accordion */
  .mega-menu {
    display: none;
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: rgba(255, 250, 240, 0.05);
    border: none;
    border-radius: var(--pp-radius-sm);
    padding: 0.75rem 0.75rem 0.75rem 1.25rem;
    box-shadow: none;
    margin: 0.25rem 0 0.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Mobiilissa valikko aukeaa VAIN .is-open-luokalla (JS) — ei hoverilla
     eikä fokuksella. Muuten esim. työpöytäselaimen mobiilinäkymässä
     :hover/:focus-within pitäisi valikon auki eikä sulkeminen toimisi. */
  .site-nav__item:hover .mega-menu,
  .site-nav__item.is-hover .mega-menu,
  .site-nav__item:focus-within .mega-menu {
    display: none;
  }

  .site-nav__item.is-open .mega-menu {
    display: grid;
  }

  .site-nav__arrow {
    transition: transform 0.2s ease;
  }

  .site-nav__item.is-open .site-nav__arrow {
    transform: rotate(180deg);
  }

  .mega-menu__col h5 {
    margin-top: 0.5rem;
  }

  .mega-menu__list a {
    font-size: 0.92rem;
    color: rgba(255, 250, 240, 0.7);
  }

  .site-header__cta .cta {
    display: none;
  }
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
}

/* Tumma ruskea tausta — etusivu (--dark) ja sisäsivut (--compact) */
.hero--dark,
.hero--compact {
  color: #fff7ea;
  background:
    radial-gradient(circle at 75% 25%, rgba(218, 185, 124, 0.22), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #17120d 0%, #2a2118 48%, #0f0c09 100%);
}

.hero--dark {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

/* Heron tausta on tasainen — kuviointi poistettu. */

/* Pehmeä hehkupallo */
.hero--dark::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(218, 185, 124, 0.12);
  filter: blur(20px);
  pointer-events: none;
}

/* Kaksi erillistä saraketta: teksti ja logo omissa rajoissaan.
   Logon yläraja on mitoitettu niin, että otsikon pisin sana mahtuu
   tekstisarakkeeseen — muuten otsikko valuisi logon päälle. */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: 3rem;
  align-items: center;
  text-align: left;
}

/* Kumpikin sarake pitää sisältönsä omissa rajoissaan. */
.hero__content,
.hero__inner > .hero__logo--glow {
  min-width: 0;
}

.hero__content {
  max-width: 920px;
}

/* Hero-eyebrow — pelkkä teksti h1:n yllä (ei pilleriä) */
.hero__eyebrow {
  display: inline-flex;
  margin: 0 0 1.1rem;
  color: #f3dfb7;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Yläraja 4.6rem: pisin sana ("henkilökohtainen", 16 merkkiä) mahtuu
   tekstisarakkeeseen myös leveällä näytöllä, jossa container on 1180px.
   Ilman kattoa otsikko valuu logon päälle. */
.hero h1,
.hero__title {
  max-width: 920px;
  margin: 0 0 1.4rem;
  font-family: var(--pp-font);
  font-size: clamp(2.5rem, 5.6vw, 3.7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0;
  color: #fff7ea;
  overflow-wrap: break-word;
}

.hero__lead,
.hero__lead_big {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  color: #f4eadb;
}

.hero__support {
  max-width: 680px;
  margin: 1.2rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

/* Tarkistuslista — pillerit (etusivu: hero__proof, sisäsivut: hero__checks) */
.hero__proof,
.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

/* Alasivujen hero-tarkistukset: pelkkä teksti, ei pillereitä eikä reunoja. */
.hero__proof span,
.hero__check {
  padding: 0;
  border: none;
  background: none;
  color: #f0e6d2;
  font-size: .95rem;
  line-height: 1.4;
  text-align: left;
}

.hero__check::before {
  content: "✓ ";
  color: #f3dfb7;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

/* Hero-napit — yhtenäinen leveys; mobiilissa enintään 75 % näytön leveydestä */
.hero__actions .cta,
.hero__actions .button,
.hero__actions .pp-btn {
  box-sizing: border-box;
  width: var(--hero-elem-w);
  max-width: 75vw;
}

/* Logo — pyöreä lasikortti (vain etusivu) */
.hero__logo {
  width: auto;
  margin: 0;
}

.hero__logo--glow {
  justify-self: center;
  position: relative;
  overflow: hidden;
  width: clamp(300px, 34vw, 500px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.45),
    0 0 120px rgba(218,185,124,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero__logo--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 42%);
  pointer-events: none;
}

.hero__logo--glow::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
}

.hero__logo--glow img {
  position: relative;
  z-index: 1;
  width: 119%; /* pienennetty: 175% → 140% → 119% — pyöreä kehys pysyy ennallaan */
  max-width: none;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
  transform: translateY(2px);
}

@keyframes heroFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ---- Kevyt, kompakti hero — muut kuin etusivu ---- */
.hero--compact {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}

.hero--compact .container {
  position: relative;
  z-index: 1;
}

.hero--compact h1,
.hero--compact .hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.hero--compact .hero__lead,
.hero--compact .hero__lead_big {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
}

.hero--compact .hero__actions {
  margin-top: 1.75rem;
}

/* ---- Hero — mobiili ---- */
@media (max-width: 900px) {
  .hero--dark {
    min-height: auto;
    padding: 1.5rem 0 4rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__eyebrow {
    margin-bottom: .75rem;
  }

  .hero h1,
  .hero__title {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
    line-height: .95;
    letter-spacing: -0.055em;
  }

  .hero--compact h1,
  .hero--compact .hero__title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero__lead,
  .hero__lead_big {
    font-size: 1.35rem;
  }

  .hero__support {
    font-size: 1rem;
  }

  /* Mobiilissa logo ylös, teksti alas (DOM-järjestys on teksti ensin). */
  .hero__logo--glow {
    width: min(560px, 92vw);
    margin: 0 auto;
    order: -1;
  }

  .hero__content {
    order: 0;
  }

  /* Napit ja pillerit keskitetään pysty-/mobiilinäkymässä — vaakanäkymä (>900px) ennallaan.
     Leveys (var(--hero-elem-w) + max-width:100%) kutistuu kapealla näytöllä automaattisesti. */
  .hero__actions {
    align-items: center;
    justify-content: center;
  }

  .hero__proof,
  .hero__checks {
    justify-content: center;
  }
}


/* ============================================================
   NAPIT — YHTENÄINEN JÄRJESTELMÄ
   ============================================================ */

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: var(--pp-font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.pp-btn:hover {
  transform: translateY(-2px);
}

/* Päänappi — valkoinen (käytetään tummalla taustalla) */
.pp-btn--primary {
  background: #fffaf0;
  color: var(--pp-forest-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.pp-btn--primary:hover {
  background: #fff;
  color: var(--pp-forest-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Toissijainen — läpinäkyvä reunuksella (tummalla taustalla) */
.pp-btn--ghost-light {
  background: transparent;
  color: rgba(255, 250, 240, 0.9);
  border: 1.5px solid rgba(255, 250, 240, 0.3);
}

.pp-btn--ghost-light:hover {
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.5);
}

/* Vihreä — vaalealla taustalla */
.pp-btn--forest {
  background: var(--pp-forest);
  color: #fffaf0;
  box-shadow: var(--pp-shadow-card);
}

.pp-btn--forest:hover {
  background: var(--pp-forest-dark);
  color: #fffaf0;
  box-shadow: var(--pp-shadow-soft);
}

/* Kupari-aksentti */
.pp-btn--copper {
  background: var(--pp-copper);
  color: var(--pp-forest-dark);
  font-weight: 800;
}

.pp-btn--copper:hover {
  background: #cdb07f;
  color: var(--pp-forest-dark);
}

/* Ruskea — toiminnalliset osiot */
.pp-btn--brown {
  background: var(--pp-brown);
  color: #fff8f4;
  box-shadow: 0 4px 16px rgba(92, 61, 46, 0.2);
}

.pp-btn--brown:hover {
  background: var(--pp-brown-dark);
  color: #fff8f4;
  box-shadow: 0 8px 24px rgba(92, 61, 46, 0.3);
}

/* Marble-lasi — vaalea tausta */
.pp-btn--marble {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-family: var(--pp-font);
  font-size: 0.95rem;
  position: relative;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  color: var(--pp-forest-dark);
  background:
    linear-gradient(118deg, rgba(255,255,255,0.82) 0%, transparent 48%, rgba(255,255,255,0.42) 100%),
    linear-gradient(210deg, rgba(184,155,109,0.12) 0%, transparent 55%),
    linear-gradient(340deg, rgba(184,155,109,0.08) 0%, transparent 45%),
    #fffcf8;
  border: 1px solid rgba(184, 155, 109, 0.38);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(184, 155, 109, 0.18),
    0 4px 10px rgba(92, 61, 46, 0.18),
    0 8px 24px rgba(92, 61, 46, 0.10),
    0 1px 3px rgba(0, 0, 0, 0.10);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.pp-btn--marble:hover {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.95) 0%, transparent 48%, rgba(255,255,255,0.60) 100%),
    linear-gradient(210deg, rgba(184,155,109,0.15) 0%, transparent 55%),
    linear-gradient(340deg, rgba(184,155,109,0.10) 0%, transparent 45%),
    #fffcf8;
  border-color: rgba(184, 155, 109, 0.55);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(184, 155, 109, 0.22),
    0 6px 16px rgba(92, 61, 46, 0.22),
    0 12px 32px rgba(92, 61, 46, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

/* Napin ympäriltä verkkohalo poistettu — nappi itse ennallaan. */

/* Ghost vihreällä taustalla */
.pp-btn--ghost-dark {
  background: transparent;
  color: var(--pp-forest);
  border: 1.5px solid rgba(35, 49, 39, 0.25);
}

.pp-btn--ghost-dark:hover {
  background: rgba(35, 49, 39, 0.06);
  border-color: var(--pp-forest);
}

/* .button — hero-napit ja yhteensopivuus vanhojen luokkien kanssa */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary, .btn-primary {
  background: #012608;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(1, 38, 8, 0.24);
}

.button--primary:hover, .btn-primary:hover {
  background: #03400d;
  color: #ffffff;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.56);
  color: #012608;
  border-color: rgba(1, 38, 8, 0.18);
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.75);
}


/* ============================================================
   CTA-NAPIT — yhtenäinen, toiminnallinen järjestelmä
   .cta--primary   = yhteydenotto / ohjaus lomakkeelle (vihreä)
   .cta--secondary = lomakkeen lähetys, laskurit, pehmeät CTA:t (ruskea)
   .cta--call      = puhelunappi (hiekka + puhelinikoni)
   ============================================================ */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 999px;
  font-family: var(--pp-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta:focus-visible {
  outline: 2px solid #fffaf0;
  outline-offset: 2px;
}

/* Pää-CTA — yhteydenotto / lomakkeelle ohjaus */
.cta--primary {
  background: var(--cta-primary);
  color: #fffaf0;
  box-shadow: 0 6px 20px rgba(46, 125, 74, 0.38);
}

.cta--primary:hover {
  background: var(--cta-primary-hover);
  color: #fffaf0;
}

/* Toiminnallinen CTA — lomakkeen lähetys, laskurit, pehmeät CTA:t */
.cta--secondary {
  background: var(--cta-secondary);
  color: #fff8f4;
  box-shadow: 0 6px 18px rgba(107, 75, 51, 0.30);
}

.cta--secondary:hover {
  background: var(--cta-secondary-hover);
  color: #fff8f4;
}

/* Puhelunappi — hiekka + puhelinikoni */
.cta--call {
  background: var(--cta-call);
  color: #2a2118;
  box-shadow: 0 6px 18px rgba(211, 182, 131, 0.38);
}

.cta--call:hover {
  background: var(--cta-call-hover);
  color: #2a2118;
}

.cta--call::before {
  content: "";
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Neutraalit puhelin-/sähköposti-ikonit tekstilinkkeihin (korvaa emojit) */
.ico-phone,
.ico-mail {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
  margin-right: 0.35em;
  background-color: currentColor;
}

.ico-phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ico-mail {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / contain no-repeat;
}


/* ============================================================
   FEATURE GRID — PALVELUKORTIT (editorial)
   Enintään 3 korttia rinnakkain desktop-näkymässä.
   ============================================================ */

.pp-feature {
  background: transparent;
}

.pp-feature__header {
  max-width: 860px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.pp-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Vähemmän kortteja → tasaisempi asettelu, aina enintään 3 rinnan */
.pp-feature__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pp-feature__grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pp-area-image {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
  border-radius: var(--pp-radius-md);
  box-shadow: var(--pp-shadow-soft);
}

.pp-area-image img {
  display: block;
  width: 100%;
  aspect-ratio: 18 / 6;
  object-fit: cover;
}

.pp-feature__card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  /* PELKISTYS (saatetaan perua): ei kehystä, tausta = sivun tausta */
  border: none;
  border-radius: var(--pp-radius-md);
  background: var(--pp-bg);
  overflow: hidden;
  transition: transform 0.22s ease;
}

.pp-feature__card:hover {
  transform: translateY(-3px);
}

/* Korttien gradient-overlay poistettu — täysi sulautus taustaan. */

.pp-feature__image-wrap {
  position: relative;
  margin: 0 0 1.25rem;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: calc(var(--pp-radius-md) - 6px);
  background: rgba(184, 155, 109, 0.12);
}

.pp-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Numeropillerit poistettu etusivun palvelukorteista (pelkistys). */
/* Numerorondelli — alasivujen 01/02/03 -badge */
.pp-feature__number {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: rgba(184, 155, 109, 0.16);
  color: var(--pp-forest);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.pp-feature__title {
  position: relative;
  margin: 0;
  font-size: clamp(1.18rem, 1.4vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--pp-forest-dark);
}

.pp-feature__text {
  position: relative;
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--pp-muted);
}

.pp-feature__link {
  position: relative;
  display: inline-flex;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--pp-forest);
  text-decoration: none;
}

.pp-feature__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* Paikkakuntakortin valokuva — kortin oikeassa reunassa, feidaa vasemmalle */
.pp-feature__card--photo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 44%;
}

.pp-feature__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.pp-feature__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 62%);
          mask-image: linear-gradient(to right, transparent 0%, #000 62%);
}

@media (max-width: 980px) {
  .pp-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pp-feature__grid,
  .pp-feature__grid--2,
  .pp-feature__grid--4 {
    grid-template-columns: 1fr;
  }

  .pp-feature__card {
    padding: 1.4rem;
  }
}


/* ============================================================
   SPLIT LAYOUT — TEKSTI + KUVA (editorial)
   ============================================================ */

.pp-split {
  background: transparent;
}

.pp-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* Kun kuvakorttia ei ole (esim. toimialasivu ilman kuvaa), teksti venyy koko
   leveydelle eikä jätä tyhjää saraketta oikealle. Rivipituus pidetään luettavana. */
.pp-split__inner > .pp-split__content:only-child {
  grid-column: 1 / -1;
  max-width: 860px;
}

.pp-split--image-left .pp-split__media {
  order: -1;
}

.pp-split__content {
  max-width: 720px;
}

.pp-split__body {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  max-width: var(--pp-text-width);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--pp-text);
}

.pp-split__body p {
  margin: 0 0 1.15rem;
}

.pp-split__body p:last-child {
  margin-bottom: 0;
}

.pp-split__media {
  position: relative;
}

.pp-split__media::before {
  content: "";
  position: absolute;
  /* Kehystää kuvan: alareunasta enemmän, sivuilta ja yltä hieman vähemmän */
  inset: -0.8rem -0.8rem -1.2rem -0.8rem;
  border-radius: var(--pp-radius-lg);
  background:
    linear-gradient(135deg,
      rgba(184, 155, 109, 0.16),
      rgba(35, 49, 39, 0.08)
    );
  z-index: -1;
}

.pp-split__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow-soft);
}

.pp-split__image--wide {
  aspect-ratio: 5 / 4;
}

.pp-split__caption {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--pp-muted);
}

@media (max-width: 860px) {
  .pp-split__inner {
    grid-template-columns: 1fr;
  }

  .pp-split--image-left .pp-split__media {
    order: 0;
  }

  .pp-split__content {
    max-width: none;
  }

  .pp-split__image {
    aspect-ratio: 16 / 11;
  }

  .pp-split__media::before {
    inset: -0.7rem -0.7rem -1rem -0.7rem;
  }

  /* Etusivun split-kuva loitonnetaan mobiilissa 25 %
     — kuva, kehys ja kuvateksti kutistuvat yhdessä, keskitettyinä */
  body.page-home .pp-split__media {
    width: 75%;
    margin-inline: auto;
  }

  /* Itse kuvaa loitonnetaan: pystymäisempi 4/5-rajaus (sama kuin työpöydällä)
     → object-fit: cover näyttää kuvasta n. 83 %, selvästi vähemmän rajattuna */
  body.page-home .pp-split__image {
    aspect-ratio: 4 / 5;
  }
}


/* ============================================================
   CTA-JÄRJESTELMÄ
   ============================================================ */

.pp-cta {
  background: transparent;
}

.pp-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--pp-radius-lg);
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at top right, rgba(184, 155, 109, 0.26), transparent 38%),
    linear-gradient(135deg, #142018, #26352a);
  color: #fffaf0;
  box-shadow: 0 28px 80px rgba(16, 28, 20, 0.18);
}

/* CTA-paneelin tausta on tasainen — kuviointi poistettu. */

.pp-cta__content {
  position: relative;
  max-width: 820px;
}

.pp-cta__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #dcc89f;
}

.pp-cta__title {
  margin: 0;
  font-family: var(--pp-font);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #fffaf0;
}

.pp-cta__text {
  margin: 1.25rem 0 0;
  max-width: 680px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 250, 240, 0.82);
}

.pp-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.pp-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.pp-cta__button:hover {
  transform: translateY(-2px);
}

/* Yhteydenottonappi — sama vihreä kuin .cta--primary kaikkialla sivustolla */
.pp-cta__button--primary {
  background: var(--cta-primary);
  color: #fffaf0;
  box-shadow: 0 6px 20px rgba(46, 125, 74, 0.38);
}

.pp-cta__button--primary:hover {
  background: var(--cta-primary-hover);
  color: #fffaf0;
}

.pp-cta__button--secondary {
  border: 1px solid rgba(255, 250, 240, 0.34);
  color: #fffaf0;
}

.pp-cta__button--secondary:hover {
  background: rgba(255, 250, 240, 0.1);
}

/* Kevyt CTA — vaakarivimäinen */
.pp-cta-strip__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(184, 155, 109, 0.2);
  border-radius: var(--pp-radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(30, 33, 28, 0.05);
}

.pp-cta-strip__title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--pp-forest-dark);
}

.pp-cta-strip__text {
  margin: 0.4rem 0 0;
  max-width: 620px;
  color: var(--pp-muted);
  line-height: 1.65;
}

.pp-cta-strip__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--pp-forest);
  color: #fffaf0;
  font-weight: 800;
  text-decoration: none;
}

/* Lopun pehmeä CTA */
.pp-cta-soft__panel {
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--pp-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.52));
  border: 1px solid rgba(184, 155, 109, 0.18);
  box-shadow: 0 24px 70px rgba(30, 33, 28, 0.06);
}

.pp-cta-soft__title {
  margin: 0;
  font-family: var(--pp-font);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--pp-forest-dark);
}

.pp-cta-soft__text {
  margin: 1.1rem auto 0;
  max-width: 660px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--pp-muted);
}

.pp-cta-soft__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.pp-cta-soft__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: var(--pp-forest);
  color: #fffaf0;
  font-weight: 800;
  text-decoration: none;
}

.pp-cta-soft__button--ghost {
  background: transparent;
  color: var(--pp-forest);
  border: 1px solid rgba(35, 49, 39, 0.22);
}

@media (max-width: 760px) {
  .pp-cta-strip__panel {
    display: block;
  }

  .pp-cta-strip__button {
    margin-top: 1.2rem;
  }

  .pp-cta__button,
  .pp-cta-soft__button,
  .pp-cta-strip__button {
    width: 100%;
  }
}


/* ============================================================
   HINTALASKURI
   ============================================================ */

.calculator-section {
  padding-block: var(--pp-section-y);
  background: transparent;
  position: relative;
  z-index: 1;
}

.calculator-card {
  background: transparent;
  padding: 0;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}

.calculator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

/* Progressbar */
.calculator-progress {
  height: 3px;
  background: rgba(184, 155, 109, 0.2);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.calculator-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pp-copper-soft), var(--pp-copper));
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Tekstivärit laskurissa (vaalea pohja) */
.input-block label          { color: var(--pp-brown); }
.summary-box strong         { color: var(--pp-brown-dark); }

.calculator-top {
  margin-bottom: 2rem;
}

.calculator-step-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-copper);
  margin: 0 0 0.5rem;
}

.calculator-top h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--pp-forest-dark);
  margin: 0 0 0.6rem;
  letter-spacing: -0.025em;
}

.calculator-lead {
  font-size: 0.97rem;
  color: var(--pp-muted);
  line-height: 1.7;
  margin: 0 0 0.6rem;
}

.calculator-top a {
  font-size: 0.88rem;
  color: var(--pp-copper);
  font-weight: 600;
}

/* Vaihe */
.step {
  display: none;
}

.step.active {
  display: block;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pp-forest-dark);
  margin: 0 0 0.35rem;
}

.step-help {
  font-size: 0.88rem;
  color: var(--pp-muted);
  margin: 0 0 1.25rem;
}

/* Vaihtoehtopainikkeet */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.option {
  width: 100%;
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-family: var(--pp-font);
  font-size: 0.95rem;
  font-weight: 600;
  background:
    linear-gradient(118deg, rgba(255,255,255,0.18) 0%, transparent 45%, rgba(255,255,255,0.10) 100%),
    linear-gradient(210deg, rgba(255,255,255,0.12) 0%, transparent 55%),
    #fffaf0;
  border: 1px solid rgba(184, 155, 109, 0.45);
  border-radius: var(--pp-radius-sm);
  color: var(--pp-forest-dark);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.12s;
}

.option:hover {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.28) 0%, transparent 45%, rgba(255,255,255,0.16) 100%),
    linear-gradient(210deg, rgba(255,255,255,0.18) 0%, transparent 55%),
    #fffaf0;
  border-color: rgba(184, 155, 109, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15),
    0 4px 14px rgba(0, 0, 0, 0.22);
  transform: translateX(3px);
}

.option.is-selected {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.32) 0%, transparent 45%, rgba(255,255,255,0.18) 100%),
    linear-gradient(210deg, rgba(255,255,255,0.2) 0%, transparent 55%),
    #fffaf0;
  border: 2px solid var(--pp-forest);
  color: var(--pp-forest-dark);
  font-weight: 700;
  transform: translateX(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px rgba(255, 250, 240, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

.option.is-selected::after {
  content: " ✓";
  color: var(--pp-forest-dark);
  opacity: 0.6;
}

/* Kentät laskurissa */
.input-block {
  margin: 0 0 1.1rem;
}

.input-block label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pp-brown);
  margin-bottom: 0.4rem;
}

.input-block input,
.input-block select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--pp-brown-line);
  border-radius: var(--pp-radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--pp-text);
  font-family: var(--pp-font);
  font-size: 0.97rem;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.input-block input:focus,
.input-block select:focus {
  outline: none;
  border-color: var(--pp-brown-light);
  box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.1);
}

.input-block.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Yhteenveto */
.summary-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--pp-brown-line);
  border-radius: var(--pp-radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--pp-muted);
  margin-bottom: 1.25rem;
}

.summary-box strong {
  color: var(--pp-brown-dark);
}

/* Laskurin napit */
.calculator-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* Kaikki laskurin napit samalla kultaisella lasityylillä (näkyvät tummalla kortilla). */
.calculator-actions #prevBtn,
.calculator-actions #nextBtn,
.calculator-actions #submitBtn {
  background: transparent;
  color: var(--pp-forest-dark);
  border: 1.5px solid rgba(92, 61, 46, 0.3);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-family: var(--pp-font);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

/* Seuraava/Lähetä työntyvät oikealle, Edellinen jää vasemmalle. */
.calculator-actions #nextBtn,
.calculator-actions #submitBtn {
  margin-left: auto;
  background: var(--pp-forest);
  color: #fffaf0;
  border-color: var(--pp-forest);
}

.calculator-actions #prevBtn:hover:not(:disabled),
.calculator-actions #nextBtn:hover,
.calculator-actions #submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 33, 28, 0.12);
}

.calculator-actions #prevBtn:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 560px) {
  .calculator-card {
    padding: 1.5rem 1.25rem;
  }

  .calculator-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .calculator-actions #nextBtn,
  .calculator-actions #submitBtn,
  .calculator-actions #prevBtn {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}


/* ============================================================
   LOMAKKEET
   ============================================================ */

/* Lyhyt lomake */
.pp-form-short {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pp-form-short input,
.pp-form-short select,
.pp-form-short textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(95, 102, 92, 0.4);
  border-radius: var(--pp-radius-sm);
  background: rgba(255, 255, 255, 0.85);
  color: var(--pp-text);
  font-family: var(--pp-font);
  font-size: 0.97rem;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.pp-form-short input:focus,
.pp-form-short select:focus,
.pp-form-short textarea:focus {
  outline: none;
  border-color: var(--pp-copper);
  box-shadow: 0 0 0 3px var(--pp-copper-soft);
}

/* Pitkä lomake */
.pp-form-long {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-form-long .pp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pp-form-long .pp-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.pp-form-long .pp-form__group--full {
  grid-column: 1 / -1;
}

.pp-form-long label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pp-brown);
  letter-spacing: 0.015em;
}

.pp-form-long input,
.pp-form-long select,
.pp-form-long textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--pp-brown-line);
  border-radius: var(--pp-radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--pp-text);
  font-family: var(--pp-font);
  font-size: 0.97rem;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.pp-form-long input:focus,
.pp-form-long select:focus,
.pp-form-long textarea:focus {
  outline: none;
  border-color: var(--pp-brown-light);
  box-shadow: 0 0 0 3px rgba(92, 61, 46, 0.1);
}

.pp-form-long select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c3d2e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.pp-form-long textarea {
  resize: vertical;
  min-height: 110px;
}

.pp-form-long .pp-form__submit {
  margin-top: 1.1rem;
  text-align: right;
}

.pp-form-long .pp-form__status {
  padding: 0.9rem 1.1rem;
  border-radius: var(--pp-radius-sm);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  display: none;
}

.pp-form-long .pp-form__status--ok {
  background: rgba(35, 49, 39, 0.08);
  border-left: 3px solid var(--pp-forest);
  color: var(--pp-forest-dark);
}

.pp-form-long .pp-form__status--err {
  background: rgba(180, 50, 30, 0.07);
  border-left: 3px solid #c0392b;
  color: #7b1e12;
}

/* Roskapostisuoja — piilotettu kenttä */
.form-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .pp-form-long .pp-form__row {
    grid-template-columns: 1fr;
  }

  .pp-form-long .pp-form__group--full {
    grid-column: auto;
  }
}


/* ============================================================
   RUSKEA TOIMINNALLINEN PANEELI
   ============================================================ */

.pp-section--brown {
  background: transparent;
  position: relative;
  z-index: 1;
}

.pp-brown-panel {
  background: transparent;
  padding: 0;
  position: relative;
}

.pp-brown-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.pp-brown-eyebrow {
  display: inline-flex;
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pp-brown-light);
}


/* ============================================================
   KUVAKORTTI — .pp-photo-card
   Käytetään toimialasivuilla. Kehyksen väri per-kortti:
   style="--pp-frame: #3b2318;"
   ============================================================ */

.pp-photo-card {
  background: var(--pp-frame, var(--pp-brown));
  border-radius: var(--pp-radius-md);
  padding: 1rem;
  box-shadow: var(--pp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.pp-photo-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.6);
  margin: 0 0 0.5rem;
}

.pp-photo-card__heading {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fffaf0;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.pp-photo-card__image-wrap {
  border-radius: calc(var(--pp-radius-md) - 4px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.pp-photo-card--tall .pp-photo-card__image-wrap {
  aspect-ratio: 3 / 4;
}

.pp-photo-card--wide .pp-photo-card__image-wrap {
  aspect-ratio: 16 / 9;
}

.pp-photo-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 0.35s ease;
}

.pp-photo-card:hover .pp-photo-card__image {
  transform: scale(1.03);
}

.pp-photo-card__caption {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 250, 240, 0.55);
  margin: 0.65rem 0 0;
  font-style: italic;
}

.pp-photo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}


/* ============================================================
   BREADCRUMB
   ============================================================ */

.pp-breadcrumb {
  padding: 0.85rem 0 0;
}

.pp-breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.4rem;
}

.pp-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--pp-muted);
}

.pp-breadcrumb__item:not(:last-child)::after {
  content: "›";
  color: var(--pp-copper);
  opacity: 0.7;
  font-size: 0.95rem;
}

.pp-breadcrumb__link {
  color: var(--pp-muted-light);
  text-decoration: none;
}

.pp-breadcrumb__link:hover {
  color: var(--pp-forest);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pp-breadcrumb__current {
  color: var(--pp-text);
  font-weight: 600;
}


/* ============================================================
   UKK — FAQ KOMPONENTTI
   ============================================================ */

/* UKK-osion asettelu: otsikkopalsta + accordion vierekkäin,
   mobiilissa allekkain (otsikko accordionin päällä) */
.pp-faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .pp-faq-layout {
    grid-template-columns: 1fr;
  }
}

.pp-faq {
  width: 100%;
}

.pp-faq__item {
  border-bottom: 1px solid var(--pp-copper-line);
}

.pp-faq__item:first-child {
  border-top: 1px solid var(--pp-copper-line);
}

.pp-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--pp-forest-dark);
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}

.pp-faq__question::-webkit-details-marker {
  display: none;
}

.pp-faq__question:hover {
  color: var(--pp-forest);
}

.pp-faq__indicator {
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pp-copper-soft);
  color: var(--pp-copper);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.22s ease, background 0.15s;
  user-select: none;
}

details[open] .pp-faq__indicator {
  transform: rotate(45deg);
  background: rgba(184, 155, 109, 0.22);
}

.pp-faq__answer {
  padding: 0 1.5rem 1.25rem 0;
  font-size: 0.98rem;
  line-height: 1.82;
  color: var(--pp-muted);
  max-width: var(--pp-text-width);
}


/* ============================================================
   PAIKKAKUNTASIVUN PAIKALLINEN NOSTO
   ============================================================ */

.pp-local-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--pp-copper-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pp-muted);
}

.pp-local-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pp-copper);
}


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

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(184, 155, 109, 0.1), transparent 45%),
    linear-gradient(160deg, var(--pp-forest-dark) 0%, #1a2e20 100%);
  color: rgba(255, 250, 240, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
  z-index: 1;
}

/* Footerin tausta on tasainen — kuviointi poistettu. */

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.site-footer h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fffaf0;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.site-footer h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-copper);
  margin: 0 0 0.85rem;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__list a {
  font-size: 0.88rem;
  color: rgba(255, 250, 240, 0.65);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.5;
}

.site-footer__list a:hover {
  color: #fffaf0;
}

.site-footer__bottom {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 155, 109, 0.14);
  font-size: 0.82rem;
  color: rgba(255, 250, 240, 0.38);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   EVÄSTEBANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 520px;
  z-index: 9000;
  display: none;
  border-radius: var(--pp-radius-md);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(16, 28, 20, 0.25);
  border: 1px solid rgba(184, 155, 109, 0.18);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-box {
  background: #101c14;
  padding: 1.5rem;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fffaf0;
  margin-bottom: 0.4rem;
}

.cookie-text p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 250, 240, 0.65);
  margin: 0;
}

.cookie-text a {
  color: var(--pp-copper);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--pp-font);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--necessary {
  background: var(--pp-copper);
  color: var(--pp-forest-dark);
}

.cookie-btn--secondary {
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
}

.cookie-btn--secondary:hover {
  background: rgba(255, 250, 240, 0.2);
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(255, 250, 240, 0.55);
  border: 1px solid rgba(255, 250, 240, 0.15);
}

.cookie-btn--ghost:hover {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.3);
}

.cookie-panel {
  border-top: 1px solid rgba(184, 155, 109, 0.14);
}

.panel-box {
  background: #0e1811;
  padding: 1.25rem 1.5rem;
}

.panel-box h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fffaf0;
  margin: 0 0 1rem;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 250, 240, 0.72);
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.toggle input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--pp-copper);
  cursor: pointer;
}

.toggle input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.panel-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}


/* ============================================================
   APULUOKAT
   ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.text-muted   { color: var(--pp-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Jako-viiva */
.pp-divider {
  border: none;
  border-top: 1px solid var(--pp-copper-line);
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}

/* Nostolista ilman tyylittelyä */
.pp-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Tarkistuslista */
.pp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--pp-muted);
}

.pp-checklist li::before {
  content: "✓";
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--pp-copper);
  font-weight: 700;
  font-size: 0.9rem;
}


/* ============================================================
   MEDIA QUERIES — YLEISET
   ============================================================ */

@media (max-width: 768px) {
  .pp-cta-soft__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pp-cta-soft__actions .pp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================================
   PROSESSI — "Miten yhteistyö etenee" (suuret numerot)
   ============================================================ */
.pp-process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.pp-process__step {
  position: relative;
}

.pp-process__num {
  display: block;
  font-family: var(--pp-font);
  font-size: clamp(3.4rem, 7vw, 5.25rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--pp-copper);
  margin-bottom: 0.7rem;
}

.pp-process__step h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--pp-forest-dark);
  margin: 0 0 0.5rem;
}

.pp-process__step p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}
