@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #152238;
  --navy-soft: #2b3a52;
  --terracotta: #c6693d;
  --terracotta-text: #a85530;
  /* Fjord, tillägg 2026-09-02. Primärfärg för knappar och länkar på digitala
     ytor (nadio.se och produktgränssnitten) — ersätter navy respektive
     terrakotta-text i den rollen. Navy behåller rubriker, mörka ytor och
     blir sekundärknapp. Terrakotta är kvar som ren accent-/ytdetalj och
     bär inte längre interaktiv text. Se 05_Styleguide_Nadio.html /
     11_Designsystem_Webb_Nadio.html för fullständig motivering. */
  --fjord: #3672aa;
  --fjord-text: #2f6293;
  --fjord-hover: #2e6191;
  --fjord-text-hover: #254c73;
  --dis: #f4f3f6;
  --line: #e7eaf0;
  --gray: #3a3a3a;
  --gray-mid: #6b6b63;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Public Sans', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--gray);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 42px;
}

.kicker {
  display: block;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: 14px;
}

/* Buttons */
.fk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Public Sans', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.fk-btn--primary {
  background: var(--fjord);
  color: #fff;
}

.fk-btn--primary:hover {
  background: var(--fjord-hover);
}

.fk-btn--white {
  background: #fff;
  color: var(--fjord-text);
}

.fk-btn--white:hover {
  background: #eceef4;
}

.fk-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid #4c5a76;
}

.fk-btn--outline-light:hover {
  border-color: #fff;
}

.fk-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}

.fk-btn--outline:hover {
  border-color: var(--navy);
}

.fk-link {
  font-weight: 700;
  font-size: 15px;
  color: var(--fjord-text);
  text-decoration: underline;
}

.fk-skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.15s ease;
}

.fk-skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fk-form-required-note {
  font-size: 13px;
  color: var(--gray-mid);
  margin: -8px 0 0;
}

.fk-legal-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.fk-legal-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 12px;
}

.fk-legal-content .fk-checklist li {
  color: var(--gray);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Header — 100% bredd, inget centrerat max-bredd-block */
.fk-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 86.4px;
  padding: 0 48px 0 40px;
}

.fk-nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fk-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.fk-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.fk-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fk-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.fk-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fk-header--bordered {
  border-bottom: 1px solid #cccccc;
}

.fk-logo img {
  height: 27px;
  width: auto;
  display: block;
}

.fk-header nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.fk-header nav a:not(.fk-btn) {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  margin: -8px 0;
}

.fk-header nav a:not(.fk-btn):hover {
  color: var(--fjord-text);
}

.fk-header nav a.is-active {
  color: var(--fjord-text);
}

.fk-sep {
  color: var(--line);
  font-size: 16px;
}

.fk-textsize-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fk-textsize-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Public Sans', sans-serif;
  border-radius: 6px;
  padding: 3px 9px;
  line-height: 1.4;
  font-size: 13px;
  cursor: pointer;
}

.fk-textsize-btn--lg {
  font-size: 15px;
}

.fk-textsize-btn--xl {
  font-size: 17px;
}

.fk-textsize-btn:hover {
  border-color: var(--navy);
}

.fk-textsize-btn[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Hero — 100% bredd, två fulla paneler (ca 1/3 text, 2/3 media) */
.fk-hero {
  display: flex;
  background: var(--navy);
  overflow: hidden;
}

.fk-hero-text-panel {
  flex: 0 0 34%;
  padding: 70px 48px;
  background: var(--navy-soft);
}

.fk-hero-media-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.fk-hero h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  margin-top: 0;
}

.fk-hero p {
  font-size: 17px;
  color: #c7cede;
  margin-top: 20px;
  line-height: 1.6;
}

.fk-hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.fk-video {
  position: relative;
  width: min(100%, 853px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1c1c1c;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}

.fk-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mörkblå ton (35%) så filmen smälter in mot navy-bakgrunden */
.fk-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 34, 56, 0.35);
  pointer-events: none;
}

/* Diskret men synlig pausknapp — krävs enligt WCAG 2.2.2 för rörligt innehåll som autospelas längre än 5s */
.fk-video-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 34, 56, 0.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.fk-video-toggle:hover {
  background: rgba(21, 34, 56, 0.8);
}

.fk-video-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Grått block — 100% bredd */
.fk-toolblock {
  background: var(--dis);
  padding: 109px 0;
  margin-top: 10px;
  text-align: center;
}

.fk-toolblock h2 {
  font-size: 28px;
}

.fk-toolblock p {
  font-size: 17px;
  color: var(--gray-mid);
  margin: 16px auto 0;
  max-width: 640px;
}

