/* ==========================================================================
   InfraCom homepage — pixel-exact rebuild of https://infracom.se/
   Values sampled from live DOM via getComputedStyle.
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-dark:   #055559;      /* Hero bg, headings */
  --teal-darker: #002625;      /* Footer */
  --teal-mid:    #74a5a8;      /* Service cards */
  --teal-soft:   #e6f0ed;      /* Kundcase bg */
  --tan:         #f3e0cc;      /* Overview bg */
  --orange:      #ea5b0c;      /* Primary button */
  --orange-text: #f5f3f2;      /* Button text */
  --body:        #404040;      /* Body text */
  --muted:       #6b6b6b;
  --border:      #e4e6ea;
  --max:         1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 920px; }

/* ---------- Page-entry fade-in --------------------------------------- */
body {
  animation: pageFadeIn 0.6s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Scroll-reveal animation classes --------------------------
   Note: will-change är medvetet borttaget. Vi har 30-50+ .reveal-element
   per sida, och permanent will-change på alla överskrider Firefox
   GPU-minnesbudget (varning i konsolen). Moderna browsers optimerar
   opacity + transform-transitioner naturligt utan hint. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal--fade-down       { transform: translateY(-24px); }
.reveal--fade-right      { transform: translateX(-32px); }
.reveal.is-visible       { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.24s; }
.reveal--d3 { transition-delay: 0.36s; }
.reveal--d4 { transition-delay: 0.48s; }

/* ---------- Buttons --------------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--orange-text);
  padding: 10px 20px;
  border: 1px solid var(--orange);
  border-radius: 800px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  cursor: pointer;
  transition: color 0.3s linear, background-color 0.3s linear, border-color 0.3s linear, padding 0.3s linear;
}
.btn:hover {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
}
/* Dark-bg variant: hover inverts to transparent/orange keeping visible */
.hero .btn:hover { background: transparent; }

/* Läs Mer arrow link --------------------------------------------------- */
.link-arrow {
  color: var(--orange);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap 0.2s ease;
}
.link-arrow::after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 9px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 9'><path d='M0 4.5h44M40 0.5l8 4-8 4' stroke='%23ea5b0c' stroke-width='1' fill='none' stroke-linecap='square'/></svg>") no-repeat center / contain;
  transition: transform 0.25s ease;
}
.link-arrow:hover::after { transform: translateX(6px); }
.link-arrow:hover { gap: 18px; }

/* White variant for dark cards */
.link-arrow--light { color: #fff; }
.link-arrow--light::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 9'><path d='M0 4.5h44M40 0.5l8 4-8 4' stroke='%23ffffff' stroke-width='1' fill='none' stroke-linecap='square'/></svg>") no-repeat center / contain;
}

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(8, 85, 90, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
  height: 58px;
}

.header__inner {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.site-logo:hover { transform: scale(1.03); }
.site-logo img {
  width: 136px;
  height: auto;
  display: block;
}

/* Mobil-drawer-footern (.main-nav__contact) ligger i markup men ska
   bara synas i mobil-drawern. Desktop: hide. */
.main-nav__contact { display: none; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav ul li { position: relative; }
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #1a1a1a;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav > ul > li > a:hover {
  color: #000;
  background: rgba(8, 85, 90, 0.06);
}
.main-nav > ul > li > a.is-current {
  color: #000;
  background: rgba(8, 85, 90, 0.06);
}

/* Nav CTA inherits .btn styling for single source of truth — just a compact variant */
.main-nav .nav-cta > a {
  background: var(--orange);
  color: var(--orange-text);
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  margin-left: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.main-nav .nav-cta > a:hover {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}
/* "Vald"-läge när man är på /kontakta-oss/. Matchar exakt
   .help-fab.is-open .help-fab__toggle så de två primära CTA:erna ser
   identiska ut i sitt aktiva läge (vit pill, orange ram, orange text). */
.main-nav .nav-cta > a.is-current,
.main-nav .nav-cta > a.is-current:hover {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 6px 14px -2px rgba(234, 91, 12, 0.35);
  transform: none;
}

/* Regular submenu ----------------------------------------------------- */
.main-nav .sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  background: #fff;
  width: 210px;
  list-style: none;
  padding: 9.6px 0;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 12px rgba(0, 0, 0, 0.12);
  /* override inherited .main-nav ul flex settings */
  display: block;
  align-items: stretch;
  gap: 0;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 110;
}
/* Hover-fall-out endast på desktop. På mobil hanteras visning via .is-open
   (toggleas av initBurger). Annars fyrar :hover på touch-tap → desktop-CSS:n
   skriver över mobil-overriden och skuffar dropdownen 50% åt sidan. */
@media (min-width: 1025px) and (hover: hover) {
  .main-nav .has-sub:hover > .sub,
  .main-nav .has-sub:focus-within > .sub {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
.main-nav .sub li {
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}
.main-nav .sub li a {
  display: block;
  padding: 5.6px 19.6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 28.8px;
  color: #000;
  text-align: left;
  white-space: normal;
}
.main-nav .sub li a:hover { color: var(--orange); background: #fafafa; }

/* Mega menu */
.mega {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translate(-50%, 10px);
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 36px 52px 40px;
  width: min(1120px, calc(100vw - 80px));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  border: 1px solid rgba(8, 85, 90, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 110;
}
.site-header.is-scrolled .mega { top: 58px; }
/* Hover-fall-out endast på desktop — samma motiv som .sub ovan. */
@media (min-width: 1025px) and (hover: hover) {
  .main-nav .has-sub:hover > .mega,
  .main-nav .has-sub:focus-within > .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
.mega__col a {
  display: block;
  padding: 6px 0;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}
.mega__col a.mega__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  padding: 0 0 8px;
  border-bottom: none;
}
.mega__icon {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
/* No color change on hover — every item is the same colour, cursor is the affordance.
   Subtle underline gives feedback without drawing the eye to one specific colour. */
.mega__col a:hover { color: #000; text-decoration: underline; text-underline-offset: 3px; }
.mega__col a.mega__head:hover { color: #000; text-decoration: none; }
.mega__col a.mega__head:hover .mega__icon { color: var(--teal-dark); }

/* Sub-list of included services under a mega__col link (small grey bullets) */
.mega__col .mega__includes {
  list-style: none;
  display: block;          /* override .main-nav ul flex inheritance */
  align-items: stretch;
  gap: 0;
  text-align: left;
  margin: 2px 0 8px 12px;
  padding: 4px 0 4px 14px;
  border-left: 2px solid rgba(8,85,90,0.10);
}
.mega__col .mega__includes li {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(0,0,0,0.55);
  line-height: 1.55;
  padding: 1px 0;
  letter-spacing: 0.05px;
}

/* Sub-links under a parent — nested clickable items, subtle (no extra "click me" cues
   needed since every item in the mega menu is clickable). Visually grouped under the
   parent via a thin left border. */
.mega__col .mega__sub-links {
  list-style: none;
  display: block;
  align-items: stretch;
  gap: 0;
  text-align: left;
  margin: 0 0 4px 12px;
  padding: 1px 0 1px 14px;
  border-left: 2px solid rgba(8,85,90,0.10);
}
.mega__col .mega__sub-links li { padding: 0; }
.mega__col .mega__sub-links li.mega__sub-link-with-beta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.mega__col .mega__sub-links li.mega__sub-link-with-beta > a:first-child {
  display: inline;
}
.mega__col .mega__sub-links a {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  padding: 1px 0;
  letter-spacing: 0.05px;
  text-decoration: none;
}
.mega__col .mega__sub-links a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Burger (mobile) */
.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: #000;
  transition: transform 0.25s, opacity 0.2s;
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--teal-dark);
  min-height: 539px;
  color: #fff;
  overflow: hidden;
}
.hero__text {
  padding: 96.4px 96.4px 134.9px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 22px;
  max-width: 100%;
}
.hero__text h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 67.2px;
  letter-spacing: -1.68px;
  color: #fff;
}
.hero__text p {
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  max-width: 560px;
}
.hero__text .btn {
  margin-top: 8px;
  animation: btnPulse 2.6s ease-in-out 1.4s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234, 91, 12, 0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(234, 91, 12, 0); }
}
.hero__image {
  background: url('assets/Home.jpg') center / cover no-repeat;
  min-height: 100%;
  animation: heroZoom 1.2s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.06); opacity: 0.6; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ==========================================================================
   2. SERVICE CARDS (overlap hero by -115.66px)
   ========================================================================== */
.services {
  margin-top: -115.66px;
  position: relative;
  z-index: 2;
  padding: 0 24px 40px;
}
.services__grid {
  max-width: 1640px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}
.service {
  background: var(--teal-mid);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
.service img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white icons */
}
.service h3 {
  font-size: 19.2px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

/* ==========================================================================
   3. PACKAGES + COMPARE TABLE
   ========================================================================== */
.packages {
  padding: 96px 0 80px;
  background: #fff;
}
.packages h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 54.6px;
  letter-spacing: -0.84px;
  color: var(--teal-dark);
  margin-bottom: 21px;
}
.packages__intro p {
  margin-bottom: 16px;
  max-width: 1100px;
  line-height: 1.8;
}
.packages__intro strong { color: var(--teal-dark); font-weight: 700; }

.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0 24px;
}
.compare thead th {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 12px;
  text-align: center;
  border-bottom: 2px solid var(--border);
  vertical-align: middle;
}
.compare thead th:first-child { border-bottom: none; }
.compare tbody td {
  padding: 14px 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare tbody td:first-child { text-align: left; }
.compare tbody td:not(:first-child) { text-align: center; width: 180px; }
.compare tbody td:first-child a {
  color: var(--orange);
  font-weight: 400;
}
.compare tbody td:first-child a:hover { text-decoration: underline; }
.compare .check {
  width: 25px;
  height: 26px;
  display: inline-block;
}

.nist {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}
.nist--identify { background: #2d8dd1; } /* blue */
.nist--protect  { background: #7e57c2; } /* purple */
.nist--detect   { background: #e53935; } /* red */
.nist--respond  { background: #fbc02d; } /* yellow */
.nist--recover  { background: #43a047; } /* green */

.legend {
  margin: 24px 0 32px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.legend__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   4. LOCAL PRESENCE
   ========================================================================== */
.local {
  padding: 70px 0;
  background: #fff;
}
.local h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.local p {
  max-width: 820px;
  margin-bottom: 22px;
  line-height: 1.8;
}

/* ==========================================================================
   5. OVERVIEW (tan bg)
   ========================================================================== */
.overview {
  background: var(--tan);
  padding: 77px 0 135px;
  position: relative;
  overflow: hidden;
}
.overview__inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.overview__image {
  position: relative;
}
.overview__image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.85;
  z-index: 1;
}
.overview__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  border-radius: 4px;
}
.overview__text h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.overview__text p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.overview__text .btn { margin-top: 14px; }
.overview__dots {
  position: absolute;
  right: 20px;
  top: 24px;
  pointer-events: none;
  opacity: 0.9;
}
.overview__dots img {
  width: 110px;
  height: auto;
}

/* ==========================================================================
   6. CLIENTS + carousel shared
   ========================================================================== */
.clients {
  padding: 80px 0 40px;
  background: #fff;
}
.clients h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--teal-dark);
  margin-bottom: 48px;
}
.clients__row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
.clients__row li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.clients__row img {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
}

/* Carousel base ------------------------------------------------------- */
.carousel { position: relative; }
.carousel__viewport {
  overflow: hidden;
  /* vertical padding so card hover shadows are not clipped */
  padding: 12px 0;
  margin: -12px 0 0;
}
.carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.45, 0.05, 0.25, 1);
  width: 100%;
}
.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}
.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
}
.carousel__dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel__dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel__dots li.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

/* ==========================================================================
   7. KUNDCASE (mint bg)
   ========================================================================== */
.cases {
  padding: 96px 0;
  background: var(--teal-soft);
  position: relative;
  overflow: hidden;
}
.cases h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 54.6px;
  letter-spacing: -0.84px;
  color: var(--teal-dark);
  margin-bottom: 48px;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.case > img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  background: #ddd;
}
.case__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.case__body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.3;
}
.case__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* ==========================================================================
   8. POSTS (dark teal cards, carousel)
   ========================================================================== */
