/* ============================================================================
   POHJA: PEHMEA (A) — pyöreä & cool, moderni B2B (oletus: rekrytointi/palveluyritys)
   Tyyli: pyöreät muodot (28px), viileä cyan→violetti-liukuväri, ajelehtivat blobit
   (liikettä), läpinäkyvä nav gradient-heron päällä, modernit sans-fontit.
   Samat osio-luokat kuin muissa → osiot siirrettävissä.
   ----------------------------------------------------------------------------
   TEEMA VAIHDETAAN VAIN TÄSTÄ :root-lohkosta.
   ============================================================================ */

:root {
  /* ---- VÄRIT (HelpUp: valkoinen + lime, nykysivun brändiväri) ---- */
  --c-bg:        #FFFFFF;   /* puhdas valkoinen — kuvat saavat tilan */
  --c-surface:   #FFFFFF;   /* kortit */
  --c-surface-2: #F7F8F4;   /* lomakekenttien ja pikkupintojen sävy */
  --c-soft-bg:   #F2F3EE;   /* pehmeä osiotausta — neutraali, ei vihertävä (vrt. hylätty limetint #F3F7E4) */
  --c-text:      #4B4E44;
  --c-heading:   #1B1E15;
  --c-muted:     #6B6F5F;
  --c-border:    #E1E6CF;
  --c-primary:   #C3CF21;   /* HelpUp-lime — painikkeet ja pinnat */
  --c-primary-2: #B2BD1C;   /* hover */
  --c-on-primary:#1B1E15;   /* TUMMA teksti limellä (lime ei kanna valkoista) */
  --c-accent:    #6B750F;   /* tummennettu lime — tekstiaksentit (5,0:1 valkoisella, 4,7:1 tintillä = WCAG AA) */
  --c-soft:      #B2E968;   /* pehmeä vihreä — vanhan sivun toinen brändivihreä, liukuvärin vaalea pää */
  --c-dark:      #1C2617;   /* TUMMANVIHREÄ — korvaa vaalean tintin osiotaustana */
  --c-dark-2:    #131B0F;   /* syvin sävy — liukuvärin tumma pää */
  --c-on-dark:   #E4E9D4;

  /* ---- LIUKUVÄRI (hillitty lime) ---- */
  --grad: linear-gradient(135deg, var(--c-soft) 0%, var(--c-primary) 55%, #9FB318 100%);
  --grad-dark: linear-gradient(160deg, var(--c-dark) 0%, var(--c-dark-2) 55%, #10130C 100%);

  /* ---- MUODOT (pyöreähköt, kuten demo13) ---- */
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* ---- VARJOT (vaalea teema: kevyet, ei mustaa) ---- */
  --shadow-sm: 0 1px 3px rgba(27,30,21,.06);
  --shadow:    0 10px 30px rgba(27,30,21,.08);
  --shadow-lg: 0 20px 50px rgba(27,30,21,.10);

  /* ---- TYPOGRAFIA (modernit sans) ---- */
  --font-display: 'Plus Jakarta Sans', 'Plus Jakarta Sans Fallback', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif;
  --font-accent:  'Space Grotesk', 'Space Grotesk Fallback', system-ui, sans-serif;   /* navi + badget */

  /* ---- MITAT ---- */
  --container: 1120px;
  --pad-x: clamp(18px, 5vw, 40px);
  --gap: clamp(20px, 3vw, 34px);
  --section-y: clamp(64px, 9vw, 120px);
}

/* =====================  VÄRI-PRESETIT  ============================
   TUMMA (luumu-yö):
     --c-bg:#221820; --c-surface:#2C2029; --c-surface-2:#1C141B;
     --c-text:#D8C8D0; --c-heading:#FFFFFF; --c-muted:#A892A0;
     --c-border:#3A2C37; --c-primary:#F08AB0; --c-primary-2:#F7A6C4;
     --c-on-primary:#221820; --c-accent:#C4A9EA; --c-dark:#160F15; --c-on-dark:#EEDFE8;

   LAVENDEL (vaihda pääsävy):
     --c-primary:#9B7BD4; --c-primary-2:#8463C2; --c-surface-2:#F3EEFB; --c-bg:#FAF7FE;

   PERSIKKA/LÄMMIN:
     --c-primary:#E08A6B; --c-primary-2:#CC7356; --c-accent:#F0B89A; --c-surface-2:#FCF1EA; --c-bg:#FFF8F3;

   Toimialapaletit: ks. ../../CLAUDE.md
   ================================================================== */

/* ===========================  RESET / BASE  ============================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0; overflow-x: clip;
  background: var(--c-bg); color: var(--c-text);
  font-family: var(--font-body); font-size: 1.07rem; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--c-heading); line-height: 1.14; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; overflow-wrap: break-word; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1rem; max-width: 64ch; }
:focus-visible { outline: 2.5px solid var(--c-primary); outline-offset: 3px; border-radius: 6px; }
em { font-style: italic; color: var(--c-primary); }

.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 200; background: var(--c-primary); color: #fff; padding: 11px 20px; border-radius: var(--r-pill); font-weight: 700; }
.skip-link:focus { left: 14px; }

/* gradient-teksti + liike-keyframet (kotisivut.fi-henkinen "cool") */
.grad-text { color: var(--c-accent); }   /* ei gradienttitekstiä: lime ei kanna leipäkokoa vaalealla */
/* otsikon SHINE-AALTO — kirkas kaista pyyhkäisee gradientin yli (kuten kotisivut.fi), nopea */
.hero h1 .grad-text {
  background: none; -webkit-text-fill-color: currentColor;
  color: var(--c-primary); }   /* lime valokuvan päällä, ei gradienttia eikä aaltoanimaatiota */
/* Silmukan jakso KIINTEÄNÄ PIKSELIARVONA, ei prosenttina: prosenttijakso ei looppaa
   saumattomasti kun otsikko taittuu kahdelle riville (background-clip: text -laatikko
   pilkkoutuu riveittäin), jolloin kierroksen vaihtuessa näkyy välähdys. */
@keyframes gradWave { from { background-position: 0 center; } to { background-position: 700px center; } }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-34px,26px) scale(1.08); } }
@keyframes floaty  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(11px); } }
.floaty  { animation: floaty 6s ease-in-out infinite; }
.floaty2 { animation: floaty2 7.5s ease-in-out infinite; }