/* Section intro */
.fk-section {
  padding: 80px 0;
}

.fk-section--tight {
  padding: 56px 0;
}

.fk-section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin: 0 0 78px;
}

.fk-section-intro-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.fk-section-intro h2 {
  font-size: 32px;
  margin-top: 12px;
}

.fk-section-intro p {
  font-size: 17px;
  color: var(--gray-mid);
  margin-top: 16px;
}

/* Zigzag text+bild-rader */
.fk-module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dis);
  border-radius: 16px;
  overflow: hidden;
}

.fk-module-row + .fk-module-row {
  margin-top: 64px;
}

.fk-module-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fk-module-row h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.fk-module-desc {
  font-size: 16px;
  color: #42474d;
  line-height: 1.6;
}

.fk-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.fk-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray);
}

.fk-check {
  color: var(--terracotta);
  font-weight: 800;
  flex-shrink: 0;
}

.fk-module-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* Closing CTA */
.fk-closing {
  background: var(--navy);
  padding: 90px 0;
  text-align: center;
}

.fk-closing h2 {
  color: #fff;
  font-size: 34px;
  max-width: 600px;
  margin: 0 auto;
}

.fk-closing p {
  color: #c7cede;
  font-size: 17px;
  margin: 20px auto 0;
  max-width: 480px;
}

.fk-closing .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

/* Sidfot — 100% bredd */
.fk-footer {
  background: var(--navy-soft);
  padding: 64px 0;
}

.fk-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.fk-footer-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.fk-footer-brand p {
  font-size: 14px;
  color: #c7cede;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}

.fk-footer h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8d99b5;
  margin-bottom: 14px;
}

.fk-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fk-footer-links a {
  font-size: 15px;
  color: #c7cede;
  text-decoration: none;
  padding: 6px 0;
  margin: -6px 0;
}

.fk-footer-links a:hover {
  color: #fff;
}

.fk-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  margin: -6px 0;
}

.fk-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* FAQ / enklare undersidor */
.fk-faq-section {
  padding-top: 45px;
}

.fk-page-title {
  font-size: 36px;
  margin: 24px 0 40px;
}

.fk-faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.fk-lead {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 8px 0 32px;
}

.fk-faq-list h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.fk-faq-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.fk-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fk-faq-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.fk-faq-item p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
}

.fk-contact-box {
  background: var(--dis);
  border-radius: 16px;
  padding: 32px;
}

.fk-contact-box h2,
.fk-aside h2 {
  font-size: 20px;
}

.fk-contact-box p,
.fk-aside p {
  font-size: 14.5px;
  color: var(--gray-mid);
  margin-top: 8px;
  line-height: 1.6;
}

.fk-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.fk-form-grid label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.fk-form-grid input,
.fk-form-grid textarea,
.fk-form-grid select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  color: var(--gray);
  box-shadow: 0 2px 4px rgba(21, 34, 56, 0.08);
  background: #fff;
}

.fk-form-grid textarea {
  min-height: 100px;
  resize: vertical;
}

.fk-honeypot {
  position: absolute;
  left: -5000px;
}

.fk-form-narrow {
  max-width: 720px;
}

.fk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.fk-checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.fk-checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}

.fk-checkbox-field label {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  line-height: 1.6;
}

.fk-required {
  color: var(--terracotta);
}

/* Responsive — hero-panelernas fördelning ändras i tre steg:
   ≥1440px: text 34% / media 66%
   901–1439px: text 50% / media 50%
   ≤900px: staplat, full bredd var */
@media (max-width: 1439px) {
  .fk-hero-text-panel {
    flex: 0 0 50%;
    padding: 56px 40px;
  }

  .fk-hero-media-panel {
    flex: 0 0 50%;
  }
}

@media (max-width: 700px) {
  .fk-form-row {
    grid-template-columns: 1fr;
  }

  .fk-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .fk-footer-brand {
    grid-column: 1 / -1;
  }

  .fk-section-intro {
    grid-template-columns: 1fr;
  }

  .fk-section-intro-img {
    order: 1;
  }

  .fk-module-row {
    grid-template-columns: 1fr;
  }

  .fk-module-row > div {
    order: 0;
  }

  .fk-module-row > .fk-module-media {
    order: 1;
    aspect-ratio: 5 / 4;
  }

  .fk-module-media img {
    min-height: 0;
  }

  .fk-module-row + .fk-module-row {
    margin-top: 40px;
  }

  .fk-module-text {
    padding: 28px;
  }
}