.posts {
  padding: 96px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.posts::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 100px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--orange) 2px, transparent 2.5px);
  background-size: 20px 20px;
  opacity: 0.9;
  pointer-events: none;
}
.posts h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 54.6px;
  letter-spacing: -0.84px;
  color: var(--teal-dark);
  margin-bottom: 48px;
}
.posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  background: #08555a;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18); }
.post__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: #ddd;
}
.post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post:hover .post__thumb img { transform: scale(1.05); }
.post__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}
.post__body h3 {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 22.1px;
}
.post__body h3 a { color: inherit; }
.post__body h3 a:hover { color: var(--orange); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--teal-dark);
  color: #fff;
  padding: 58px 0 20px;
}
.footer__inner {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 0.6fr;
  gap: 40px;
  align-items: flex-start;
}
.footer__col img { margin-bottom: 20px; width: 150px; height: 40px; }
.footer__col p {
  font-size: 14px;
  line-height: 1.7;
  color: #d6dcdb;
}
.footer__col--info { padding-top: 4px; }
.footer__col--info .footer__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 14px;
  color: #fff;
}
.footer__icon {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__col--info a { color: #fff; }
.footer__col--info a:hover { color: var(--orange); }

.footer__col--links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col--links a {
  color: #fff;
  font-size: 14px;
  transition: color 0.15s;
}
.footer__col--links a:hover { color: var(--orange); }

.footer__col--social {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 4px;
}
.social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer__bottom {
  max-width: 1720px;
  margin: 40px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 13px;
  color: #9fb0af;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
  .services__grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .service { padding: 24px 12px; }
  .service h3 { font-size: 17px; }
}

@media (max-width: 1024px) {
  .header__inner { padding: 0 24px; }

  /* VIKTIGT: backdrop-filter på .site-header skapar en ny "containing
     block" för position:fixed-element inuti. Det skulle squisha drawer:n
     till headerns 64px-höjd. Stäng av blur-effekten på mobil — drawer:n
     behöver kunna positionera sig mot hela viewporten. */
  .site-header {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 1);
  }

  /* ─── MOBILE DRAWER ─────────────────────────────────────────────────
     Full-width drawer som glider in från höger. Position: fixed så den
     scrollar oberoende av main-content + ligger ovanför allt utom headern.
     Drawer:n håller `display:flex column` så vi kan placera contact-footer
     längst ner med margin-top:auto. */
  .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 100;
    /* Slide-in från höger + fade. Innan is-open: helt utanför skärm. */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.2s ease;
    visibility: hidden;
  }
  .main-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .site-header.is-scrolled .main-nav { top: 58px; }
  @media (prefers-reduced-motion: reduce) {
    .main-nav { transition: none; }
  }

  /* Top-level list — vertical stack med hairline-separatorer */
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    padding: 4px 0 0;
    gap: 0;
    flex: 1 1 auto; /* gör att ev. tomt utrymme hamnar mellan list + footer */
  }
  .main-nav > ul > li { border-bottom: 1px solid rgba(0,0,0,0.07); }
  .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    min-height: 56px;
  }
  /* Inverterad CTA i mobil-listan — orange "selected"-look så ögat dras dit */
  .main-nav .nav-cta > a {
    /* Reset desktop-pillen; vi vill ha rad-stil i drawern */
    background: rgba(234,91,12,0.06);
    color: var(--orange);
    border: 0;
    border-radius: 0;
    padding: 16px 24px;
    margin-left: 0;
    box-shadow: none;
    font-weight: 700;
  }
  .main-nav .nav-cta > a.is-current {
    background: rgba(234,91,12,0.10);
    box-shadow: none;
    transform: none;
  }

  /* Chevron som indikerar "expanderbar" på alla has-sub top-level items */
  .main-nav .has-sub > a {
    position: relative;
  }
  .main-nav .has-sub > a::after {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-left: 12px;
    opacity: 0.45;
  }
  .main-nav .has-sub.is-open > a::after {
    transform: rotate(-135deg);
    opacity: 1;
    color: var(--orange);
  }
  .main-nav .has-sub.is-open > a {
    background: rgba(8,85,90,0.04);
    color: var(--orange);
  }

  /* Submenus — gömda by default, fälls ut när parent får .is-open */
  .main-nav .mega,
  .main-nav .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: rgba(8, 85, 90, 0.035);
    padding: 0;
    margin: 0;
    width: auto;
    min-width: 0;
    display: none;
    transition: none;
    grid-template-columns: none;
    gap: 0;
  }
  .main-nav .has-sub.is-open > .mega,
  .main-nav .has-sub.is-open > .sub { display: block; }

  /* Mega menu — staplade accordion-sektioner (en per .mega__col) */
  .main-nav .mega__col {
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .main-nav .mega__col:first-child { border-top: 0; }

  /* mega__head — själva clickable headern. Telefoni-kolumnen wrappas
     dessutom i .mega__head-row pga BETA-taggen — vi använder :has() så
     bara head-rows som faktiskt innehåller en .mega__head får
     accordion-toggle. Andra .mega__head-row (t.ex. Infinity Molnväxel
     med beta-pill) behandlas som vanliga leaf-länkar. */
  .main-nav .mega__col > a.mega__head,
  .main-nav .mega__col > .mega__head-row:has(> a.mega__head) {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    margin: 0;
    border: 0;
    min-height: 56px;
    background: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }
  .main-nav .mega__col > .mega__head-row:has(> a.mega__head) > a.mega__head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    min-height: 0;
    color: inherit;
    font-weight: inherit;
    flex: 1 1 auto;
  }
  /* Chevron läggs på rätt element beroende på struktur */
  .main-nav .mega__col > a.mega__head::after,
  .main-nav .mega__col > .mega__head-row:has(> a.mega__head)::after {
    content: "";
    margin-left: auto;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.45;
  }
  .main-nav .mega__col.is-open > a.mega__head::after,
  .main-nav .mega__col.is-open > .mega__head-row:has(> a.mega__head)::after {
    transform: rotate(-135deg);
    opacity: 1;
    color: var(--orange);
  }
  .main-nav .mega__col.is-open > a.mega__head,
  .main-nav .mega__col.is-open > .mega__head-row:has(> a.mega__head) {
    color: var(--orange);
    background: rgba(234,91,12,0.04);
  }
  .main-nav .mega__icon { width: 18px; height: 18px; }
  /* BETA-pillen mindre i drawern */
  .main-nav .mega__beta {
    font-size: 9px;
    padding: 1px 5px;
    margin-left: 6px;
  }

  /* Leaf-variant av .mega__head-row: ingen .mega__head inuti = vanlig
     leaf-länk med beta-pill. Behandlas exakt som <a>-leaf-länkar nedan. */
  .main-nav .mega__col > .mega__head-row:not(:has(> a.mega__head)) { display: none; }
  .main-nav .mega__col.is-open > .mega__head-row:not(:has(> a.mega__head)) {
    display: flex;
    align-items: center;
    padding: 12px 24px 12px 44px;
    font-size: 14.5px;
    font-weight: 400;
    color: #000;
    min-height: 44px;
    line-height: 1.35;
    background: transparent;
  }
  .main-nav .mega__col.is-open > .mega__head-row:not(:has(> a.mega__head)) > a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    flex: 1 1 auto;
  }

  /* Göm alla column-children utom headern; visa när col.is-open.
     :has() filtrerar så bara header-varianten av head-row exkluderas. */
  .main-nav .mega__col > :not(.mega__head):not(.mega__head-row:has(> a.mega__head)) { display: none; }
  .main-nav .mega__col.is-open > :not(.mega__head):not(.mega__head-row:has(> a.mega__head)) { display: block; }

  /* Direkta child-länkar i en öppen kolumn */
  .main-nav .mega__col.is-open > a:not(.mega__head) {
    display: flex;
    align-items: center;
    padding: 12px 24px 12px 44px;
    font-size: 14.5px;
    font-weight: 400;
    color: #000;
    min-height: 44px;
    line-height: 1.35;
  }

  /* Nested mega__sub-links i en öppen kolumn */
  .main-nav .mega__col.is-open .mega__sub-links {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 0;
  }
  .main-nav .mega__col.is-open .mega__sub-links a {
    display: flex;
    align-items: center;
    padding: 10px 24px 10px 60px;
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(0,0,0,0.78);
    min-height: 44px;
    line-height: 1.35;
  }

  /* Plain .sub-list under "Om Oss" / "För Våra Kunder" */
  .main-nav .sub {
    list-style: none;
    padding: 4px 0;
  }
  .main-nav .sub li a {
    display: flex;
    align-items: center;
    padding: 12px 24px 12px 40px;
    font-size: 14.5px;
    font-weight: 400;
    color: #000;
    min-height: 44px;
    line-height: 1.35;
  }

  /* ─── DRAWER FOOTER — direkt-kontakt ───────────────────────────────
     Ligger längst ner i drawern: stor orange CTA + ring-länk.
     Synlig endast i mobil-drawer. */
  .main-nav__contact {
    margin-top: auto;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(0,0,0,0.07);
    background: linear-gradient(180deg, rgba(245,243,238,0.4) 0%, var(--offwhite, #f5f3ee) 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .main-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 18px -4px rgba(234, 91, 12, 0.45);
    min-height: 50px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .main-nav__cta:active { transform: translateY(1px); box-shadow: 0 3px 10px -3px rgba(234, 91, 12, 0.45); }
  .main-nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 6px;
    color: var(--teal-dark, #08555a);
    text-decoration: none;
    min-height: 44px;
  }
  .main-nav__phone svg { color: var(--orange); flex-shrink: 0; }
  .main-nav__phone span { display: flex; flex-direction: column; line-height: 1.25; }
  .main-nav__phone strong { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }
  .main-nav__phone small { font-size: 12px; color: var(--muted, #75878a); margin-top: 2px; }

  /* Burger-animation: tre streck → X */
  .burger { display: inline-flex; }
  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Lås body-scroll när drawer är öppen (klassen sätts av JS) */
  body.nav-open { overflow: hidden; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { padding: 60px 24px; }
  .hero__text h1 { font-size: 40px; line-height: 1.2; letter-spacing: -1px; }
  .hero__image { min-height: 320px; }

  .services { margin-top: 0; padding: 32px 24px; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }

  .overview__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .overview__dots { display: none; }

  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .posts__grid { grid-template-columns: 1fr; }
  .clients__row { grid-template-columns: repeat(3, 1fr); }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .hero__text h1 { font-size: 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .packages h2, .cases h2, .posts h2 { font-size: 30px; line-height: 1.2; }
  .compare { font-size: 14px; display: block; overflow-x: auto; }
  .compare thead th, .compare tbody td { padding: 10px 8px; }
  .compare tbody td:not(:first-child) { width: auto; min-width: 90px; }
  .cases__grid { grid-template-columns: 1fr; }
  .clients__row { grid-template-columns: repeat(2, 1fr); }
  .post { grid-template-columns: 100px 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Reduce motion support — användare med prefers-reduced-motion:reduce
   (vestibulära besvär, migrän, motion sickness) får statisk sajt utan
   animationer eller smooth-scroll. Vi reducerar inte tar bort allt —
   transitions körs ändå men på 0.01ms så slutläget visas direkt. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Reveal-elementen måste vara synliga direkt — annars förblir de
     osynliga om IntersectionObserver inte triggar. */
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   SUBPAGE STYLES — used by Telefoni service pages and other inner pages
   ========================================================================== */

:root {
  --teal-tint:     rgba(116, 165, 168, 0.1);  /* Hero tint bg */
  --offwhite:      #f5f3f2;                    /* Warm off-white section bg */
  --teal-callout:  #08555a;                    /* Callout card bg (matches live) */
  --h3-feature:    #08555a;                    /* Small feature headings */
}

/* ---------- Subpage hero --------------------------------------------- */
.page-hero {
  background: var(--teal-tint);
  padding: 72px 0 72px;
  overflow: hidden;
}
.page-hero__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero__text { display: flex; flex-direction: column; gap: 22px; }
.page-hero__text h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--teal-dark);
}
.page-hero__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  max-width: 560px;
}
.page-hero__text .btn { align-self: flex-start; margin-top: 8px; }
.page-hero__image img {
  width: 100%;
  max-width: 640px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.page-hero__image--no-shadow img {
  box-shadow: none;
  border-radius: 0;
}
/* Stacked dual-image — two screenshots layered with depth */
.img-stack {
  position: relative;
  min-height: 340px;
}
.img-stack__back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  animation: img-float-back 6s ease-in-out infinite;
  transition: translate 0.4s ease, rotate 0.4s ease;
}
.img-stack__front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: img-float-front 6s ease-in-out infinite;
  transition: translate 0.4s ease, rotate 0.4s ease;
}
@keyframes img-float-back {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(0.5deg); }
}
@keyframes img-float-front {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(-0.5deg); }
}
.img-stack:hover .img-stack__back {
  translate: 28px -28px;
  rotate: 2deg;
  animation-play-state: paused;
}
.img-stack:hover .img-stack__front {
  translate: -28px 28px;
  rotate: -2deg;
  animation-play-state: paused;
}
.page-hero__image--glow {
  position: relative;
}
.page-hero__image--glow::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(234,91,12,0.2), transparent 60%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.page-hero__image--glow picture,
.page-hero__image--glow img {
  position: relative;
  z-index: 1;
}
/* Centered variant — text-only hero, no image column (e.g. IT-säkerhet subpages) */
.page-hero--centered .page-hero__inner {
  grid-template-columns: 1fr;
  max-width: 840px;
  text-align: center;
}
.page-hero--centered .page-hero__text { align-items: center; }
.page-hero--centered .page-hero__text p { margin-left: auto; margin-right: auto; }
.page-hero--centered .hero-badge { align-self: center; }
/* Override default left-aligned button — centered hero needs centered btn */
.page-hero--centered .page-hero__text .btn { align-self: center; }
.page-hero--centered .page-hero__text .back-link { align-self: center; }

/* ---------- Dark hero variant (e.g. Mobilsäkerhet page) -------------- */
.page-hero--dark { background: var(--h3-feature); } /* #08555a */
.page-hero--dark h1,
.page-hero--dark p { color: #fff; }
.page-hero--dark .btn { background: var(--orange); color: #fff; border-color: var(--orange); }
.page-hero--dark .btn:hover { background: transparent; color: #fff; }

/* ---------- Subtly tinted hero — soft offwhite gradient.
   Use when the hero is followed directly by a white-bg section and a
   bit of contrast/separation is desired. */
.page-hero--tint {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(234,91,12,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(8,85,90,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--offwhite, #f5f3ee) 0%, #fbf9f4 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}
.hero-badge svg { color: var(--orange); }
/* Availability variant — green when open, neutral/amber when closed */
.hero-badge--live {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  transition: background 0.3s ease, color 0.3s ease;
}
/* Base pulse-dot — sized + animated. Color is overridden per parent context
   (.hero-badge--live, .help-fab__status, .live-queues__hint). */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.pulse-dot--small { width: 6px; height: 6px; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-dot { animation: none; }
}
.hero-badge--live .pulse-dot { background: #10b981; }
/* Closed state — subtle amber, dot stops pulsing */
.hero-badge--live.is-closed {
  background: rgba(234, 91, 12, 0.1);
  color: #9a3412;
}
.hero-badge--live.is-closed .pulse-dot {
  background: #f59e0b;
  animation: none;
  box-shadow: none;
}

/* ---------- Embedded live wallboard (Kontakta-Oss) --------------------
   Wallboards are dense dashboards — they need a minimum viewport to be
   readable. The .live-queues-section wraps the embed in a horizontally
   scrollable container so we can enforce a minimum size on the iframe
   itself. On viewports smaller than the minimum, users get a horizontal
   scroll instead of a squashed/cropped board. */
.live-queues-section {
  padding: 4px 24px 32px;
  background: linear-gradient(180deg,
    var(--offwhite, #f5f3ee) 0%,
    rgba(245, 243, 238, 0.4) 100%);
  /* Allow horizontal scroll when viewport < min-width of card */
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.live-queues {
  width: 100%;
  /* Hard minimums so the dashboard is always legible */
  min-width: 760px;
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 6px rgba(8, 85, 90, 0.06),
    0 12px 28px -10px rgba(8, 85, 90, 0.18);
}
.live-queues__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--offwhite, #f5f3ee);
  border-bottom: 1px solid rgba(8, 85, 90, 0.08);
}
.live-queues__title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal-dark, #08555a);
}
.live-queues__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #065f46;
}
.live-queues__embed {
  position: relative;
  width: 100%;
  /* Aspect matchar wallboard-bildens 1200x360 (server levererar 2400x720
     men ratio är samma) — så bilden fyller exakt utan att croppas. */
  aspect-ratio: 1200 / 360;
  background: #0a1418;
}
.live-queues__snapshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  /* Bilden är dold tills den faktiskt laddat via .is-loaded — undviker
     att browsern visar trasig bild-ikon eller tomt under fetch. */
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.live-queues__embed.is-loaded .live-queues__snapshot { opacity: 1; }

/* Skeleton — visas omedelbart medan iframen initierar (DNS/TLS/JS/WS).
   Pulse-animation i mörka teal-toner för att matcha wallboardens dark mode.
   Faden ut när initLiveQueueSkeleton sätter .is-loaded på .live-queues__embed. */
.live-queues__skeleton {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 32px 48px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.live-queues__embed.is-loaded .live-queues__skeleton {
  opacity: 0;
}
.live-queues__skeleton-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.live-queues__skeleton-bar {
  display: block;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: live-queues-skel-pulse 1.6s ease-in-out infinite;
}
.live-queues__skeleton-bar--label { width: 42%; }
.live-queues__skeleton-bar--num { width: 64px; height: 26px; }
@keyframes live-queues-skel-pulse {
  0%   { background-position: 200% 0; opacity: 0.7; }
  50%  { background-position: 0 0;   opacity: 1; }
  100% { background-position: -200% 0; opacity: 0.7; }
}

@media (max-width: 900px) {
  .live-queues__skeleton { padding: 24px 32px; gap: 14px; }
}
/* Phone — keep min-width so it scrolls horizontally rather than shrinking;
   the user can swipe across to see all queues. Hint that it's swipable. */
@media (max-width: 720px) {
  .live-queues-section {
    padding: 4px 12px 24px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0) 90%, rgba(8,85,90,0.06) 100%),
      linear-gradient(180deg, var(--offwhite, #f5f3ee) 0%, rgba(245, 243, 238, 0.4) 100%);
  }
  .live-queues__skeleton { padding: 20px 24px; gap: 12px; }
  .live-queues__skeleton-bar { height: 14px; }
  .live-queues__skeleton-bar--num { height: 22px; width: 52px; }
}

/* ---------- Setup / steps + status dashboard (Mobil-säkerhet) -------- */
.setup-section { padding: 96px 0; background: #fff; }
.setup-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.setup-section__text h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 41.6px;
  letter-spacing: -0.64px;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.setup-section__text p { margin-bottom: 24px; line-height: 1.75; }

.steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.steps-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--body);
}
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f08144;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.setup-section__dashboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.status-card {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.status-card--primary {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
}
.status-card--primary .status-card__icon--check {
  color: #16a34a;
}
.status-card h3 {
  font-size: 17.6px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--h3-feature);
  margin-bottom: 4px;
}
.status-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.status-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.status-card--sub {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 16px;
}
.status-card--sub .status-card__icon { width: 38px; height: 38px; }

/* ---------- Split section (text + image) ----------------------------- */
.split-section { padding: 64px 0; }
.split-section--offwhite { background: var(--offwhite); }
.split-section--teal { background: var(--teal-tint); }
.split-section__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section--reverse .split-section__inner > :first-child { order: 2; }
.split-section--reverse .split-section__inner > :last-child { order: 1; }
/* Toppjustering — för two-column comparison där olikt textinnehåll
   annars skulle göra att kolumnerna hamnar på olika höjd (eyebrow vs
   eyebrow ska linjera horisontellt). */
.split-section--align-top .split-section__inner { align-items: start; }
/* Centered variant — single column, narrower, centered text (e.g. offer strip).
   Use this instead of inline style="grid-template-columns: 1fr; text-align:..." */
.split-section--centered .split-section__inner {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
}
.split-section--centered .split-section__text { margin: 0 auto; }
/* Stacked variant — text above, full-width image below */
.split-section--stacked__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.split-section--stacked__text,
.split-section--stacked__image { max-width: 720px; }
.split-section--stacked__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
@media (max-width: 768px) {
  .split-section--stacked__inner { padding: 0 24px; }
}
.split-section__text h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 41.6px;
  letter-spacing: -0.64px;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.split-section__text p { margin-bottom: 14px; line-height: 1.75; }
/* Luft mellan bullet-list och efterföljande paragraf i split-section */
.split-section__text .bullet-list + p { margin-top: 18px; }
/* Compact variant — krymp bilden för balans mot kort textkolumn */
.split-section--compact .split-section__image img { max-width: 440px; }
.split-section__text h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 22px 0 8px;
  letter-spacing: -0.2px;
}
.split-section__text h3:first-child { margin-top: 0; }
.split-section__image img {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 8px;
}

/* Staged variant — soft gradient backdrop + glow blob behind product image.
   Apply to product/device shots that otherwise float plainly on white. */
.split-section__image--staged {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  padding: 32px 16px;
}
.split-section__image--staged::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(234,91,12,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(8,85,90,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--offwhite, #f5f3ee) 0%, #fff 100%);
  z-index: -2;
}
.split-section__image--staged::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: radial-gradient(circle, rgba(234,91,12,0.18) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.split-section__image--staged img {
  position: relative;
  filter: drop-shadow(0 18px 32px rgba(8,85,90,0.18)) drop-shadow(0 4px 8px rgba(8,85,90,0.10));
  border-radius: 12px;
}
@media (max-width: 720px) {
  .split-section__image--staged { padding: 20px 8px; }
  .split-section__image--staged::before { inset: 4% 2%; border-radius: 20px; }
}

.h3-feature {
  font-size: 23.2px;
  font-weight: 400;
  line-height: 32.48px;
  letter-spacing: -0.464px;
  color: var(--h3-feature);
  margin-bottom: 20px;
}

.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  line-height: 1.7;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-dark);
}
.bullet-list li strong { color: var(--teal-dark); font-weight: 700; }
.bullet-list--light li { color: #fff; }
.bullet-list--light li::before { background: var(--orange); }
.bullet-list--light li strong { color: #fff; }
/* Tight variant — kompaktare radavstånd */
.bullet-list--tight li { padding: 3px 0 3px 20px; line-height: 1.5; }
.bullet-list--tight li::before { top: 12px; }
/* Tighter variant — ännu kompaktare för långa listor */
.bullet-list--tighter li { padding: 2px 0 2px 20px; line-height: 1.45; }
.bullet-list--tighter li::before { top: 10px; }
/* Lead-in line — kort intro-mening ovanför bullet-listan, samma block */
.bullet-list__lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 14px;
  line-height: 1.5;
}
/* Centrerad textblock-variant — håll bullets vänsterställda i ett centrerat block */
.bullet-list--center-block {
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Feature grid section (centered heading + cards) ---------- */
.feature-section { padding: 96px 0; background: #fff; }
/* Off-white bg variant. Use this instead of inline style="background:..."  */
.feature-section--offwhite { background: var(--offwhite); }
/* Subtil top-divider — visuell sektionsbrytning när bg-färgerna är lika
   (t.ex. två offwhite-sektioner i rad, eller tint→offwhite där båda är pale) */
.feature-section--divider-top {
  border-top: 1px solid rgba(8, 85, 90, 0.12);
}
.section-title-center {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 41.6px;
  letter-spacing: -0.64px;
  color: var(--teal-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}
.section-title-center::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-intro-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
  line-height: 1.7;
  color: var(--body);
}
/* Två intro-paragrafer i rad — krympt mellanrum (relaterad info) */
.section-intro-center + .section-intro-center {
  margin-top: -32px;
}

/* Tiny SVG icon used inline inside body text (e.g. office-list intro) */
.inline-icon {
  display: inline-block;
  vertical-align: -2px;
  color: var(--teal-dark, #08555a);
  margin: 0 2px;
}

.feature-grid {
  display: grid;
  gap: 24px;
}
/* Stacked feature grids auto-space (replaces inline margin-top hacks) */
.feature-grid + .feature-grid { margin-top: 24px; }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 840px; margin-left: auto; margin-right: auto; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid--5 { grid-template-columns: repeat(5, 1fr); }

.feature-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(246,250,251,0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 38px 28px 34px;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(8, 85, 90, 0.04),
    0 4px 12px rgba(8, 85, 90, 0.05),
    0 24px 48px -20px rgba(8, 85, 90, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  isolation: isolate;
}
.feature-card::before {
  /* Top-left soft gradient sheen */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 0%, rgba(8, 85, 90, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(234, 91, 12, 0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0.9;
}
.feature-card::after {
  /* Hover-only subtle ring — iOS-style focus ring */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(8, 85, 90, 0.35) 0%, rgba(234, 91, 12, 0.18) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 4px rgba(8, 85, 90, 0.06),
    0 12px 24px rgba(8, 85, 90, 0.09),
    0 40px 80px -24px rgba(8, 85, 90, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }

.feature-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 20px;           /* iOS app-icon squircle */
  background:
    linear-gradient(135deg, #1f8a90 0%, #0e6b70 55%, #055559 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.55) inset,
    0 -2px 6px rgba(0, 0, 0, 0.12) inset,
    0 6px 16px -4px rgba(8, 85, 90, 0.5),
    0 2px 4px rgba(8, 85, 90, 0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.feature-card__icon::before {
  /* Specular highlight at top */
  content: "";
  position: absolute;
  inset: 2px 2px 50% 2px;
  border-radius: 18px 18px 40% 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, transparent 100%);
  pointer-events: none;
}
.feature-card__icon svg { position: relative; }
.feature-card:hover .feature-card__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.65) inset,
    0 -2px 6px rgba(0, 0, 0, 0.12) inset,
    0 14px 28px -4px rgba(8, 85, 90, 0.6),
    0 4px 10px rgba(8, 85, 90, 0.35);
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--h3-feature);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Whole-card link variant — card is the <a> tag, reuses the canonical
   `.link-arrow` child (do NOT override its font/arrow styles).
   Only layout tweaks are allowed here. */
a.feature-card,
.feature-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.feature-card--link .link-arrow {
  margin-top: 14px;
  justify-content: center;   /* center the arrow under centered text */
}
/* Card-wide hover drives the arrow animation (since .link-arrow itself
   isn't hovered when the parent card is the link target). */
.feature-card--link:hover .link-arrow { gap: 18px; }
.feature-card--link:hover .link-arrow::after { transform: translateX(6px); }

/* ---------- Callout (teal card with white text) ----------------------- */
.callout-section { padding: 0 0 96px; background: #fff; }
.callout {
  background: var(--teal-callout);
  color: #fff;
  padding: 44px 48px;
  border-radius: 12px;
  max-width: 1040px;
  margin: 0 auto;
}
.callout h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 41.6px;
  letter-spacing: -0.64px;
  color: #fff;
  margin-bottom: 16px;
}
.callout p { color: #fff; margin-bottom: 14px; line-height: 1.75; }
.callout .bullet-list { margin: 10px 0 18px; }

/* ---------- CTA section (light teal bg) ------------------------------ */
.cta-section {
  background: var(--teal-tint);
  padding: 80px 0;
  overflow: hidden;
}
.cta-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Centered variant — text-only, no image column. Use this modifier
   instead of inline `style="grid-column: 1/-1; text-align: center"`. */
.cta-section--centered .cta-section__inner {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
}
.cta-section--centered .cta-section__text { text-align: center; }
.cta-section__image img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.cta-section__text h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 41.6px;
  letter-spacing: -0.64px;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.cta-section__text p { margin-bottom: 14px; line-height: 1.7; }
.cta-section__text p strong { color: var(--teal-dark); }
.cta-section__text a:not(.btn) { color: var(--orange); text-decoration: underline; }
.cta-section__text .btn { margin-top: 12px; }

/* ==========================================================================
   Floating help button (FAB) — global self-service entry point
   Appears via footer partial on every page. Static link panel (no backend).
   ========================================================================== */
.help-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  font-family: inherit;
}
/* Help-FAB toggle uses the same hover/active "invert" logic as .nav-cta in
   the header — idle = filled orange (primary CTA), hover = invert to outlined
   white+orange, is-open ("vald") = persistent inverted state until closed. */
.help-fab__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 2px 6px -2px rgba(234, 91, 12, 0.4), 0 6px 20px -4px rgba(234, 91, 12, 0.45);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.help-fab__toggle:hover {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -2px rgba(234, 91, 12, 0.35);
}
.help-fab.is-open .help-fab__toggle {
  background: #fff;
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 6px 14px -2px rgba(234, 91, 12, 0.35);
}
.help-fab__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow:
    0 2px 4px rgba(8, 85, 90, 0.06),
    0 12px 32px rgba(8, 85, 90, 0.15),
    0 30px 60px -20px rgba(8, 85, 90, 0.25);
  border: 1px solid rgba(8, 85, 90, 0.08);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.help-fab.is-open .help-fab__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.help-fab__panel[hidden] { display: block; }  /* we use opacity/pointer-events instead */
.help-fab__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 6px;
}
.help-fab__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #065f46;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.help-fab__status .pulse-dot { background: #10b981; }
.help-fab__status.is-closed {
  background: rgba(234, 91, 12, 0.1);
  color: #9a3412;
}
.help-fab__status.is-closed .pulse-dot {
  background: #f59e0b;
  animation: none;
  box-shadow: none;
}
.help-fab__close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.help-fab__close:hover { background: rgba(8,85,90,0.06); color: var(--teal-dark); }
.help-fab__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 6px 0 12px;
  letter-spacing: -0.2px;
}
.help-fab__links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.help-fab__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--body);
  text-decoration: none;
  transition: background 0.15s ease;
}
.help-fab__links a:hover { background: rgba(234, 91, 12, 0.06); }
.help-fab__links svg { color: var(--orange); flex-shrink: 0; }
.help-fab__links span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.help-fab__links strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
}
.help-fab__links em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}
.help-fab__cta.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.help-fab__phone {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.help-fab__phone strong { color: var(--teal-dark); }
.help-fab__phone:hover { color: var(--orange); }
.help-fab__phone:hover strong { color: var(--orange); }

@media (max-width: 640px) {
  .help-fab { right: 16px; bottom: 16px; }
  .help-fab__toggle { padding: 10px 14px 10px 12px; font-size: 13px; }
  .help-fab__label { display: none; }  /* icon-only on mobile */
  .help-fab__panel {
    width: calc(100vw - 32px);
    right: 0;
    max-width: 360px;
  }
}

/* Hide while print */
@media print { .help-fab { display: none; } }

/* ==========================================================================
   Quick-help pills (inline self-serve links in hero area)
   ========================================================================== */
/* Intent row — two primary action options ("Prata med säljare" / "Redan kund?")
   in a lightweight 2-column layout. Title + one-line description + arrow,
   subtle hover lift. No icons, no card backgrounds — text-first so it sits
   inside the centered hero without competing with the H1. */
.intent-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px auto 4px;
  width: 100%;
  max-width: 720px;
  text-align: left;
}
.intent {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 16px;
  padding: 16px 20px;
  border: 1px solid rgba(8, 85, 90, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.intent__title {
  grid-column: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark, #08555a);
  letter-spacing: 0.1px;
  transition: color 0.2s ease;
}
.intent__desc {
  grid-column: 1;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.45;
}
.intent__arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 22px;
  color: var(--orange, #ea5b0c);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.intent:hover {
  border-color: var(--orange, #ea5b0c);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(234, 91, 12, 0.35);
}
.intent:hover .intent__title { color: var(--orange, #ea5b0c); }
.intent:hover .intent__arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .intent-row { grid-template-columns: 1fr; max-width: 480px; }
  .intent { padding: 14px 18px; }
}

.quick-help {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.quick-help__label {
  font-size: 13px;
  color: var(--muted);
  align-self: center;
  margin-right: 4px;
}
.quick-help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(8, 85, 90, 0.06);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.quick-help a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}
.quick-help a svg { width: 14px; height: 14px; }

/* ==========================================================================
   Trust strip — greyscale logos row + stat (SaaS-standard under hero)
   ========================================================================== */
.trust-strip {
  padding: 40px 0 36px;
  background: #fff;
  border-top: 1px solid rgba(8, 85, 90, 0.06);
  border-bottom: 1px solid rgba(8, 85, 90, 0.06);
}
.trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.trust-strip__stat {
  font-size: 15px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.5;
  border-right: 1px solid rgba(8, 85, 90, 0.12);
  padding-right: 48px;
}
.trust-strip__stat strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.6px;
  margin-bottom: 4px;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
  flex-wrap: wrap;
}
/* Logos rendered in full brand color (we don't own the right to grayscale).
   Consistent visual height via fixed height + auto width + object-fit. */
.trust-strip__logos img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.trust-strip__logos img:hover { transform: scale(1.05); }
@media (max-width: 800px) {
  .trust-strip__inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-strip__stat { border-right: 0; padding-right: 0; border-bottom: 1px solid rgba(8,85,90,0.12); padding-bottom: 20px; max-width: 100%; }
}

/* ==========================================================================
   Use-case grid — flexibla kort med ikon + titel + beskrivning
   (t.ex. "Vad vill ni följa upp?" på Wallboard-sidan)
   ========================================================================== */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.use-case-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.1);
  border-radius: 12px;
}
.use-case-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(234, 91, 12, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.use-case-card__icon svg { width: 22px; height: 22px; }
.use-case-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0;
  letter-spacing: -0.2px;
}
.use-case-card__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Feature explore grid — 3-col kort som länkar till inkluderade funktioner
   med egna sidor (t.ex. Livechatt, Wallboard, Måltavla på Infinity-sidan)
   ========================================================================== */
.section-eyebrow-center {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}
.feature-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.feature-explore-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-explore-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(8, 85, 90, 0.08);
}
.feature-explore-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(234, 91, 12, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-explore-card__icon svg { width: 24px; height: 24px; }
.feature-explore-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.2px;
  margin: 0;
}
.feature-explore-card__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
  margin: 0;
}
.feature-explore-card__link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}
.feature-explore-card__link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.2s ease;
}
.feature-explore-card:hover .feature-explore-card__link::after {
  transform: translateX(3px);
}
@media (max-width: 800px) {
  .feature-explore-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   Menu tree — visualisering av menystrukturer (review-sida)
   ========================================================================== */
.menu-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 820px) {
  .menu-compare { grid-template-columns: 1fr; }
}
.menu-tree {
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.1);
  border-radius: 12px;
  padding: 26px 30px;
}
.menu-tree__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 6px;
}
.menu-tree__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 20px;
}
.menu-tree__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-tree__list > li {
  padding: 8px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-dark);
}
.menu-tree__list > li + li {
  border-top: 1px solid rgba(8, 85, 90, 0.06);
}
.menu-tree__sub {
  list-style: none;
  margin: 6px 0 4px 18px;
  padding: 4px 0 4px 14px;
  border-left: 1px solid rgba(8, 85, 90, 0.18);
}
.menu-tree__sub li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 3px 0;
}
.menu-tree__tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  color: #fff;
}
.menu-tree__tag--new      { background: #16a34a; }
.menu-tree__tag--moved    { background: var(--orange); }
.menu-tree__tag--removed  { background: #dc2626; }
.menu-tree__tag--renamed  { background: #1e40af; }
.menu-tree__tag--split    { background: #7c3aed; }
.menu-tree__strike {
  text-decoration: line-through;
  opacity: 0.55;
}

/* Beta-länkar grid */
.beta-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.beta-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: var(--teal-dark);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.beta-link-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.beta-link-card__title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--teal-dark);
}
.beta-link-card__url {
  font-size: 12.5px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--muted);
}

/* ==========================================================================
   Platform chips — namnlista som piller (t.ex. Avaya · Mitel · Panasonic)
   ========================================================================== */
.platform-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  max-width: 760px;
  padding: 0 24px;
}
.platform-chips__chip {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.18);
  border-radius: 999px;
  padding: 8px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.platform-chips__chip:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}
