/* ============================================================
   HELTIDSRESAN 3.0 — Preview Demo Design System
   ============================================================ */

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

:root {
  --hr-ink: #1a1a1a;
  --hr-ink-soft: #3d3d3d;
  --hr-ink-muted: #6b6b6b;
  --hr-ink-faint: #999999;
  --hr-paper: #faf9f7;
  --hr-paper-warm: #f3f1ed;
  --hr-white: #ffffff;
  --hr-teal: #4a9ba8;
  --hr-teal-deep: #2d7a86;
  --hr-teal-light: #d4e8eb;
  --hr-teal-wash: #eaf5f7;
  --hr-green: #2e7d32;
  --hr-orange: #d4660a;
  --hr-red: #b71c1c;
  --hr-border: #d9d5cf;
  --hr-border-light: #e8e5e0;
  --hr-serif: 'Georgia', 'Times New Roman', serif;
  --hr-sans: 'Open Sans', arial, helvetica, sans-serif;
  --hr-max: 1140px;
  --hr-gutter: 2rem;
  --hr-radius: 0px;
  --hr-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--hr-sans);
  background: var(--hr-paper);
  color: var(--hr-ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--hr-teal-deep); text-decoration: none; }
a:hover { color: var(--hr-ink); }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
.hr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hr-border-light);
}

.hr-header-inner {
  max-width: var(--hr-max);
  margin: 0 auto;
  padding: 0 var(--hr-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.hr-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--hr-ink);
}

.hr-logo-text {
  font-family: var(--hr-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.hr-logo-version {
  font-family: var(--hr-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hr-teal);
  background: var(--hr-teal-wash);
  padding: 0.15rem 0.45rem;
}

.hr-demo-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hr-white);
  background: var(--hr-orange);
  padding: 0.2rem 0.5rem;
  margin-left: 0.5rem;
}

/* Navigation */
.hr-nav { display: flex; align-items: center; gap: 0; }

.hr-nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hr-ink-muted);
  padding: 0.5rem 0.85rem;
  transition: color 0.2s var(--hr-ease);
  text-decoration: none;
  position: relative;
}

.hr-nav-link:hover { color: var(--hr-ink); }

.hr-nav-link.active {
  color: var(--hr-ink);
  font-weight: 600;
}

.hr-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--hr-teal);
}

.hr-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--hr-ink);
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hr-nav-toggle { display: block; }
  .hr-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--hr-paper);
    border-bottom: 1px solid var(--hr-border-light);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .hr-nav.open { display: flex; }
  .hr-nav-link { padding: 0.75rem 1rem; width: 100%; }
  .hr-nav-link.active::after { display: none; }
}

/* ===== PAGE NAV (prev/home/next) ===== */
.hr-page-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hr-page-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--hr-ink-muted);
  padding: 0.35rem 0.6rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.hr-page-nav a:hover {
  color: var(--hr-ink);
  background: var(--hr-teal-wash);
}
.hr-page-nav .hr-pn-home {
  color: var(--hr-teal-deep);
  font-weight: 600;
}
.hr-page-nav .hr-pn-sep {
  color: var(--hr-border);
  font-size: 0.7rem;
  user-select: none;
}
@media (max-width: 600px) {
  .hr-page-nav a span { display: none; }
}

/* ===== HERO ===== */
.hr-hero {
  background: linear-gradient(135deg, var(--hr-teal-light) 0%, var(--hr-teal-wash) 50%, var(--hr-paper-warm) 100%);
  padding: 5rem var(--hr-gutter) 4rem;
  position: relative;
  overflow: hidden;
}

.hr-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 155, 168, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hr-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.hr-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hr-teal-deep);
  margin-bottom: 1rem;
  display: block;
}

.hr-hero h1 {
  font-family: var(--hr-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--hr-ink);
  margin-bottom: 1.25rem;
}

.hr-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--hr-ink-soft);
  max-width: 600px;
}