@media (max-width: 900px) {
  .fk-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 24px 40px;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 24px -16px rgba(0, 0, 0, 0.2);
  }

  .fk-nav-links.is-open {
    display: flex;
  }

  .fk-nav-links .fk-sep {
    display: none;
  }

  .fk-hamburger {
    display: flex;
  }

  .fk-faq-layout {
    grid-template-columns: 1fr;
  }

  .fk-hero {
    flex-direction: column;
  }

  .fk-hero-text-panel {
    flex: none;
    width: 100%;
    padding: 48px 32px 32px;
  }

  .fk-hero-media-panel {
    flex: none;
    width: 100%;
  }

  .fk-hero h1 {
    font-size: 32px;
  }

  .fk-header {
    padding: 0 32px 0 40px;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 24px;
  }

  .fk-header {
    padding: 0 24px 0 40px;
  }

  .fk-hero-text-panel {
    padding: 40px 24px 24px;
  }
}

/* Videorutans padding — konstant 48px ända ner till 480px */
@media (max-width: 480px) {
  .fk-hero-media-panel {
    padding: 24px;
  }
}

/* Nadio-specifika tillägg — inte del av det ursprungliga enbraplats.se-systemet,
   men byggda med samma tokens/mönster för fyra-tjänster-grid, numrerade skäl
   och nyhetskort på startsidan. */

.fk-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.fk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}

.fk-card .title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin: 4px 0 8px;
}

.fk-card p {
  font-size: 15px;
  color: var(--gray-mid);
  margin: 0;
}

.fk-divider-heading {
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}

.fk-divider-heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--line);
}

.fk-divider-heading span {
  position: relative;
  background: #fff;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.fk-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.fk-benefit-item .num-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.fk-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--line);
  color: var(--terracotta-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.fk-benefit-item .title {
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
}

.fk-benefit-item p {
  font-size: 15px;
  color: var(--gray-mid);
  margin: 0;
}

.fk-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fk-news-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.fk-news-card .thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.fk-news-card .body {
  padding: 22px;
}

.fk-news-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.fk-news-card p {
  font-size: 14.5px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0 0 14px;
}

.fk-news-card .read-more {
  font-weight: 700;
  font-size: 14px;
  color: var(--fjord-text);
  text-decoration: none;
}

@media (max-width: 900px) {
  .fk-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fk-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fk-news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .fk-card-grid,
  .fk-benefit-grid,
  .fk-news-grid {
    grid-template-columns: 1fr;
  }
}

/* Mörk sektion med årshjul (tjänstepaketet) */
.fk-dark-section {
  background: var(--navy);
  padding: 90px 0;
}

.fk-dark-section .kicker {
  color: var(--terracotta);
}

.fk-dark-section h2 {
  color: #fff;
}

.fk-dark-section .fk-lead {
  color: #c7cede;
}

.fk-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  row-gap: 32px;
  position: relative;
  margin-top: 56px;
}

.fk-timeline-item {
  position: relative;
  text-align: center;
  padding-top: 46px;
}

.fk-timeline-item .fk-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--line);
  color: var(--terracotta-text);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.fk-timeline-item h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.fk-timeline-item p {
  font-size: 13px;
  line-height: 1.5;
  color: #c7cede;
  margin: 0;
}

.fk-year-wheel {
  display: none;
}

@media (min-width: 761px) {
  .fk-timeline {
    display: none;
  }

  .fk-year-wheel {
    display: block;
    position: relative;
    width: 480px;
    height: 480px;
    margin: 64px auto 0;
  }
}

.fk-year-wheel svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fk-year-wheel-item {
  position: absolute;
  width: 200px;
  text-align: center;
}

.fk-year-wheel-item .fk-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--line);
  color: var(--terracotta-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto 12px;
}

.fk-year-wheel-item h4 {
  color: #fff;
  font-size: 16px;
}

.fk-year-wheel-item p {
  color: #c7cede;
  font-size: 13px;
  margin-top: 6px;
}

.fk-year-wheel-item.top {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

.fk-year-wheel-item.right {
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
  text-align: left;
}

.fk-year-wheel-item.bottom {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.fk-year-wheel-item.left {
  left: -50px;
  top: 50%;
  transform: translate(0, -50%);
  text-align: right;
}

/* Två små infokort bredvid en textspalt (tjänstepaketet) */
.fk-integration-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.fk-integration-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fk-mini-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

.fk-mini-card h4 {
  font-size: 16px;
}

.fk-mini-card p {
  font-size: 14px;
  color: var(--gray-mid);
  margin-top: 8px;
}

/* Citat + CTA (tjänstepaketet, avslutning) */
.fk-pull-quote-section {
  background: var(--dis);
  text-align: center;
  padding: 90px 0;
}

.fk-pull-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.45;
}

.fk-pull-quote-section .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 700px) {
  .fk-integration-row {
    grid-template-columns: 1fr;
  }
}

