:root {
  --text: #1a202c;
  --muted: #718096;
  --bg: #fff;
  --bg-alt: #f7fafc;
  --accent: #255fdd;
  --accent-hover: #1a4fc9;
  --accent-light: #dbeafe;
  --dark: #1a202c;
  --border: #e2e8f0;
  --radius: 12px;
  --text-width: 65ch;
}

* { box-sizing: border-box; }

html { font-size: 18px; }

body {
  font: 1rem/1.65 'DM Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
}

a { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: .85rem 2.25rem;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1.0625rem;
  transition: background .2s;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-primary-light {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  padding: .85rem 2.25rem;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1.0625rem;
  transition: opacity .2s;
}
.btn-primary-light:hover { opacity: .9; }

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 100;
}
.site-header-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: none;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.site-logo img {
  display: block;
  border-radius: 6px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}
.site-nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: .4rem .6rem;
}
.site-nav a:hover { color: var(--accent); }
.site-nav-cta {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 999px;
  transition: background .2s, color .2s !important;
}
.site-nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem;
  margin-left: auto;
  color: var(--muted);
  line-height: 1;
}

/* ── MAIN ── */
main { max-width: none; margin: 0; padding: 0; }

/* ── SHARED SECTION LAYOUT ── */
.home-section-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.home-section-inner--narrow {
  max-width: 800px;
  text-align: center;
}

/* ── HERO ── */
.home-hero {
  background: var(--dark);
  background-image: url('/img/hero-bg.jpg');
  background-size: cover;
  background-position: 58% 18%;
  background-repeat: no-repeat;
  position: relative;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 44, 0.65);
}
.home-hero-inner { position: relative; }
.home-hero-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 7rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-hero-dashboard {
  margin-top: 1rem;
  margin-bottom: -400px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  align-self: center;
}
.home-hero-dashboard img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin: 0 0 1.5rem;
  max-width: 26ch;
}
.hero-h1-sub {
  font-size: 0.58em;
  font-weight: 400;
  opacity: 0.75;
  display: block;
  margin-top: .35em;
  letter-spacing: .01em;
  color: #fff;
}
.hero-lead {
  font-size: 1.125rem;
  color: #e2e8f0;
  max-width: 46ch;
  margin: 0 0 2rem;
}
.btn-hero {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: .85rem 2.25rem;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1.0625rem;
  transition: background .2s;
  margin-bottom: 1.5rem;
}
.btn-hero:hover { background: var(--accent-hover); color: #fff; }
.hero-badge {
  font-size: 0.875rem;
  color: #f1f5f9;
  margin: 0;
}

/* ── MENTORS ── */
.home-mentors { background: var(--bg-alt); }
.home-mentors h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin: 0 0 2.5rem;
}