.hr-hero-sub {
  font-size: 0.82rem !important;
  color: var(--hr-ink-muted) !important;
  margin-top: 1rem;
}

.hr-hero--small {
  padding: 3rem var(--hr-gutter) 2.5rem;
}

.hr-hero--small h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

/* ===== CONTAINER ===== */
.hr-container {
  max-width: var(--hr-max);
  margin: 0 auto;
  padding: 3rem var(--hr-gutter);
}

/* ===== SECTION TITLES ===== */
.hr-section-title {
  font-family: var(--hr-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--hr-ink);
  margin: 3rem 0 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--hr-ink);
}

.hr-section-intro {
  font-size: 0.95rem;
  color: var(--hr-ink-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 680px;
}

/* ===== PURPOSE CARDS ===== */
.hr-purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.hr-purpose-card {
  padding: 1.75rem;
  background: var(--hr-white);
  border-top: 3px solid var(--hr-teal);
}

.hr-purpose-card h3 {
  font-family: var(--hr-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hr-purpose-card p {
  font-size: 0.85rem;
  color: var(--hr-ink-muted);
  line-height: 1.6;
}

/* ===== TOOL CARDS ===== */
.hr-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.hr-tool-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background: var(--hr-white);
  border: 1px solid var(--hr-border-light);
  text-decoration: none;
  color: var(--hr-ink);
  transition: all 0.25s var(--hr-ease);
  position: relative;
  overflow: hidden;
}

.hr-tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--hr-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--hr-ease);
}

.hr-tool-card:hover::before { transform: scaleX(1); }
.hr-tool-card:hover {
  border-color: var(--hr-teal);
  box-shadow: 0 8px 32px rgba(74, 155, 168, 0.1);
  transform: translateY(-2px);
}

.hr-tool-icon { font-size: 1.75rem; }