/* ===========================  LAYOUT  ============================ */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
/* kiinteä läpinäkyvä nav peittää sivun yläreunan → alasivujen 1. osiolle lisätila (hero hoitaa omansa) */
main > section:first-child:not(.hero) { padding-top: clamp(120px, 15vw, 160px); }
.section--tint { background: var(--c-surface-2); }
.section--dark { background: var(--grad-dark); color: var(--c-on-dark); position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c-primary) 20%, transparent), transparent 68%);
  top: -280px; right: -180px; filter: blur(10px); pointer-events: none; }
.section--dark > * { position: relative; }
.section--dark p, .section--dark li { color: var(--c-on-dark); }
.section--dark .lead { color: color-mix(in srgb, var(--c-on-dark) 88%, transparent); }
.section--dark .grad-text { color: var(--c-primary); }
.section--dark li svg { color: var(--c-primary); }
.section--dark .price-note { color: color-mix(in srgb, var(--c-on-dark) 82%, transparent); }
.section--dark .price-note a { color: var(--c-primary) !important; }   /* tumma aksentti ei kanna tummalla */
.section--dark .areas span { background: rgba(255,255,255,.10); border: 0; color: var(--c-on-dark); }
.section--dark .contact-info .row b { color: #fff; }
.section--dark .contact-info .row span, .section--dark .contact-info .row a { color: var(--c-on-dark); }
.section--dark .contact-info .row svg { color: var(--c-primary); }
.section--dark .form { background: rgba(255,255,255,.06); border: 0; border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); }
.section--dark .field label { color: var(--c-on-dark); }
.section--dark .field input, .section--dark .field textarea {
  background: #FFFFFF; border: 0; color: var(--c-heading); }
.section--dark .field input::placeholder, .section--dark .field textarea::placeholder { color: #7C8074; }
.section--dark .field input:focus, .section--dark .field textarea:focus {
  border-color: var(--c-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-primary) 24%, transparent); }
.section--dark .form-note { color: color-mix(in srgb, var(--c-on-dark) 72%, transparent); }
.section--dark .map { border: 0; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow { display: inline-block; font-family: var(--font-accent); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px;
  background: var(--c-dark); color: var(--c-on-dark); padding: 7px 18px; border-radius: var(--r-pill); }
.section--dark .eyebrow { color: var(--c-dark); background: var(--grad); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.32rem); color: var(--c-muted); }
.sec-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 58px); }
.sec-head--center { margin-inline: auto; text-align: center; max-width: 1000px; }
.sec-head--center .lead { max-width: 76ch; margin-inline: auto; }   /* mahtuu yhdelle riville desktopilla */
.sec-head--center .lead, .sec-head--center p { max-width: 76ch; }

