/* Kokkola landing page main-content styles.
   Header and footer have their own preserved stylesheets and are intentionally not targeted here. */

.kokkola-landing,
.kokkola-landing * { box-sizing: border-box; }

.kokkola-landing {
  --kok-ink: #183021;
  --kok-ink-soft: #445c4b;
  --kok-green: #17763a;
  --kok-green-dark: #0f5729;
  --kok-green-pale: #eef8f0;
  --kok-green-pale-2: #f7fbf7;
  --kok-line: #d6e7d9;
  --kok-cream: #fbfaf5;
  --kok-white: #ffffff;
  --kok-shadow: 0 18px 50px rgba(23, 70, 38, .09);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 20px 54px;
  color: var(--kok-ink);
  overflow: hidden;
}

.kokkola-landing a { text-underline-offset: 3px; }
.kokkola-landing img { max-width: 100%; height: auto; }

.kok-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid var(--kok-line);
  border-radius: 16px;
  background: var(--kok-white);
  color: #607166;
  font-size: 13px;
  line-height: 1.5;
}
.kok-breadcrumbs a { color: var(--kok-green-dark) !important; font-weight: 800; text-decoration: none !important; }
.kok-breadcrumbs a:hover,
.kok-breadcrumbs a:focus { text-decoration: underline !important; }
.kok-breadcrumb-sep { color: #8fa095; }

.kok-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 22px;
}
.kok-hero-main,
.kok-hero-guide {
  border: 1px solid var(--kok-line);
  border-radius: 30px;
  box-shadow: var(--kok-shadow);
}
.kok-hero-main {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 92% 12%, rgba(57, 154, 82, .12), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f7fcf8 58%, #eef8f0 100%);
}
.kok-hero-main::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -84px;
  bottom: -88px;
  border-radius: 50%;
  border: 34px solid rgba(24, 118, 58, .08);
  pointer-events: none;
}
.kok-eyebrow {
  margin: 0 0 12px;
  color: var(--kok-green);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.kok-h1 {
  max-width: 820px;
  margin: 0;
  color: #102619;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 900;
}
.kok-hero-lead {
  max-width: 810px;
  margin: 20px 0 0;
  color: #334b3a;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.72;
  font-weight: 600;
}
.kok-hero-note {
  max-width: 790px;
  margin: 12px 0 0;
  color: #53675a;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
}
.kok-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}
.kok-btn,
.kok-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 2px solid var(--kok-green);
  border-radius: 14px;
  color: #fff !important;
  background: var(--kok-green);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.kok-btn:hover,
