:root {
  --bla: #1b2a3a;
  --bla-djup: #0d1620;
  --ink: #0f1b2a;
  --ink-2: #0a131f;
  --text: #444d58;
  --muted: #6b7480;
  --line: #e4e8ee;
  --grey: #f5f7f9;
  --is: #e4eef5;
  --is-line: #cfe0ec;
  --isbla: #2f9bd6;
  --tint: #eaf3fb;
  --sec-y: clamp(4.6rem, 8vw, 7rem);
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: #ffffff;
  overflow-x: clip;
}

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

body h1,
body h2,
body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.3rem, 3.4vw, 2.8rem);
  padding-right: clamp(1.3rem, 3.4vw, 2.8rem);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--bla);
  outline-offset: 2px;
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bla);
  margin-bottom: 0.7rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.05rem 2.3rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--blue {
  background: var(--bla);
  color: #ffffff;
}

.btn--blue:hover {
  background: var(--bla-djup);
}

.btn--white {
  background: #ffffff;
  color: var(--ink);
}

.btn--white:hover {
  background: #eef1f4;
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn--block {
  width: 100%;
}

.btn--outline {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--outline:hover {
  background: var(--grey);
  border-color: var(--is-line);
}

.knapprad {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.kortlank {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bla-djup);
  transition: gap 0.2s ease;
}

.kortlank svg {
  transition: transform 0.2s ease;
}

.kort:hover .kortlank svg {
  transform: translateX(4px);
}

.js-anim .fade-in,
.js-anim .fade-in-left,
.js-anim .fade-in-right {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-anim .fade-in.visible,
.js-anim .fade-in-left.visible,
.js-anim .fade-in-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  background: var(--is);
  color: var(--muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--is-line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}

.tb-ikon {
  display: inline-flex;
  align-items: center;
  color: var(--bla);
}

.tb-ikon svg {
  width: 14px;
  height: 14px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.topbar__right a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.topbar__right a .tb-ikon {
  color: var(--bla);
}

.topbar__right a:hover {
  color: var(--bla);
}

#nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #ffffff;
  box-shadow: 0 1px 0 var(--line);
}

#nav.scrolled {
  box-shadow: 0 2px 18px rgba(16, 21, 29, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links > a:hover {
  color: var(--bla);
}

.nav-links > a[aria-current="page"] {
  color: var(--bla);
  font-weight: 600;
}

.nav-links > a.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bla);
  color: #ffffff;
  margin-left: 10px;
  padding: 0.75rem 1.4rem;
}

.nav-links > a.nav-cta:hover {
  background: var(--bla-djup);
  color: #ffffff;
}

.nav-drop {
  position: relative;
}

.nav-drop__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-drop__toggle svg {
  transition: transform 0.2s ease;
  color: var(--bla);
}

.nav-drop__toggle:hover,
.nav-drop.open .nav-drop__toggle {
  color: var(--bla);
}

.nav-drop.open .nav-drop__toggle svg {
  transform: rotate(180deg);
}

.nav-drop__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 290px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 18px 44px rgba(16, 21, 29, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-drop__menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -10px;
  right: -10px;
  height: 16px;
}

.nav-drop.open .nav-drop__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-drop__menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-drop__menu a:hover {
  background: var(--grey);
  color: var(--bla-djup);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-header {
  display: none;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(10, 14, 19, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 150;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: clamp(640px, 94vh, 940px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
}

.hero > .wrap.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(12, 18, 26, 0.82) 0%, rgba(12, 18, 26, 0.55) 55%, rgba(12, 18, 26, 0.3) 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.06;
}

.hero__sub {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.1rem;
}

.hero__trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 15, 23, 0.55);
}

.hero__trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.6rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.hero__trust span {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 22px;
}

.hero__trust span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 46%;
  width: 6px;
  height: 11px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-60%) rotate(45deg);
}

.stats {
  background: var(--ink);
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.stats__item {
  text-align: center;
  padding: 0.3rem 1.2rem;
}

.stats__item + .stats__item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.stats__item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.stats__item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.66);
}

.sektion {
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
}

.sektion--vit {
  background: #ffffff;
}

.sektion--gra {
  background: var(--grey);
}

.sektionsintro {
  max-width: 720px;
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
}

.sektionsintro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sektionsintro h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.sektionsintro__text {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: var(--muted);
}

