:root {
  --fd-ink: #121a20;
  --fd-ink-soft: #24333d;
  --fd-paper: #fcfcfc;
  --fd-bg: #f5f6f3;
  --fd-line: #d9dfdf;
  --fd-muted: #66747d;
  --fd-blue: #57748e;
  --fd-orange: #f9962c;
  --fd-red: #f94746;
  --fd-green: #4f7f69;
  --fd-radius: 18px;
  --fd-shadow: 0 18px 50px rgba(18, 26, 32, 0.10);
  --fd-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--fd-ink);
  background: var(--fd-bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.fd-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .8rem 1rem;
  background: var(--fd-paper);
  color: var(--fd-ink);
}
.fd-skip-link:focus { left: 1rem; top: 1rem; }

.fd-container { width: min(calc(100% - 40px), var(--fd-max)); margin-inline: auto; }
.fd-narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.fd-header {
  background: var(--fd-ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.fd-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fd-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.35rem;
  white-space: nowrap;
}
.fd-brand__mark {
  width: 26px;
  height: 26px;
  border: 3px solid var(--fd-orange);
  border-radius: 50%;
  margin-right: 9px;
  position: relative;
}
.fd-brand__mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
}
.fd-nav { display: flex; align-items: center; gap: 24px; }
.fd-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .96rem;
  white-space: nowrap;
}
.fd-nav a:hover, .fd-nav a[aria-current="page"] { color: #fff; }
.fd-nav__cta {
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: .65rem 1rem;
}

.fd-hero {
  background: var(--fd-ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
/*.fd-hero::before,
.fd-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}
.fd-hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: rgba(249,150,44,.18);
}
.fd-hero::after {
  width: 260px;
  height: 260px;
  right: 12%;
  bottom: -170px;
  background: rgba(87,116,142,.25);
}*/
.fd-hero__inner {
  position: relative;
  z-index: 1;
  /*padding: 82px 0 76px;*/
  max-width: 820px;
	text-align: left;
}
.fd-eyebrow {
  margin: 0 0 12px;
  color: var(--fd-orange);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.fd-hero h1,
.fd-section h2,
.fd-result h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.fd-hero h1 { font-size: clamp(2.45rem, 6vw, 5.4rem); max-width: 980px; }
.fd-hero__lead {
  margin: 24px 0 0;
  max-width: 780px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.82);
}
.fd-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.fd-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.fd-microcopy span::before { content: "✓"; color: var(--fd-orange); margin-right: 7px; }

.fd-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: .92rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 760;
  line-height: 1;
  min-height: 48px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.fd-button:hover { transform: translateY(-1px); }
.fd-button--primary { background: var(--fd-orange); color: var(--fd-ink); }
.fd-button--primary:hover { box-shadow: 0 10px 30px rgba(249,150,44,.25); }
.fd-button--secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.44); }
.fd-button--dark { background: var(--fd-ink); color: #fff; }
.fd-button--ghost { background: transparent; color: var(--fd-ink); border: 1px solid var(--fd-line); }
.fd-button[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

.fd-section { padding: 80px 0; }
.fd-section--paper { background: #f5f6f3 /*var(--fd-paper)*/; }
.fd-section--dark { background: var(--fd-ink); color: #fff; }
.fd-section__head { max-width: 820px; margin-bottom: 34px; }
.fd-section__head h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.fd-section__head p { color: var(--fd-muted); font-size: 1.08rem; margin: 18px 0 0; }
.fd-section--dark .fd-section__head p { color: rgba(255,255,255,.72); }

.fd-answer-block {
  background: var(--fd-paper);
  border: 1px solid var(--fd-line);
  border-left: 5px solid var(--fd-orange);
  border-radius: var(--fd-radius);
  padding: 28px;
  box-shadow: var(--fd-shadow);
}
.fd-answer-block h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 12px; }
.fd-answer-block p { margin: 0; font-size: 1.08rem; }

.fd-grid { display: grid; gap: 20px; }
.fd-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.fd-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.fd-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.fd-card {
  background: var(--fd-paper);
  border: 1px solid var(--fd-line);
  border-radius: var(--fd-radius);
  padding: 26px;
}
.fd-card h3 { margin: 0 0 10px; font-size: 1.22rem; letter-spacing: -.025em; }
.fd-card p { margin: 0; color: var(--fd-muted); }
.fd-card__kicker { color: var(--fd-red); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.fd-card__link { display: inline-flex; margin-top: 18px; font-weight: 760; text-decoration: none; }
.fd-card__link::after { content: "→"; margin-left: 8px; }
.fd-card--choice { min-height: 250px; display: flex; flex-direction: column; }
.fd-card--choice .fd-card__link { margin-top: auto; padding-top: 18px; }
.fd-card--choice:hover { border-color: var(--fd-orange); box-shadow: var(--fd-shadow); }

.fd-facts { margin-top: -28px; position: relative; z-index: 4; }
.fd-facts__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--fd-paper);
  border-radius: var(--fd-radius);
  box-shadow: var(--fd-shadow);
  overflow: hidden;
}
.fd-fact { padding: 24px; border-right: 1px solid var(--fd-line); }
.fd-fact:last-child { border-right: 0; }
.fd-fact strong { display: block; font-size: 1.35rem; letter-spacing: -.03em; }
.fd-fact span { color: var(--fd-muted); font-size: .92rem; }

.fd-breadcrumbs { padding: 18px 0; font-size: .88rem; color: var(--fd-muted); }
.fd-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.fd-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #a3adb2; }
.fd-breadcrumbs a { text-decoration: none; }

.fd-quiz-shell {
  background: var(--fd-paper);
  border: 1px solid var(--fd-line);
  border-radius: 24px;
  box-shadow: var(--fd-shadow);
  overflow: hidden;
}
.fd-quiz-header { padding: 22px 26px 18px; border-bottom: 1px solid var(--fd-line); }
.fd-quiz-progress-row { display: flex; justify-content: space-between; gap: 20px; color: var(--fd-muted); font-size: .9rem; }
.fd-progress { height: 8px; background: #e8eceb; border-radius: 999px; overflow: hidden; margin-top: 12px; }
.fd-progress__bar { height: 100%; width: 0; background: var(--fd-orange); border-radius: inherit; transition: width .25s ease; }
.fd-quiz-body { padding: 34px 32px 30px; }
.fd-question { display: none; border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.fd-question.is-active { display: block; animation: fdFade .22s ease; }
@keyframes fdFade { from { opacity: .35; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.fd-question__meta { color: var(--fd-red); font-weight: 800; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.fd-question legend { width: 100%; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.2; letter-spacing: -.035em; font-weight: 780; }
.fd-question__note { margin: 14px 0 0; color: var(--fd-muted); }
.fd-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 28px; }
.fd-option { position: relative; }
.fd-option input { position: absolute; opacity: 0; pointer-events: none; }
.fd-option label {
  min-height: 112px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--fd-line);
  border-radius: 14px;
  background: #fff;
  transition: border .15s ease, box-shadow .15s ease, transform .15s ease;
  cursor: pointer;
}
.fd-option label:hover { border-color: var(--fd-blue); transform: translateY(-1px); }
.fd-option input:focus-visible + label { outline: 3px solid rgba(87,116,142,.3); outline-offset: 2px; }
.fd-option input:checked + label { border: 2px solid var(--fd-orange); box-shadow: 0 8px 24px rgba(249,150,44,.13); }
.fd-option__score { font-size: 1.65rem; font-weight: 820; line-height: 1; }
.fd-option__label { color: var(--fd-muted); font-size: .82rem; line-height: 1.32; }
.fd-quiz-controls { padding: 0 32px 30px; display: flex; justify-content: space-between; gap: 14px; }
.fd-quiz-status { margin-top: 14px; color: var(--fd-muted); font-size: .9rem; }

.fd-result { display: none; }
.fd-result.is-visible { display: block; }
.fd-result-hero {
  background: var(--fd-ink);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
}
.fd-score-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 11px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: inset 0 0 0 4px var(--fd-orange);
}
.fd-score-ring strong { font-size: 3rem; line-height: 1; display: block; }
.fd-score-ring span { color: rgba(255,255,255,.64); font-size: .86rem; }
.fd-result-hero h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.fd-result-hero p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.fd-area-results { margin-top: 20px; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.fd-area-result { background: var(--fd-paper); border: 1px solid var(--fd-line); border-radius: 16px; padding: 20px; }
.fd-area-result__row { display: flex; justify-content: space-between; gap: 15px; align-items: baseline; }
.fd-area-result__row strong:last-child { color: var(--fd-red); }
.fd-area-bar { height: 7px; background: #e7ebea; border-radius: 99px; overflow: hidden; margin-top: 12px; }
.fd-area-bar span { display: block; height: 100%; background: var(--fd-blue); border-radius: inherit; }
.fd-priorities { margin-top: 28px; }
.fd-priority { border-left: 4px solid var(--fd-red); background: var(--fd-paper); border-radius: 0 14px 14px 0; padding: 18px 20px; margin-top: 12px; }
.fd-priority h4 { margin: 0 0 6px; }
.fd-priority p { margin: 0; color: var(--fd-muted); }
.fd-result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.fd-lead-box {
  margin-top: 28px;
  background: #fff8ef;
  border: 1px solid #f4d6ad;
  border-radius: var(--fd-radius);
  padding: 26px;
}
.fd-lead-box h3 { margin: 0 0 8px; font-size: 1.45rem; }
.fd-lead-box p { margin: 0; color: var(--fd-muted); }
.fd-lead-form { margin-top: 20px; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.fd-field { display: grid; gap: 6px; }
.fd-field--full { grid-column: 1 / -1; }
.fd-field label { font-size: .9rem; font-weight: 700; }
.fd-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--fd-line);
  border-radius: 12px;
  padding: .75rem .85rem;
  background: #fff;
}
.fd-field input:focus { outline: 3px solid rgba(87,116,142,.2); border-color: var(--fd-blue); }
.fd-consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: var(--fd-muted); font-size: .85rem; }
.fd-consent input { margin-top: 4px; }
.fd-form-status { grid-column: 1 / -1; min-height: 1.4em; color: var(--fd-muted); font-size: .9rem; }

.fd-faq { border-top: 1px solid var(--fd-line); }
.fd-faq details { border-bottom: 1px solid var(--fd-line); }
.fd-faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 760; font-size: 1.08rem; }
.fd-faq summary::-webkit-details-marker { display: none; }
.fd-faq summary::after { content: "+"; float: right; color: var(--fd-orange); font-size: 1.35rem; }
.fd-faq details[open] summary::after { content: "–"; }
.fd-faq__answer { padding: 0 0 22px; color: var(--fd-muted); max-width: 850px; }
.fd-faq__answer p:first-child { margin-top: 0; }
.fd-faq__answer a { color: var(--fd-blue); }

.fd-source-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--fd-line);
  color: var(--fd-muted);
  font-size: .86rem;
}
.fd-source-note a { color: inherit; }

.fd-inline-cta {
  background: var(--fd-ink);
  color: #fff;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.fd-inline-cta h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.7rem); letter-spacing: -.035em; }
.fd-inline-cta p { margin: 10px 0 0; color: rgba(255,255,255,.72); max-width: 720px; }

.fd-footer { background: #0b1115; color: #fff; padding: 46px 0; }
.fd-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.fd-footer p, .fd-footer a { color: rgba(255,255,255,.68); }
.fd-footer a { text-decoration: none; }
.fd-footer ul { list-style: none; padding: 0; margin: 10px 0 0; }
.fd-footer li { margin: 7px 0; }
.fd-footer__bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .85rem; }

.fd-only-screenreader { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.fd-no-js { background: #fff3cd; color: #5c4b10; padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; }

@media (max-width: 1040px) {
  .fd-nav a:not(.fd-nav__cta) { display: none; }
  .fd-grid--4 { grid-template-columns: repeat(2,1fr); }
  .fd-scale { grid-template-columns: repeat(5, minmax(120px,1fr)); overflow-x: auto; padding-bottom: 8px; }
}
@media (max-width: 760px) {
  .fd-container, .fd-narrow { width: min(calc(100% - 26px), var(--fd-max)); }
  .fd-header__inner { min-height: 66px; }
  .fd-nav { gap: 10px; }
  .fd-nav__cta { padding: .55rem .8rem; font-size: .86rem !important; display: inline-flex !important; }
  .fd-hero__inner { padding: 58px 0 64px; }
  .fd-hero h1 { font-size: clamp(2.25rem, 11vw, 3.65rem); }
  .fd-section { padding: 60px 0; }
  .fd-grid--2, .fd-grid--3, .fd-grid--4, .fd-area-results, .fd-lead-form { grid-template-columns: 1fr; }
  .fd-facts { margin-top: -20px; }
  .fd-facts__inner { grid-template-columns: repeat(2,1fr); }
  .fd-fact:nth-child(2) { border-right: 0; }
  .fd-fact:nth-child(-n+2) { border-bottom: 1px solid var(--fd-line); }
  .fd-quiz-body { padding: 28px 20px 24px; }
  .fd-quiz-controls { padding: 0 20px 24px; }
  .fd-scale { grid-template-columns: 1fr; overflow: visible; }
  .fd-option label { min-height: auto; flex-direction: row; align-items: center; justify-content: flex-start; }
  .fd-option__score { width: 36px; }
  .fd-result-hero { grid-template-columns: 1fr; text-align: left; padding: 26px; }
  .fd-score-ring { width: 130px; height: 130px; }
  .fd-inline-cta { align-items: flex-start; flex-direction: column; }
  .fd-footer__grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

.page-node-101 .fullwidth-block:first-child,
.page-node-102 .fullwidth-block:first-child,
.page-node-103 .fullwidth-block:first-child,
.page-node-104 .fullwidth-block:first-child,
.page-node-105 .fullwidth-block:first-child,
.page-node-106 .fullwidth-block:first-child,
.page-node-107 .fullwidth-block:first-child,
.page-node-108 .fullwidth-block:first-child{margin-top: -40px /* Drar upp hero. */}

.page-node-102 #diagnos-frame,
.page-node-103 #diagnos-frame,
.page-node-104 #diagnos-frame,
.page-node-105 #diagnos-frame,
.page-node-106 #diagnos-frame,
.page-node-107 #diagnos-frame,
.page-node-108 #diagnos-frame{text-align: left}

.page-node-102 .fullwidth-block .paragraph__content--text-only,
.page-node-103 .fullwidth-block .paragraph__content--text-only,
.page-node-104 .fullwidth-block .paragraph__content--text-only,
.page-node-105 .fullwidth-block .paragraph__content--text-only,
.page-node-106 .fullwidth-block .paragraph__content--text-only,
.page-node-107 .fullwidth-block .paragraph__content--text-only,
.page-node-108 .fullwidth-block .paragraph__content--text-only{padding: 0 !important}

.page-node-102 .fd-hero,
.page-node-103 .fd-hero,
.page-node-104 .fd-hero,
.page-node-105 .fd-hero,
.page-node-106 .fd-hero,
.page-node-107 .fd-hero,
.page-node-108 .fd-hero{padding-top: 40px; padding-bottom: 80px}

a.fd-button--primary:hover {
  color: #fff;
}