/* ── MENTOR CAROUSEL ── */
.mentor-carousel-section { background: var(--bg-alt); padding: 3.5rem 0; overflow: hidden; }
.mentor-carousel-header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.mentor-carousel-header h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin: 0; }
.mentor-carousel-header a { font-size: .875rem; color: var(--accent); white-space: nowrap; }
.mentor-carousel-wrap { position: relative; }
.mentor-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .25rem 1.5rem 1rem;
  /* bleed to edges */
  margin: 0 -1.5rem;
}
.mentor-carousel::-webkit-scrollbar { display: none; }
.mentor-carousel .mentor-card {
  flex: 0 0 196px;
  scroll-snap-align: start;
}
/* fade edges */
.mentor-carousel-wrap::before,
.mentor-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 1rem;
  width: 1.25rem;
  z-index: 1;
  pointer-events: none;
}
.mentor-carousel-wrap::before { left: -1.5rem;  background: linear-gradient(to right, var(--carousel-fade, #f7fafc), transparent); }
.mentor-carousel-wrap::after  { right: -1.5rem; background: linear-gradient(to left,  var(--carousel-fade, #f7fafc), transparent); }
/* scroll buttons */
.mc-btn {
  position: absolute;
  top: 50%; transform: translateY(calc(-50% - .5rem));
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: box-shadow .15s;
}
.mc-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.mc-btn--prev { left: .25rem; }
.mc-btn--next { right: .25rem; }
.mentor-carousel-footer { text-align: center; margin-top: 1.75rem; }
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.mentor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mentor-photo-link { display: block; }
.mentor-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .3s;
}
.mentor-card:hover .mentor-photo img { transform: scale(1.03); }
.mentor-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mentor-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .35rem;
  color: var(--text);
}
.mentor-title {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.4;
  flex: 1;
}
.mentor-btn {
  display: block;
  background: var(--dark);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  transition: background .2s;
}
.mentor-btn:hover { background: #2d3748; color: #fff; }

/* ── HOW IT WORKS ── */
.home-how { background: var(--bg-alt); }
.home-how h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin: 0 0 3rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step { display: flex; gap: 1.25rem; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 1.125rem;
  margin: .2rem 0 .5rem;
  font-family: 'DM Sans', Arial, sans-serif;
}
.step-body p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* ── TARGET AUDIENCE ── */
.home-audience { background: #fff; }
.home-audience h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin: 0 0 2.5rem;
}
.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.audience-lead {
  font-size: 1.125rem;
  margin: .5rem 0 1.75rem;
  line-height: 1.5;
}
.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audience-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.audience-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23255fdd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  margin-top: .2em;
}
.audience-list li p {
  margin: 0;
  font-size: 1rem;
}
.audience-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── VALUE PROP ── */
.home-value { background: var(--bg-alt); }
.home-value h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1.25rem;
}
.home-value p {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

/* ── WHY NORDIC MENTOR ── */
.home-why {
  background: var(--dark);
  color: #fff;
}
.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #90cdf4;
  margin: 0 0 1rem;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-why h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  color: #fff;
  margin: 0 0 1rem;
}
.why-lead {
  font-size: 1rem;
  color: #a0aec0;
  margin: 0 0 2rem;
  line-height: 1.7;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.why-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
}
.why-list li::before {
  content: '✓';
  color: #63b3ed;
  font-weight: 700;
  flex-shrink: 0;
}
.why-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── CTA SECTION ── */
.home-cta { background: var(--accent); }
.home-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin: 0 0 1rem;
}
.home-cta p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 2rem;
}

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--dark);
  color: #a0aec0;
  font-size: 0.9375rem;
  border-top: none;
}
.footer-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.footer-col-main p {
  margin: 0 0 1.25rem;
  color: #a0aec0;
  max-width: 30ch;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-links a:hover { color: #fff; }
.footer-cta {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.04);
}
.footer-cta__heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff !important;
  margin: 0 0 1rem !important;
  max-width: none !important;
}
.footer-cta__btn {
  display: inline-block;
  padding: .6rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: .9375rem;
  text-decoration: none;
  transition: background .2s;
}
.footer-cta__btn:hover { background: var(--accent-hover); color: #fff; }
.footer-copy {
  font-size: 0.875rem;
  color: #718096;
  margin: 0 !important;
}
.footer-col-services strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #718096;
  margin-bottom: .9rem;
}
.footer-col-services ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-col-services ul li a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-col-services ul li a:hover { color: #fff; }
.footer-mentor-cta {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-mentor-cta:hover { text-decoration: underline; }

/* ── NOT FOUND ── */
.not-found-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.not-found h1 { font-size: 2rem; margin: 0 0 1rem; }

/* ── FORM STATUS ── */
.form-status {
  margin: 1rem 0 0;
  padding: .6rem .8rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  display: none;
}
.form-status.sending,
.form-status.ok,
.form-status.err { display: block; }
.form-status.sending { color: var(--muted); }
.form-status.ok      { color: #166534; background: #f0fdf4; }
.form-status.err     { color: #b42318; background: #fef2f2; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.page-hero-inner--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}
.page-hero-inner--center .hero-sub {
  align-self: center;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin: 0 0 1.25rem;
}
.page-hero .hero-sub {
  font-size: 1.125rem;
  color: #a0aec0;
  max-width: 52ch;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.page-hero-text { display: flex; flex-direction: column; }
.page-hero-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

/* ── PAGE CONTENT SECTIONS ── */
.page-section { }
.page-section-inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.page-section-inner--narrow {
  max-width: 800px;
  text-align: center;
}
.page-section-inner h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  margin: 0 0 2rem;
}

/* ── FORMS ── */
.nm-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.nm-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
}
.nm-form input,
.nm-form textarea,
.nm-form select {
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .9375rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  width: 100%;
}
.nm-form input:focus,
.nm-form textarea:focus,
.nm-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: transparent;
}
.nm-form textarea { min-height: 120px; resize: vertical; }
.nm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nm-radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nm-radio-group label {
  flex-direction: row;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  cursor: pointer;
}
.nm-radio-group input[type="radio"] { width: auto; }
.btn-form {
  align-self: flex-start;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: .85rem 2.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  transition: background .2s;
}
.btn-form:hover { background: var(--accent-hover); }

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-question .faq-icon {
  font-size: 1.375rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1rem 1.25rem 0;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.7;
}
.faq-answer p { margin: 0 0 .75rem; }
.faq-answer p:last-child { margin: 0; }
.faq-bullets { margin: .5rem 0 0; padding-left: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.faq-bullets li { font-size: .9375rem; line-height: 1.6; color: var(--muted); }
.faq-bullets li strong { color: var(--muted); font-weight: 600; }
.faq-item.open .faq-answer { display: block; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--text);
  font-style: italic;
  font-size: .9375rem;
  line-height: 1.7;
}
.testimonial-author {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── TIETOA MEISTÄ ── */
.meista-story { background: #fff; }
.meista-quote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.meista-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.founder-card {}
.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 3/4;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.founder-name a {
  display: inline-flex;
  align-items: center;
}
.founder-name img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.founder-bio {
  margin: .5rem 0 0;
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--muted);
}
.meista-mission { background: var(--bg-alt); }
.meista-mission h2 { max-width: 22ch; }
.meista-mission p { max-width: 60ch; font-size: 1rem; margin: 0 0 1rem; }

/* ── YRITYKSILLE ── */
.yrityksille-hero-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 1.5rem;
}
.yrityksille-tool { background: #fff; }
.section-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 .6rem; }

/* ── HOME METRICS ── */
.home-metrics { background: #fff; padding-top: calc(4rem + 400px); padding-bottom: 1rem; }
.metrics-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.metrics-header h2 { margin: 0 0 .9rem; }
.metrics-header p { color: var(--muted); font-size: 1.0625rem; margin: 0; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.metric-card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s;
}
.metric-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.metric-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.metric-tag {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}
.metric-value { font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--dark); line-height: 1; }
.metric-value-sub { font-size: 1.375rem; font-weight: 500; color: var(--muted); }
.metric-value--accent { color: var(--accent); }
.metric-extra { height: 2.25rem; display: flex; align-items: center; margin: 1rem 0 .25rem; }
.metric-bar { width: 100%; height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.metric-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #4f8cff); }
.metric-pill {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  padding: .3rem .7rem;
  border-radius: 6px;
}
.metric-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--text); margin: .9rem 0 .5rem; }
.metric-card p { font-size: .9375rem; color: var(--muted); line-height: 1.6; margin: 0; }
.metrics-footnote { text-align: center; font-size: .75rem; color: var(--muted); margin: 2.5rem 0 0; }
.tool-intro { color: var(--muted); margin: .5rem 0 2rem; max-width: 44ch; }
.tool-features { display: flex; flex-direction: column; gap: 1.25rem; }
.tool-feature { display: flex; gap: 1rem; align-items: flex-start; }
.tool-feature-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.tool-feature-body strong { display: block; font-size: .9375rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; }
.tool-feature-body p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.55; }
.tool-header { max-width: 44ch; margin-bottom: 2.5rem; }
.tool-header h2 { margin: 0 0 .75rem; }
.tool-header p { color: var(--muted); margin: 0; }
.tool-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.tool-card { grid-column: span 2; }
.tool-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.75rem;
  background: #fff;
}
.tool-card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tool-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 .6rem;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text);
}
.tool-card p { color: var(--muted); font-size: .9375rem; margin: 0; line-height: 1.6; }
/* ── INTEGRATIONS ── */
.integrations-section { background: #fff; }
.integrations-inner { text-align: center; }
.integrations-inner h2 { margin: 0 0 .75rem; }
.integrations-inner > p { color: var(--muted); max-width: 50ch; margin: 0 auto 3rem; }
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.integration-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--border);
}
.integration-cell:last-child { border-right: none; }
.integration-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.integration-cell img.integration-logo[alt="Workday"] {
  width: 120px;
  height: 48px;
}
.integration-cell span {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
}

