/* ═══════════════════════════════════════════════
   KUITUNEN.FI — Päätyylitiedosto
   Tyyli: Editorial / trooppinen minimalismi
   Fontit: Playfair Display + DM Sans
   ═══════════════════════════════════════════════ */

/* ─── MUUTTUJAT ─── */
:root {
  --bg:        #0e0e0b;
  --bg-2:      #161612;
  --bg-3:      #1e1e19;
  --text:      #f0ede4;
  --text-2:    #a8a496;
  --text-3:    #6b6860;
  --gold:      #c9a84c;
  --gold-2:    #e8c96a;
  --green:     #4a7c59;
  --green-2:   #6aab7e;
  --accent:    #e85d2a;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:  1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --r:      8px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── TYPOGRAFIA ─── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section-body {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-link {
  font-size: 0.9rem;
  color: var(--gold);
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link:hover { color: var(--gold-2); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: #0e0e0b;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-2);
}
.btn--large { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--small { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ─── ANIMAATIO: data-animate ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════
   NAV
═════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem var(--gutter);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,14,11,0.92);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-right: auto;
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.45rem 1rem;
  border-radius: var(--r);
  transition: all 0.2s;
}
.nav__cta:hover {
  background: var(--gold);
  color: #0e0e0b;
  border-color: var(--gold);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── Mobile menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem var(--gutter) 6rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(circle, var(--green), transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: heroIn 1s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.hero__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ════════════════════════════════
   SOME-PALKKI
════════════════════════════════ */
.social-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.social-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.social-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  color: var(--text-2);
  font-size: 0.9rem;
  transition: color 0.2s, background 0.2s;
}
.social-bar__item:hover {
  color: var(--text);
  background: var(--bg-3);
}
.social-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ════════════════════════════════
   STATS
════════════════════════════════ */
.stats {
  padding: 5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stats__item {
  background: var(--bg-2);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.2s;
}
.stats__item:hover { background: var(--bg-3); }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stats__label {
  font-size: 0.85rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════
   OPAS
════════════════════════════════ */
.opas {
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.opas__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

/* Kirja-mockup */
.opas__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.opas__book {
  display: flex;
  width: 240px;
  height: 320px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  transform: perspective(800px) rotateY(-8deg);
  transition: transform 0.4s var(--ease-out);
}
.opas__book:hover {
  transform: perspective(800px) rotateY(-2deg) translateY(-6px);
}
.opas__book-spine {
  width: 28px;
  background: linear-gradient(to bottom, #8a5a1a, #5a3a0a);
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
}
.opas__book-cover {
  flex: 1;
  background: linear-gradient(135deg, #1a2f1a 0%, #0d1f0d 60%, #0a150a 100%);
  border-radius: 0 4px 4px 0;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.opas__book-cover::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 41px
  );
}
.opas__book-title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.opas__book-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}
.opas__book-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.opas__book-year {
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 0.5rem;
}
.opas__book-accent {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  position: relative;
}
.opas__price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 1rem 2rem;
}
.opas__price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.opas__price-label {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* Sisältö */
.opas__chapters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.opas__chapters li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-2);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.opas__ch-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  width: 20px;
}
.opas__guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 1rem;
}
.opas__actions { display: flex; flex-direction: column; }

/* ════════════════════════════════
   OSTA / PRICING
════════════════════════════════ */
.osta {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.osta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.osta__card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.osta__card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.osta__card--konsultointi {
  border-color: rgba(201,168,76,0.15);
}
.osta__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0e0e0b;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.osta__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}
.osta__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.osta__price span { font-size: 1.5rem; }
.osta__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.osta__features li {
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ════════════════════════════════
   VIDEOT
════════════════════════════════ */
.videot {
  padding: 7rem 0;
}
.videot__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.video-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.video-card__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__play {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e0e0b;
  font-size: 0.9rem;
  padding-left: 3px;
  transition: transform 0.2s;
}
.video-card:hover .video-card__play { transform: scale(1.1); }
.video-card__body { padding: 1.25rem; }
.video-card__date {
  font-size: 0.78rem;
  color: var(--text-3);
  display: block;
  margin-bottom: 0.5rem;
}
.video-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
}
.video-card--placeholder .video-card__thumb {
  background: var(--bg-3);
}

/* ════════════════════════════════
   BLOGI
════════════════════════════════ */
.blogi { padding: 7rem 0; border-top: 1px solid var(--border); }
.blogi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blogi__card {
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.blogi__card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.blogi__card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blogi__card-cat {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.blogi__card-date { font-size: 0.78rem; color: var(--text-3); }
.blogi__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--text);
}
.blogi__card-excerpt {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.blogi__card-link {
  font-size: 0.85rem;
  color: var(--gold);
  transition: color 0.2s;
  margin-top: auto;
}
.blogi__card-link:hover { color: var(--gold-2); }

/* ════════════════════════════════
   KONSULTOINTI
════════════════════════════════ */
.konsultointi {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.konsultointi__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}
.konsultointi__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.konsultointi__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-2);
  font-size: 0.95rem;
}
.konsultointi__list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}
.konsultointi__options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.konsultointi__card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.konsultointi__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e0e0b;
}
.konsultointi__bio {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.konsultointi__bio strong {
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.konsultointi__bio span { font-size: 0.85rem; color: var(--text-2); }
.konsultointi__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.konsultointi__tags span {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-2);
}

/* ════════════════════════════════
   NEWSLETTER
════════════════════════════════ */
.newsletter { padding: 6rem 0; }
.newsletter__box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter__box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.newsletter__sub { color: var(--text-2); font-size: 0.95rem; }
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  grid-column: 2;
}
.newsletter__input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: var(--text-3); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__fine {
  font-size: 0.78rem;
  color: var(--text-3);
  grid-column: 2;
  margin-top: -0.5rem;
}