.kortgrid {
  display: grid;
  gap: 1.6rem;
}

.kortgrid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.kort {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(16, 21, 29, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kort:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16, 21, 29, 0.14);
}

.kort__bild {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey);
}

.kort__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kort:hover .kort__bild img {
  transform: scale(1.04);
}

.kort__bild--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
}

.kort__bild--logo img {
  width: auto;
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

.kort:hover .kort__bild--logo img {
  transform: none;
}

.kort__bild--diagram {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2rem;
}

.kort__bild--diagram img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.kort:hover .kort__bild--diagram img {
  transform: none;
}

.kort__bild--top img {
  object-position: center top;
}

.kort__kropp {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.6rem 1.7rem;
}

.kort__kropp h3 {
  font-size: 1.18rem;
}

.kort__kropp p {
  margin-top: 0.5rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.kort__kropp .kortlank {
  margin-top: auto;
}

.kort__kropp p + .kortlank {
  margin-top: 1rem;
}

.sektion__cta {
  margin-top: 2.6rem;
  text-align: center;
}

.delad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: stretch;
}

.delad__bild:not(.delad__bild--foto) {
  align-self: center;
}

.delad__bild {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--grey);
  border: 1px solid var(--line);
  padding: 1.4rem;
}

.delad__bild img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.delad__bild--foto {
  background: none;
  border: none;
  padding: 0;
  min-height: 340px;
  overflow: hidden;
}

.delad__bild--foto img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  mix-blend-mode: normal;
}

.delad__bild--foto .delad__badge {
  left: 0;
  bottom: 0;
  border-radius: 0 8px 0 0;
}

.delad__badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(22, 32, 43, 0.9);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
}

.minifakta {
  display: flex;
  gap: 2.2rem;
  margin: 1.8rem 0 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.minifakta__item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bla-djup);
  line-height: 1;
}

.minifakta__item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.delad__copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
}

.delad__copy p:not(.eyebrow) {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.delad__copy .btn {
  margin-top: 0.6rem;
}

.kund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 960px;
  margin: 0 auto;
}

.kund-grid--wide {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1100px;
}

.kund-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.4rem;
  min-height: 108px;
}

.kund-card img {
  max-height: 50px;
  width: auto;
  max-width: 72%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.kund-card:hover img {
  transform: scale(1.04);
}

.varfor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.vkort {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem 1.7rem;
}

.vkort__ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--ink);
  color: #ffffff;
  margin-bottom: 1.3rem;
}

.vkort__ikon svg {
  width: 26px;
  height: 26px;
}

.vkort h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.vkort p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.kontakt {
  position: relative;
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
  background: var(--ink);
  overflow: clip;
}

.kontakt__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.kontakt__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.kontakt__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(11, 19, 28, 0.9) 0%, rgba(11, 19, 28, 0.82) 100%);
}

.kontakt > .wrap {
  position: relative;
}

.kontakt__rubrik h2 {
  color: #ffffff;
}

.kontakt__ingress {
  color: rgba(255, 255, 255, 0.78);
}

.kontakt__snabb-tel {
  color: #ffffff;
}

.kontakt__snabb-label {
  color: rgba(255, 255, 255, 0.7);
}

.kontakt__topp {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.kontakt__rubrik {
  max-width: 620px;
}

.kontakt__rubrik h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.kontakt__ingress {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
}

.kontakt__rubrik .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.kontakt__snabb {
  text-align: right;
  flex-shrink: 0;
}

.kontakt__snabb-tel {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.kontakt__snabb-tel:hover {
  color: rgba(255, 255, 255, 0.75);
}

.kontakt__snabb-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.kontakt__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 27, 42, 0.08);
}

.kontakt__info {
  padding: 2.6rem 2.4rem;
  border-right: 1px solid var(--line);
}

.kontakt__uppg {
  display: grid;
  gap: 1.3rem;
}

.uppg {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.uppg > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.uppg__ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grey);
  border: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
}

.uppg__ikon svg {
  width: 18px;
  height: 18px;
}

.uppg__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bla);
}

.uppg__value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

a.uppg__value:hover {
  color: var(--bla);
}

.team {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.team__rubrik {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.team__rad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.team__rad:last-child {
  border-bottom: none;
}

.team__rad strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.team__rad div span {
  font-size: 0.84rem;
  color: var(--muted);
}

.team__rad > a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bla);
  text-decoration: none;
  white-space: nowrap;
}