.platform-chips__chip--count {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ==========================================================================
   Value bar — teal-mörk horisontal balk med 4 nyttor + ikoner.
   Placeras efter capability-bullets för att kontrastera "vad ni får" mot
   "vad det betyder strategiskt".
   ========================================================================== */
.value-bar {
  background: linear-gradient(135deg, #08555a 0%, #055559 60%, #043e41 100%);
  border-radius: 14px;
  padding: 36px 40px;
  margin: 56px auto 0;
  max-width: 1080px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(8, 85, 90, 0.18);
}
.value-bar__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  text-align: center;
}
.value-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.value-bar__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(234, 91, 12, 0.18);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-bar__icon svg { width: 18px; height: 18px; }
.value-bar__text {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  padding-top: 5px;
}
@media (max-width: 920px) {
  .value-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 540px) {
  .value-bar { padding: 28px 24px; }
  .value-bar__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ==========================================================================
   Benefit grid — 2×2 mini-kort med SVG-ikon + ledtext
   ========================================================================== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(8, 85, 90, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(8, 85, 90, 0.08);
}
.benefit-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(234, 91, 12, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon svg { width: 22px; height: 22px; }
.benefit-card__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--teal-dark);
  padding-top: 8px;
}
@media (max-width: 720px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================================================
   Value strip — tre snabba pillars (under hero)
   ========================================================================== */
.value-strip {
  padding: 36px 0;
  background: #fff;
  border-top: 1px solid rgba(8, 85, 90, 0.06);
  border-bottom: 1px solid rgba(8, 85, 90, 0.06);
}
.value-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: center;
}
.value-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.value-pillar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f8a90, #0e6b70 60%, #055559);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(8, 85, 90, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.value-pillar__text { display: flex; flex-direction: column; line-height: 1.4; }
.value-pillar__text strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.2px;
}
.value-pillar__text span {
  font-size: 13.5px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .value-strip__inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   Hero CTA row — knapp + ghost-länk sida vid sida
   ========================================================================== */
.hero-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hero-cta-row .btn { margin-top: 0; }

/* ==========================================================================
   Info card — enskild upplysning (t.ex. fakturering, integritet)
   ========================================================================== */
.info-card {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.1);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f8a90, #0e6b70 60%, #055559);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(8, 85, 90, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.info-card__text h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.info-card__text p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
}
@media (max-width: 640px) {
  .info-card { grid-template-columns: 1fr; padding: 26px 24px; }
}