/* ════════════════════════════════
   SPONSORIT
════════════════════════════════ */
.sponsorit {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sponsorit__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.sponsorit__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.sponsorit__placeholder {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-2);
  border: 1px dashed var(--border-2);
  border-radius: var(--r);
  padding: 1rem 2rem;
  color: var(--text-3);
  font-size: 0.88rem;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-2);
  max-width: 28ch;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--text); }
.footer__links h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ════════════════════════════════
   FEATURED VIDEO
════════════════════════════════ */
.featured-video {
  margin-bottom: 4rem;
}
.featured-video__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.featured-video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.featured-video__player:hover .featured-video__thumb {
  transform: scale(1.02);
}
.featured-video__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.featured-video__play-btn::before {
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  background: rgba(201,168,76,0.92);
  border-radius: 50%;
  transition: transform 0.2s var(--ease-out), background 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.featured-video__player:hover .featured-video__play-btn::before {
  transform: scale(1.1);
  background: var(--gold-2);
}
.featured-video__play-btn svg {
  position: relative;
  z-index: 1;
  color: #0e0e0b;
  margin-left: 4px;
}
.featured-video__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.featured-video__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.featured-video__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text);
  line-height: 1.3;
}
.featured-video__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.featured-video__channel:hover { color: var(--text-2); }

.videot__more { margin-top: 4rem; }
.videot__more-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

/* ════════════════════════════════
   KUITUNEN NYT
════════════════════════════════ */
.nyt {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.nyt__header { margin-bottom: 3rem; }
.nyt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.nyt__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color 0.2s;
}
.nyt__card:hover { border-color: var(--border-2); }
.nyt__card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}
.nyt__card-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.nyt__card--wide .nyt__card-icon { margin-top: 0.15rem; }
.nyt__card-text-wrap { display: flex; flex-direction: column; gap: 0.45rem; }
.nyt__card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nyt__card-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.3;
}
.nyt__card-value--body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}
.nyt__card-sub { font-size: 0.8rem; color: var(--text-3); }