.team__rad > a:hover {
  text-decoration: underline;
}

.kontakt__formkort {
  padding: 2.6rem 2.4rem;
}

.kontakt__formkort h3 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid #cdd5df;
  border-radius: var(--radius);
  background: #fbfcfd;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bla);
  background: #ffffff;
}

.field textarea {
  resize: vertical;
  min-height: 104px;
}

#contact-form {
  max-width: 100%;
  min-width: 0;
}

#contact-form .btn--block[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.ms-recaptcha-notice {
  text-align: center;
}

.footer {
  background: var(--is);
  color: var(--muted);
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: clamp(3rem, 5vw, 4rem);
  padding-bottom: clamp(2.4rem, 4vw, 3rem);
  border-bottom: 1px solid var(--is-line);
}

.footer__cta-text h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
}

.footer__cta-text p {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.footer__cta-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}

.footer__tel {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer__tel:hover {
  color: var(--bla);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 2.4rem;
  padding-top: clamp(3rem, 5vw, 4rem);
  padding-bottom: 2.4rem;
}

.footer__col--brand img {
  height: 52px;
  width: auto;
}

.footer__col--brand p {
  margin-top: 1.2rem;
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 34ch;
  color: var(--muted);
}

.footer__col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

.footer__col a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--bla);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.3rem;
  padding-bottom: 2.2rem;
  border-top: 1px solid var(--is-line);
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(330px, calc(100vw - 48px));
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 22px 26px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 300;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1;
  }

  .mobile-menu-header img {
    height: 40px;
    width: auto;
  }

  .mobile-menu-close {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--grey);
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .mobile-menu-close span {
    position: absolute;
    left: 12px;
    top: 21px;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links > a {
    color: var(--ink);
    font-size: 1.02rem;
    padding: 14px 4px;
    border-radius: 0;
    border-bottom: 1px solid #eef1f4;
  }

  .nav-links > a.nav-cta {
    color: #ffffff;
    margin-left: 0;
    margin-top: 18px;
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .nav-drop {
    width: 100%;
    border-bottom: 1px solid #eef1f4;
  }

  .nav-drop__toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1.02rem;
    padding: 14px 4px;
    border-radius: 0;
  }

  .nav-drop__menu {
    position: static;
    min-width: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .nav-drop.open .nav-drop__menu {
    display: block;
  }

  .nav-drop__menu a {
    white-space: normal;
    padding: 9px 4px;
  }
}

@media (max-width: 960px) {
  .kortgrid--3,
  .varfor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delad {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .delad__bild {
    max-width: 560px;
    margin: 0 auto;
  }

  .delad--rev .delad__bild {
    order: 0;
  }

  .kund-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kontakt__panel {
    grid-template-columns: 1fr;
  }

  .kontakt__info {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .kontakt__topp {
    align-items: flex-start;
  }

  .kontakt__snabb {
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .varfor-grid {
    grid-template-columns: 1fr;
  }

  .minifakta {
    gap: 1.4rem;
  }

  .minifakta__item strong {
    font-size: 1.5rem;
  }

  .footer__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .topbar__left {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
    min-height: 42px;
  }

  .topbar__right {
    gap: 14px;
  }

  .topbar__right a[href^="mailto"] {
    display: none;
  }

  .topbar__right a {
    font-size: 0.82rem;
  }

  .hero__inner {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 0;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .stats__item:nth-child(3) {
    border-left: none;
  }

  .kortgrid--3 {
    grid-template-columns: 1fr;
  }

  .kund-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kund-card {
    min-height: 92px;
    padding: 1.2rem 1rem;
  }

  .kund-card img {
    max-height: 42px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kontakt__formkort,
  .kontakt__info {
    padding: 1.9rem 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (hover: none) {
  .kort:hover {
    transform: none;
    box-shadow: 0 8px 26px rgba(16, 21, 29, 0.06);
  }

  .kort:hover .kort__bild img {
    transform: none;
  }
}

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

  .js-anim .fade-in,
  .js-anim .fade-in-left,
  .js-anim .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .kort,
  .kort__bild img,
  .kortlank svg {
    transition: none;
  }
}

.page-hero {
  position: relative;
  padding-top: clamp(4.4rem, 8vw, 6.6rem);
  padding-bottom: clamp(4.4rem, 8vw, 6.6rem);
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: clip;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(11, 18, 26, 0.9) 0%, rgba(11, 18, 26, 0.66) 62%, rgba(11, 18, 26, 0.42) 100%);
}

.page-hero > .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.brodsmula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.1rem;
}

.brodsmula a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.brodsmula a:hover {
  color: #ffffff;
}

.brodsmula svg {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.brodsmula--mork {
  color: var(--muted);
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}

.brodsmula--mork a {
  color: var(--muted);
}

.brodsmula--mork a:hover {
  color: var(--bla);
}

.brodsmula--mork svg {
  color: var(--is-line);
}

.brodsmula--mork span {
  color: var(--ink);
  font-weight: 600;
}

.page-hero__sub {
  margin-top: 1rem;
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
}

.blockintro {
  max-width: 640px;
  margin-bottom: clamp(2.6rem, 4.5vw, 3.6rem);
}

.blockintro h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.blockintro p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.blockintro--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.cart-btn:hover {
  color: var(--bla);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links {
  margin-left: auto;
}

.cart-btn svg {
  width: 22px;
  height: 22px;
}

.cart-btn__text {
  display: none;
}

.cart-count {
  position: absolute;
  top: -1px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--bla);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-btn.has-items .cart-count {
  display: inline-flex;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 19, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 390;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(392px, calc(100vw - 36px));
  background: #ffffff;
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 44px rgba(10, 14, 19, 0.18);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.cart-panel__head h2 {
  font-size: 1.14rem;
}

.cart-close {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--grey);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-close span {
  position: absolute;
  left: 12px;
  top: 21px;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.cart-close span:first-child {
  transform: rotate(45deg);
}

.cart-close span:last-child {
  transform: rotate(-45deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 22px;
}

.cart-empty {
  padding: 3rem 0.5rem;
  text-align: center;
  color: var(--muted);
}

.cart-empty svg {
  width: 40px;
  height: 40px;
  color: var(--is-line);
  margin-bottom: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line .cart-remove,
.offert-rad .cart-remove,
.offert-rad .qty {
  align-self: center;
}

.cart-line__img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--grey);
  border: 1px solid var(--line);
}

.cart-line__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.cart-line__namn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.3;
}

.cart-line__kat {
  margin-top: 2px;
  font-size: 0.76rem;
  color: var(--muted);
}

.cart-remove {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-remove svg {
  width: 17px;
  height: 17px;
}

.cart-remove:hover {
  background: #fbeceb;
  color: #c0392b;
}

.cart-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: var(--grey);
}

.cart-foot p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 200%);
  opacity: 0;
  visibility: hidden;
  background: var(--ink);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  z-index: 500;
  box-shadow: 0 12px 34px rgba(10, 14, 19, 0.32);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease, visibility 0s linear 0.32s;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

.cart-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease, visibility 0s;
}

.cart-toast svg {
  width: 18px;
  height: 18px;
  color: #64c884;
  flex-shrink: 0;
}

.prod-kat + .prod-kat {
  margin-top: clamp(2.6rem, 4.5vw, 3.8rem);
}

.prod-kat__rubrik {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.prod-kat__rubrik h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.prod-kat__rubrik span {
  font-size: 0.86rem;
  color: var(--muted);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prod-kort {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16, 21, 29, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prod-kort:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 21, 29, 0.12);
}

.prod-kort__bild {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.prod-kort__bild img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.prod-kort__kropp {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.25rem 1.3rem;
}

.prod-kort__namn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.32;
}

.prod-kort__desc {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.prod-add {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--bla);
  background: #ffffff;
  color: var(--bla);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.prod-add svg {
  width: 16px;
  height: 16px;
}

.prod-add:hover {
  background: var(--bla);
  color: #ffffff;
}

.prod-add:active {
  transform: scale(0.98);
}

.prod-add:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.prod-add:disabled:hover {
  background: #ffffff;
  color: var(--bla);
}

.prod-add.in-cart {
  background: var(--bla);
  color: #ffffff;
  border-color: var(--bla);
}

.prod-add.in-cart:hover {
  background: var(--bla-djup);
  border-color: var(--bla-djup);
}

.prod-bildlank {
  display: block;
}

.prod-kort__namn a {
  color: inherit;
  text-decoration: none;
}

.prod-kort__namn a:hover {
  color: var(--bla);
}

.prod-kort__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.1rem;
}

.prod-kort__actions .btn-las {
  order: 2;
}

.prod-kort__actions .prod-add,
.prod-kort__actions .prod-qty {
  order: 1;
}

.prod-kort__actions .btn-las,
.prod-kort__actions .prod-add {
  white-space: nowrap;
  width: 100%;
}

.prod-kort__kropp .prod-kort__actions {
  margin-top: auto;
  padding-top: 1.1rem;
}

.btn-las {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-las:hover {
  border-color: var(--bla);
  color: var(--bla);
}

.prod-kort--detalj {
  flex-direction: row;
  align-items: stretch;
}

.prod-kort--detalj .prod-kort__bild {
  aspect-ratio: auto;
  width: 46%;
  flex-shrink: 0;
  min-height: 400px;
  border-right: 1px solid var(--line);
}

.prod-kort--detalj .prod-kort__bild img {
  padding: 2.6rem;
}

.prod-kort--detalj .prod-kort__kropp {
  justify-content: center;
  padding: clamp(1.9rem, 3.6vw, 3rem);
}

.prod-detalj__kat {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bla);
  margin-bottom: 0.7rem;
}

.prod-kort--detalj .prod-kort__namn {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.prod-detalj__text {
  margin: 1.1rem 0 1.7rem;
}

.prod-detalj__text p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.prod-kort--detalj .prod-add {
  width: auto;
  align-self: flex-start;
}

.prod-detalj__tel {
  display: block;
  margin-top: 1.1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.prod-detalj__tel strong {
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}

.prod-kort--detalj .prod-kort__bild {
  background: #ffffff;
}

.prod-kort--detalj .prod-kort__bild img {
  padding: 1rem;
}

.prod-detalj__lista {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0.2rem 0 1.6rem;
}

.prod-detalj__lista li {
  position: relative;
  padding-left: 27px;
  font-size: 0.95rem;
  color: var(--text);
}

.prod-detalj__lista li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--bla);
  border-bottom: 2px solid var(--bla);
  transform: rotate(45deg);
}

.prod-variant {
  margin: 0.1rem 0 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f9fb;
}

.prod-variant__label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
}

.prod-variant__select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #b8c2cc;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
}

.prod-variant__select:focus {
  border-color: var(--bla);
}

.prod-variant__single {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.prod-variant__notering {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  background: #ffffff;
}

.qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.qty button:hover {
  background: var(--grey);
}

.qty-n {
  min-width: 34px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  line-height: 30px;
}

.cart-line__mid .qty {
  margin-top: 0.55rem;
}

.prod-add.is-hidden {
  display: none;
}

.prod-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.15rem;
}

.prod-kort__actions .prod-add {
  margin-top: 0;
}

.prod-kort__actions .prod-qty {
  margin-top: 0;
  justify-content: center;
}

.prod-kort__actions .prod-qty__text {
  display: none;
}

.prod-qty .qty button {
  width: 36px;
  height: 36px;
}

.prod-qty .qty-n {
  line-height: 36px;
  min-width: 40px;
}

.prod-qty__text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bla);
}

.prod-kort--detalj .prod-qty {
  margin-top: 0;
}

.offert-rad {
  grid-template-columns: 46px 1fr auto auto;
  gap: 10px;
}

.nav-drop {
  display: flex;
  align-items: center;
}

@media (min-width: 1121px) {
  .nav-drop:hover .nav-drop__menu,
  .nav-drop:focus-within .nav-drop__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.prod-grid > .prod-kort:only-child {
  max-width: 300px;
}

@media (max-width: 760px) {
  .prod-kort--detalj {
    flex-direction: column;
  }

  .prod-kort--detalj .prod-kort__bild {
    width: 100%;
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

.offert-vald {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.6rem;
  background: #ffffff;
}

.offert-vald__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  background: var(--grey);
  border-bottom: 1px solid var(--line);
}

.offert-vald__head strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
}

.offert-vald__antal {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: var(--bla);
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
}

.offert-tom {
  padding: 1.3rem 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.offert-rad {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 0.75rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.offert-rad:last-child {
  border-bottom: none;
}

.offert-rad__img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.offert-rad__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.offert-rad__namn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.3;
}

.offert-rad__kat {
  margin-top: 1px;
  font-size: 0.75rem;
  color: var(--muted);
}

.tidslinje {
  margin-top: 0.5rem;
  padding-left: 2rem;
  margin-left: 8px;
  border-left: 2px solid var(--is-line);
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.tidslinje__rad {
  position: relative;
}

.tidslinje__rad::before {
  content: "";
  position: absolute;
  left: calc(-2rem - 9px);
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bla);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--is-line);
}

.tidslinje__ar {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bla);
  letter-spacing: 0.02em;
}

.tidslinje__rad h3 {
  font-size: 1.12rem;
  margin-top: 0.25rem;
}

.tidslinje__rad p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.delad--rev .delad__bild {
  order: 2;
}

.tjanst-lista {
  list-style: none;
  margin-top: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.tjanst-lista li {
  position: relative;
  padding-left: 28px;
  font-size: 0.97rem;
  color: var(--text);
}

.tjanst-lista li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--bla);
  border-bottom: 2px solid var(--bla);
  transform: rotate(45deg);
}

.tjanst-lista + .btn,
.tjanst-lista + .knapprad {
  margin-top: 2rem;
}

.omsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.omsplit__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.omsplit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.karta {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--grey);
  min-height: 360px;
}

.karta iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.sektion--tint {
  background: var(--tint);
}

.team-foto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.team-foto {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(16, 21, 29, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-foto:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 21, 29, 0.12);
}

.team-foto__bild {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey);
}