.kok-btn:focus { background: var(--kok-green-dark); border-color: var(--kok-green-dark); color: #fff !important; }
.kok-btn-secondary,
.kok-btn-secondary:visited { background: #fff; color: var(--kok-green-dark) !important; }
.kok-btn-secondary:hover,
.kok-btn-secondary:focus { background: var(--kok-green-pale); color: #0a4520 !important; }

.kok-hero-guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--kok-ink);
  color: #fff;
}
.kok-guide-label {
  margin: 0 0 8px;
  color: #bde9c7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kok-guide-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
}
.kok-guide-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kok-guide-list li {
  position: relative;
  padding-left: 34px;
  color: #eaf5ed;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}
.kok-guide-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #dff5e4;
  color: var(--kok-green-dark);
  font-size: 11px;
  font-weight: 900;
}

.kok-image-card {
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--kok-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 70, 38, .07);
}
.kok-image-card picture,
.kok-image-card img { display: block; width: 100%; }
.kok-image-card figcaption {
  padding: 11px 16px 13px;
  color: #53675a;
  background: #fff;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.kok-section {
  margin: 0 0 22px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--kok-line);
  border-radius: 28px;
  background: var(--kok-white);
}
.kok-section-soft { background: var(--kok-green-pale-2); }
.kok-section-cream { background: var(--kok-cream); }
.kok-section-head { max-width: 860px; margin-bottom: 24px; }
.kok-section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.kok-kicker {
  margin: 0 0 8px;
  color: var(--kok-green);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.kok-h2 {
  margin: 0;
  color: #12291b;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -.028em;
  font-weight: 900;
}
.kok-h3 {
  margin: 0 0 10px;
  color: #15311f;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 900;
}
.kok-intro {
  margin: 12px 0 0;
  color: var(--kok-ink-soft);
  font-size: 16px;
  line-height: 1.78;
  font-weight: 550;
}
.kok-copy {
  margin: 0;
  color: #354d3b;
  font-size: 15.5px;
  line-height: 1.82;
  font-weight: 500;
}
.kok-copy + .kok-copy { margin-top: 13px; }

.kok-answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.kok-answer-card {
  padding: 19px;
  border: 1px solid #d8e9db;
  border-radius: 18px;
  background: #fff;
}
.kok-answer-term {
  display: block;
  margin-bottom: 7px;
  color: var(--kok-green-dark);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}
.kok-answer-definition {
  margin: 0;
  color: #455b4b;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 550;
}

.kok-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: start;
}
.kok-local-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.kok-local-points li {
  position: relative;
  padding-left: 25px;
  color: #354d3b;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}
.kok-local-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--kok-green);
  font-weight: 900;
}
.kok-local-aside {
  padding: 22px;
  border-radius: 22px;
  background: #173121;
  color: #fff;
}
.kok-local-aside .kok-h3 { color: #fff; }
.kok-local-aside p { margin: 0; color: #e3f0e7; font-size: 14px; line-height: 1.72; font-weight: 550; }
.kok-local-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.kok-local-tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: 12px;
  font-weight: 800;
}

.kok-brand-jump {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.kok-brand-jump a,
.kok-brand-jump a:visited {
  display: block;
  padding: 18px;
  border: 1px solid #d8e8da;
  border-radius: 18px;
  background: #fff;
  color: #173221 !important;
  text-decoration: none !important;
  transition: background .16s ease, border-color .16s ease;
}
.kok-brand-jump a:hover,
.kok-brand-jump a:focus { border-color: #7db68a; background: #f0f9f2; }
.kok-brand-jump strong { display: block; margin-bottom: 6px; color: var(--kok-green-dark); font-size: 18px; }
.kok-brand-jump span { display: block; color: #566b5b; font-size: 13.5px; line-height: 1.5; font-weight: 600; }

.kok-brand-list { display: grid; gap: 16px; }
.kok-brand {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid #d9e8db;
  border-radius: 22px;
  background: #fff;
}
.kok-brand-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.kok-brand-no {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--kok-green);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.kok-brand-name {
  margin: 0;
  color: #15321f;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}
.kok-brand-best {
  margin: 0;
  color: #617466;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kok-brand-body p {
  margin: 0;
  color: #354d3b;
  font-size: 15px;
  line-height: 1.78;
  font-weight: 500;
}
.kok-brand-body p + p { margin-top: 10px; }
.kok-brand-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.kok-brand-notes li {
  padding: 11px 12px;
  border: 1px solid #e0ece2;
  border-radius: 12px;
  background: #f8fbf8;
  color: #405846;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 550;
}
.kok-brand-notes strong { color: #1e4930; font-weight: 850; }
.kok-models {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}
.kok-model {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--kok-green-pale);
  color: #24502f;
  font-size: 12px;
  font-weight: 800;
}
.kok-text-link,
.kok-text-link:visited {
  display: inline-flex;
  margin-top: 14px;
  color: var(--kok-green-dark) !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline !important;
}

.kok-use-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.kok-use-card {
  padding: 19px;
  border: 1px solid #d8e8da;
  border-radius: 18px;
  background: #fff;
}
.kok-use-card .kok-h3 { font-size: 18px; }
.kok-use-card p { margin: 0; color: #4b6252; font-size: 14px; line-height: 1.68; font-weight: 550; }

.kok-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d8e8da;
  border-radius: 18px;
  background: #fff;
}
.kok-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
  color: #344d3b;
  font-size: 14px;
}
.kok-table th,
.kok-table td {
  padding: 14px 15px;
  border-bottom: 1px solid #e2ede4;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}
.kok-table th {
  background: #eff8f1;
  color: #183b24;
  font-weight: 900;
}
.kok-table tr:last-child td { border-bottom: 0; }
.kok-table strong { color: #173221; }

.kok-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kok-compare-card {
  padding: 22px;
  border: 1px solid #d8e8da;
  border-radius: 20px;
  background: #fff;
}
.kok-compare-card-accent { background: #eff8f1; border-color: #bcdcc2; }
.kok-compare-list {
  display: grid;
  gap: 9px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}
.kok-compare-list li {
  position: relative;
  padding-left: 23px;
  color: #405846;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}
.kok-compare-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--kok-green);
  font-weight: 900;
}

.kok-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.kok-check {
  padding: 17px 18px;
  border-left: 4px solid var(--kok-green);
  border-radius: 10px 16px 16px 10px;
  background: #fff;
}
.kok-check strong { display: block; margin-bottom: 4px; color: #173221; font-size: 15px; }
.kok-check span { color: #53695a; font-size: 13.5px; line-height: 1.6; font-weight: 550; }

.kok-keyword-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.kok-keyword-card {
  padding: 18px;
  border: 1px solid #d8e8da;
  border-radius: 18px;
  background: #fff;
}
.kok-keyword-card strong { display: block; margin-bottom: 7px; color: var(--kok-green-dark); font-size: 16px; }
.kok-keyword-card p { margin: 0; color: #4b6252; font-size: 13.5px; line-height: 1.65; font-weight: 550; }

.kok-faq { display: grid; gap: 10px; }
.kok-faq details {
  overflow: hidden;
  border: 1px solid #d7e8da;
  border-radius: 16px;
  background: #fff;
}
.kok-faq summary {
  position: relative;
  cursor: pointer;
  padding: 17px 50px 17px 18px;
  color: #183221;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
  list-style: none;
}
.kok-faq summary::-webkit-details-marker { display: none; }
.kok-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--kok-green);
  font-size: 24px;
  font-weight: 900;
}
.kok-faq details[open] summary::after { content: "–"; }
.kok-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: #455c4b;
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 550;
}

.kok-final {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid #cde3d1;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(238,248,240,.96), rgba(255,255,255,.98)),
    var(--kok-white);
  text-align: center;
  box-shadow: var(--kok-shadow);
}
.kok-final-inner { max-width: 820px; margin: 0 auto; }
.kok-final .kok-actions { justify-content: center; }
.kok-final p { margin: 13px auto 0; color: #425a49; font-size: 16px; line-height: 1.75; font-weight: 550; }

.kok-disclaimer {
  max-width: 980px;
  margin: 18px auto 0;
  color: #6a7b70;
  font-size: 12.5px;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1080px) {
  .kok-answer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kok-use-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .kok-keyword-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .kok-hero,
  .kok-local-grid { grid-template-columns: 1fr; }
  .kok-brand { grid-template-columns: 1fr; }
  .kok-brand-index { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .kok-brand-best { width: 100%; }
  .kok-brand-jump { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kok-brand-notes { grid-template-columns: 1fr; }
  .kok-use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .kokkola-landing { padding: 15px 12px 36px; }
  .kok-breadcrumbs { border-radius: 13px; padding: 10px 12px; }
  .kok-hero-main,
  .kok-hero-guide,
  .kok-section,
  .kok-final,
  .kok-image-card { border-radius: 20px; }
  .kok-hero-main,
  .kok-hero-guide,
  .kok-section { padding: 21px 16px; }
  .kok-h1 { font-size: clamp(32px, 10vw, 44px); }
  .kok-actions { align-items: stretch; }
  .kok-btn { width: 100%; }
  .kok-answer-grid,
  .kok-brand-jump,
  .kok-use-grid,
  .kok-compare,
  .kok-checklist,
  .kok-keyword-panel { grid-template-columns: 1fr; }
  .kok-brand { padding: 18px; gap: 16px; border-radius: 18px; }
  .kok-brand-name { font-size: 22px; }
  .kok-final { padding: 26px 16px; }
  .kok-faq summary { padding: 15px 46px 15px 15px; font-size: 15px; }
  .kok-faq p { padding: 0 15px 15px; }
}