/* Kommunlista med hr-avdelare (om oss) */
hr.fk-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 80px;
}

.fk-municipality-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.fk-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fk-tag-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .fk-municipality-row {
    grid-template-columns: 1fr;
  }
}

/* Bred bild under hero (för kommuner) */
.fk-hero-image {
  padding: 0 42px;
}

.fk-hero-image img {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fk-hero-image .fk-embed {
  max-width: 1140px;
  margin: 0 auto;
}

/* Trattgrafik (för kommuner) */
.fk-funnel-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fk-funnel-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: 12px;
}

.fk-funnel-section h2 {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 16px;
}

.fk-funnel-lead {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.fk-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fk-funnel-level {
  position: relative;
  width: 100%;
}

.fk-funnel-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleY(-1);
}

.fk-funnel-level-1 .fk-funnel-shape {
  fill: #ffffff;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.fk-funnel-level-2 .fk-funnel-shape {
  fill: var(--dis);
}

.fk-funnel-level-3 .fk-funnel-shape {
  fill: #ece1d3;
}

.fk-funnel-level-1 {
  min-height: 169px;
  margin-top: 10px;
}

.fk-funnel-level-2 {
  margin-top: 10px;
}

.fk-funnel-level-3 {
  margin-top: 0;
}

@media (min-width: 761px) {
  .fk-funnel-level-2 {
    width: calc(100% - 324px);
    margin-left: auto;
    margin-right: auto;
  }

  .fk-funnel-level-3 {
    width: calc(100% - 581px);
    margin-left: auto;
    margin-right: auto;
  }
}

.fk-funnel-level-inner {
  position: relative;
  z-index: 1;
  padding: 32px 16%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.fk-funnel-level-1 .fk-funnel-level-inner {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
}

.fk-funnel-level-2 .fk-funnel-level-inner {
  padding: 30px 23%;
  justify-content: center;
  text-align: center;
}

.fk-funnel-level-3 .fk-funnel-level-inner {
  padding: 30px 60px;
  justify-content: center;
  text-align: center;
}

.fk-funnel-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fk-funnel-level h3 {
  font-size: 17px;
  margin: 0 0 4px;
}

.fk-funnel-level-1 .fk-funnel-main h3 {
  margin-top: -9px;
}

.fk-funnel-level p {
  font-size: 14px;
  color: var(--gray-mid);
  margin: 0;
  line-height: 1.5;
}

.fk-funnel-side {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.fk-funnel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-text);
  margin: -18px 0;
  position: relative;
  z-index: 1;
}

.fk-funnel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(180deg);
}

@media (max-width: 760px) {
  .fk-funnel-level-1,
  .fk-funnel-level-2,
  .fk-funnel-level-3 {
    border-radius: 16px;
    margin-top: 8px;
    overflow: hidden;
  }

  .fk-funnel-level-1 {
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .fk-funnel-level-2 {
    background: var(--dis);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  }

  .fk-funnel-level-3 {
    background: #ece1d3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }

  .fk-funnel-shape {
    display: none;
  }

  .fk-funnel-level-inner,
  .fk-funnel-level-2 .fk-funnel-level-inner,
  .fk-funnel-level-3 .fk-funnel-level-inner {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .fk-funnel-side {
    border-left: none;
    padding-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    width: 100%;
  }

  .fk-funnel-arrow {
    margin: 0;
  }
}

/* Utmaningskort + lagcitat (för kommuner) */
.fk-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fk-challenge-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.fk-challenge-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.fk-challenge-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-mid);
  margin: 0;
}

.fk-law-box {
  background: var(--dis);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
}

.fk-law-box .label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin: 0 0 10px;
}

.fk-law-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 10px;
}

.fk-law-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .fk-challenge-grid {
    grid-template-columns: 1fr;
  }
}

/* Nyhetsartiklar */
.fk-prose {
  max-width: 720px;
  margin: 0 auto;
}

.fk-prose h1 {
  font-size: 36px;
  margin: 16px 0 32px;
}

.fk-prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-mid);
  margin: 0 0 20px;
}

.fk-prose a,
.fk-law-box a {
  color: var(--fjord-text);
  text-decoration: underline;
}

.fk-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #1c1c1c;
}

.fk-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fk-btn--small {
  padding: 10px 18px;
  font-size: 14px;
}

@media (max-width: 700px) {
  .fk-prose h1 {
    font-size: 28px;
  }
}

/* Sidokolumn vars överkant ska ligga i linje med rubriken (kicker-höjd + rubrikens marginal) */
.fk-aside-offset {
  margin-top: 51.6px;
}

@media (max-width: 900px) {
  .fk-aside-offset {
    margin-top: 0;
  }
}