/* ==========================================================================
   Office card — kontaktinformation per regionalkontor
   ========================================================================== */
.office-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.office-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(246,250,251,0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 32px 28px 28px;
  box-shadow:
    0 1px 2px rgba(8, 85, 90, 0.04),
    0 4px 12px rgba(8, 85, 90, 0.05),
    0 24px 48px -20px rgba(8, 85, 90, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.office-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(8, 85, 90, 0.05),
    0 40px 80px -24px rgba(8, 85, 90, 0.18);
}
.office-card--primary {
  background: linear-gradient(180deg, #055559 0%, #08555a 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
}
.office-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.office-card--primary .office-card__eyebrow { color: #fbb580; }
.office-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.office-card--primary h3 { color: #fff; }
.office-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.office-card__details li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}
.office-card--primary .office-card__details li { color: rgba(255,255,255,0.88); }
.office-card__details svg {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}
.office-card--primary .office-card__details svg { color: #fbb580; }
.office-card__details a { color: inherit; }
.office-card__details a:hover { color: var(--orange); }
.office-card--primary .office-card__details a:hover { color: #fff; text-decoration: underline; }
/* Link variant — whole card is a link */
a.office-card { text-decoration: none; color: inherit; cursor: pointer; }

@media (max-width: 1024px) {
  .office-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Process / "så går det till" — 3 steg på en horisontell linje
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 24px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(8, 85, 90, 0.2) 0,
    rgba(8, 85, 90, 0.2) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(234, 91, 12, 0.15);
}
.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .process-timeline { grid-template-columns: 1fr; gap: 28px; }
  .process-timeline::before { display: none; }
}

/* ==========================================================================
   Action list — full-width klickbara rader (alternativ till .feature-grid)
   Modern directory-stil, inspirerad av Linear/Vercel/Notion.
   Använd när: du har 2–6 jämförbara val som ska kännas som en lista
   uppifrån ner (inte ett grid med kort).
   ========================================================================== */

.action-list {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(8, 85, 90, 0.12);
}
.action-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 24px;
  border-bottom: 1px solid rgba(8, 85, 90, 0.12);
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.action-row::before {
  /* Left accent bar appears on hover */
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--orange);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.action-row:hover {
  background: linear-gradient(90deg, rgba(234, 91, 12, 0.03) 0%, transparent 100%);
  padding-left: 36px;
}
.action-row:hover::before { transform: scaleY(1); }

.action-row__index {
  font-size: 34px;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  color: rgba(8, 85, 90, 0.35);
  letter-spacing: -1px;
  transition: color 0.3s ease;
}
.action-row:hover .action-row__index { color: var(--orange); }

.action-row__content h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.action-row__content p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  margin: 0;
}

.action-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.action-row__cta::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 9px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 9'><path d='M0 4.5h44M40 0.5l8 4-8 4' stroke='%23ea5b0c' stroke-width='1' fill='none' stroke-linecap='square'/></svg>") no-repeat center / contain;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.action-row:hover .action-row__cta { gap: 18px; }
.action-row:hover .action-row__cta::after { transform: translateX(6px); }

/* Icon variant — when you want an icon instead of a number (smaller list) */
.action-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f8a90 0%, #0e6b70 55%, #055559 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.5) inset,
    0 6px 14px -4px rgba(8, 85, 90, 0.5);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.action-row:hover .action-row__icon { transform: scale(1.06); }

/* Size variant: smaller / more compact */
.action-list--compact .action-row { padding: 22px 24px; gap: 24px; }
.action-list--compact .action-row__index { font-size: 22px; }
.action-list--compact .action-row__icon { width: 36px; height: 36px; border-radius: 10px; }
.action-list--compact .action-row__content h3 { font-size: 17px; margin-bottom: 2px; }
.action-list--compact .action-row__content p { font-size: 14px; }

/* Two-column variant — för långa funktionslistor (18+ items) */
.action-list--two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  border-radius: 14px;
}
.action-list--two-col .action-row {
  padding: 14px 16px;
  gap: 14px;
  grid-template-columns: 36px 1fr;
  border-bottom: 1px solid rgba(8,85,90,0.08);
}
.action-list--two-col .action-row:nth-last-child(-n+2) { border-bottom: 0; }
.action-list--two-col .action-row__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}
.action-list--two-col .action-row__icon svg { width: 18px; height: 18px; }
.action-list--two-col .action-row__content h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 2px;
  letter-spacing: -0.1px;
}
.action-list--two-col .action-row__content p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: var(--body);
}
@media (max-width: 720px) {
  .action-list--two-col { grid-template-columns: 1fr; }
  .action-list--two-col .action-row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(8,85,90,0.08); }
  .action-list--two-col .action-row:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .action-row { grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 16px; }
  .action-row__cta { grid-column: 1 / -1; grid-row: 2; margin-top: 8px; padding-left: 70px; }
  .action-row__index { font-size: 24px; }
}

/* ---------- Contact form (kanonisk, återanvänds på alla kontaktsidor) -- */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 40px 44px 36px;
  box-shadow:
    0 1px 2px rgba(8, 85, 90, 0.04),
    0 4px 12px rgba(8, 85, 90, 0.05),
    0 24px 48px -20px rgba(8, 85, 90, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__row--single { grid-template-columns: 1fr; }
.contact-form__row--3col { grid-template-columns: 2fr 1fr 1.5fr; }
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 0.1px;
}
.contact-form__field label .req { color: var(--orange); margin-left: 2px; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(8, 85, 90, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--body);
  background: rgba(246, 250, 251, 0.6);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23055559' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 40px;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(234, 91, 12, 0.12);
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.contact-form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  flex-shrink: 0;
}
.contact-form__consent a { color: var(--orange); text-decoration: underline; }
.contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}
.contact-form__submit {
  align-self: flex-start;
}
.contact-form__status {
  font-size: 14px;
  min-height: 1.2em;
}
.contact-form__status--ok { color: #16a34a; }
.contact-form__status--err { color: #dc2626; }
.contact-form__recaptcha-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-form__recaptcha-note a { color: var(--orange); }

/* Sektionsrubrik inuti formulär — för flersektionsformulär (t.ex. ägarbyte) */
.contact-form__heading {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.1px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8, 85, 90, 0.10);
  margin-top: 8px;
}
.contact-form__heading:first-child { margin-top: 0; }
.contact-form__hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .contact-form { padding: 28px 22px; border-radius: 18px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__row--3col { grid-template-columns: 1fr; }
}

/* Mega-menu BETA-länk — minimalistisk inline-tag (tas bort vid go-live).
   nowrap så pillen alltid stannar bredvid huvudtexten. .mega__head får
   shrink:1 så lång text inte trycker undan beta till nästa rad. */
.mega__head-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}
.mega__head-row > .mega__head,
.mega__head-row > a:not(.mega__beta) {
  min-width: 0;
}
.mega .mega__beta {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  background: #dc2626;
  text-decoration: none;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.2;
  vertical-align: middle;
  line-height: 1.2;
}
.mega .mega__beta:hover { background: #b91c1c; color: #fff; text-decoration: none; }

/* ---------- Telefoni-beta page-specifika komponenter ------------------ */

/* Översikt-sektion — 5 icon-cards för "Vad vill ni förbättra?" */
.overview-section {
  background: var(--offwhite);
  padding: 88px 0;
}
.overview-section--white { background: #fff; }
.overview-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.overview-section__head .eyebrow {
  display: block;
  margin-bottom: 10px;
}
.overview-section__head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--teal-dark);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.overview-section__head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
/* Follow-up text-block efter visuell del (chips, bilder) inom overview-section.
   Måste komma efter .overview-section__head för att övervinna shorthand-margin. */
.overview-section__head--follow {
  margin-top: 72px;
  margin-bottom: 0;
}
.overview-section__head--follow p + p { margin-top: 14px; }
.overview-grid {
  list-style: none;
  padding: 0 24px;
  margin: 0 auto;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}
.overview-card {
  position: relative;
  padding: 6px 0 6px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.overview-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.overview-card__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
}
.overview-card__title {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.25;
  margin: 0;
}
.overview-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

@media (max-width: 980px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
}
@media (max-width: 640px) {
  .overview-section { padding: 56px 0; }
  .overview-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* BETA-banner högst upp på telefoni-beta */
.beta-banner {
  background: linear-gradient(90deg, #ea5b0c, #f48a4a);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-align: center;
}
.beta-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
}
.beta-banner strong {
  background: rgba(0, 0, 0, 0.18);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.beta-banner__link {
  color: #fff;
  margin-left: 16px;
  text-decoration: underline;
  font-weight: 500;
}
.beta-banner__link:hover { opacity: 0.85; }

/* Eyebrow för mörka bakgrunder */
.eyebrow--light { color: rgba(255, 255, 255, 0.78); }
.eyebrow--orange { color: var(--orange); text-transform: uppercase; }

/* AI-sektionen — dedikerad mörkblock på telefoni-beta */
.ai-section {
  background: linear-gradient(135deg, #08555a 0%, #055559 60%, #043e41 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 12% 10%, rgba(234, 91, 12, 0.12), transparent 70%),
    radial-gradient(40% 40% at 90% 90%, rgba(116, 165, 168, 0.18), transparent 70%);
  pointer-events: none;
}
.ai-section > .container { position: relative; }
.ai-section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.ai-section__head h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  margin: 8px 0 16px;
  line-height: 1.2;
}
.ai-section__head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
}
.ai-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.ai-section__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ai-section__footer p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.ai-section__footer p strong { color: #fff; }
.ai-section__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Use cases-grid — 3 case-cards med Behov/Så används/Resultat */
.use-cases__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.use-cases__head .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.use-case {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid rgba(8, 85, 90, 0.08);
  box-shadow: 0 4px 22px rgba(8, 85, 90, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.use-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(8, 85, 90, 0.10);
}
.use-case h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}
.use-case__lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(8, 85, 90, 0.08);
}
.use-case__section { margin-top: 16px; }
.use-case__section h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange);
  margin: 0 0 6px;
}
.use-case__section p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

@media (max-width: 1000px) {
  .ai-section__grid { grid-template-columns: 1fr; gap: 20px; }
  .use-cases__grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- Product sheet forms --------------------------------------- */
.forms {
  padding: 80px 0;
  background: var(--offwhite);
}
.forms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.lead-form {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form__logo {
  width: 160px;
  height: auto;
  margin-bottom: 4px;
}
.lead-form h3 {
  font-size: 19.2px;
  font-weight: 600;
  line-height: 24.96px;
  letter-spacing: -0.384px;
  color: var(--h3-feature);
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}
.lead-form input[type="text"],
.lead-form input[type="email"] {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}
.lead-form input:focus {
  outline: 2px solid var(--orange);
  outline-offset: -1px;
  border-color: transparent;
}
.consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 0.8rem !important;
}
.consent input { margin-top: 4px; }
.req { color: var(--orange); }

/* Subpage responsive */
@media (max-width: 1024px) {
  .page-hero__inner,
  .split-section__inner,
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .page-hero__text h1 { font-size: 32px; line-height: 1.2; }
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .callout { padding: 32px 24px; }
  .split-section--reverse .split-section__inner > :first-child,
  .split-section--reverse .split-section__inner > :last-child { order: initial; }
}
@media (max-width: 1024px) {
  .forms__grid { grid-template-columns: 1fr; }
  .setup-section__inner { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .status-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-hero { padding: 48px 0; }
  .page-hero__text h1 { font-size: 28px; }
  .feature-section { padding: 64px 0; }
  .feature-grid--3,
  .feature-grid--5 { grid-template-columns: 1fr; }
  .callout h2, .cta-section__text h2, .split-section__text h2 { font-size: 26px; line-height: 1.3; }
}

/* ==========================================================================
   Hero — produktfoto-variant (image på tinted backdrop, ej fullbleed photo)
   ========================================================================== */
.page-hero--product .page-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(8,85,90,0.08) 0%, rgba(8,85,90,0) 70%);
  padding: 32px;
  border-radius: 24px;
}
.page-hero--product .page-hero__image img {
  max-width: 520px;
  width: 100%;
  height: auto;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 28px rgba(8,85,90,0.18));
  border-radius: 0;
}

/* ==========================================================================
   Stat row — stora siffror i en horisontell rad (Cloudflare-stil)
   ========================================================================== */
.stat-row {
  padding: 72px 0;
  background: var(--teal-dark);
  color: #fff;
}
.stat-row__intro {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px;
  padding: 0 24px;
}
.stat-row__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.stat-row__item {
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat-row__item:first-child { border-left: 0; }
.stat-row__num {
  display: block;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 12px;
}
.stat-row__num em {
  font-style: normal;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: -0.5px;
  opacity: 0.85;
  margin-left: 4px;
}
.stat-row__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .stat-row { padding: 56px 0; }
  .stat-row__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-row__item { border-left: 0; }
  .stat-row__num { font-size: 48px; }
}
@media (max-width: 480px) {
  .stat-row__inner { grid-template-columns: 1fr; }
}

/* Banner variant — tunn, mindre text. Används som credibility-strip
   där full stat-row blir för dominant. */