.hr-tool-card h3 {
  font-family: var(--hr-serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.hr-tool-card p {
  font-size: 0.82rem;
  color: var(--hr-ink-muted);
  line-height: 1.5;
  margin: 0;
}

.hr-tool-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  min-width: 6.5rem;
  text-align: center;
  background: var(--hr-teal-wash);
  color: var(--hr-teal-deep);
  align-self: flex-start;
}

.hr-tool-badge--interactive {
  background: var(--hr-green);
  color: white;
}
.hr-tool-badge--verktyg {
  background: var(--hr-teal);
  color: white;
}
.hr-tool-badge--guide {
  background: var(--hr-ink);
  color: white;
}
.hr-tool-badge--inspiration {
  background: var(--hr-orange);
  color: white;
}

/* ===== GOAL CARDS ===== */
.hr-goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.hr-goal-card {
  background: var(--hr-white);
  border: 1px solid var(--hr-border-light);
  overflow: hidden;
  transition: all 0.2s var(--hr-ease);
}

.hr-goal-card:hover {
  border-color: var(--hr-teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.hr-goal-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--hr-paper-warm);
  border-bottom: 1px solid var(--hr-border-light);
}

.hr-goal-num {
  width: 38px;
  height: 38px;
  background: var(--hr-ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hr-goal-top h3 {
  font-family: var(--hr-sans);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.hr-goal-body { padding: 1.25rem 1.5rem; }

.hr-goal-problem {
  font-size: 0.85rem;
  color: var(--hr-ink-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hr-goal-problem strong { color: var(--hr-ink); }

.hr-goal-tools { display: flex; flex-direction: column; gap: 0.5rem; }

.hr-goal-tool {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.hr-goal-tool a { font-weight: 500; }
.hr-goal-tool a:hover { text-decoration: underline; }

/* ===== BUTTONS ===== */
.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--hr-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--hr-ink);
  background: var(--hr-white);
  color: var(--hr-ink);
  cursor: pointer;
  transition: all 0.2s var(--hr-ease);
  text-decoration: none;
}

.hr-btn:hover {
  background: var(--hr-ink);
  color: var(--hr-white);
}

.hr-btn--primary {
  background: var(--hr-ink);
  color: var(--hr-white);
}

.hr-btn--primary:hover {
  background: var(--hr-ink-soft);
  border-color: var(--hr-ink-soft);
}

.hr-btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===== INFO BOX ===== */
.hr-info-box {
  background: var(--hr-teal-wash);
  border-left: 3px solid var(--hr-teal);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.hr-info-box strong { color: var(--hr-ink); }

/* ===== INSIGHT CALLOUT ===== */
.hr-insight {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fdf8f0;
  border-left: 3px solid #d4a843;
  margin: 1rem 0 1.5rem;
}

.hr-insight-icon {
  color: #d4a843;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
}

.hr-insight p {
  font-size: 0.88rem;
  color: #5a4a2a;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* ===== RATING BUTTONS ===== */
.hr-rating-scale {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hr-rating-btn {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--hr-border);
  background: var(--hr-white);
  cursor: pointer;
  font-family: var(--hr-sans);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s var(--hr-ease);
}

.hr-rating-btn:hover {
  border-color: var(--hr-teal);
  background: var(--hr-teal-wash);
}

.hr-rating-btn.selected-yes {
  border-color: var(--hr-green);
  background: var(--hr-green);
  color: white;
}

.hr-rating-btn.selected-partly {
  border-color: var(--hr-orange);
  background: var(--hr-orange);
  color: white;
}

.hr-rating-btn.selected-no {
  border-color: var(--hr-red);
  background: var(--hr-red);
  color: white;
}

/* ===== PROGRESS BAR ===== */
.hr-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--hr-border-light);
  margin: 1rem 0 2rem;
  overflow: hidden;
}

.hr-progress-fill {
  height: 100%;
  background: var(--hr-teal);
  transition: width 0.4s var(--hr-ease);
}

/* ===== CHECK ITEMS ===== */
.hr-check-item {
  border: 1px solid var(--hr-border-light);
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--hr-white);
  transition: background 0.3s;
}

.hr-check-item:hover {
  background: var(--hr-teal-wash);
}

.hr-check-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hr-check-box {
  width: 28px;
  height: 28px;
  border: 2px solid var(--hr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--hr-border);
}

.hr-check-content { flex: 1; }

.hr-check-text {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hr-check-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hr-comment-toggle {
  background: none;
  border: none;
  color: var(--hr-teal);
  cursor: pointer;
  font-family: var(--hr-sans);
  font-size: 0.78rem;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.hr-comment-toggle:hover { color: var(--hr-ink); }

.hr-comment-area {
  display: none;
  margin-top: 0.5rem;
}

.hr-comment-area.open { display: block; }

.hr-comment-area textarea {
  width: 100%;
  min-height: 60px;
  padding: 0.5rem;
  border: 1px solid var(--hr-border);
  font-family: var(--hr-sans);
  font-size: 0.9rem;
  resize: vertical;
}

.hr-comment-area textarea:focus {
  outline: none;
  border-color: var(--hr-teal);
}

/* ===== STEPPER ===== */
.hr-stepper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hr-step-btn {
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--hr-border);
  background: transparent;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.85rem;
  font-family: var(--hr-sans);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s;
}

.hr-step-btn:hover { border-color: var(--hr-teal); background: var(--hr-teal-wash); }
.hr-step-btn.active { background: var(--hr-teal-light); border-color: #5a8a8f; font-weight: 600; }
.hr-step-btn.done { background: #e8f5e9; }
.hr-step-arrow { color: #aaa; font-size: 0.85rem; }

/* ===== RESULT ZONE ===== */
.hr-result-zone {
  padding: 2rem;
  margin-bottom: 2rem;
}

.hr-big-num {
  font-family: var(--hr-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.hr-zone-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.hr-zone-range {
  font-size: 0.85rem;
  color: var(--hr-ink-muted);
  margin-top: 0.5rem;
}

/* ===== BAR CHART ===== */
.hr-bar-chart { margin: 2rem 0; }

.hr-bar-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.hr-bar-label {
  min-width: 220px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: right;
  flex-shrink: 0;
}

.hr-bar-track {
  flex: 1;
  height: 24px;
  background: #e0e0e0;
  overflow: hidden;
  position: relative;
}

.hr-bar-fill {
  height: 100%;
  transition: width 0.8s var(--hr-ease);
}

.hr-bar-value {
  min-width: 50px;
  text-align: right;
  font-weight: 600;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* ===== RECOMMENDATION CARDS ===== */
.hr-rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.hr-rec-card {
  padding: 1.5rem;
}

.hr-rec-card h3 { margin-top: 0; }

.hr-rec-card ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.hr-rec-card li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hr-rec-card p {
  font-size: 0.9rem;
  color: var(--hr-ink-muted);
}

/* ===== DETAIL LIST ===== */
.hr-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.hr-detail-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  min-width: 70px;
  text-align: center;
}

.hr-detail-comment {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.25rem;
  font-style: italic;
}

/* ===== RADAR CHART ===== */
.hr-chart-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 2rem auto;
}

.hr-chart-container canvas {
  max-width: 100%;
  height: auto;
}

/* ===== INSPIRATION PAGE ===== */
.hr-insp-goals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}

.hr-insp-goal {
  background: var(--hr-white);
  border: 1px solid var(--hr-border-light);
  transition: border-color 0.2s var(--hr-ease), box-shadow 0.2s var(--hr-ease);
}

.hr-insp-goal:hover { border-color: var(--hr-teal); }

.hr-insp-goal--expanded {
  border-color: var(--hr-teal);
  box-shadow: 0 4px 24px rgba(74, 155, 168, 0.10);
}

.hr-insp-goal__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  cursor: pointer;
  user-select: none;
}

.hr-insp-goal__num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--hr-ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--hr-serif);
  margin-top: 0.1rem;
}

.hr-insp-goal__header-text { flex: 1; }

.hr-insp-goal__title {
  font-family: var(--hr-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hr-ink);
  margin: 0 0 0.5rem;
}

.hr-insp-goal__desc {
  font-size: 0.9rem;
  color: var(--hr-ink-soft);
  line-height: 1.65;
  margin: 0;
}

.hr-insp-goal__toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--hr-teal-deep);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--hr-border);
  transition: all 0.2s;
}

.hr-insp-goal__header:hover .hr-insp-goal__toggle {
  border-color: var(--hr-teal);
  background: var(--hr-teal-wash);
}

.hr-insp-goal__meta {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem 1.25rem calc(2rem + 48px + 1.25rem);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hr-teal-deep);
}

.hr-insp-goal__body {
  border-top: 1px solid var(--hr-border-light);
  padding: 2rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.hr-insp-goal--expanded .hr-insp-goal__body {
  display: grid;
}

.hr-insp-goal__tips h3,
.hr-insp-goal__examples h3 {
  font-family: var(--hr-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hr-ink-muted);
  margin-bottom: 1rem;
}

.hr-insp-goal__tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hr-insp-goal__tips li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--hr-ink-soft);
}