/* ===========================  PAINIKKEET (pyöreät pillerit)  ============================ */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .28s ease, background .2s, color .2s; min-height: 50px; }
/* PÄÄPAINIKE — rose-gold-liukuväri + position-shift + pehmeä glow (demo1-oppi,
   pehmeän omana versiona: pyöreä pilleri, lämmin mauve→samppanja) */
.btn-primary {
  background: var(--grad); background-size: 200% 200%; background-position: 0% 50%; background-origin: border-box; background-repeat: no-repeat;
  color: var(--c-on-primary); border-color: transparent;
  box-shadow: var(--shadow-sm);
  transition: background-position .5s cubic-bezier(.16,1,.3,1), transform .2s ease, box-shadow .28s;
}
.btn-ghost { background: var(--c-surface); color: var(--c-heading); border-color: var(--c-border); transition: transform .2s, box-shadow .28s, border-color .2s, color .2s; }
.btn-ghost.on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn .arr { transition: transform .2s; }
@media (hover: hover) {
  .btn-primary:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(27,30,21,.12); }
  .btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
  .btn:hover .arr { transform: translateX(4px); }
}
.btn-primary:active { transform: translateY(0); }
.tlink { color: var(--c-primary); font-weight: 700; display: inline-flex; gap: 6px; align-items: center; }
@media (hover: hover) { .tlink:hover .arr { transform: translateX(4px); } }

/* ===========================  HERO (gradientti-mesh + ajelehtivat blobit, EI kuvaa)  ============================ */
.hero { position: relative; overflow: hidden; text-align: center;
  background-color: #1B1E15;
  background-image: linear-gradient(168deg, rgba(20,26,14,.52) 0%, rgba(16,20,12,.66) 46%, rgba(12,15,9,.92) 100%), url("https://images.unsplash.com/photo-1621192756171-ecd54e0a4b39?auto=format&fit=crop&fm=webp&q=60&w=1600&h=900");
  background-size: cover; background-position: center 30%;
  /* Banneri madallettu 2.9.2026: pystypadding pienemmäksi ja kolme nostolaatikkoa poistettu.
     Yläpadding jättää yhä tilaa 78px navin alle. */
  padding-block: clamp(108px, 12vw, 142px) clamp(52px, 7vw, 84px); }