.stat-row--banner { padding: 22px 0; }
.stat-row--banner .stat-row__inner { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-row--banner .stat-row__item { padding: 0 8px; }
.stat-row--banner .stat-row__num { font-size: 22px; letter-spacing: -0.5px; }
.stat-row--banner .stat-row__num em { margin-left: 3px; }
.stat-row--banner .stat-row__label { font-size: 12px; margin-top: 2px; }
@media (max-width: 720px) {
  .stat-row--banner .stat-row__inner { grid-template-columns: 1fr; gap: 12px; }
  .stat-row--banner .stat-row__num { font-size: 20px; }
}

/* ==========================================================================
   Download grid — OS-specifika nedladdningskort för fjärrhjälpsidan.
   Kort med ikon + titel + version + CTA. Hover lyfter och får orange-kant.
   ========================================================================== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 32px auto 0;
}
.download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.10);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(8, 85, 90, 0.05), 0 8px 22px rgba(8, 85, 90, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.download-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(234, 91, 12, 0.10), 0 14px 32px rgba(8, 85, 90, 0.08);
}
.download-card__os-icon {
  width: 38px;
  height: 38px;
  color: var(--teal-dark);
  display: block;
}
.download-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--teal-dark);
}
.download-card__version {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
}
.download-card__action {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.download-card__action::after {
  content: "→";
  transition: transform 0.25s ease;
}
.download-card:hover .download-card__action { gap: 10px; }
.download-card:hover .download-card__action::after { transform: translateX(2px); }

/* Single download row — för t.ex. ISL Light som inte är OS-specifik */
.download-single {
  max-width: 560px;
  margin: 24px auto 0;
}
.download-single .download-card { width: 100%; }

/* Notice/varnings-ruta — gul-tonad, mindre dramatisk än .callout */
.download-notice {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: rgba(234, 91, 12, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.78);
}
.download-notice strong { color: var(--teal-dark); }

@media (max-width: 720px) {
  .download-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ==========================================================================
   Capability strip — ikon + titel + sub i teal-band (Linear/Vercel-stil).
   Används där .stat-row blir fel — när "stats" egentligen är features,
   credentials eller capabilities snarare än specifika numeriska värden.
   ========================================================================== */
.capability-strip {
  padding: 40px 0;
  background: var(--teal-dark);
  color: #fff;
}
.capability-strip--fade {
  background: linear-gradient(180deg, #08555a 0%, var(--teal-dark) 100%);
}
.capability-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
/* Modifier: 3-kolumn layout för strip med 6 items (3+3 i två rader) */
.capability-strip--3col .capability-strip__inner { grid-template-columns: repeat(3, 1fr); }
.capability {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.capability__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(234, 91, 12, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.capability__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.capability__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.capability__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #fff;
}
.capability__sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 900px) {
  .capability-strip { padding: 32px 0; }
  .capability-strip__inner,
  .capability-strip--3col .capability-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
}
@media (max-width: 480px) {
  .capability-strip__inner,
  .capability-strip--3col .capability-strip__inner { grid-template-columns: 1fr; gap: 18px; }
}

/* ==========================================================================
   Bento grid — asymmetrisk feature-mosaik (Notion/Wiz-stil)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.bento-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px 30px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.06),
    0 4px 12px rgba(8,85,90,0.06),
    0 16px 32px rgba(8,85,90,0.05),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(8,85,90,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  grid-column: span 2;
}
.bento-card--wide { grid-column: span 3; }
.bento-card--hero { grid-column: span 4; }
.bento-card--full { grid-column: span 6; }
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 1px rgba(8,85,90,0.06),
    0 8px 18px rgba(8,85,90,0.10),
    0 24px 44px rgba(8,85,90,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.bento-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f8a90, #0e6b70 60%, #055559);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 4px 10px rgba(8,85,90,0.18);
}
.bento-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--h3-feature);
  letter-spacing: -0.3px;
  margin: 0;
}
.bento-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
.bento-card--accent {
  background: linear-gradient(135deg, #08555a 0%, #055559 100%);
  color: #fff;
  border-color: transparent;
}
.bento-card--accent h3 { color: #fff; }
.bento-card--accent p { color: rgba(255,255,255,0.86); }
.bento-card--accent .bento-card__icon {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-card,
  .bento-card--wide,
  .bento-card--hero { grid-column: span 2; }
  .bento-card--full { grid-column: span 4; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card,
  .bento-card--wide,
  .bento-card--hero,
  .bento-card--full { grid-column: span 1; }
}

/* ==========================================================================
   Product showcase — 3 hardware-kort med foto + caption
   ========================================================================== */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(8,85,90,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(8,85,90,0.07), rgba(8,85,90,0) 70%);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8,85,90,0.12);
  border-color: rgba(8,85,90,0.18);
}
.product-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.product-card__image img {
  max-width: 90%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(8,85,90,0.18));
}
.product-card__cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  position: relative;
  z-index: 1;
}
.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--h3-feature);
  letter-spacing: -0.4px;
  margin: 0;
  position: relative;
  z-index: 1;
}
.product-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .product-showcase { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   Compare table — managed vs egen drift (us-vs-them)
   ========================================================================== */
.compare-table-wrap {
  max-width: 960px;
  margin: 48px auto 0;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(8,85,90,0.06);
  border: 1px solid rgba(8,85,90,0.08);
}
.compare-table thead th {
  background: var(--offwhite);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: left;
  padding: 18px 24px;
  color: var(--teal-dark);
  border-bottom: 1px solid rgba(8,85,90,0.08);
}
.compare-table thead th.compare-table__us {
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
}
.compare-table tbody td {
  padding: 18px 24px;
  font-size: 14.5px;
  color: var(--body);
  border-bottom: 1px solid rgba(8,85,90,0.06);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td.compare-table__row-label {
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(245,243,242,0.4);
}
.compare-table td.compare-table__cell-yes,
.compare-table td.compare-table__cell-no {
  text-align: center;
  font-weight: 500;
}
.compare-table td.compare-table__cell-yes { color: #0e6b70; }
.compare-table td.compare-table__cell-no { color: #b94a3a; }
.compare-table tbody tr:hover td { background: rgba(116,165,168,0.04); }
.compare-table tbody tr:hover td.compare-table__row-label { background: rgba(245,243,242,0.7); }

/* ==========================================================================
   FAQ accordion — native <details> styling
   ========================================================================== */
.faq {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid rgba(8,85,90,0.10);
  border-radius: 14px;
  padding: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq__item[open] {
  border-color: rgba(8,85,90,0.22);
  box-shadow: 0 6px 18px rgba(8,85,90,0.06);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.2px;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq__body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}
.faq__body p { margin: 0 0 10px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body a { color: var(--orange); }

/* ==========================================================================
   Report-card mockup — custom hero-visual för pentest (visar deliverable)
   ========================================================================== */
.report-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.06),
    0 12px 28px rgba(8,85,90,0.12),
    0 32px 60px rgba(8,85,90,0.10);
  border: 1px solid rgba(8,85,90,0.08);
  overflow: hidden;
  font-family: 'Open Sans', system-ui, sans-serif;
  transform: rotate(-1.2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.report-card:hover { transform: rotate(0deg) translateY(-4px); }
.report-card__header {
  background: var(--teal-dark);
  color: #fff;
  padding: 20px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.report-card__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.report-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
  letter-spacing: -0.2px;
}
.report-card__sev-summary {
  display: flex;
  gap: 10px;
}
.sev-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sev-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.sev-pill--critical { background: rgba(214,72,52,0.15); color: #d64834; }
.sev-pill--high     { background: rgba(234,91,12,0.18); color: #ea5b0c; }
.sev-pill--medium   { background: rgba(214,166,52,0.18); color: #b8881e; }
.sev-pill--low      { background: rgba(116,165,168,0.20); color: #4d8587; }
.sev-pill--info     { background: rgba(116,165,168,0.14); color: #6b9296; }
.report-card__body { padding: 8px 24px 22px; }
.report-card__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(8,85,90,0.07);
}
.report-card__row:last-child { border-bottom: 0; }
.report-card__row-cve {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  background: var(--offwhite);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: 'SF Mono', Monaco, Menlo, monospace;
}
.report-card__row-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal-dark);
  line-height: 1.4;
  letter-spacing: -0.1px;
}
.report-card__row-sub {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.report-card__footer {
  background: var(--offwhite);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(8,85,90,0.06);
}
.report-card__footer strong {
  color: var(--teal-dark);
  font-weight: 600;
  letter-spacing: -0.1px;
}

/* Hero-variant som visar report-card istället för photo */
.page-hero--report .page-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 70% 30%, rgba(234,91,12,0.06) 0%, rgba(234,91,12,0) 50%),
              radial-gradient(ellipse at 30% 70%, rgba(8,85,90,0.07) 0%, rgba(8,85,90,0) 60%);
  padding: 24px;
  border-radius: 24px;
}
.page-hero--report .page-hero__image img { display: none; } /* om någon råkar lägga img */

/* ==========================================================================
   Deliverable stack — 3 staplade rapportkort (hero-mockup för "3 rapporter")
   ========================================================================== */
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.deliverable {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(8,85,90,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  box-shadow: 0 4px 14px rgba(8,85,90,0.05);
}
.deliverable:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(8,85,90,0.10); }
.deliverable__cover {
  background: linear-gradient(140deg, var(--teal-dark) 0%, #08555a 70%, #074a4f 100%);
  padding: 28px 24px 32px;
  color: #fff;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.deliverable__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(234,91,12,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.deliverable__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  position: relative;
}
.deliverable__cover-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.2;
  position: relative;
  margin-top: 16px;
}
.deliverable__cover-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
}
.deliverable__cover-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.deliverable__body {
  padding: 24px 24px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deliverable__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
.deliverable__audience {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .deliverable-grid { grid-template-columns: 1fr; gap: 18px; }
  .deliverable__cover { min-height: 140px; }
}

/* ==========================================================================
   Process timeline — horisontell numrerad steg-flow
   ========================================================================== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(8,85,90,0.18), rgba(8,85,90,0.18) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.process-step__node {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(234,91,12,0.15);
}
.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.2px;
  margin: 0 0 8px;
}
.process-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}
@media (max-width: 900px) {
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-flow::before { display: none; }
}
@media (max-width: 480px) {
  .process-flow { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Consequence callout — 3 konsekvenser med stora icons (ej kort)
   ========================================================================== */
.consequence-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.consequence {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 24px;
  border-left: 3px solid var(--orange);
}
.consequence__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
}
.consequence h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.4px;
  margin: 0;
  line-height: 1.25;
}
.consequence p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
@media (max-width: 1024px) {
  .consequence-row { grid-template-columns: 1fr; gap: 28px; }
}

/* Four-column variant — 2×2 layout för 4 punkter */
.consequence-row--four {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
@media (max-width: 720px) {
  .consequence-row--four { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   Integration logo grid — kort med partner-loggor som länkar till dokumentation
   ========================================================================== */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.integration-card {
  background: #fff;
  border: 1px solid rgba(8,85,90,0.10);
  border-radius: 16px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(8,85,90,0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
  min-height: 200px;
}
.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(8,85,90,0.10);
  border-color: rgba(234,91,12,0.25);
}
.integration-card__logo {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.integration-card__logo img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.integration-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.1px;
  margin: 0;
}
.integration-card__cta {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.integration-card__cta::after {
  content: "›";
  font-size: 14px;
  transition: transform 0.25s ease;
}
.integration-card:hover .integration-card__cta::after { transform: translateX(4px); }
@media (max-width: 1024px) {
  .integration-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .integration-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NIST framework wheel — officiell bitmapp + 6 färgkodade function-cards
   ========================================================================== */
.nist-wheel-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.nist-wheel-wrap picture { display: block; }
.nist-wheel-wrap img { width: 100%; height: auto; display: block; }

/* NIST 5-funktions grid med färgkodade ikoner */
.nist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.nist-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(8,85,90,0.08);
  box-shadow: 0 4px 14px rgba(8,85,90,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.nist-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--nist-color, var(--teal-dark));
}
.nist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(8,85,90,0.10);
  border-color: rgba(8,85,90,0.18);
}
.nist-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--nist-color, var(--teal-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 4px 10px rgba(8,85,90,0.18);
}
.nist-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--nist-color, var(--teal-dark));
}
.nist-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.2px;
  margin: 0;
}
.nist-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}

/* NIST färger — exakt samplade från officiella NIST CSF 2.0-bilden (NIST/Natasha Hanacek) */
.nist-card--identify { --nist-color: #4BB2E0; }
.nist-card--protect  { --nist-color: #918CEA; }
.nist-card--detect   { --nist-color: #FAB746; }
.nist-card--respond  { --nist-color: #E57676; }
.nist-card--recover  { --nist-color: #7DF49F; }

@media (max-width: 1024px) {
  .nist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .nist-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Tier package table — Bas / Premium / Platinum SOC jämförelse
   ========================================================================== */
.tier-table-wrap {
  max-width: 1080px;
  margin: 56px auto 0;
  overflow-x: auto;
}
.tier-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(8,85,90,0.08);
  border: 1px solid rgba(8,85,90,0.08);
}
.tier-table thead th {
  padding: 28px 22px 24px;
  vertical-align: top;
  text-align: center;
  border-bottom: 1px solid rgba(8,85,90,0.08);
  background: #fff;
}
.tier-table thead th:first-child {
  text-align: left;
  background: var(--offwhite);
}
.tier-table__tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.tier-table__tier-desc {
  font-size: 13px;
  color: var(--body);
  margin-top: 8px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.tier-table thead th.tier-table__col--popular {
  background: linear-gradient(180deg, rgba(234,91,12,0.08) 0%, rgba(234,91,12,0) 100%);
  position: relative;
}
.tier-table thead th.tier-table__col--popular::before {
  content: "POPULÄR";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}
.tier-table thead th.tier-table__col--top {
  background: var(--teal-dark);
  color: #fff;
}
.tier-table thead th.tier-table__col--top .tier-table__tier-name { color: rgba(255,255,255,0.7); }
.tier-table thead th.tier-table__col--top .tier-table__tier-desc { color: rgba(255,255,255,0.85); }
.tier-table tbody td {
  padding: 16px 22px;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(8,85,90,0.06);
  text-align: center;
  vertical-align: middle;
  color: var(--body);
}
.tier-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(245,243,242,0.4);
  font-size: 14.5px;
}
.tier-table tbody tr:last-child td { border-bottom: 0; }
.tier-table tbody td.tier-table__yes {
  color: var(--orange);
  font-weight: 600;
}
.tier-table tbody td.tier-table__yes::before {
  content: "✓";
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}
.tier-table tbody td.tier-table__no { color: rgba(8,85,90,0.18); font-size: 18px; }
.tier-table tbody td.tier-table__no::before { content: "—"; }
.tier-table tbody td.tier-table__col--popular { background: rgba(234,91,12,0.04); }
.tier-table tbody td.tier-table__col--top { background: rgba(8,85,90,0.04); }
.tier-table tbody tr:hover td { background: rgba(116,165,168,0.05); }
.tier-table tbody tr:hover td:first-child { background: rgba(245,243,242,0.7); }
.tier-table tbody tr:hover td.tier-table__col--popular { background: rgba(234,91,12,0.07); }
.tier-table tbody tr:hover td.tier-table__col--top { background: rgba(8,85,90,0.07); }

.tier-table__cta-row td {
  padding: 22px 22px 28px !important;
  border-top: 1px solid rgba(8,85,90,0.08);
}
.tier-table__cta-row td:first-child { background: var(--offwhite) !important; }
.tier-table__cta-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.tier-table__cta-btn:hover { background: var(--orange); color: #fff; }
.tier-table__cta-btn--filled {
  background: var(--orange);
  color: #fff;
}
.tier-table__cta-btn--filled:hover {
  background: #d44e08;
  border-color: #d44e08;
}

/* ==========================================================================
   Target audience cards — Användare / Servrar / Industriella datorer
   ========================================================================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.target-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px 32px;
  border: 1px solid rgba(8,85,90,0.08);
  box-shadow: 0 4px 18px rgba(8,85,90,0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.target-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(8,85,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.target-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(8,85,90,0.12); }
.target-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f8a90, #0e6b70 60%, #055559);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(8,85,90,0.20);
  position: relative;
}
.target-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--h3-feature);
  letter-spacing: -0.4px;
  margin: 0;
  position: relative;
}
.target-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  position: relative;
}
.target-card__hint {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--orange);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(234,91,12,0.3);
  position: relative;
}
@media (max-width: 1024px) {
  .target-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NIST 2.0 — GOVERN-kortets färg + kontrast-overrides
   (Hjulet är nu en bitmapp som har GOVERN inbakat — inga center-stilar behövs.)
   ========================================================================== */
.nist-card--govern { --nist-color: #F9F49D; }
.nist-card--govern .nist-card__icon  { color: var(--teal-dark); }
.nist-card--govern .nist-card__label { color: var(--teal-dark); }

/* NIST grid 6-up modifier (Govern + 5 outer functions) */
.nist-grid--six { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1280px) {
  .nist-grid--six { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .nist-grid--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .nist-grid--six { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Law urgency banner — cybersäkerhetslagen ikraftträdande
   ========================================================================== */
.law-urgency {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2840 0%, #08555a 60%, #06434a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.law-urgency::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(234,91,12,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(8,85,90,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.law-urgency__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.law-urgency__date {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.law-urgency__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 999px;
  width: max-content;
}
.law-urgency__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.law-urgency__big-date {
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
}
.law-urgency__big-date small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  text-transform: uppercase;
}
.law-urgency__body { display: flex; flex-direction: column; gap: 22px; }
.law-urgency__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.7px;
  color: #fff;
  margin: 0;
}
.law-urgency__title strong {
  font-weight: 600;
  color: var(--orange);
}
.law-urgency__intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 720px;
}
.law-urgency__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.law-urgency__facts li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  padding-left: 0;
}
.law-urgency__facts li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  margin-top: 6px;
  background: var(--orange);
  align-self: stretch;
  border-radius: 2px;
  margin-right: 0;
}
.law-urgency__facts li strong {
  color: #fff;
  font-weight: 600;
}
/* Light-bg variant — same orange bar accent, but dark text for use on offwhite/white sections */
.law-urgency__facts--on-light li { color: var(--body); }
.law-urgency__facts--on-light li strong { color: var(--teal-dark); }
.law-urgency__source {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.law-urgency__source a { color: rgba(255,255,255,0.75); text-decoration: underline; }
@media (max-width: 1024px) {
  .law-urgency__inner { grid-template-columns: 1fr; gap: 32px; }
  .law-urgency__big-date { font-size: 44px; }
  .law-urgency__title { font-size: 24px; }
  .law-urgency__facts { grid-template-columns: 1fr; gap: 10px; }
}

/* ==========================================================================
   Why-list — checkmark-lista med leadfras + bisats stackade vertikalt
   Används för "Varför InfraCom"-sektioner med differentiatorer som har
   förklarande bisats. 2-kol desktop, 1-kol mobil. Layout per item:
   [✓] Leadfras
       Bisats som wrappar fritt och alignar mot leadfras vänsterkant.
   ========================================================================== */
.why-list {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.why-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
}
.why-list li::before {
  content: "✓";
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 2px;
  width: 28px;
  height: 28px;
  background: rgba(234,91,12,0.10);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.why-list__lead {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 17px;
  line-height: 1.35;
}
.why-list__body {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .why-list { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   Feature groups — grupperad funktionslista med rubrik + 2-kol items
   Används på Infinity-sidan ("En licens — alla funktioner ingår")
   ========================================================================== */
.feature-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
  margin-top: 56px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.feature-group__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(8,85,90,0.1);
}
.feature-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-group__list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}
.feature-group__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f8a90 0%, #0e6b70 55%, #055559 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-group__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.feature-group__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.feature-group__list li strong {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
.feature-group__content > span {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
}
@media (max-width: 800px) {
  .feature-groups { grid-template-columns: 1fr; gap: 40px; }
}

/* "Dessutom ingår" — spänner över båda kolumnerna, vit kort-yta med pill-rad */
.feature-group--also {
  grid-column: 1 / -1;
  background: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid rgba(8,85,90,0.08);
}
.feature-group--also .feature-group__title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 14px;
}
.feature-group__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.feature-group__pills li {
  font-size: 14px;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-group__pills li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}

/* Utfällbar lista — "Visa fler funktioner" per grupp.
   Toggle är inrymd i textkolumnen (alignar med content, inte med icon).
   Bruten ton (body-färg, ingen uppercase) så den inte konkurrerar med
   kategori-rubriken visuellt. */
.feature-group__more {
  margin-top: 12px;
  padding-left: 46px; /* 32px icon + 14px gap = aligns med content */
}
.feature-group__more summary {
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  user-select: none;
}
.feature-group__more summary::-webkit-details-marker { display: none; }
.feature-group__more summary::after {
  content: "▾";
  font-size: 10px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.feature-group__more[open] summary::after { transform: rotate(180deg); }
.feature-group__more summary:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.feature-group__more ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(8, 85, 90, 0.14);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-group__more li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}
.feature-group__more li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ==========================================================================
   Extension blocks — "Bygg vidare på Infinity"-sektionens subsektioner
   Layout: H3 + intro full-width överst, sedan bild + 3 features sida-vid-sida,
   CTA i botten. Kompakta one-line-features matchar bildhöjd för balans.
   ========================================================================== */
.extension-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 56px auto 0;
  max-width: 920px;
}
.extension-block + .extension-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(8, 85, 90, 0.12);
}

/* Header: H3 + intro full-width inom blocket */
.extension-block__intro {
  /* fyller hela blockets bredd för align med bullets */
}
.extension-block__intro h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 12px;
  letter-spacing: -0.4px;
  line-height: 1.25;
}
.extension-block__intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

/* Body: bild + features sida-vid-sida */
.extension-block__body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
}
.extension-block__image {
  display: flex;
  justify-content: center;
}
/* Tvinga alla bilder till samma landscape-aspect (Teams SVG = 1480x800) */
.extension-block__image picture,
.extension-block__image > img,
.extension-block__image > svg {
  width: 100%;
  max-width: 300px;
  display: block;
}
.extension-block__image picture { display: block; }
.extension-block__image img,
.extension-block__image > svg {
  width: 100%;
  aspect-ratio: 1480 / 800;
  object-fit: cover;
  height: auto;
  display: block;
  border-radius: 12px;
}
.extension-block__image picture img,
.extension-block__image > img:not([src$=".svg"]) {
  box-shadow: 0 6px 18px rgba(8, 85, 90, 0.10);
}

/* Features — kompakta bullet-rader med orange checkmark */
.extension-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.extension-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
}
.extension-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.55;
}
.extension-features li strong {
  color: var(--teal-dark);
  font-weight: 600;
  margin-right: 2px;
}

.extension-block .link-arrow {
  align-self: flex-start;
}

.extension-tag {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(8, 85, 90, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Mobile: stacka body-kolumner */
@media (max-width: 900px) {
  .extension-block__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .extension-block + .extension-block {
    margin-top: 48px;
    padding-top: 40px;
  }
}

/* ==========================================================================
   CC pair — 2-kol layout för sub-features med text + bullets
   Används på Contact Center-beta
   ========================================================================== */
.cc-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.cc-pair__item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 14px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.cc-pair__item__sub {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 8px;
}
/* Eyebrow ovanför rubriken i cc-pair-kort — orange uppercase som övriga eyebrows */
.cc-pair__item .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
.cc-pair__item > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 14px;
}
.cc-pair__item > p:last-child { margin-bottom: 0; }
.cc-pair__item ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-pair__item li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
}
.cc-pair__item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}
@media (max-width: 800px) {
  .cc-pair { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   Trust strip — inline credentials med orange checkmark
   Används på Teamstelefoni-beta för support-sektionen
   ========================================================================== */
.trust-strip {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  font-size: 15px;
  color: var(--teal-dark);
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-strip li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
}
.trust-strip li strong { font-weight: 600; }

/* ==========================================================================
   USP strip — varför InfraCom (4 differentiatorer)
   ========================================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.usp-card {
  background: #fff;
  border: 1px solid rgba(8,85,90,0.08);
  border-radius: 18px;
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(8,85,90,0.10);
  border-color: rgba(234,91,12,0.25);
}
.usp-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--orange);
  text-transform: uppercase;
}
.usp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234,91,12,0.12), rgba(234,91,12,0.05));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(234,91,12,0.18);
}
.usp-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.25;
}
.usp-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
/* Three-column variant — passar 3 eller 6 USPs (2x3-layout) */
.usp-grid--three { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .usp-grid,
  .usp-grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .usp-grid,
  .usp-grid--three { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Agenda card mockup — custom hero-visual för IT-Partner PULS
   (stylized meeting/agenda card visar PULS-rytmen som deliverable)
   ========================================================================== */
.agenda-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(8,85,90,0.08);
  overflow: hidden;
  font-family: 'Open Sans', system-ui, sans-serif;
  transform: rotate(-1deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.agenda-card:hover { transform: rotate(0deg) translateY(-4px); }
.agenda-card__header {
  background: var(--teal-dark);
  color: #fff;
  padding: 18px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.agenda-card__date {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.agenda-card__date strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #fff;
}
.agenda-card__date span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 4px;
}
.agenda-card__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.agenda-card__title small {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--orange);
  text-transform: uppercase;
}
.agenda-card__body { padding: 6px 22px 18px; }
.agenda-card__row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(8,85,90,0.06);
}
.agenda-card__row:last-child { border-bottom: 0; }
.agenda-card__time {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--orange);
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  letter-spacing: 0.2px;
}
.agenda-card__label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: -0.1px;
  line-height: 1.4;
}
.agenda-card__label small {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.agenda-card__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(116,165,168,0.20);
  color: #4d8587;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.agenda-card__check--done { background: rgba(47,155,94,0.18); color: #2f7b48; }
.agenda-card__check--planned { background: rgba(234,91,12,0.15); color: var(--orange); }
.agenda-card__footer {
  background: var(--offwhite);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(8,85,90,0.06);
}
.agenda-card__footer strong {
  color: var(--teal-dark);
  font-weight: 600;
}
.agenda-card__avatar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.agenda-card__avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea5b0c, #c34d3e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Hero variant som visar agenda-card istället för foto */
.page-hero--agenda .page-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero--agenda .page-hero__image img { display: none; }

/* ==========================================================================
   Connection-card mockup — custom hero-visual för Internet via fiber
   (visar primary fiber + 4G/5G backup som status-board)
   ========================================================================== */
.connection-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.06),
    0 12px 28px rgba(8,85,90,0.12),
    0 32px 60px rgba(8,85,90,0.10);
  border: 1px solid rgba(8,85,90,0.08);
  overflow: hidden;
  font-family: 'Open Sans', system-ui, sans-serif;
  transform: rotate(-1deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.connection-card:hover { transform: rotate(0deg) translateY(-4px); }
.connection-card__header {
  background: var(--teal-dark);
  color: #fff;
  padding: 18px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.connection-card__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.connection-card__title small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.connection-card__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(47,155,94,0.18);
  color: #6cd595;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(108,213,149,0.3);
}
.connection-card__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6cd595;
  box-shadow: 0 0 0 0 rgba(108,213,149,0.6);
  animation: pulseDot 2s infinite;
}
.connection-card__body { padding: 8px 22px 18px; }
.connection-card__row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(8,85,90,0.06);
}
.connection-card__row:last-child { border-bottom: 0; }
.connection-card__row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(8,85,90,0.06);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.connection-card__row-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.1px;
  line-height: 1.3;
}
.connection-card__row-text small {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.05px;
}
.connection-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.connection-card__pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.connection-card__pill--active { background: rgba(47,155,94,0.18); color: #2f7b48; }
.connection-card__pill--standby { background: rgba(116,165,168,0.20); color: #4d8587; }
.connection-card__footer {
  background: var(--offwhite);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(8,85,90,0.06);
  flex-wrap: wrap;
  gap: 8px;
}
.connection-card__footer strong {
  color: var(--teal-dark);
  font-weight: 600;
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  letter-spacing: 0.2px;
}

/* Hero variant som visar connection-card istället för foto */
.page-hero--connection .page-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(47,155,94,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(8,85,90,0.08) 0%, transparent 60%);
  padding: 24px;
  border-radius: 24px;
}
.page-hero--connection .page-hero__image img { display: none; }

/* ==========================================================================
   Spec card — generisk teknisk konfigurations-mockup för
   Domän/DNS/Certifikat-sidan (key-value rader, mono-text, tag-pills)
   ========================================================================== */
.spec-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 8px 22px rgba(8,85,90,0.10),
    0 22px 44px rgba(8,85,90,0.08);
  border: 1px solid rgba(8,85,90,0.08);
  overflow: hidden;
  font-family: 'Open Sans', system-ui, sans-serif;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 14px 32px rgba(8,85,90,0.14),
    0 30px 60px rgba(8,85,90,0.10);
}
.spec-card__header {
  background: linear-gradient(180deg, var(--offwhite) 0%, #fff 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(8,85,90,0.07);
}
.spec-card__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-card__label-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f8a90, #0e6b70 60%, #055559);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-card__label-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.spec-card__label-text strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.1px;
}
.spec-card__label-text small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.spec-card__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47,155,94,0.18);
  color: #2f7b48;
}
.spec-card__tag--pending { background: rgba(234,91,12,0.15); color: var(--orange); }
.spec-card__tag--info    { background: rgba(116,165,168,0.20); color: #4d8587; }

.spec-card__body { padding: 6px 20px 16px; }
.spec-card__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(8,85,90,0.08);
  font-size: 13px;
}
.spec-card__row:last-child { border-bottom: 0; }
.spec-card__row-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-card__row-val {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 13px;
  color: var(--teal-dark);
  letter-spacing: 0.1px;
  overflow-wrap: anywhere;
  hyphens: auto;
  line-height: 1.55;
  min-width: 0;
}
/* Long prose values (summaries, descriptions) — use sans-serif for readability */
.spec-card__row-val--prose {
  font-family: inherit;
  font-size: 13px;
  letter-spacing: normal;
  line-height: 1.55;
}
.spec-card__row-val em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}