.team-foto__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-foto__kropp {
  padding: 1.4rem 1.5rem 1.6rem;
}

.team-foto__namn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
}

.team-foto__roll {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--bla);
  letter-spacing: 0.02em;
  margin: 0.15rem 0 0.9rem;
}

.team-foto__kontakt {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.team-foto__kontakt a {
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-foto__kontakt a:hover {
  color: var(--bla);
}

.trygghet {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.trygghet img {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.formkort {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 12px 40px rgba(15, 27, 42, 0.07);
}

.formkort h3 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.kontakt-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.kontakt-info h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 1rem;
}

.kontakt-info > p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.kontakt-info .kontakt__uppg {
  display: grid;
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .kontakt-split {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.team-kort {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 6px 20px rgba(16, 21, 29, 0.05);
}

.team-kort__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.team-kort__namn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
}

.team-kort__roll {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.team-kort a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--bla);
  text-decoration: none;
}

.team-kort a:hover {
  text-decoration: underline;
}

.textkort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.textkort {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.9rem 1.8rem;
  box-shadow: 0 6px 20px rgba(16, 21, 29, 0.05);
}

.textkort h3 {
  font-size: 1.14rem;
  margin-bottom: 0.6rem;
}

.textkort p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.textkort__nr {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--is-line);
  line-height: 1;
  margin-bottom: 0.9rem;
}

.citat {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.citat p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.citat span {
  display: block;
  margin-top: 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-band {
  position: relative;
  background: var(--ink);
  overflow: clip;
}

.cta-band__media {
  position: absolute;
  inset: 0;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.cta-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 28, 0.9) 0%, rgba(11, 19, 28, 0.82) 100%);
}

.cta-band > .wrap {
  position: relative;
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
  text-align: center;
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  max-width: 22ch;
  margin: 0 auto;
}

.cta-band p {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  font-size: 1.04rem;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.1rem;
}

.cta-band__tel {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 0.6rem;
}

.cta-band__tel:hover {
  color: rgba(255, 255, 255, 0.8);
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 0;
}

.info-kort {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.7rem 1.6rem;
}

.info-kort__ikon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--is);
  color: var(--bla);
  margin-bottom: 1.1rem;
}