/* kaksi isoa, hitaasti ajelehtivaa gradient-blobia → liikettä taustalla */
.hero .blob { position: absolute; border-radius: 50%; filter: blur(72px); z-index: 0; pointer-events: none; }
.hero .blob.b1 { width: 460px; height: 460px; background: radial-gradient(circle, color-mix(in srgb, var(--c-primary) 24%, transparent), transparent 70%); top: -150px; left: -120px; animation: drift1 19s ease-in-out infinite; }
.hero .blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, color-mix(in srgb, var(--c-accent) 26%, transparent), transparent 70%); bottom: -170px; right: -110px; animation: drift2 23s ease-in-out infinite; }
.hero .blob.b3 { width: 300px; height: 300px; background: radial-gradient(circle, color-mix(in srgb, var(--c-primary) 14%, transparent), transparent 70%); top: 30%; left: 55%; animation: drift1 27s ease-in-out infinite reverse; }
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin-inline: auto; }
.hero h1 { margin-bottom: .34em; }
.hero h1 .accent { color: var(--c-primary); }
/* Asiakkaan oma iskulause otsikon alla — yksi rivi, ei laatikoita. */
.hero-tag { font-family: var(--font-display); font-weight: 700; color: var(--c-primary);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem); margin: 0 0 14px; letter-spacing: -.01em; }
.hero-sub { font-size: clamp(1.06rem, 1.6vw, 1.28rem); color: #EEF1E2; max-width: 56ch; margin-inline: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; justify-content: center; }
.hero-meta { display: flex; gap: 16px; margin-top: 46px; flex-wrap: wrap; justify-content: center; }
.hero-meta .m { background: rgba(255,255,255,.09); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 0;
  border-radius: var(--r); padding: 16px 26px; box-shadow: var(--shadow-sm); }
.hero-meta .m b { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--c-heading); display: block; line-height: 1; }
.hero-meta .m span { font-size: .86rem; color: rgba(238,241,226,.80); }

/* ===========================  ALASIVUN YLÄOSA (ei kuvabanneria)  ============================ */
/* Alasivut alkavat tummalla otsikkolohkolla: kevyempi kuin etusivun hero, mutta erottaa
   sivun alun navista ja antaa murupolulle paikan. */
.page-hero { background: var(--grad-dark); color: var(--c-on-dark); position: relative; overflow: hidden;
  padding-block: clamp(112px, 12vw, 148px) clamp(44px, 6vw, 66px); }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lead { color: color-mix(in srgb, var(--c-on-dark) 88%, transparent); max-width: 62ch; }
.page-hero p { color: var(--c-on-dark); }
.page-hero .eyebrow { color: var(--c-dark); background: var(--grad); }
.page-hero p a { color: var(--c-primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }   /* linkki tummassa herossa: lime 9,5:1 */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 20px;
  font-size: .88rem; color: rgba(238,241,226,.66); font-family: var(--font-accent); }
.breadcrumb a { color: rgba(238,241,226,.82); }
@media (hover: hover) { .breadcrumb a:hover { color: var(--c-primary); } }
.breadcrumb span[aria-hidden] { opacity: .45; }
@media (max-width: 640px) { .page-hero { padding-block: 98px 38px; } .page-hero h1 { font-size: 1.92rem; } }

/* Kuva/teksti-lohkon suunnan vaihto → pitkä palvelusivu ei näytä listalta */
@media (min-width: 861px) { .feature--rev .feature-media { order: 2; } }

/* ===========================  TRUST  ============================ */
.trust { background: var(--c-surface); }
.trust-in { display: flex; align-items: center; gap: clamp(20px, 4vw, 54px); padding-block: 26px; flex-wrap: wrap; justify-content: center; }
.trust-in .t { display: flex; align-items: center; gap: 10px; color: var(--c-muted); font-weight: 600; font-size: .96rem; }
.trust-in .t svg { color: var(--c-primary); flex: none; }

/* ===========================  PALVELUT (pehmeät kortit — vasen tasaus, tiivis väli)  ============================ */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }  /* 4 palvelua → 2×2, kuvalle tilaa */
.card { background: var(--c-surface); border: 0; border-radius: var(--r-lg); padding: 0 0 28px;
  overflow: hidden;   /* kuva noudattaa kortin pyöristystä */
  transition: box-shadow .25s ease; text-align: left;   /* vasemmalle → helpompi lukea; EI liikettä hoverissa */
  display: flex; flex-direction: column; }  /* flex → kortit tasakorkeat, linkki pohjaan */