.spec-card__footer {
  background: var(--offwhite);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid rgba(8,85,90,0.06);
  flex-wrap: wrap;
  gap: 8px;
}
.spec-card__footer strong {
  color: var(--teal-dark);
  font-weight: 600;
}

/* DNS-zone variant — visar lista med record-rader istället för key-value */
.spec-card--dns .spec-card__row {
  grid-template-columns: 60px 60px 1fr;
  gap: 10px;
}
.spec-card--dns .spec-card__row-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--teal-dark);
  color: #fff;
  padding: 3px 7px;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'SF Mono', Monaco, Menlo, monospace;
}
.spec-card--dns .spec-card__row-host {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.spec-card--dns .spec-card__row-data {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 11.5px;
  color: var(--teal-dark);
  word-break: break-all;
  line-height: 1.4;
}

/* ==========================================================================
   Resource meter — VPS configuration card med vCPU/vRam/vDisk-sliders
   ========================================================================== */
.resource-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 12px 28px rgba(8,85,90,0.12),
    0 32px 60px rgba(8,85,90,0.10);
  border: 1px solid rgba(8,85,90,0.08);
  overflow: hidden;
  font-family: 'Open Sans', system-ui, sans-serif;
  margin: 0 auto;
}
.resource-card__header {
  background: var(--teal-dark);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resource-card__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.resource-card__title strong { font-size: 14px; font-weight: 600; letter-spacing: -0.1px; }
.resource-card__title small {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.resource-card__platform {
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}
.resource-card__body { padding: 22px; display: flex; flex-direction: column; gap: 20px; }
.resource-meter { display: flex; flex-direction: column; gap: 8px; }
.resource-meter__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.resource-meter__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.resource-meter__value {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
}
.resource-meter__value em {
  font-style: normal;
  color: var(--orange);
}
.resource-meter__bar {
  height: 8px;
  background: rgba(8,85,90,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.resource-meter__fill {
  /* Width sätts via --fill custom property från HTML, t.ex. style="--fill: 65%".
     Det är dynamiskt data (procent-fyllnad), inte styling-override. */
  width: var(--fill, 0%);
  height: 100%;
  background: linear-gradient(90deg, #1f8a90, #ea5b0c);
  border-radius: 999px;
  position: relative;
}
.resource-meter__fill::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  border-radius: 999px;
}
.resource-meter__hint { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.resource-card__footer {
  background: var(--offwhite);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(8,85,90,0.06);
  flex-wrap: wrap;
  gap: 8px;
}
.resource-card__footer strong { color: var(--teal-dark); font-weight: 600; }

/* ==========================================================================
   Monitoring table — övervakade objekt med tröskelvärden (Serversupport)
   ========================================================================== */
.monitor-table-wrap {
  max-width: 920px;
  margin: 48px auto 0;
  overflow-x: auto;
}
.monitor-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(8,85,90,0.06);
  border: 1px solid rgba(8,85,90,0.08);
}
.monitor-table thead th {
  background: var(--teal-dark);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 22px;
}
.monitor-table tbody td {
  padding: 16px 22px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px solid rgba(8,85,90,0.06);
}
.monitor-table tbody tr:last-child td { border-bottom: 0; }
.monitor-table tbody td:first-child {
  font-weight: 600;
  color: var(--teal-dark);
}
.monitor-table tbody td.monitor-table__num {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-weight: 600;
  color: var(--orange);
  font-size: 13.5px;
}
.monitor-table tbody tr:hover td { background: rgba(116,165,168,0.05); }

/* ==========================================================================
   Datacenter pillar grid — Colocation 4-områden (kompakt feature-block)
   ========================================================================== */
.dc-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.dc-pillar {
  background: #fff;
  border-radius: 20px;
  padding: 32px 30px 28px;
  border: 1px solid rgba(8,85,90,0.08);
  box-shadow: 0 4px 18px rgba(8,85,90,0.05);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.dc-pillar:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(8,85,90,0.10); }
.dc-pillar__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f8a90, #0e6b70 60%, #055559);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 10px rgba(8,85,90,0.18);
}
.dc-pillar__body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.dc-pillar h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.3px;
  margin: 0;
}
.dc-pillar__items {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dc-pillar__items li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  position: relative;
  padding-left: 16px;
}
.dc-pillar__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.dc-pillar__items li strong { color: var(--teal-dark); font-weight: 600; }
@media (max-width: 900px) {
  .dc-pillar-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ISO certification strip — dual-badge trust callout (server-sidor)
   ========================================================================== */
.iso-strip {
  max-width: 960px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow: 0 6px 20px rgba(8,85,90,0.08);
  border: 1px solid rgba(8,85,90,0.10);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
  align-items: center;
}
/* 3-cert variant — säkerhet + kvalitet + miljö i samma rad */
.iso-strip--three { max-width: 1240px; grid-template-columns: 1fr 1px 1fr 1px 1fr; gap: 28px; }
.iso-strip--three .iso-strip__cert { gap: 18px; }
.iso-strip--three .iso-strip__badge { width: 76px; height: 76px; }
.iso-strip--three .iso-strip__text h3 { font-size: 16px; }
.iso-strip--three .iso-strip__text p { font-size: 13px; }
.iso-strip__divider { background: rgba(8,85,90,0.10); width: 1px; height: 100%; min-height: 100px; }
.iso-strip__cert {
  display: flex;
  align-items: center;
  gap: 22px;
}
.iso-strip__badge {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f8a90 0%, #08555a 60%, #055559 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 6px 16px rgba(8,85,90,0.20);
  position: relative;
}
.iso-strip__badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.30);
}
.iso-strip__badge strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.7);
}
.iso-strip__badge span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
  margin-top: 2px;
}
.iso-strip__text { display: flex; flex-direction: column; gap: 4px; }
.iso-strip__text h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: -0.2px;
  margin: 0;
}
.iso-strip__text p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--body);
  margin: 0;
}
@media (max-width: 720px) {
  .iso-strip,
  .iso-strip--three { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .iso-strip__divider { width: 100%; height: 1px; min-height: 0; }
}
@media (max-width: 1024px) {
  .iso-strip--three { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
}

/* ---- Back-link (subpage → parent navigation) ---------------------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange, #ea5b0c);
  text-decoration: none;
  margin-bottom: 14px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.back-link::before {
  content: "←";
  font-size: 16px;
  line-height: 1;
}
.back-link:hover { gap: 12px; color: var(--teal-dark, #08555a); }

/* Phone-portrait variant — the new high-res phone shot is tall, so cap its
   rendered height ~25% smaller than the default 540px max-width to keep the
   row balanced with the text column. */
/* Portrait variant — for headshots / founder photos. Constrained width with
   rounded corners and a soft drop shadow that matches the staged look. */
.split-section__image--portrait {
  display: flex;
  justify-content: center;
  align-items: center;
}
.split-section__image--portrait img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 2px 6px rgba(8, 85, 90, 0.08),
    0 16px 40px -12px rgba(8, 85, 90, 0.22);
  background: #fff;
}

/* Small caption-style line below body text — used for image attribution
   (e.g. "Bosse Lindqvist · Grundare & VD" under the founder section). */
.split-section__caption {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.2px;
}
.split-section__caption strong {
  color: var(--teal-dark, #08555a);
  font-weight: 600;
}

.split-section__image--phone {
  display: flex;
  justify-content: center;
}
.split-section__image--phone img {
  max-width: 304px;
  max-height: 368px;
  width: auto;
  height: auto;
  border-radius: 0;
}

/* ==========================================================================
   Chat mockup — used in livechatt hero. Stylised chat-widget composition
   with header (agent/online), message bubbles, typing indicator, input row.
   ========================================================================== */
.chat-mockup {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 4px 8px rgba(8,85,90,0.06),
    0 24px 48px rgba(8,85,90,0.18);
  overflow: hidden;
  font-size: 14px;
  position: relative;
}
.chat-mockup::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(234,91,12,0.18) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.chat-mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--teal-dark, #08555a) 0%, #0a6e74 100%);
  color: #fff;
}
.chat-mockup__agent { display: flex; align-items: center; gap: 12px; }
.chat-mockup__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange, #ea5b0c);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.chat-mockup__agent-text { display: flex; flex-direction: column; line-height: 1.3; }
.chat-mockup__agent-text strong { font-size: 13.5px; font-weight: 600; }
.chat-mockup__agent-text small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-mockup__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: chatPulse 2s ease-out infinite;
}
@keyframes chatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.chat-mockup__pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.chat-mockup__body {
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, #fbfaf6 0%, #fff 100%);
  min-height: 260px;
}
.chat-mockup__bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.4;
  animation: chatFadeIn 0.4s ease both;
}
.chat-mockup__bubble--visitor {
  align-self: flex-start;
  background: #f1efe8;
  color: var(--teal-dark, #08555a);
  border-bottom-left-radius: 4px;
}
.chat-mockup__bubble--agent {
  align-self: flex-end;
  background: var(--orange, #ea5b0c);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-mockup__bubble--typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  align-items: center;
}
.chat-mockup__bubble--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  animation: chatTyping 1.2s ease-in-out infinite;
}
.chat-mockup__bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-mockup__bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-mockup__bubble:nth-child(1) { animation-delay: 0.1s; }
.chat-mockup__bubble:nth-child(2) { animation-delay: 0.4s; }
.chat-mockup__bubble:nth-child(3) { animation-delay: 0.8s; }
.chat-mockup__bubble:nth-child(4) { animation-delay: 1.2s; }
.chat-mockup__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid rgba(8,85,90,0.08);
  background: #fff;
}
.chat-mockup__input-text { font-size: 13px; color: rgba(8,85,90,0.45); }
.chat-mockup__send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange, #ea5b0c);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) {
  .chat-mockup { max-width: 360px; }
  .chat-mockup__body { min-height: 220px; }
  .split-section__image--phone img { max-width: 224px; max-height: 288px; }
}