/* ════════════════════════════════
   SISÄLTÖPOLUT
════════════════════════════════ */
.polut {
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.polut__header { margin-bottom: 3rem; }
.polut__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.polut__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.polut__card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}
.polut__card-emoji { font-size: 1.75rem; margin-bottom: 0.25rem; }
.polut__card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
}
.polut__card-text {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.polut__card-link {
  font-size: 0.85rem;
  color: var(--gold);
  transition: color 0.2s;
  margin-top: auto;
}
.polut__card-link:hover { color: var(--gold-2); }

/* ════════════════════════════════
   SARJAT
════════════════════════════════ */
.sarjat {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.sarjat__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.sarjat__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.sarjat__card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.sarjat__card--featured {
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(160deg, var(--bg-3) 60%, rgba(201,168,76,0.04));
}
.sarjat__card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-2);
  background: rgba(106,171,126,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
}
.sarjat__card-icon { font-size: 2rem; }
.sarjat__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.2;
}
.sarjat__card-text {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.sarjat__card-link {
  font-size: 0.85rem;
  color: var(--gold);
  transition: color 0.2s;
}
.sarjat__card-link:hover { color: var(--gold-2); }

/* ════════════════════════════════
   YHTEISÖ
════════════════════════════════ */
.yhteiso {
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.yhteiso__box {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.yhteiso__box::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
  pointer-events: none;
}
.yhteiso__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.yhteiso__sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 48ch;
}
.yhteiso__perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.yhteiso__perks li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.yhteiso__perk-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.yhteiso__perks li > div { display: flex; flex-direction: column; gap: 0.15rem; }
.yhteiso__perks strong { font-size: 0.93rem; color: var(--text); font-weight: 500; }
.yhteiso__perks span { font-size: 0.82rem; color: var(--text-3); }
.yhteiso__cta { margin-bottom: 1rem; }
.yhteiso__fine { font-size: 0.78rem; color: var(--text-3); }

.yhteiso__card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.yhteiso__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e0e0b;
}
.yhteiso__info { display: flex; flex-direction: column; gap: 0.2rem; }
.yhteiso__info strong { font-size: 1.1rem; font-family: var(--font-display); }
.yhteiso__info span { font-size: 0.85rem; color: var(--text-2); }
.yhteiso__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.yhteiso__tags span {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-2);
}
.yhteiso__stat-row {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.yhteiso__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.yhteiso__stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.yhteiso__stat-label {
  font-size: 0.7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════
   OPAS — lisäykset (intro + tiers)
════════════════════════════════ */
.opas__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 5rem;
}
.opas__intro .section-body { margin: 0 auto; }
.opas__tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.opas__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.opas__tier:last-child { border-bottom: none; }
.opas__tier--active {
  opacity: 1;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
}
.opas__tier-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.opas__tier--active .opas__tier-label { color: var(--gold); }
.opas__tier-desc { font-size: 0.8rem; color: var(--text-3); }

/* ════════════════════════════════
   RESPONSIIVISUUS
════════════════════════════════ */
@media (max-width: 1024px) {
  .opas__grid, .konsultointi__grid { grid-template-columns: 1fr; gap: 3rem; }
  .opas__visual { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter__box { grid-template-columns: 1fr; }
  .newsletter__form, .newsletter__fine { grid-column: 1; }
  .polut__grid { grid-template-columns: repeat(2, 1fr); }
  .sarjat__grid { grid-template-columns: 1fr 1fr; }
  .yhteiso__box { grid-template-columns: 1fr; gap: 3rem; padding: 3rem; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .videot__grid, .blogi__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .newsletter__form { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .polut__grid { grid-template-columns: 1fr 1fr; }
  .sarjat__grid { grid-template-columns: 1fr; }
  .nyt__grid { grid-template-columns: 1fr 1fr; }
  .nyt__card--wide { grid-column: 1 / -1; flex-direction: column; }
  .yhteiso__box { padding: 2rem; }
  .featured-video__play-btn::before { width: 56px; height: 56px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .konsultointi__options { flex-direction: column; }
  .newsletter__box { padding: 2rem; }
  .polut__grid { grid-template-columns: 1fr; }
  .nyt__grid { grid-template-columns: 1fr; }
  .nyt__card--wide { flex-direction: column; }
  .yhteiso__box { padding: 1.75rem; }
}

/* ═══════════════════════════════════════
   LISÄYKSET — content.json -kentät
═══════════════════════════════════════ */

/* Nyt: päivitetty-meta */
.nyt__meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.nyt__meta [data-k="updated"] {
  color: var(--text-2);
  font-weight: 500;
}

/* Blogi: lede + osion otsikko + tuore-merkki */
.blogi__lede {
  max-width: 640px;
  margin: 0.5rem 0 2rem;
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.6;
}
.blogi__section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-3);
  margin: 0 0 1rem;
}
.blogi__card--fresh {
  position: relative;
}
.blogi__card--fresh::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2, #86efac);
  box-shadow: 0 0 0 4px rgba(134, 239, 172, 0.18);
}

/* Yhteisö: odotuslista */
.yhteiso__waitlist {
  margin-top: 1.5rem;
}
.yhteiso__waitlist[hidden],
.yhteiso__live[hidden] {
  display: none !important;
}
.yhteiso__waitlist-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-3);
  margin: 0 0 0.6rem;
}
.yhteiso__waitlist-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 480px;
  margin-bottom: 0.6rem;
}
.yhteiso__waitlist-form .newsletter__input {
  flex: 1 1 220px;
  min-width: 0;
}
.yhteiso__live {
  margin-top: 1.5rem;
}