.card .num { font-family: var(--font-display); font-size: 1rem; color: var(--c-accent); font-weight: 600; margin: 22px 26px 0; }
.card h3 { margin: 22px 26px 8px; }
.card p { color: var(--c-muted); margin: 0 26px 4px; font-size: .96rem; }
.card .card-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
/* Kuvaton tekstikortti (kohderyhmät): kortin yläreuna tarvitsee oman ilmavuuden. */
.card--text { padding-top: 10px; }
.card--text p { margin-bottom: 24px; }

/* Pehmeä osiotausta: ei puhdas valkoinen, ei vihertävä tint.
   Kortit jäävät valkoisiksi ja erottuvat hennolla varjolla. */
.section--soft { background: var(--c-soft-bg); }
.section--soft .card { background: #FFFFFF; box-shadow: var(--shadow-sm); }
.card { position: relative; }
.card .img-wrap { overflow: hidden; display: block; position: relative; }
.card .img-wrap::after { content: ""; position: absolute; inset: auto 0 0 0; height: 42%;
  background: linear-gradient(transparent, rgba(19,27,15,.30)); pointer-events: none; }
.card .tlink { justify-content: flex-start; margin: auto 26px 0; }  /* linkki kortin pohjaan, vasemmalle */

/* Kortti erottuu AINA taustastaan: vaalealla osiolla tumma kortti, tummalla osiolla valkoinen. */
.card--dark { background: var(--grad-dark); }
.card--dark h3 { color: #fff; }
.card--dark p { color: color-mix(in srgb, var(--c-on-dark) 88%, transparent); }
.section--dark .card { background: var(--c-surface);
  }
.section--dark .card h3 { color: var(--c-heading); }
.section--dark .card p { color: var(--c-muted); }

/* Kortin oma painike */
.card-btn { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  margin: 18px 26px 0; padding: 10px 20px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  background: var(--grad); color: var(--c-on-primary);
  transition: transform .18s ease, box-shadow .25s ease; }
.card--dark .card-btn { background: var(--grad); color: var(--c-on-primary); }
@media (hover: hover) { .card-btn:hover { transform: translateX(3px); box-shadow: 0 8px 22px -8px rgba(195,207,33,.5); } }
.card-btn .arr { transition: transform .18s ease; }
@media (hover: hover) { .card-btn:hover .arr { transform: translateX(3px); } }
@media (hover: hover) {
  .card:hover { box-shadow: var(--shadow); }   /* ei liikettä, ei reunusta — vain hennompi syvyys */
}
@media (max-width: 980px) { .cards { grid-template-columns: 1fr 1fr; } }
.cards--3 { grid-template-columns: repeat(3, 1fr); }   /* alapalvelusivut: 3 kohderyhmää / 3 sisarpalvelua, ei orpoja */
@media (max-width: 980px) { .cards--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ===========================  MEISTÄ + LUVUT  ============================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 5/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
/* leijuva gradient-badge kuvan päällä */
.about-media .float-chip { position: absolute; right: -14px; bottom: 26px; z-index: 3; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: var(--r-pill); font-weight: 700; font-size: .95rem; color: var(--c-on-primary);
  background: var(--grad); box-shadow: none; }
@media (max-width: 640px) { .about-media .float-chip { right: 8px; bottom: 12px; padding: 10px 15px; font-size: .85rem; } }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.stat b { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--c-primary); display: block; line-height: 1; }
.stat span { font-size: .9rem; color: var(--c-muted); }

/* ===========================  PROSESSI  ============================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: var(--gap); counter-reset: step; }
.step { text-align: center; }
.step .stepnum { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); border: 0; color: var(--c-on-primary); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  box-shadow: 0 10px 24px -10px rgba(195,207,33,.65); }
.step .stepnum::before { counter-increment: step; content: counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--c-muted); font-size: .96rem; margin-inline: auto; }

/* ===========================  GALLERIA (yhtenäinen 3-grid, pyöristetty, staattinen)  ============================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .g { margin: 0; overflow: hidden; border-radius: var(--r); display: block; position: relative; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .g figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px; color: #fff;
  background: linear-gradient(transparent, rgba(20,23,16,.86)); font-family: var(--font-display); font-weight: 600; font-size: 1rem; }

/* ===========================  REFERENSSIT  ============================ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--gap); }
.quote { margin: 0; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--c-accent); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 1.06rem; color: var(--c-heading); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote .who b { display: block; font-size: .95rem; }
.quote .who span { font-size: .85rem; color: var(--c-muted); }

/* ===========================  HINNASTO  ============================ */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: var(--gap); }
.plan { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; text-align: center; }
.plan.featured { border-color: transparent; box-shadow: var(--shadow); position: relative;
  background: linear-gradient(170deg, var(--c-surface), color-mix(in srgb, var(--c-primary) 15%, var(--c-surface))); }
.plan.featured::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); padding: 2px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan .tag { display: inline-block; background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); color: var(--c-on-primary); font-size: .78rem; font-weight: 700; padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: 14px; }
.plan h3 { margin-bottom: 4px; }
/* price voi olla lyhyt sana (ei euromäärä) → maltillinen koko + small omalle riville, ei ylivuotoa */
.plan .price { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 2.4vw, 2.1rem); color: var(--c-heading); line-height: 1.05; margin: 10px 0 4px; overflow-wrap: break-word; }
.plan .price small { display: block; font-size: .9rem; color: var(--c-muted); font-family: var(--font-body); font-weight: 500; margin-top: 6px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 12px; text-align: left; }
.plan li { display: flex; gap: 10px; font-size: .97rem; }
.plan li svg { color: var(--c-primary); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; justify-content: center; }