.hr-insp-tip__icon {
  color: var(--hr-green);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.hr-insp-example-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hr-insp-example {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: var(--hr-paper);
  border: 1px solid var(--hr-border-light);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s var(--hr-ease);
}

.hr-insp-example:hover {
  border-color: var(--hr-teal);
  background: var(--hr-teal-wash);
}

.hr-insp-example__kommun {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--hr-teal-deep);
}

.hr-insp-example__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hr-ink);
}

.hr-insp-example__desc {
  font-size: 0.82rem;
  color: var(--hr-ink-muted);
  line-height: 1.55;
}

.hr-insp-example__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hr-teal-deep);
  margin-top: 0.25rem;
}

/* ===== BEMANNING TABLE ===== */
.hr-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 1rem 0;
}

.hr-data-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: var(--hr-teal-light);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

.hr-data-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--hr-border-light);
}

.hr-data-table tr:hover td {
  background: var(--hr-teal-wash);
}

.hr-data-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ===== CHART PLACEHOLDER ===== */
.hr-chart-placeholder {
  background: var(--hr-white);
  border: 1px solid var(--hr-border-light);
  padding: 2rem;
  margin: 1.5rem 0;
}

/* ===== GAUGE ===== */
.hr-gauge-bar {
  position: relative;
  height: 36px;
  background: var(--hr-border-light);
  margin: 0.5rem 0;
  overflow: visible;
}