/* Yhteisö: faktalista kortin sisällä */
.yhteiso__facts {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--border, rgba(255,255,255,0.08));
  padding-top: 1rem;
}
.yhteiso__facts li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}
.yhteiso__facts li::before {
  content: "·";
  position: absolute;
  left: 0.3rem;
  top: 0.25rem;
  color: var(--text-3);
  font-weight: 700;
}

@media (max-width: 640px) {
  .yhteiso__waitlist-form { flex-direction: column; }
  .yhteiso__waitlist-form .btn { width: 100%; }
}

/* ═══════════ KUITUSEN GEAR ═══════════ */
.gear { padding: 6rem 0; background: var(--bg, #0e1013); }
.gear__sub { margin-top: .75rem; color: var(--text-muted, rgba(255,255,255,.6)); font-size: 1.05rem; max-width: 52ch; }
.gear__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gear__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.gear__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.gear__card-thumb {
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gear__card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gear__card-placeholder { font-size: 2.5rem; opacity: .35; }
.gear__card-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.gear__card-name { font-size: 1.15rem; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.gear__card-desc { margin: 0; color: var(--text-muted, rgba(255,255,255,.65)); font-size: .95rem; line-height: 1.55; }
.gear__card-link { margin-top: auto; color: var(--green-2, #8fd694); font-weight: 500; text-decoration: none; font-size: .95rem; }
.gear__card-link:hover { text-decoration: underline; }
.gear__fine {
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--text-muted, rgba(255,255,255,.5));
  max-width: 60ch;
}

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

/* ═══════════ ALOITUSPAKETTI ═══════════ */
.aloituspaketti { padding: 5rem 0; }
.aloituspaketti__card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 3rem 3rem 2.25rem;
}
.aloituspaketti__head { margin-bottom: 2rem; }
.aloituspaketti__tag {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-2, #8fd694);
  border: 1px solid rgba(143,214,148,.4);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.aloituspaketti__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}
.aloituspaketti__sub { margin: 0; color: var(--text-muted, rgba(255,255,255,.7)); font-size: 1.05rem; max-width: 56ch; }

.aloituspaketti__items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: .75rem;
}
.aloituspaketti__items li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
}
.aloituspaketti__item-label { font-weight: 600; font-size: 1rem; }
.aloituspaketti__item-sub { font-size: .9rem; color: var(--text-muted, rgba(255,255,255,.6)); }

.aloituspaketti__value { font-size: 1.05rem; margin: 0 0 .75rem; font-weight: 500; }
.aloituspaketti__reason { margin: 0 0 2rem; color: var(--text-muted, rgba(255,255,255,.7)); line-height: 1.6; }

.aloituspaketti__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.aloituspaketti__price { display: flex; flex-direction: column; gap: .15rem; }
.aloituspaketti__price-amount { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.01em; }
.aloituspaketti__price-label { font-size: .85rem; color: var(--text-muted, rgba(255,255,255,.6)); }

.aloituspaketti__micro {
  margin: 1.25rem 0 0;
  font-size: .85rem;
  color: var(--text-muted, rgba(255,255,255,.5));
  text-align: right;
}

@media (max-width: 640px) {
  .aloituspaketti__card { padding: 2rem 1.5rem; }
  .aloituspaketti__foot { flex-direction: column; align-items: stretch; }
  .aloituspaketti__cta { width: 100%; text-align: center; }
  .aloituspaketti__micro { text-align: left; }
}

/* ═══════════ PALVELUT (B2B, kokemus, paikan päällä) ═══════════ */
.palvelu { padding: 6rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.palvelu__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.palvelu__sub { margin-top: .9rem; color: var(--text-muted, rgba(255,255,255,.7)); font-size: 1.1rem; line-height: 1.55; }
.palvelu__note { margin: 2rem auto 0; max-width: 60ch; text-align: center; color: var(--text-muted, rgba(255,255,255,.6)); font-size: .95rem; font-style: italic; }
.palvelu__note--inline { margin-top: 1rem; font-style: normal; font-size: 1rem; color: var(--text-muted, rgba(255,255,255,.7)); }
.palvelu__cta-row { text-align: center; margin-top: 2.5rem; }
.palvelu__h3 { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted, rgba(255,255,255,.55)); margin: 0 0 1rem; font-weight: 600; }
.palvelu__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.palvelu__list li { padding-left: 1.25rem; position: relative; line-height: 1.55; }
.palvelu__list li::before { content: "—"; position: absolute; left: 0; color: var(--green-2, #8fd694); }

/* Yhteistyö-osio */
.yhteistyo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 960px; margin: 0 auto; }
.yhteistyo__models { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.yhteistyo__models li {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  display: flex; flex-direction: column; gap: .2rem;
}
.yhteistyo__models strong { font-weight: 600; }
.yhteistyo__models span { font-size: .9rem; color: var(--text-muted, rgba(255,255,255,.6)); }

/* Pakettigridi */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pkg-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.pkg-card:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.pkg-card__head { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 1rem; }
.pkg-card__name { margin: 0 0 .5rem; font-family: 'Playfair Display', serif; font-size: 1.5rem; letter-spacing: -0.01em; }
.pkg-card__price-row { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.pkg-card__price { font-size: 1.4rem; font-weight: 700; }
.pkg-card__duration { font-size: .9rem; color: var(--text-muted, rgba(255,255,255,.6)); }
.pkg-card__group { display: flex; flex-direction: column; gap: .5rem; }
.pkg-card__label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-2, #8fd694); font-weight: 600; }
.pkg-card__label--muted { color: var(--text-muted, rgba(255,255,255,.45)); }
.pkg-card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.pkg-card__list li { padding-left: 1.1rem; position: relative; line-height: 1.5; font-size: .95rem; }
.pkg-card__list--inc li::before { content: "+"; position: absolute; left: 0; color: var(--green-2, #8fd694); font-weight: 700; }
.pkg-card__list--exc li { color: var(--text-muted, rgba(255,255,255,.5)); }
.pkg-card__list--exc li::before { content: "−"; position: absolute; left: 0; color: rgba(255,255,255,.3); }

@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .yhteistyo__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