/* ==========================================================================
   Summary mockup — used on AI-driven transkribering as a stylised
   "AI-sammanfattning" card (replaces a plain Infinity Desktop screenshot).
   ========================================================================== */
.summary-mockup {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 4px 8px rgba(8,85,90,0.06),
    0 24px 48px rgba(8,85,90,0.18);
  overflow: hidden;
  position: relative;
  font-size: 14px;
}
.summary-mockup::before {
  content: "";
  position: absolute;
  inset: -10% -8% auto auto;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(234,91,12,0.15) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.summary-mockup__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(180deg, var(--offwhite, #f5f3ee) 0%, #fff 100%);
  border-bottom: 1px solid rgba(8,85,90,0.08);
}
.summary-mockup__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange, #ea5b0c) 0%, #f3833f 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.summary-mockup__head-text { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.summary-mockup__head-text strong { font-size: 14px; font-weight: 600; color: var(--teal-dark, #08555a); }
.summary-mockup__head-text small { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--muted, #75878a); text-transform: uppercase; margin-top: 3px; }
.summary-mockup__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(34,197,94,0.15);
  color: #15803d;
  padding: 4px 10px;
  border-radius: 999px;
}
.summary-mockup__parties {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--offwhite, #f5f3ee);
  border-bottom: 1px solid rgba(8,85,90,0.08);
  font-size: 12.5px;
  color: var(--teal-dark, #08555a);
  font-weight: 500;
}
.summary-mockup__party { display: inline-flex; align-items: center; gap: 8px; }
.summary-mockup__party-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.summary-mockup__party-avatar--a { background: var(--orange, #ea5b0c); }
.summary-mockup__party-avatar--p { background: var(--teal-dark, #08555a); }
.summary-mockup__arrow { color: var(--muted, #75878a); font-size: 16px; }
.summary-mockup__body { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.summary-mockup__row { display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: start; }
.summary-mockup__row-key {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted, #75878a);
  padding-top: 2px;
}
.summary-mockup__row-val { font-size: 13px; line-height: 1.5; color: var(--teal-dark, #08555a); }
.summary-mockup__row-val em { font-style: normal; color: var(--orange, #ea5b0c); font-weight: 600; }
.summary-mockup__todos { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.summary-mockup__todos li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--teal-dark, #08555a);
  line-height: 1.4;
}
.summary-mockup__check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.summary-mockup__check--open { background: transparent; border: 1.5px solid rgba(8,85,90,0.25); }
.summary-mockup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--offwhite, #f5f3ee);
  border-top: 1px solid rgba(8,85,90,0.08);
  font-size: 11.5px;
  color: var(--muted, #75878a);
}
.summary-mockup__sparkle { color: var(--teal-dark, #08555a); font-weight: 500; }
.summary-mockup__copy {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange, #ea5b0c);
  cursor: pointer;
}

/* ==========================================================================
   Live-transcript mockup — used on AI-driven transkribering as a stylised
   "live transcribing" panel (replaces an animated GIF screenshot).
   ========================================================================== */
/* Light variant — same look-and-feel as .summary-mockup (white card, offwhite
   header/footer gradients, soft shadow + orange glow blob) but with a live
   transcript content layout. */
.transcript-mockup {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 4px 8px rgba(8,85,90,0.06),
    0 24px 48px rgba(8,85,90,0.18);
  overflow: hidden;
  position: relative;
  color: var(--teal-dark, #08555a);
}
.transcript-mockup::before {
  content: "";
  position: absolute;
  inset: -10% -8% auto auto;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(234,91,12,0.15) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.transcript-mockup__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(180deg, var(--offwhite, #f5f3ee) 0%, #fff 100%);
  border-bottom: 1px solid rgba(8,85,90,0.08);
}
.transcript-mockup__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange, #ea5b0c) 0%, #f3833f 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.transcript-mockup__head-text { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.transcript-mockup__head-text strong { font-size: 14px; font-weight: 600; color: var(--teal-dark, #08555a); }
.transcript-mockup__head-text small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted, #75878a);
  text-transform: uppercase;
  margin-top: 3px;
  font-family: 'SF Mono', Monaco, Menlo, monospace;
}
.transcript-mockup__rec {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(239,68,68,0.12);
  color: #b91c1c;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.transcript-mockup__rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  animation: transcriptRec 1.6s ease-in-out infinite;
}
@keyframes transcriptRec {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); }
  50%      { box-shadow: 0 0 0 7px rgba(239,68,68,0); }
}
.transcript-mockup__parties {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--offwhite, #f5f3ee);
  border-bottom: 1px solid rgba(8,85,90,0.08);
  font-size: 12.5px;
  color: var(--teal-dark, #08555a);
  font-weight: 500;
}
.transcript-mockup__party { display: inline-flex; align-items: center; gap: 8px; }
.transcript-mockup__party-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.transcript-mockup__party-avatar--a { background: var(--orange, #ea5b0c); }
.transcript-mockup__party-avatar--p { background: var(--teal-dark, #08555a); }
.transcript-mockup__arrow { color: var(--muted, #75878a); font-size: 16px; }
.transcript-mockup__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.transcript-mockup__line {
  display: grid;
  grid-template-columns: 42px 54px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
  animation: transcriptIn 0.5s ease both;
}
.transcript-mockup__line:nth-child(1) { animation-delay: 0.1s; }
.transcript-mockup__line:nth-child(2) { animation-delay: 0.5s; }
.transcript-mockup__line:nth-child(3) { animation-delay: 0.9s; }
.transcript-mockup__line:nth-child(4) { animation-delay: 1.3s; }
@keyframes transcriptIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.transcript-mockup__ts {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 10.5px;
  color: var(--muted, #75878a);
  padding-top: 3px;
  letter-spacing: 0.5px;
}
.transcript-mockup__speaker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  align-self: start;
  margin-top: 1px;
}
.transcript-mockup__speaker--anna { background: rgba(234,91,12,0.15); color: var(--orange, #ea5b0c); }
.transcript-mockup__speaker--peter { background: rgba(8,85,90,0.10); color: var(--teal-dark, #08555a); }
.transcript-mockup__text { color: var(--teal-dark, #08555a); }
.transcript-mockup__caret {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--orange, #ea5b0c);
  vertical-align: -2px;
  margin-left: 3px;
  animation: transcriptCaret 1s steps(2) infinite;
}
@keyframes transcriptCaret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.transcript-mockup__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--offwhite, #f5f3ee);
  border-top: 1px solid rgba(8,85,90,0.08);
  font-size: 11.5px;
  color: var(--muted, #75878a);
}
.transcript-mockup__bars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.transcript-mockup__bars span {
  display: inline-block;
  width: 3px;
  background: var(--orange, #ea5b0c);
  border-radius: 2px;
  animation: transcriptBar 1.2s ease-in-out infinite;
}
.transcript-mockup__bars span:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.transcript-mockup__bars span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.transcript-mockup__bars span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.transcript-mockup__bars span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.transcript-mockup__bars span:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.transcript-mockup__bars span:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.transcript-mockup__bars span:nth-child(7) { height: 80%; animation-delay: 0.6s; }
@keyframes transcriptBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.55; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
.transcript-mockup__lang {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--teal-dark, #08555a);
  font-weight: 600;
}
@media (max-width: 720px) {
  .summary-mockup { max-width: 360px; }
  .summary-mockup__row { grid-template-columns: 80px 1fr; gap: 10px; }
  .transcript-mockup { max-width: 380px; }
  .transcript-mockup__line { grid-template-columns: 36px 50px 1fr; gap: 8px; font-size: 12.5px; }
}

/* ==========================================================================
   Om-oss stats — 2×2 grid for hero (300+ medarbetare etc)
   ========================================================================== */
.om-oss-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 460px;
  margin: 0 auto;
}
.om-oss-stats__cell {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 1px 1px rgba(8,85,90,0.04), 0 8px 20px rgba(8,85,90,0.10);
}
.om-oss-stats__num {
  display: block;
  font-size: 38px;
  font-weight: 700;
  color: var(--teal-dark, #08555a);
  letter-spacing: -1px;
  line-height: 1;
}
.om-oss-stats__num em {
  font-style: normal;
  font-size: 0.7em;
  font-weight: 600;
  opacity: 0.85;
  margin-left: 2px;
}
.om-oss-stats__label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted, #75878a);
  text-transform: uppercase;
}

/* Feature-card variant: clickable link card with hover lift */
a.feature-card--link, .feature-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.feature-card--link:hover, .feature-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(8,85,90,0.10), 0 12px 28px rgba(8,85,90,0.10);
}

/* Consequence card as link variant */
a.consequence {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}
a.consequence:hover { transform: translateY(-3px); }
a.consequence:hover h3 { color: var(--orange, #ea5b0c); }

/* ==========================================================================
   Office card — used on Våra Kontor page
   ========================================================================== */
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(8,85,90,0.04), 0 4px 14px rgba(8,85,90,0.08);
  display: flex;
  flex-direction: column;
}
.office-card__map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
  background: var(--offwhite);
}
.office-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.office-card__head { display: flex; align-items: center; justify-content: space-between; }
.office-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark, #08555a);
  margin: 0;
}
.office-card__pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(234,91,12,0.12);
  color: var(--orange, #ea5b0c);
  padding: 3px 8px;
  border-radius: 999px;
}
.office-card__addr {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
  font-style: normal;
  margin: 0;
}
.office-card__contact { display: flex; flex-direction: column; gap: 4px; font-size: 13px; margin-top: auto; }
.office-card__contact a { color: var(--teal-dark); text-decoration: none; font-weight: 500; }
.office-card__contact a:hover { color: var(--orange); }
@media (max-width: 1024px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .office-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Logo grid — used on referenser/sponsorer page
   ========================================================================== */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.logo-grid--sponsors { grid-template-columns: repeat(6, 1fr); max-width: 900px; margin: 0 auto; }
.logo-grid__cell {
  background: #fff;
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed height istället för aspect-ratio: 1.25/1.
     Aspect-ratio på grid items orsakar att .logo-grid container-höjden
     räknas fel när antalet rader är många — sista raden hamnar utanför
     section-paddingen och överlappar nästa sektion (kromad fel 2026). */
  min-height: 160px;
  box-shadow: 0 1px 1px rgba(8,85,90,0.03), 0 2px 8px rgba(8,85,90,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-grid__cell:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(8,85,90,0.10); }
.logo-grid__cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) { .logo-grid, .logo-grid--sponsors { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .logo-grid, .logo-grid--sponsors { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .logo-grid, .logo-grid--sponsors { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Case-card — kundcase + blogg index card
   ========================================================================== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 1080px; margin: 0 auto; }
.case-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(8,85,90,0.04), 0 4px 14px rgba(8,85,90,0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(8,85,90,0.12), 0 12px 32px rgba(8,85,90,0.10); }
.case-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--offwhite);
}
.case-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted, #75878a);
}
.case-card__meta-tag { color: var(--orange, #ea5b0c); }
.case-card__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-dark, #08555a);
  letter-spacing: -0.3px;
  margin: 0;
  line-height: 1.3;
}
.case-card__excerpt { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }
.case-card__cta {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange, #ea5b0c);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-card__cta::after { content: "→"; transition: transform 0.2s ease; }
.case-card:hover .case-card__cta::after { transform: translateX(3px); }
@media (max-width: 1024px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .case-grid, .case-grid--two { grid-template-columns: 1fr; } }

/* Pagination — used on blogg paginated pages */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-dark, #08555a);
  background: #fff;
  border: 1px solid rgba(8,85,90,0.10);
  transition: all 0.2s ease;
}
.pagination a:hover { background: var(--orange, #ea5b0c); color: #fff; border-color: var(--orange); }
.pagination .current { background: var(--orange, #ea5b0c); color: #fff; border-color: var(--orange); }

/* ==========================================================================
   Article (blogg post) layout
   ========================================================================== */
.article-hero {
  padding: 64px 0 32px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(234,91,12,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--offwhite) 0%, #fbf9f4 100%);
}
.article-hero__inner { max-width: 940px; margin: 0 auto; padding: 0 24px; }
.article-hero__meta { display: inline-flex; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted, #75878a); margin-bottom: 16px; }
.article-hero__meta-tag { color: var(--orange, #ea5b0c); }
.article-hero h1 { font-size: 38px; font-weight: 500; line-height: 1.2; letter-spacing: -0.6px; color: var(--teal-dark, #08555a); margin: 0 0 18px; }
.article-hero__lead { font-size: 18px; line-height: 1.6; color: var(--body); margin: 0; }
.article-hero__image { max-width: 1080px; margin: 32px auto 0; padding: 0 24px; }
.article-hero__image img { width: 100%; border-radius: 14px; box-shadow: 0 4px 16px rgba(8,85,90,0.12); }

.article-body {
  max-width: 820px;
  margin: 56px auto 0;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}
.article-body h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--teal-dark, #08555a);
  margin: 40px 0 14px;
  line-height: 1.3;
}
.article-body h3 { font-size: 19px; font-weight: 600; color: var(--teal-dark); margin: 28px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--teal-dark); }
.article-body a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

.article-quote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--orange, #ea5b0c);
  background: var(--offwhite);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--teal-dark, #08555a);
}
.article-quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; }

/* Källhänvisning sist i en artikel — diskret rad ovanför CTA. */
.article-source {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 85, 90, 0.10);
  font-size: 13.5px;
  color: var(--muted, #75878a);
}
.article-source a { color: var(--orange); }
@media (max-width: 720px) {
  .article-hero h1 { font-size: 28px; }
  .article-body { font-size: 15.5px; }
  .article-body h2 { font-size: 22px; }
}

/* ==========================================================================
   Doc list — clean, list-like document downloads (used on legal pages where
   widget cards feel too marketing-y). Each row: icon + title/desc + meta.
   ========================================================================== */
.doc-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid rgba(8,85,90,0.10);
}
.doc-list li { border-bottom: 1px solid rgba(8,85,90,0.10); }
.doc-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, padding 0.15s ease;
}
.doc-list a:hover {
  background: var(--offwhite, #f5f3ee);
  padding-left: 14px;
  padding-right: 14px;
}
.doc-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(234,91,12,0.10);
  color: var(--orange, #ea5b0c);
  flex-shrink: 0;
}
.doc-list__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.doc-list__text strong { font-size: 15.5px; font-weight: 600; color: var(--teal-dark, #08555a); }
.doc-list__text em { font-style: normal; font-size: 13.5px; color: var(--body); line-height: 1.45; }
.doc-list__meta {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted, #75878a);
  white-space: nowrap;
}
.doc-list a:hover .doc-list__text strong { color: var(--orange, #ea5b0c); }
@media (max-width: 560px) {
  .doc-list a { grid-template-columns: 32px 1fr; row-gap: 4px; }
  .doc-list__meta { grid-column: 2; }
}

/* ==========================================================================
   CookieConsent v3 — InfraCom brand override
   Use library's CSS-variable hooks to recolor + apply Open Sans.
   ========================================================================== */
#cc-main {
  --cc-font-family: 'Open Sans', system-ui, sans-serif;
  --cc-bg: #ffffff;
  --cc-primary-color: #08555a;        /* teal-dark headings */
  --cc-secondary-color: #404040;       /* body text */
  --cc-btn-primary-bg: #ea5b0c;        /* orange brand */
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border-color: #ea5b0c;
  --cc-btn-primary-hover-bg: #c44e0a;
  --cc-btn-primary-hover-color: #ffffff;
  --cc-btn-primary-hover-border-color: #c44e0a;
  --cc-btn-secondary-bg: #f5f3ee;      /* offwhite */
  --cc-btn-secondary-color: #08555a;
  --cc-btn-secondary-border-color: #f5f3ee;
  --cc-btn-secondary-hover-bg: #ebe7df;
  --cc-btn-secondary-hover-color: #08555a;
  --cc-btn-secondary-hover-border-color: #ebe7df;
  --cc-cookie-category-block-bg: #f5f3ee;
  --cc-cookie-category-block-bg-hover: #ebe7df;
  --cc-toggle-bg-on: #ea5b0c;
  --cc-toggle-bg-readonly: #b6c8c9;
  --cc-toggle-knob-bg: #ffffff;
  --cc-link-color: #ea5b0c;
  --cc-modal-border-radius: 14px;
  --cc-btn-border-radius: 8px;
  --cc-overlay-bg: rgba(8, 85, 90, 0.55);
}
/* Tighter spacing in consent banner so it doesn't dominate viewport */
#cc-main .cm-wrapper .cm--box {
  max-width: 420px;
  font-size: 14px;
}
#cc-main .pm-wrapper .pm--box { max-width: 640px; }

/* ==========================================================================
   Service directory — clean grouped list för "IT som tjänst"-landningssida
   och liknande samlingsidor. Inga kort/ikoner — bara ordentligt typograferade
   rader med subtil hover. Lätt att skanna.
   ========================================================================== */
.service-dir {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.service-dir__group { display: flex; flex-direction: column; gap: 14px; }
.service-dir__group-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange, #ea5b0c);
  margin: 0 0 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(8,85,90,0.12);
}
.service-dir__list { list-style: none; margin: 0; padding: 0; }
.service-dir__list li { border-bottom: 1px solid rgba(8,85,90,0.08); }
.service-dir__list li:last-child { border-bottom: 0; }
.service-dir__list a {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 18px 4px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, padding 0.2s ease;
  position: relative;
}
.service-dir__list a::after {
  content: "→";
  font-size: 18px;
  color: var(--orange, #ea5b0c);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.service-dir__list a:hover {
  background: var(--offwhite, #f5f3ee);
  padding-left: 16px;
  padding-right: 16px;
}
.service-dir__list a:hover::after { opacity: 1; transform: translateX(4px); }
.service-dir__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark, #08555a);
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.service-dir__list a:hover .service-dir__title { color: var(--orange, #ea5b0c); }
.service-dir__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
}
@media (max-width: 720px) {
  .service-dir { gap: 40px; }
  .service-dir__list a {
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
    padding: 16px 4px;
  }
  .service-dir__list a:hover { padding-left: 12px; padding-right: 12px; }
  .service-dir__desc { grid-column: 1 / -1; }
}

/* ==========================================================================
   Person spotlight — used in article-hero to feature a quoted person
   (portrait + name + role). Replaces the generic wide hero image when the
   story is centered around a specific person.
   ========================================================================== */
.person-spotlight {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 16px 22px 16px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(8,85,90,0.10);
  box-shadow: 0 1px 1px rgba(8,85,90,0.04), 0 6px 18px rgba(8,85,90,0.08);
  width: fit-content;
  max-width: 100%;
}
.person-spotlight__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: var(--offwhite);
}
.person-spotlight__meta { display: flex; flex-direction: column; line-height: 1.3; }
.person-spotlight__meta strong { font-size: 15px; font-weight: 600; color: var(--teal-dark, #08555a); }
.person-spotlight__meta span { font-size: 13px; color: var(--muted, #75878a); margin-top: 2px; }

/* Inline article figure — for visuals (logos, diagrams) embedded in body
   prose. Centered, tasteful caption. */
.article-figure {
  margin: 36px auto;
  padding: 32px 24px 16px;
  background: var(--offwhite, #f5f3ee);
  border-radius: 14px;
  text-align: center;
  max-width: 520px;
}
.article-figure img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.article-figure figcaption {
  font-size: 13px;
  color: var(--muted, #75878a);
  line-height: 1.5;
  font-style: italic;
}

/* ==========================================================================
   Office list — kompakt directory över alla kontor (lättskannad lista,
   inga embedded kartor — alla ligger på samma sida med snabb överblick).
   ========================================================================== */
.office-list { display: flex; flex-direction: column; gap: 48px; }
.office-list__group { display: flex; flex-direction: column; gap: 0; }
.office-list__group-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange, #ea5b0c);
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(8,85,90,0.12);
}
.office-list__group-title span {
  color: var(--muted, #75878a);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-left: 8px;
  font-size: 12px;
}
.office-list__group ul { list-style: none; margin: 0; padding: 0; }
.office-list__row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(8,85,90,0.08);
  transition: background 0.15s ease, padding 0.2s ease;
}
.office-list__group ul li:last-child { border-bottom: 0; }
.office-list__row:hover { background: var(--offwhite, #f5f3ee); padding-left: 12px; padding-right: 12px; }
.office-list__name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.office-list__name strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark, #08555a);
  letter-spacing: -0.2px;
}
.office-list__pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(234,91,12,0.12);
  color: var(--orange, #ea5b0c);
  padding: 2px 7px;
  border-radius: 4px;
}
.office-list__addr {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--body);
}
.office-list__actions { display: inline-flex; align-items: center; gap: 6px; }
.office-list__actions a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--offwhite, #f5f3ee);
  color: var(--teal-dark, #08555a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.office-list__actions a:hover {
  background: var(--orange, #ea5b0c);
  color: #fff;
}
@media (max-width: 720px) {
  .office-list__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 4px 16px;
  }
  .office-list__row:hover { padding-left: 12px; padding-right: 12px; }
  .office-list__actions { margin-top: 4px; }
}

/* ==========================================================================
   Doc-stack — staplade dokument-kort som visualiserar Dokument-tjänsten på
   förstasidan. Tre kort i lätt fördröjd 3D-stack, varje kort visar en olika
   dokumenttyp (avtal/faktura/scan).
   ========================================================================== */
.doc-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  height: 380px;
}
.doc-stack__card {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 12px 32px rgba(8,85,90,0.14);
  font-size: 13.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}
.doc-stack__card--1 {
  top: 0;
  left: 0;
  transform: rotate(-3deg) translateY(0);
  z-index: 1;
}
.doc-stack__card--2 {
  top: 70px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  z-index: 2;
}
.doc-stack__card--3 {
  top: 150px;
  right: 0;
  transform: rotate(2deg);
  z-index: 3;
}
.doc-stack:hover .doc-stack__card--1 { transform: rotate(-5deg) translateY(-4px); }
.doc-stack:hover .doc-stack__card--3 { transform: rotate(4deg) translateY(-2px); }
.doc-stack__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(8,85,90,0.08);
}
.doc-stack__head strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal-dark, #08555a);
  letter-spacing: -0.1px;
}
.doc-stack__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.doc-stack__icon--orange { background: var(--orange, #ea5b0c); }
.doc-stack__icon--teal { background: var(--teal-dark, #08555a); }
.doc-stack__icon--green { background: #22c55e; }
.doc-stack__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--body);
  gap: 12px;
}
.doc-stack__row > span:first-child {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted, #75878a);
}
.doc-stack__row > span:last-child {
  color: var(--teal-dark, #08555a);
  text-align: right;
  font-weight: 500;
}
.doc-stack__pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.doc-stack__pill--green { background: rgba(34,197,94,0.15); color: #15803d; }
.doc-stack__pill--orange { background: rgba(234,91,12,0.15); color: var(--orange, #ea5b0c); }
@media (max-width: 720px) {
  .doc-stack { height: 360px; max-width: 360px; }
  .doc-stack__card--2 { top: 70px; }
  .doc-stack__card--3 { top: 140px; }
}

/* ==========================================================================
   Security card — IT-säkerhet spotlight på förstasidan. Visar en "live
   security status"-dashboard med tjänster aktiva, hot stoppade etc.
   ========================================================================== */
.security-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 1px rgba(8,85,90,0.05),
    0 4px 12px rgba(8,85,90,0.06),
    0 24px 48px rgba(8,85,90,0.18);
  overflow: hidden;
  font-size: 14px;
  position: relative;
}
.security-card::before {
  content: "";
  position: absolute;
  inset: -8% -6% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.security-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--teal-dark, #08555a) 0%, #0a6e74 100%);
  color: #fff;
}
.security-card__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.security-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: secPulse 2s ease-out infinite;
}
@keyframes secPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70%      { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.security-card__time {
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.security-card__body {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.security-card__row {
  display: grid;
  grid-template-columns: 110px 22px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(8,85,90,0.06);
  font-size: 13px;
}
.security-card__row:last-child { border-bottom: 0; }
.security-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted, #75878a);
}
.security-card__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.security-card__value {
  color: var(--teal-dark, #08555a);
  font-weight: 500;
}
.security-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--offwhite, #f5f3ee);
  border-top: 1px solid rgba(8,85,90,0.08);
  font-size: 11.5px;
  color: var(--muted, #75878a);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.security-card__shield { font-size: 16px; }

/* ==========================================================================
   Download card — PDF-nedladdning (samtalsprislista)
   ========================================================================== */
.download-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(8,85,90,0.10);
  border-radius: 18px;
  text-decoration: none;
  color: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(8,85,90,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(8,85,90,0.12);
  border-color: rgba(234,91,12,0.40);
}
.download-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.download-card__header h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0;
}
.download-card__icon {
  flex: 0 0 auto;
  color: var(--orange);
}
.download-card p {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 16px;
  line-height: 1.6;
}
.download-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.download-card__label::after {
  content: "↓";
  font-size: 16px;
}
@media (max-width: 640px) {
  .download-card { padding: 24px; }
  .download-card__header { gap: 12px; }
}


/* ==========================================================================
   UTILITY CLASSES — extracted from inline styles 2026-05-19
   Återkommande inline-styles flyttade till BEM-modifiers och utilities.
   Reglerna täcker det som tidigare slipade in som style="..." på enskilda
   element. Inga ändringar i utseende — bara CSS-strukturell uppstädning.
   ========================================================================== */

/* CTA-section med extra spacing ovan — använt på blogg/juridiska sidor
   där CTA-en följer en lång artikel-body, behöver visuell luft. */
.cta-section--spaced { margin-top: 80px; }

/* Smal artikel-container (~920px) — använd för läs-tung text
   (allmänna villkor, GDPR, cookies, vissa kundcase-intros). */
.container--narrow { max-width: 920px; }

/* Bredare hub-grid (~1100px) — t.ex. logo-griden på startsidan. */
.logo-grid--narrow { max-width: 1100px; margin: 48px auto 0; }

/* Centrerad CTA-row — när knappar ska vara centrerade i sin behållare. */
.hero-cta-row--centered { justify-content: center; }

/* Solo case-card — ensam kort som ska vara centrerad och inte fullbredd. */
.case-card--solo { max-width: 680px; margin: 32px auto 0; display: block; }

/* Section-intro med extra top margin — vid behov av luft mellan grid och text. */
.section-intro-center--spaced { margin-top: 32px; }

/* Hero-image med rundade hörn + soft shadow — startsidans hero-bild. */
.hero-image--rounded { border-radius: 18px; box-shadow: 0 6px 24px rgba(8, 85, 90, 0.18); }

/* Bild med bara rundade hörn (ingen shadow) — partner-bilden m.fl. */
.image--rounded { border-radius: 14px; }

/* Juridisk meta-tag — orange "Juridik"/"Juridik · Cookies"-eyebrow på
   allmanna-villkor, GDPR, cookies, infinity-ai-dokument. */
.article-hero__meta-tag--juridik {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}

/* 404-page eyebrow — stor orange "404"-text. */
.eyebrow--404 {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

/* ---------- Återstående utilities från inventeringen 2026-05-19 -------- */

/* Wider article-container (~1080px) — t.ex. vara-kontor-kort-grid. */
.container--wide { max-width: 1080px; }

/* Muted footnote — använd inom tabeller. */
.footnote--muted { color: var(--muted); font-weight: 400; }

/* law-urgency facts-list i single-kolumn-läge (smalare kontext). */
.law-urgency__facts--single-col { grid-template-columns: 1fr; margin-top: 12px; }

/* feature-grid 2-kolumn-variant utan top margin. */
.feature-grid--2col-tight { margin: 0; grid-template-columns: 1fr 1fr; }

/* Hardvara-sidans solo-case-block — bild + text-card. Eget mönster, ej
   återanvänt än så länge, men struktureras som BEM för framtida bruk. */
.case--solo { max-width: 920px; margin: 48px auto 0; }
.case--solo .case__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.case--solo .case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case--solo .case__body {
  background: #fff;
  padding: 28px 32px 32px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.case--solo .case__body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 12px;
}
.case--solo .case__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}

/* ==========================================================================
   TEAM GRID — Partner-ansvariga, ÅF-ansvariga, kontaktpersoner-sektion
   Cirkulär avatar (eller initialer för personer utan foto) + namn +
   tre kontakter (telefon, mejl, teams). Auto-fit-grid som ger 4 kort
   på desktop, 2 på tablet, 1 på mobil.
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.team-card {
  background: #fff;
  border: 1px solid rgba(8, 85, 90, 0.10);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.team-card:hover {
  border-color: rgba(8, 85, 90, 0.22);
  box-shadow: 0 8px 24px rgba(8, 85, 90, 0.08);
  transform: translateY(-2px);
}

.team-card__avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  display: block;
  background: var(--offwhite);
}

/* Initialer-variant för personer som vi inte har foto av än */
.team-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--orange);
  background: var(--teal-tint);
  letter-spacing: 1px;
}

.team-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}

.team-card__role {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}

.team-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.team-card__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.team-card__contact:hover {
  background: var(--offwhite);
  color: var(--orange);
}

.team-card__contact svg {
  flex-shrink: 0;
  color: var(--orange);
  width: 16px;
  height: 16px;
}

.team-card__contact-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