.hr-gauge-current {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--hr-teal-light);
  transition: width 0.4s var(--hr-ease);
}

.hr-gauge-target {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 3px dashed var(--hr-ink);
  transition: width 0.4s var(--hr-ease);
}

/* ===== PLAN SECTION ===== */
.hr-plan-org {
  background: var(--hr-paper-warm);
  border: 1px solid var(--hr-border-light);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.hr-plan-org h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hr-plan-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.hr-plan-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  color: var(--hr-ink-muted);
}

.hr-plan-field input,
.hr-plan-field textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--hr-border);
  font-family: var(--hr-sans);
  font-size: 0.85rem;
  background: var(--hr-white);
}

.hr-plan-field input:focus,
.hr-plan-field textarea:focus {
  outline: none;
  border-color: var(--hr-teal);
}

/* ===== FOOTER ===== */
.hr-footer {
  border-top: 1px solid var(--hr-border-light);
  padding: 3rem var(--hr-gutter);
  margin-top: 4rem;
  background: var(--hr-paper-warm);
}

.hr-footer-inner {
  max-width: var(--hr-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.hr-footer-brand {
  font-family: var(--hr-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hr-footer-text {
  font-size: 0.78rem;
  color: var(--hr-ink-muted);
  line-height: 1.8;
}

.hr-footer-nav {
  display: none;
}

.hr-footer-nav a {
  font-size: 0.78rem;
  color: var(--hr-ink-muted);
}

.hr-footer-nav a:hover { color: var(--hr-ink); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hr-animate-in {
  animation: fadeInUp 0.5s var(--hr-ease) both;
}

.hr-animate-in:nth-child(2) { animation-delay: 0.06s; }
.hr-animate-in:nth-child(3) { animation-delay: 0.12s; }
.hr-animate-in:nth-child(4) { animation-delay: 0.18s; }
.hr-animate-in:nth-child(5) { animation-delay: 0.24s; }
.hr-animate-in:nth-child(6) { animation-delay: 0.30s; }
.hr-animate-in:nth-child(7) { animation-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .hr-container { padding: 2rem 1rem; }
  .hr-hero { padding: 3rem 1rem 2.5rem; }
  .hr-bar-label { min-width: 120px; font-size: 0.78rem; }
  .hr-goal-grid { grid-template-columns: 1fr; }
  .hr-rec-grid { grid-template-columns: 1fr; }
  .hr-btn-row { flex-direction: column; }
  .hr-btn { width: 100%; justify-content: center; }
  .hr-footer-inner { flex-direction: column; }
  .hr-insp-goal__header { padding: 1.25rem; gap: 1rem; }
  .hr-insp-goal__num { width: 40px; height: 40px; min-width: 40px; font-size: 1.1rem; }
  .hr-insp-goal__title { font-size: 1.1rem; }
  .hr-insp-goal__meta { padding-left: calc(1.25rem + 40px + 1rem); }
  .hr-insp-goal__body { grid-template-columns: 1fr; padding: 1.25rem; gap: 2rem; }
}

/* ===== PRINT ===== */
@media print {
  .hr-header, .hr-footer, .hr-btn-row, .hr-stepper,
  .hr-progress-bar, .hr-nav, .hr-demo-badge { display: none !important; }
  .hr-hero { display: none !important; }
  body { background: white; }
}