.info-kort__ikon svg {
  width: 22px;
  height: 22px;
}

.info-kort h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.info-kort p,
.info-kort a {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

.info-kort a:hover {
  color: var(--bla);
}

@media (max-width: 1120px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .omsplit {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .info-panel {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .textkort-grid {
    grid-template-columns: 1fr;
  }

  .team-foto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kund-grid--wide {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .team-foto-grid {
    grid-template-columns: 1fr;
  }

  .kund-grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart-btn__text {
    display: none;
  }

  .tidslinje {
    gap: 1.7rem;
  }
}

.prod-kort__pris {
  margin-top: 0.85rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.3;
}

.prod-kort__pris--forfragan {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.prod-kort__pris--detalj {
  margin-top: 1.3rem;
  font-size: 1.24rem;
}

.prod-kort__pris--detalj.prod-kort__pris--forfragan {
  font-size: 0.92rem;
}

.prod-kort__kropp .prod-kort__pris {
  margin-top: auto;
  padding-top: 0.85rem;
}

.prod-kort__kropp .prod-kort__pris + .prod-kort__actions {
  margin-top: 0;
  padding-top: 0.8rem;
}

.prod-kort--detalj .prod-kort__pris {
  margin-top: 1.1rem;
  padding-top: 0;
}

.cart-line__variant,
.offert-rad__variant {
  margin-top: 2px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.4;
}

.cart-line__pris,
.offert-rad__pris {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ink);
}

.cart-summa {
  margin-bottom: 0.95rem;
}

.cart-summa:empty {
  margin-bottom: 0;
}

.cart-summa__rad {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: var(--muted);
}

.cart-summa__rad strong {
  font-size: 1.12rem;
  color: var(--ink);
}

.cart-foot .cart-summa__not {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.cart-actions {
  display: grid;
  gap: 8px;
}

.cart-actions .btn {
  padding: 0.78rem 1rem;
  font-size: 0.74rem;
}

.uc-sigill {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.uc-sigill img {
  display: block;
  width: auto;
  height: 78px;
}

.footer__bottom .uc-sigill {
  order: 3;
}

.footer__bottom p:last-of-type {
  order: 2;
}

.uc-sigill--korg {
  margin-top: 0.95rem;
  justify-content: center;
}

.uc-sigill--korg img {
  height: 58px;
}

.uc-sigill--panel {
  margin-top: 1.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  width: 100%;
  justify-content: flex-start;
}

.uc-sigill--panel img {
  height: 168px;
}

.uc-sigill--nav {
  margin-left: 12px;
  flex-shrink: 0;
}

.uc-sigill--nav img {
  height: 34px;
}

.meny-sigill {
  display: none;
}

@media (min-width: 1121px) {
  .nav-inner {
    gap: 16px;
  }

  .nav-end {
    flex-shrink: 0;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links > a,
  .nav-drop__toggle {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }

  .nav-links > a.nav-cta {
    margin-left: 8px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

@media (max-width: 1120px) {
  .uc-sigill--nav {
    display: none;
  }

  .meny-sigill {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .uc-sigill--meny {
    justify-content: center;
    width: 100%;
  }

  .uc-sigill--meny img {
    height: 52px;
  }
}

.offert-vald__summa {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  border-top: 1px solid var(--line);
  background: var(--grey);
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: var(--muted);
}

.offert-vald__summa strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.offert-vald__not {
  padding: 0.7rem 1.15rem 0.85rem;
  background: var(--grey);
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted);
}

.flikar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  margin-bottom: 1.6rem;
  background: var(--grey);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.flik {
  padding: 0.72rem 0.9rem;
  border: none;
  border-radius: 7px;
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.flik:hover {
  color: var(--ink);
}

.flik--aktiv {
  background: #ffffff;
  color: var(--bla);
  box-shadow: 0 2px 8px rgba(16, 21, 29, 0.1);
}

.flik-panel--dold {
  display: none;
}

.flik-hjalp {
  margin-top: -0.9rem;
  margin-bottom: 1.4rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.form-avsnitt {
  margin-top: 1.5rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-avsnitt:first-of-type {
  margin-top: 0;
}

.field textarea.textarea--kort {
  min-height: 64px;
}

#bestall-form {
  max-width: 100%;
  min-width: 0;
}

#bestall-form .btn--block[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .uc-sigill--panel img {
    height: 140px;
  }
}

@media (max-width: 640px) {
  .flikar {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    justify-content: flex-start;
  }

  .uc-sigill img {
    height: 62px;
  }
}

.prod-kort__kropp .prod-kort__pris--detalj {
  margin-top: 1.3rem;
  padding-top: 0;
}

.offert-rad {
  grid-template-columns: 46px 1fr auto auto;
}

.cart-line__pris--forfragan,
.offert-rad__pris--forfragan {
  font-weight: 500;
  color: var(--muted);
}