/* ===========================  FAQ  ============================ */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { background: var(--c-surface); border: 0; box-shadow: var(--shadow-sm); border-radius: var(--r); margin-bottom: 14px; padding: 4px 8px; transition: box-shadow .25s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 44px 18px 18px; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--c-heading); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; translate: 0 -50%; font-size: 1.6rem; color: var(--c-primary); transition: rotate .25s; line-height: 1; }
.faq details[open] summary::after { rotate: 45deg; }
.faq .a { padding: 0 18px 20px; color: var(--c-muted); }
.faq .a p { margin: 0; }
.faq .a p + p { margin-top: 14px; }   /* verkosto-kappale erilleen vastauksesta */
.faq summary { line-height: 1.4; }    /* kysymykset ovat pitkiä → monirivinen summary hengittää */

/* ===========================  CTA  ============================ */
/* CTA-nauhan yläväli = alaväli (21.9.2026). Edeltävä värillinen osio päättyy omaan taustaansa,
   joten valkoista väliä ei synny ilman omaa yläpaddingia → nauha oli kiinni edellisessä.
   Valkoisen osion jälkeen väli tulee jo edeltävän alapaddingista, jolloin oma jätetään pois. */
.section--cta { padding-top: 0; }
.section--dark + .section--cta,
.section--soft + .section--cta,
.section--tint + .section--cta { padding-top: var(--section-y); }

.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(44px, 6vw, 80px); text-align: center;
  background: var(--grad-dark); color: #fff; }
.cta-band::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c-primary) 22%, transparent), transparent 70%);
  top: -220px; right: -140px; pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-primary { background: var(--grad); color: var(--c-on-primary); box-shadow: 0 10px 30px -8px rgba(195,207,33,.45); }
@media (hover:hover) { .cta-band .btn-primary:hover { background: var(--c-primary-2); color: var(--c-on-primary); } }