.yrityksille-handbooks { background: var(--bg-alt); }
.handbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.handbook-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.handbook-cover img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top; }
.handbook-info {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.handbook-title {
  font-weight: 700;
  font-size: .9375rem;
  margin: 0 0 .75rem;
  text-transform: capitalize;
}
.handbook-link {
  margin-top: auto;
  display: inline-block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.handbook-link:hover { text-decoration: underline; }
.yrityksille-pricing { background: var(--bg-alt); }
.pricing-header { max-width: 52ch; margin-bottom: 3rem; }
.pricing-header h2 { margin: 0 0 .75rem; }
.pricing-header p { color: var(--muted); margin: 0; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.pricing-tiers { display: flex; flex-direction: column; }
.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.pricing-tier:last-child { border-bottom: none; }
.pricing-tier:hover { background: var(--bg-alt); }
.pricing-tier--highlight {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
}
.pricing-tier--highlight:hover { background: #d1e3fd; }
.pricing-tier-range { display: flex; align-items: center; gap: .75rem; }
.tier-label { font-weight: 500; font-size: 1rem; color: var(--text); }
.tier-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: .2rem .6rem;
  border-radius: 20px;
}
.pricing-tier-price { display: flex; align-items: baseline; gap: .25rem; }
.tier-amount { font-size: 1.375rem; font-weight: 700; color: var(--accent); }
.tier-period { font-size: .875rem; color: var(--muted); }
.pricing-includes {
  padding: 1.75rem 2rem;
  background: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.pricing-includes-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a0aec0;
  margin: 0 0 .75rem;
  white-space: nowrap;
}
.pricing-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
}
.pricing-includes-list li {
  font-size: .9375rem;
  color: #e2e8f0;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-note {
  font-size: .8125rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
  line-height: 1.6;
}
.yrityksille-why { background: var(--dark); }
.yrityksille-why-header {
  max-width: 52ch;
  margin: 0 0 3rem;
}
.yrityksille-why-header h2 { color: #fff; margin: 0 0 .75rem; }
.yrityksille-why-header p { color: #a0aec0; margin: 0; }
.why-mentorship-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.why-mentorship-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-mentorship-pillars li {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: #cbd5e0;
  font-weight: 500;
  font-size: .95rem;
}
.why-mentorship-pillars li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #818cf8;
  flex-shrink: 0;
}
.why-mentorship-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(129,140,248,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card-pro {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.75rem;
}
.why-card-pro h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 .6rem;
  font-family: 'DM Sans', Arial, sans-serif;
}
.why-card-pro p {
  font-size: .9rem;
  color: #a0aec0;
  margin: 0;
  line-height: 1.6;
}
.yrityksille-form { background: var(--bg-alt); }
.demo-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.demo-form-left h2 { margin: 0 0 .75rem; }
.demo-form-lead {
  color: var(--muted);
  margin: 0 0 2rem;
  line-height: 1.7;
}
.demo-form-sub {
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.demo-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.demo-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--dark);
}
.demo-bullet-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.demo-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

/* ── VARAA ESITTELY ── */
.varaa-esittely-section { background: var(--bg-alt); }
.varaa-esittely-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.varaa-esittely-form h2 { margin: 0 0 .4rem; }
.varaa-esittely-form > p { color: var(--muted); margin: 0 0 1.75rem; }
.varaa-esittely-points h2 { margin: 0 0 1.75rem; }
.esittely-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.esittely-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}
.esittely-list li strong { display: block; margin-bottom: .25rem; }
.esittely-list li p { color: var(--muted); margin: 0; font-size: .9375rem; }
@media (max-width: 900px) {
  .varaa-esittely-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── LÖYDÄ MENTORI ── */
.loyda-hero { background: var(--dark); }
.loyda-hero .page-hero-inner { padding-bottom: 3rem; }
.loyda-how { background: #fff; }
.loyda-form-section { background: var(--bg-alt); }
.loyda-mentors { background: var(--bg-alt); }
.loyda-trust { background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.trust-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.trust-card h3 { font-size: 1rem; margin: 0 0 .5rem; }
.trust-card p { font-size: .9375rem; color: var(--muted); margin: 0; }
.loyda-testimonials { background: var(--bg-alt); }
.loyda-mission { background: var(--dark); color: #fff; }
.loyda-mission h2 { color: #fff; font-size: clamp(1.375rem, 2.5vw, 2rem); }
.loyda-mission p { color: #a0aec0; max-width: 52ch; margin: 0 0 1rem; font-size: 1rem; }
.loyda-cta-wrap { margin-top: 2rem; }

/* ── MENTOREILLE ── */
.mentoreille-hero { background: var(--dark); }
.mentoreille-hero .page-hero-inner--center { padding: 6rem 1.5rem; }
.mentoreille-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.mentoreille-hero .hero-sub { margin: 0 auto 2rem; }
.mentoreille-form-section { background: #fff; }
.mentoreille-badges { background: var(--bg-alt); }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.badge-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
}
.badge-card::before {
  content: '✓';
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.mentoreille-mission { background: #fff; }
.mentoreille-why { background: var(--bg-alt); }
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.why-card h3 { font-size: 1.0625rem; margin: 0 0 .5rem; }
.why-card p { font-size: .9375rem; color: var(--muted); margin: 0; line-height: 1.6; }
.mentoreille-roles { background: #fff; }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.role-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
}
.role-card h3 { font-size: .9375rem; font-weight: 700; margin: 0 0 .35rem; color: var(--accent); }
.role-card p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── URA FOR WHOM ── */
.ura-for-whom { background: var(--dark); }
.ura-for-whom h2 { color: #fff; margin-bottom: 2.5rem; }
.ura-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.ura-role-card {
  background: var(--dark);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ura-role-num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
}
.ura-role-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
}
.ura-role-card p {
  font-size: .9375rem;
  color: #a0aec0;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .ura-roles-grid { grid-template-columns: 1fr; }
}
.mentoreille-process { background: var(--bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.process-step { text-align: center; }
.process-step img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}
.process-step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  margin: 0 auto .75rem;
}
.process-step h3 { font-size: 1rem; margin: 0 0 .5rem; }
.process-step p { font-size: .875rem; color: var(--muted); margin: 0; }
.mentoreille-cta-section { background: #fff; }
.mentoreille-faq { background: var(--bg-alt); }

/* ── MENTORI ARTICLE ── */
.mentori-hero { background: var(--dark); }
.mentori-toc { background: var(--bg-alt); }
.mentori-toc-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  columns: 2;
}
.toc-list li a {
  font-size: .9375rem;
  color: var(--accent);
  text-decoration: none;
  line-height: 1.6;
}
.toc-list li a:hover { text-decoration: underline; }
.mentori-article { background: #fff; }
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.article-body h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.125rem; margin: 1.75rem 0 .75rem; }
.article-body p { margin: 0 0 1rem; line-height: 1.7; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin: 0 0 1rem; }
.article-body ul li, .article-body ol li { margin-bottom: .5rem; line-height: 1.6; font-size: .9375rem; }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.article-cta-box {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.article-cta-box h3 { color: #fff; font-size: 1.25rem; margin: 0 0 .75rem; }
.article-cta-box p { color: rgba(255,255,255,.85); margin: 0 0 1.25rem; font-size: .9375rem; }
.mentori-mentors { background: var(--bg-alt); }
.mentori-cta { background: var(--accent); }
.mentori-cta h2 { color: #fff; }
.mentori-cta p { color: rgba(255,255,255,.85); }
.mentori-faq { background: var(--bg-alt); }
.mentori-process { background: var(--bg-alt); }

/* ── MENTOR PROFILE ── */
.mp-hero { background: var(--dark); padding: 2.75rem 0 2.5rem; }
.mp-hero-grid { max-width: 1040px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 155px 1fr 290px; gap: 0 2rem; align-items: start; }

/* Left column: photo on top, badges below */
.mp-photo-col { display: flex; flex-direction: column; gap: 1.1rem; }
.mp-photo { width: 155px; border-radius: 10px; overflow: hidden; aspect-ratio: 4/5; }
.mp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.mp-photo-badges { display: flex; flex-direction: column; gap: .55rem; }
.mp-photo-badge { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.75); line-height: 1.35; }
.mp-photo-badge svg { flex-shrink: 0; opacity: .65; }

/* Middle info column */
.mp-info { color: #fff; padding-top: .1rem; }
.mp-breadcrumb { display: inline-flex; align-items: center; gap: .35rem; font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .6rem; }
.mp-breadcrumb::before { content: '›'; font-size: 1rem; line-height: 1; }
.mp-info h1 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 0 0 .35rem; color: #fff; line-height: 1.1; }
.mp-info-subtitle { font-size: .9375rem; color: rgba(255,255,255,.6); margin: 0 0 0; }
.mp-info-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 1.4rem 0 1.1rem; }
.mp-info-skills-label { font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 0 0 .55rem; }
.mp-hero-skills { display: flex; flex-wrap: wrap; gap: .4rem; }
.mp-hero-skill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; padding: .28rem .8rem; font-size: .8rem; color: rgba(255,255,255,.8); }
.mp-hero-skill--more { background: transparent; border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.38); }

/* Right contact card */
.mp-cta-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; }
.mp-cta-card h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 .4rem; color: var(--dark); }
.mp-cta-card > p { font-size: .875rem; color: #4a5568; margin: 0 0 1.1rem; line-height: 1.55; }
.mp-cta-card .btn-form { display: block; width: 100%; text-align: center; text-decoration: none; box-sizing: border-box; }
.mp-cta-no-commitment { font-size: .72rem; color: var(--muted); text-align: center; margin: .6rem 0 0; }

/* Body */
.mp-body { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.mp-section { margin-bottom: 2.75rem; }
.mp-section:last-child { margin-bottom: 0; }
.mp-section h2 { font-size: 1.375rem; font-weight: 700; margin: 0 0 1rem; color: var(--dark); }
.mp-section p { line-height: 1.75; color: #4a5568; margin: 0 0 .75rem; }
.mp-section p:last-child { margin-bottom: 0; }
.mp-section ul { padding-left: 1.25rem; margin: 0 0 .75rem; }
.mp-section ul li { line-height: 1.65; color: #4a5568; margin-bottom: .4rem; }

/* Skill pills in body */
.mp-skills { display: flex; flex-wrap: wrap; gap: .5rem; }
.mp-skill { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: .35rem .9rem; font-size: .875rem; color: var(--text); font-weight: 500; }

/* Highlights checkmark list */
.mp-highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.mp-highlights li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem; color: #4a5568; line-height: 1.6; }
.mp-highlights li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* "Valmis aloittamaan?" banner */
.mp-ready-banner { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.75rem; display: flex; align-items: center; gap: 1.25rem; background: #fff; }
.mp-ready-icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; color: var(--accent); }
.mp-ready-text { flex: 1; }
.mp-ready-text strong { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.mp-ready-text span { font-size: .875rem; color: #4a5568; }
.mp-ready-banner .btn-primary { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 900px) {
  .mp-hero-grid { grid-template-columns: 130px 1fr; }
  .mp-cta-card { grid-column: 1 / -1; margin-top: 1.5rem; }
  .mp-photo { width: 130px; }
}
@media (max-width: 640px) {
  .mp-hero-grid { grid-template-columns: 1fr; }
  .mp-photo { width: 110px; }
  .mp-ready-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .mp-ready-banner .btn-primary { width: 100%; text-align: center; }
}

/* ── SERVICE PAGES ── */
.service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.service-list li { padding-left: 1.4rem; position: relative; line-height: 1.5; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.reasons-article { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2rem; }
.reason-article-item { border-left: 3px solid var(--accent); padding-left: 1.5rem; }
.reason-article-item h3 { font-size: 1.125rem; margin: 0 0 .75rem; color: var(--dark); }
.reason-article-item p { margin: 0 0 .75rem; line-height: 1.7; font-size: .9375rem; color: #4a5568; }
.reason-article-item p:last-child { margin-bottom: 0; }
.reason-article-item ul { padding-left: 1.25rem; margin: .5rem 0 .75rem; }
.reason-article-item ul li { margin-bottom: .4rem; font-size: .9375rem; color: #4a5568; line-height: 1.6; }

.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2rem; }
.reasons-grid--compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.reason-card { background: var(--bg-alt); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.reason-num { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.reason-card h3 { font-size: 1rem; margin-bottom: .6rem; color: var(--dark); }
.reason-card p { font-size: .9375rem; color: #4a5568; margin: 0; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 2rem; }
  .why-image { order: -1; }
  .why-image img { max-height: 340px; object-fit: cover; }
  .page-hero-inner { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .page-hero-inner--center { padding: 4rem 1.5rem; }
  .yrityksille-tool-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .yrityksille-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-mentorship-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-mentorship-cards { grid-template-columns: 1fr; }
  .demo-form-inner { grid-template-columns: 1fr; gap: 3rem; }
  .meista-founders { grid-template-columns: 1fr; gap: 2.5rem; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .audience-layout { grid-template-columns: 1fr; gap: 2rem; }
  .audience-image { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .handbooks-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .badges-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .tool-cards { grid-template-columns: repeat(2, 1fr); }
  .tool-card { grid-column: span 1; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .integration-cell { border-bottom: 1px solid var(--border); }
  .integration-cell:nth-child(3n) { border-right: none; }
  .metrics-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav-toggle { display: block; }
  .home-hero-inner { padding: 4rem 1.5rem 2rem; }
  .home-hero-dashboard { margin-bottom: -200px; }
  .home-metrics { padding-top: calc(3rem + 200px); }
  .metrics-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .metrics-header { margin-bottom: 2.5rem; }
  .home-section-inner { padding: 3.5rem 1.5rem; }
  .page-section-inner { padding: 3.5rem 1.5rem; }
  .mentor-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .handbooks-grid { grid-template-columns: 1fr; }
  .nm-form-row { grid-template-columns: 1fr; }
  .toc-list { columns: 1; }
  .article-body { padding: 3rem 1.5rem; }
  .roles-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .tool-cards { grid-template-columns: 1fr; }
  .tool-card { padding: 1.5rem; }
  .integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .integration-cell {
    flex: 0 1 calc(50% - .5rem);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1rem;
  }
  .integration-cell:last-child { border-right: 1px solid var(--border); }
  .pricing-tier { padding: 1.1rem 1.5rem; flex-wrap: wrap; gap: .5rem; }
  .pricing-includes { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .pricing-includes-title { white-space: normal; }
  .pricing-includes-list { gap: .6rem; }
}

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

/* ── ARTICLE EXTRAS ── */

/* Mid-article CTA block — full-width gray section breaking out of the 800px column */
.mentori-article { overflow-x: clip; }
.article-cta-block {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--bg-alt);
  padding: 3rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.article-cta-block h2,
.article-cta-block h3 {
  margin: 0 auto .75rem;
  max-width: 600px;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  padding-top: 0;
}
.article-cta-block p {
  margin: 0 auto 1.5rem;
  max-width: 560px;
  color: var(--muted);
}
.article-cta-block > a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: .85rem 2.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s;
}
.article-cta-block > a:hover { background: var(--accent-hover); color: #fff; }
.cta-note {
  font-size: .85rem;
  margin: .4rem auto 0 !important;
  color: var(--muted);
  opacity: .85;
  font-style: normal;
}

.article-figure { margin: 1.75rem 0; }
.article-figure img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.article-quote { border-left: 3px solid var(--accent); margin: 1.5rem 0; padding: .75rem 1.25rem; font-size: 1.125rem; font-style: italic; color: var(--dark); background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0; }
.knowledge-comparison { margin: 1.5rem 0 2rem; overflow-x: auto; }
.knowledge-comparison table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.knowledge-comparison th { background: var(--dark); color: #fff; padding: .65rem 1rem; text-align: left; font-weight: 600; }
.knowledge-comparison td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.knowledge-comparison tr:last-child td { border-bottom: none; }
.knowledge-comparison td:first-child { font-weight: 600; white-space: nowrap; color: var(--muted); }

/* ── PROCESS STEPS (3-col) ── */
.process-steps-section {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--bg-alt);
  padding: 4rem 1.5rem;
  box-sizing: border-box;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.process-steps-inner {
  max-width: 960px;
  margin: 0 auto;
}
.process-steps-section h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin: 0 0 .75rem;
  padding-top: 0;
}
.process-steps-section p { margin: 0; }
.process-steps-section .process-steps-lead {
  color: var(--muted);
  margin: 0 auto 2.5rem;
  max-width: 560px;
  text-align: center;
}
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.process-step img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-size: 1.0625rem;
  margin: 0 0 .5rem;
  color: var(--dark);
}
.process-step p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .process-steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── CHATGPT PRICING TABLE ── */
.chatgpt-pricing-table { margin: 1.25rem 0 1.5rem; overflow-x: auto; }
.chatgpt-pricing-table table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.chatgpt-pricing-table th { background: var(--dark); color: #fff; text-align: left; padding: .7rem 1rem; font-weight: 600; }
.chatgpt-pricing-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); }
.chatgpt-pricing-table tr:last-child td { border-bottom: none; }
.chatgpt-pricing-table tr.pricing-highlight td { background: var(--accent-light); font-weight: 600; }
.pricing-badge { display: inline-block; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .04em; padding: .15rem .55rem; border-radius: 20px; margin-left: .5rem; vertical-align: middle; }

/* ── LEGAL PAGES ── */
.legal-hero { background: var(--dark); padding: 3.5rem 0 3rem; }
.legal-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.legal-label { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 .75rem; }
.legal-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: #fff; margin: 0 0 1rem; line-height: 1.15; }
.legal-intro { font-size: 1.0625rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.7; }
.legal-body { background: #fff; padding: 3rem 0 4rem; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.legal-content h2 { font-size: 1.1875rem; margin: 2.5rem 0 .75rem; color: var(--dark); border-bottom: 1px solid var(--border); padding-bottom: .5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { line-height: 1.75; color: var(--text); margin: 0 0 1rem; }
.legal-content ul { padding-left: 1.25rem; margin: 0 0 1rem; display: flex; flex-direction: column; gap: .6rem; }
.legal-content li { line-height: 1.7; color: var(--text); }
.legal-pledge { background: var(--bg-alt); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin-top: 2.5rem; }
.legal-pledge p { margin: 0 0 .4rem; }
.legal-pledge p:last-child { margin: 0; }
.legal-cta { background: var(--dark); padding: 3.5rem 0; text-align: center; }
.legal-cta-inner { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.legal-cta h2 { color: #fff; font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin: 0 0 .75rem; }
.legal-cta p { color: rgba(255,255,255,.7); margin: 0 0 1.75rem; }

/* ── WHY NORDIC MENTOR ── */
.why-hero-badge { margin-bottom: 1.25rem; }
.why-hero-ctas { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.why-hero-ctas .btn-hero { align-self: center; margin-bottom: 0; }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  padding: .8rem 2.1rem;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1.0625rem;
  transition: border-color .2s, background .2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); color: #fff; }
.why-hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
}
.why-hero-trust li {
  font-size: .8125rem;
  font-weight: 600;
  color: #a0aec0;
  position: relative;
  padding-left: 1.35rem;
}
.why-hero-trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.shift-card { border-radius: 16px; padding: 2rem; }
.shift-card--old { background: var(--bg-alt); border: 1px solid var(--border); }
.shift-card--new { background: var(--dark); border: 1px solid var(--dark); }
.shift-card h3 { font-size: 1.125rem; margin: 0 0 1.5rem; }
.shift-card--old h3 { color: var(--text); }
.shift-card--new h3 { color: #fff; }
.shift-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.shift-list li { display: flex; align-items: flex-start; gap: .85rem; font-size: .9375rem; line-height: 1.6; }
.shift-card--old .shift-list li { color: var(--muted); }
.shift-card--old .shift-list li strong { color: var(--text); }
.shift-card--new .shift-list li { color: #a0aec0; }
.shift-card--new .shift-list li strong { color: #fff; }
.shift-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: .1rem;
}
.shift-icon--no { background: #fee2e2; color: #dc2626; }
.shift-icon--yes { background: rgba(74,222,128,0.15); color: #4ade80; }

.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.pillar-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--text); margin: 0 0 .6rem; }
.pillar-card p { font-size: .9375rem; color: var(--muted); line-height: 1.6; margin: 0; }

.why-compare-table th:not(:first-child), .why-compare-table td:not(:first-child) { text-align: center; }
.cmp { display: inline-block; font-size: .8125rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; }
.cmp--no { background: #fee2e2; color: #b91c1c; }
.cmp--partial { background: #fef3c7; color: #b45309; }
.cmp--yes { background: rgba(74,222,128,0.15); color: #15803d; }

.why-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.why-step-card { text-align: center; }
.why-step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto .9rem;
}
.why-step-card h3 { font-size: 1rem; margin: 0 0 .5rem; }
.why-step-card p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.6; }

.scorecard {
  position: relative;
  background: var(--dark);
  border: 1px solid #2d3748;
  border-radius: 24px;
  padding: 3rem;
  margin-top: 3rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.scorecard-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,95,221,0.35), transparent 70%);
  pointer-events: none;
}
.scorecard-inner {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: center;
}
.scorecard-pill {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #a0aec0;
  border: 1px solid #2d3748;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.scorecard-hero { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; margin-bottom: .75rem; }
.scorecard-hero-value { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.scorecard-left h3 { color: #fff; font-size: 1.0625rem; margin: 0 0 .9rem; }
.scorecard-left > p { color: #a0aec0; line-height: 1.7; margin: 0 0 1.75rem; }
.scorecard-takeaway {
  background: rgba(255,255,255,0.05);
  border: 1px solid #2d3748;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.scorecard-takeaway p { color: #e2e8f0; font-size: .9375rem; font-style: italic; line-height: 1.6; margin: 0; }
.scorecard-right { display: flex; flex-direction: column; gap: 1.75rem; }
.scorecard-outcome-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; }
.scorecard-outcome-head h3 { color: #fff; font-size: 1rem; font-weight: 600; margin: 0; }
.scorecard-score { font-size: 1.5rem; font-weight: 700; color: #5b8def; white-space: nowrap; }
.scorecard-score-sub { font-size: .9rem; font-weight: 500; color: #718096; }
.scorecard-bar { width: 100%; height: 8px; background: #2d3748; border-radius: 999px; overflow: hidden; margin-bottom: .9rem; }
.scorecard-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #5b8def); }
.scorecard-outcome > p { color: #a0aec0; font-size: .9375rem; line-height: 1.6; margin: 0; }
.scorecard-quote {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-top: 1px solid #2d3748;
  padding-top: 1.5rem;
}
.scorecard-quote-icon { flex-shrink: 0; opacity: .8; }
.scorecard-quote-text { color: #e2e8f0; font-size: .9375rem; font-style: italic; line-height: 1.6; margin: 0 0 .5rem; }
.scorecard-quote-attr { color: #718096; font-size: .8125rem; margin: 0; }
.scorecard-quote-attr strong { color: #cbd5e0; }

@media (max-width: 900px) {
  .shift-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .why-steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .scorecard-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .why-steps-grid { grid-template-columns: 1fr; }
  .why-hero-ctas { flex-direction: column; width: 100%; }
  .why-hero-ctas .btn-hero, .why-hero-ctas .btn-outline-light { width: 100%; text-align: center; }
  .scorecard { padding: 1.75rem; border-radius: 18px; }
}