/* ===========================  YHTEYS + LOMAKE  ============================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 60px); }
.contact-info .row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--c-border); }
.contact-info .row svg { color: var(--c-primary); flex: none; margin-top: 3px; }
.contact-info .row b { display: block; }
.contact-info .row span { color: var(--c-muted); }
.contact-info .map { margin-top: 22px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--c-border); }
.contact-info .map iframe { width: 100%; height: 220px; border: 0; display: block; }

.form { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--c-border); border-radius: var(--r); background: var(--c-bg); color: var(--c-text); font: inherit; font-size: 16px; transition: border-color .18s, box-shadow .18s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-primary) 16%, transparent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--c-muted); margin-top: 4px; }
.form-msg { margin-top: 14px; font-weight: 600; display: none; }
.form-msg.ok { display: block; color: #3F7D2E; }
.form-msg.err { display: block; color: #C0392B; }
.field input::placeholder, .field textarea::placeholder { color: #8E9182; }

/* ===========================  REVEAL POISTETTU  ============================
   Scroll-reveal (fade/slide) poistettu — häiritsi lukemista. Sisältö näkyy staattisesti.
   .reveal-luokat jätetty HTML:ään no-opiksi (ei alkutilaa). WAU tulee jatkuvista
   hero-animaatioista (blobit + otsikon gradient-aalto), ei ilmestymisestä. */
.reveal, html.js .reveal { opacity: 1 !important; transform: none !important; }

/* ===========================  RESPONSIIVISUUS  ============================ */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 1.02rem; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta .btn, .cta-band .btn { width: auto; }
  .hero-meta .m { padding: 14px 20px; }
  /* Banneri mahtumaan puhelimen ruutuun (2.9.2026): otsikko ja leipä pienemmiksi. */
  .hero { padding-block: 96px 44px; }
  .hero h1 { font-size: 1.94rem; }
  .hero-tag { font-size: .98rem; margin-bottom: 12px; }
  .hero-sub { font-size: .99rem; }
  .hero-cta { margin-top: 24px; gap: 10px; }
}
/* kapealla puhelimella trust-palkki pinoon → pitkät tekstit eivät leikkaudu */
@media (max-width: 560px) {
  .trust-in { flex-direction: column; align-items: center; gap: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html.js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
}


/* ===========================  ASIAKASKOHTAISET LISÄYKSET  ============================ */
.price-note { max-width: 780px; margin: 30px auto 0; text-align: center; color: var(--c-muted); font-size: .95rem; }
.price-note strong { color: var(--c-heading); }
.plan .sub { color: var(--c-muted); font-size: .95rem; margin: 0 0 4px; }
.foot-logo { width: 118px; height: auto; margin-bottom: 16px; }
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas span { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-pill); padding: 9px 18px; font-weight: 600; font-size: .95rem; color: var(--c-heading); }
.form-msg.info { display: block; color: var(--c-primary-2); }
.hero-grid > *, .about-grid > *, .contact-grid > * { min-width: 0; }
.plan .tag { align-self: center; }

/* --- nosto-osio: kuva + teksti --- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.feature > * { min-width: 0; }
.feature-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }   /* ei kehystä — valkoinen rajaus näkyi tummalla osiolla */
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.feature li { display: flex; gap: 11px; align-items: flex-start; }
.feature li svg { color: var(--c-primary); flex: none; margin-top: 4px; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }
/* hero-teksti valokuvan päällä — pehmeä varjo varmistaa luettavuuden */
.hero h1, .hero-sub { text-shadow: 0 2px 16px rgba(0,0,0,.45); }
/* Vaalea teema: --c-heading on tumma, mutta hero on valokuvan päällä → valkoinen teksti. */
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.5rem); max-width: 20ch; margin-inline: auto; }
.hero::after { content: none; }   /* alareunan häivytys poistettu — terävä kuvan reuna */
.hero-inner { position: relative; z-index: 2; }
.hero .grad-text { color: var(--c-primary); }   /* lime erottuu tummalla kuvalla; muualla aksentti on tummempi */
.hero .eyebrow { color: var(--c-primary); background: rgba(255,255,255,.12); }
.hero-meta .m b { color: #fff; }
.hero .eyebrow { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* ---- Tietosuojaseloste ---- */
.seloste { max-width: 74ch; margin-inline: auto; }
.seloste h2 { font-size: 1.35rem; margin: 1.8em 0 .5em; }
.seloste p, .seloste li { font-size: .98rem; line-height: 1.7; }
.seloste ul { padding-left: 1.3em; margin-bottom: 1em; }
