:root {
  --bg: #ffffff;
  --text: #000;
  --muted: #000;
  --line: #d8dbe1;
  --primary: #4b4ce8;
  --mint: #bfe7c8;
  --card-bg: rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--text);
}

body.no-scroll {
  overflow: hidden;
}

.hero-memory-preload {
  position: fixed;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.mobile-line-break {
  display: inline;
}

.container {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
}

.top-nav {
  position: static;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-shrink: 0;
}

@media (min-width: 961px) {
  .top-nav.container {
    width: min(100%, 1285px);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: auto;
  height: 42px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-left: 26px;
}

.desktop-nav > a:hover,
.desktop-nav > .desktop-sell-wrap > .desktop-sell-trigger:hover,
.desktop-nav > .desktop-tjanster-wrap > .desktop-tjanster-trigger:hover {
  opacity: 0.72;
}

.desktop-sell-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-sell-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -40px;
  right: -40px;
  height: 56px;
  pointer-events: none;
}

.desktop-sell-wrap:hover::after,
.desktop-sell-wrap:focus-within::after,
.desktop-sell-wrap.is-open::after {
  pointer-events: auto;
}

.desktop-sell-trigger {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.desktop-sell-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #111827;
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.desktop-sell-wrap:hover .desktop-sell-trigger::after,
.desktop-sell-wrap:focus-within .desktop-sell-trigger::after,
.desktop-sell-wrap.is-open .desktop-sell-trigger::after {
  transform: scaleX(1);
  opacity: 1;
}

.desktop-sell-dropdown {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 12px 16px -12px rgba(16, 20, 30, 0.09);
  padding: 24px 0 52px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
  z-index: 55;
}

.desktop-sell-wrap:hover .desktop-sell-dropdown,
.desktop-sell-wrap:focus-within .desktop-sell-dropdown,
.desktop-sell-wrap.is-open .desktop-sell-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sell-dropdown-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: start;
  width: min(100%, 1285px);
  margin-inline: auto;
  padding-inline: 24px;
}

.desktop-sell-dropdown .sell-reg-input-wrap,
.desktop-sell-dropdown .sell-valuation-btn {
  width: calc(100% - 260px);
}

/* ── Tjänster dropdown ───────────────────────────────── */

.desktop-tjanster-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-tjanster-wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 28px;
  pointer-events: none;
}

.desktop-tjanster-wrap:hover::after,
.desktop-tjanster-wrap.is-open::after {
  pointer-events: auto;
}

.desktop-tjanster-trigger {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0;
  position: relative;
}

.desktop-tjanster-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #111827;
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.desktop-tjanster-wrap:hover .desktop-tjanster-trigger::after,
.desktop-tjanster-wrap.is-open .desktop-tjanster-trigger::after {
  transform: scaleX(1);
  opacity: 1;
}

.desktop-tjanster-dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 196px;
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 10px;
  box-shadow: 0 14px 36px -8px rgba(16, 20, 30, 0.14);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
  z-index: 55;
}

.desktop-tjanster-wrap:hover .desktop-tjanster-dropdown,
.desktop-tjanster-wrap.is-open .desktop-tjanster-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.desktop-tjanster-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: #111827;
  transition: background 0.14s ease;
}

.desktop-tjanster-dropdown a:hover {
  background: #f3f4f7;
}

/* ── Tjänster mobile sub-menu ────────────────────────── */

.mobile-nav-tjanster-trigger {
  border: none;
  background: #fff;
  border-radius: 12px;
  min-height: 58px;
  padding: 0 18px;
  padding-right: 10px !important;
  display: flex;
  padding-left: 10px !important;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-main .mobile-nav-tjanster-trigger::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("./assets/Back.svg") center / contain no-repeat;
}

.mobile-nav-tjanster-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 10px 6px;
}

.mobile-nav-tjanster-sub[hidden] {
  display: none;
}

.mobile-nav-tjanster-sub a {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  background: #f6f7f9;
  -webkit-tap-highlight-color: transparent;
}

.sell-valuation h3,
.sell-faq h3 {
  margin: 0 0 12px;
  color: #556274;
  font-size: 14px;
  font-weight: 400;
}

.sell-reg-input-wrap {
  display: grid;
  grid-template-columns: 62px 1fr;
  border: 1px solid #c2c8d1;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f7f9;
}

.sell-reg-prefix {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(20px, 0.5vw, 35px);
  font-weight: 500;
  background: #5a60e8;
}

.sell-reg-input-wrap input {
  border: none;
  background: #fff;
  font: inherit;
  font-size: clamp(16px, 0.55vw, 38px);
  font-weight: 400;
  color: #000;
  padding: 0 22px;
}

.sell-reg-input-wrap input:focus {
  outline: none;
}

.sell-reg-input-wrap.is-error {
  border-color: #de646d;
}

.sell-reg-input-wrap.is-error input {
  color: #d81f26 !important;
  caret-color: #d81f26;
}

.sell-reg-input-wrap.is-error input::placeholder {
  color: #d81f26;
  opacity: 1;
}

.sell-reg-error {
  display: none;
  margin: 10px 0 0;
  color: #d81f26;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.sell-reg-error.is-visible {
  display: block;
}

.sell-valuation-btn {
  margin-top: 14px;
  min-height: 50px;
  border-radius: 6px;
  background: #141414;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(15px, 0.65vw, 40px);
  font-weight: 500;
}

.sell-valuation-btn span[aria-hidden="true"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("./assets/ArrowW.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.desktop-sell-dropdown .sell-valuation-btn:hover {
  background: #000;
}

.sell-valuation p {
  margin: 16px 0 0;
  max-width: 350px;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  line-height: 1.4;
}

.sell-faq-card {
  width: 60%;
  min-height: 67px;
  border-radius: 8px;
  background: #f6f7f8;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 600;
  color: #0b0b0b;
}

.sell-faq-card + .sell-faq-card {
  margin-top: 10px;
}

.sell-faq-card span {
  width: 21px;
  height: 21px;
  border: 2px solid #111827;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  color: transparent;
}

.sell-faq-card span::before {
  content: "›";
  color: #111827;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-0.9px);
  padding-left: 1px;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.call-link {
  font-size: 37px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-icon {
  width: 22.3px;
  height: 22.3px;
  fill: currentColor;
  flex-shrink: 0;
  margin-right: 7.5px;
}

.menu-btn {
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  border-radius: 999px;
  background: #131827;
}

.announcement-bar {
  background: #ADE1B9;
  margin-top: 68px;

}

.announcement-bar p {
  margin: 0;
  min-height: 43px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 15px;
  text-align: center;
  width: 100%;
}

.announcement-bar a {
  text-decoration: underline;
  font-weight: 400;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 70;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.32s;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s;
}

.mobile-nav-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mobile-nav.is-sell-view .mobile-nav-track {
  transform: translateX(-33.333%);
}

.mobile-nav.is-valuation-view .mobile-nav-track {
  transform: translateX(-66.666%);
}

.mobile-nav-view {
  width: 33.333%;
  height: 100%;
  overflow-y: auto;
  padding: 14px 24px 28px;
}

.mobile-nav-header {
  min-height: 46px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 8px;
}

.mobile-nav-header-sub {
  justify-content: space-between;
}

.mobile-nav-close,
.mobile-nav-back {
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #000000;
  font-size: 27px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-back {
  font-size: 0;
  line-height: 1;
}

.mobile-nav-close {
  font-size: 0;
  line-height: 1;
}

.mobile-nav-close::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("./assets/Close.svg") center / contain no-repeat;
}

.mobile-nav-back::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("./assets/Back.svg") center / contain no-repeat;
  transform: rotate(180deg);
}

.mobile-nav-links {
  display: grid;
  gap: 0px;
}

.mobile-nav-links a,
.mobile-nav-sell-trigger,
.mobile-nav-tjanster-trigger {
  border: none;
  background: #fff;
  border-radius: 12px;
  min-height: 58px;
  padding: 0 18px;
  padding-right: 10px !important;
  display: flex;
  padding-left: 10px !important;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  color: #000000;;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-sell-trigger {
  cursor: pointer;
}

.mobile-nav-main .mobile-nav-links a::after,
.mobile-nav-main .mobile-nav-sell-trigger::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("./assets/Back.svg") center / contain no-repeat;
}

.mobile-nav .sell-valuation h3,
.mobile-nav .sell-faq h3 {
  font-size: 42px;
  margin-bottom: 18px;
}

.mobile-nav .sell-reg-input-wrap {
  grid-template-columns: 96px 1fr;
  border-radius: 16px;
}

.mobile-nav .sell-reg-prefix {
  min-height: 102px;
  font-size: 46px;
}

.mobile-nav .sell-reg-input-wrap input {
  font-size: 48px;
  padding: 0 24px;
}

.mobile-nav .sell-valuation-btn {
  min-height: 96px;
  border-radius: 14px;
  font-size: 50px;
  margin-top: 16px;
  width: 100%;
}

.mobile-nav .sell-valuation p {
  font-size: 39px;
  line-height: 1.35;
}

.mobile-nav .sell-faq {
  margin-top: 52px;
}

.mobile-nav .sell-faq-card {
  min-height: 130px;
  border-radius: 20px;
  padding: 22px 24px;
  font-size: 42px;
  line-height: 1.32;
}

.mobile-nav .sell-faq-card span {
  width: 46px;
  height: 46px;
}

.mobile-nav .sell-faq-card span::before {
  font-size: 34px;
}

.mobile-valuation-form {
  padding-bottom: 24px;
}

.mobile-valuation-form h2 {
  margin: 0 0 26px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.mobile-valuation-field {
  border: 1px solid #d7dbe2;
  border-radius: 14px;
  background: #fff;
  padding: 14px 18px 12px;
  margin-bottom: 14px;
}

.mobile-valuation-field label {
  display: block;
  font-size: 28px;
  color: #6a7280;
  margin-bottom: 6px;
}

.mobile-valuation-field input,
.mobile-valuation-field select {
  width: 100%;
  border: none;
  outline: none;
  font: inherit;
  font-size: 42px;
  font-weight: 500;
  color: #101317;
  background: transparent;
  appearance: none;
  padding: 0;
}

.mobile-valuation-field-select {
  position: relative;
}

.mobile-valuation-field-select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 40%;
  width: 16px;
  height: 16px;
  transform: translateY(-10%);
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  rotate: 45deg;
  pointer-events: none;
}

.mobile-valuation-privacy {
  margin: 20px 0 32px;
  font-size: 17px;
  line-height: 1.4;
  color: #515c6b;
}

.mobile-valuation-privacy a {
  text-decoration: underline;
}

.mobile-valuation-faq-button {
  width: 100%;
  border: none;
  border-radius: 14px;
  background: #eeeeef;
  min-height: 72px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 28px;
  font-weight: 600;
  color: #151515;
}

.mobile-valuation-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.mobile-valuation-trust {
  margin-top: 36px;
  text-align: center;
}

.mobile-valuation-trust-heading {
  margin: 0 0 14px;
  font-size: 36px;
  font-weight: 700;
}

.mobile-valuation-trust p {
  margin: 0;
  color: #4a5666;
  font-size: 15px;
  line-height: 1.45;
}

.valuation-review-company {
  margin: 0 0 8px;
  color: #151922;
  font-size: 21px;
  font-weight: 700;
}

.valuation-review-stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 2px;
  font-size: 25px;
}

.valuation-review-stars-base {
  color: #cfd5de;
}

.valuation-review-stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  color: #f6b100;
}

.valuation-review-meta {
  margin: 10px 0 4px;
  color: #1e2430;
  font-size: 15px;
  font-weight: 600;
}

.valuation-review-source {
  margin: 0;
  color: #5c6676;
  font-size: 13px;
}

.valuation-review-google-logo {
  margin: 0;
  width: auto;
  height: 28px;
  display: inline-block;
  object-fit: contain;
}

.valuation-submit-btn {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
}

.workshop-valuation-form .valuation-submit-btn:disabled {
  background: #6b7280;
  color: #f3f4f6;
  opacity: 0.78;
  cursor: not-allowed;
}

.valuation-success-view {
  display: none;
  margin-top: 88px;
}

.valuation-success-view h3 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.valuation-success-view p {
  margin: 0;
  max-width: 620px;
  color: #262d3a;
  font-size: 15px;
  line-height: 1.45;
}

.valuation-success-close-btn {
  margin-top: 33px;
  min-height: 41px;
  padding: 0px 20px;
  border: none;
  border-radius: 4px;
  background: #5f6bf1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-valuation-form.is-submitted > *:not(.valuation-success-view),
.desktop-valuation-form.is-submitted > *:not(.valuation-success-view) {
  display: none;
}

.mobile-valuation-form.is-submitted .valuation-success-view,
.desktop-valuation-form.is-submitted .valuation-success-view {
  display: block;
}

.desktop-valuation-page {
  display: none;
  min-height: 100vh;
  background: #ffffff;
}

.workshop-page-content {
  display: none;
  background: #ffffff;
  padding-top: 0;
}

.about-page-content {
  display: none;
  background: #ffffff;
  padding-top: 0;
}

.kop-bil-page-content {
  display: none;
  background: #ffffff;
  padding-top: 53px;
}

.bil-detail-page-content {
  display: none;
  background: #ffffff;
  padding-top: 102px;
}

.finansiering-page-content {
  display: none;
  background: #ffffff;
}

.garantier-page-content {
  display: none;
  background: #ffffff;
  padding: 0 0 52px;
}

.service-avtal-page-content {
  display: none;
  background: #ffffff;
  padding: 0 0 52px;
}

.kopvillkor-page-content {
  display: none;
  background: #ffffff;
  padding: 60px 0 56px;
}

.cookies-page-content,
.integritetspolicy-page-content,
.allmanna-villkor-page-content {
  display: none;
  background: #ffffff;
  padding: 60px 0 56px;
}

.kontakta-oss-page-content {
  display: none;
  background: #ffffff;
  padding: 80px 0 72px;
}

.about-intro-section {
  padding: 140px 0 20px;
}

.about-intro-grid {
  width: min(100%, 1285px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 86px;
  align-items: start;
}

.about-intro-copy h1 {
  margin: 0 0 17px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 600;
}

.about-intro-copy p {
  margin: 0 0 12px;
  color: #242a36;
  font-size: 15px;
  line-height: 1.52;
}

.about-intro-button {
  margin-top: 4px;
  min-height: 40px;
  border-radius: 4px;
  background: #0e4d90;
  color: #ffffff;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.about-intro-image {
  width: 100%;
  max-height: 350px;
  display: block;
  object-fit: cover;
}

.about-faq-section {
  padding: 38px 0 14px;
}

.about-faq-wrap {
  width: min(100%, 1285px);
  margin: 0 auto;
}

.about-faq-wrap h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 600;
}

.about-faq-item {
  border-bottom: 1px solid #d7dbe2;
}

.about-faq-trigger {
  width: 100%;
  min-height: 64px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #121722;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.about-faq-icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid #111827;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.about-faq-icon > span {
  display: block;
  transform: translateY(-1.2px);
}

.about-faq-item.is-open .about-faq-icon > span {
  transform: translateY(-1.3px);
}

.about-faq-item.is-open .about-faq-icon {
  transform: rotate(45deg);
}

.about-faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
  padding: 0 0 18px;
  transition: max-height 0.3s ease, opacity 0.22s ease, transform 0.22s ease;
}

.about-faq-item.is-open .about-faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.about-faq-answer p {
  margin: 0;
  max-width: 980px;
  color: #2f3745;
  font-size: 15px;
  line-height: 1.55;
}

.about-values-section {
  padding: 130px 0 52px;
}

.about-values-grid {
  width: min(100%, 1285px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media (min-width: 961px) {
  .about-intro-section .container,
  .about-values-section .container,
  .about-faq-section .container {
    width: min(100%, 1285px);
  }
}

.about-value-item {
  text-align: center;
}

.about-value-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-value-icon-star {
  background: radial-gradient(circle at 30% 30%, #49a6ff 0%, #2433b5 74%);
  color: #8df5d8;
  font-size: 35px;
}

.about-value-icon-online {
  background: radial-gradient(circle at 30% 30%, #8e96ff 0%, #4d52ea 74%);
  color: #dce0ff;
  font-size: 38px;
  font-weight: 700;
}

.about-value-icon-mrf {
  border: 1px solid #b8bdc8;
  color: #2f3848;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-value-item h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.about-value-item p {
  margin: 0;
  color: #28303f;
  font-size: 14px;
  line-height: 1.5;
}

.about-value-item a {
  margin-top: 12px;
  color: #4a4f5c;
  font-size: 13px;
  text-decoration: underline;
  display: inline-block;
}

.workshop-hero {
  position: relative;
  width: min(100%, 1285px);
}

.workshop-hero.container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.workshop-hero-image {
  width: 100%;
  height: 440px;
  border-radius: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  padding-top: 0;
}

.workshop-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.workshop-hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  margin-top: 40px;
  place-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  padding: 18px 20px;
  z-index: 1;
}

.workshop-hero-content h1 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 44px);
  font-weight: 600;
}

.workshop-hero-content p {
  margin: 10px 0 0;
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.45;
}

.workshop-valuation-section {
  margin-top: 30px;
}

.workshop-valuation-form {
  margin: 0 auto;
}

.workshop-valuation-form h2 {
  padding-top: 5px;
  margin-bottom: 5px;
}

.workshop-form-subtitle {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  padding-top: 14px !important;
}

.workshop-inline-success-message {
  display: none;
  margin: 0 0 12px;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  padding-top: 2px;
  text-align: left;
}

.workshop-valuation-form.is-inline-submitted .workshop-inline-success-message {
  display: block;
}

.workshop-service-agreement {
  margin: 10px 0 0;
}

.workshop-service-agreement label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 15px;
  color: #1f2937;
  cursor: pointer;
}

.workshop-service-agreement input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: #111111;
}

.mobile-nav-valuation {
  background: #ffffff;
}

body.is-desktop-valuation-page .site-header,
body.is-desktop-valuation-page .announcement-bar,
body.is-desktop-valuation-page main,
body.is-desktop-valuation-page .site-footer {
  display: none;
}

body.is-desktop-valuation-page .desktop-valuation-page {
  display: block;
}

body.is-workshop-page .home-page-content {
  display: none;
}

body.is-workshop-page .workshop-page-content {
  display: block;
}

body.is-about-page .home-page-content,
body.is-about-page .workshop-page-content {
  display: none;
}

body.is-about-page .about-page-content {
  display: block;
}

body.is-kop-bil-page .home-page-content,
body.is-kop-bil-page .workshop-page-content,
body.is-kop-bil-page .about-page-content,
body.is-kop-bil-page .bil-detail-page-content {
  display: none;
}

body.is-kop-bil-page .kop-bil-page-content {
  display: block;
}

body.is-bil-detail-page .home-page-content,
body.is-bil-detail-page .workshop-page-content,
body.is-bil-detail-page .about-page-content,
body.is-bil-detail-page .kop-bil-page-content {
  display: none;
}

body.is-bil-detail-page .bil-detail-page-content {
  display: block;
}

body.is-bil-detail-page .announcement-bar {
  display: none;
}

body.is-finansiering-page .home-page-content,
body.is-finansiering-page .workshop-page-content,
body.is-finansiering-page .about-page-content,
body.is-finansiering-page .kop-bil-page-content,
body.is-finansiering-page .bil-detail-page-content {
  display: none;
}

body.is-finansiering-page .finansiering-page-content {
  display: block;
}

body.is-garantier-page .home-page-content,
body.is-garantier-page .workshop-page-content,
body.is-garantier-page .about-page-content,
body.is-garantier-page .finansiering-page-content,
body.is-garantier-page .kop-bil-page-content,
body.is-garantier-page .bil-detail-page-content {
  display: none;
}

body.is-garantier-page .garantier-page-content {
  display: block;
}

body.is-service-avtal-page .home-page-content,
body.is-service-avtal-page .workshop-page-content,
body.is-service-avtal-page .about-page-content,
body.is-service-avtal-page .finansiering-page-content,
body.is-service-avtal-page .garantier-page-content,
body.is-service-avtal-page .kop-bil-page-content,
body.is-service-avtal-page .bil-detail-page-content {
  display: none;
}

body.is-service-avtal-page .service-avtal-page-content {
  display: block;
}

body.is-kopvillkor-page .home-page-content,
body.is-kopvillkor-page .workshop-page-content,
body.is-kopvillkor-page .about-page-content,
body.is-kopvillkor-page .finansiering-page-content,
body.is-kopvillkor-page .garantier-page-content,
body.is-kopvillkor-page .service-avtal-page-content,
body.is-kopvillkor-page .kop-bil-page-content,
body.is-kopvillkor-page .bil-detail-page-content {
  display: none;
}

body.is-kopvillkor-page .kopvillkor-page-content {
  display: block;
}

body.is-cookies-page .home-page-content,
body.is-cookies-page .workshop-page-content,
body.is-cookies-page .about-page-content,
body.is-cookies-page .finansiering-page-content,
body.is-cookies-page .garantier-page-content,
body.is-cookies-page .service-avtal-page-content,
body.is-cookies-page .kopvillkor-page-content,
body.is-cookies-page .integritetspolicy-page-content,
body.is-cookies-page .allmanna-villkor-page-content,
body.is-cookies-page .kop-bil-page-content,
body.is-cookies-page .bil-detail-page-content {
  display: none;
}

body.is-cookies-page .cookies-page-content {
  display: block;
}

body.is-integritetspolicy-page .home-page-content,
body.is-integritetspolicy-page .workshop-page-content,
body.is-integritetspolicy-page .about-page-content,
body.is-integritetspolicy-page .finansiering-page-content,
body.is-integritetspolicy-page .garantier-page-content,
body.is-integritetspolicy-page .service-avtal-page-content,
body.is-integritetspolicy-page .kopvillkor-page-content,
body.is-integritetspolicy-page .cookies-page-content,
body.is-integritetspolicy-page .allmanna-villkor-page-content,
body.is-integritetspolicy-page .kop-bil-page-content,
body.is-integritetspolicy-page .bil-detail-page-content {
  display: none;
}

body.is-integritetspolicy-page .integritetspolicy-page-content {
  display: block;
}

body.is-allmanna-villkor-page .home-page-content,
body.is-allmanna-villkor-page .workshop-page-content,
body.is-allmanna-villkor-page .about-page-content,
body.is-allmanna-villkor-page .finansiering-page-content,
body.is-allmanna-villkor-page .garantier-page-content,
body.is-allmanna-villkor-page .service-avtal-page-content,
body.is-allmanna-villkor-page .kopvillkor-page-content,
body.is-allmanna-villkor-page .cookies-page-content,
body.is-allmanna-villkor-page .integritetspolicy-page-content,
body.is-allmanna-villkor-page .kop-bil-page-content,
body.is-allmanna-villkor-page .bil-detail-page-content {
  display: none;
}

body.is-allmanna-villkor-page .allmanna-villkor-page-content {
  display: block;
}

body.is-kontakta-oss-page .home-page-content,
body.is-kontakta-oss-page .workshop-page-content,
body.is-kontakta-oss-page .about-page-content,
body.is-kontakta-oss-page .finansiering-page-content,
body.is-kontakta-oss-page .garantier-page-content,
body.is-kontakta-oss-page .service-avtal-page-content,
body.is-kontakta-oss-page .kopvillkor-page-content,
body.is-kontakta-oss-page .cookies-page-content,
body.is-kontakta-oss-page .integritetspolicy-page-content,
body.is-kontakta-oss-page .allmanna-villkor-page-content,
body.is-kontakta-oss-page .kop-bil-page-content,
body.is-kontakta-oss-page .bil-detail-page-content {
  display: none;
}

body.is-kontakta-oss-page .kontakta-oss-page-content {
  display: block;
}

@media (max-width: 960px) {
  .about-page-content {
    padding-top: 0;
  }

  .about-intro-section {
    padding: 30px 0 16px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-intro-image {
    order: -1;
  }

  .about-intro-copy h1 {
    font-size: 33px;
  }

  .about-values-section {
    padding-top: 26px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workshop-page-content {
    padding-top: 0;
  }

  .about-faq-section {
    padding-top: 22px;
  }

  .about-faq-wrap h2 {
    font-size: 30px;
  }

  .about-faq-trigger {
    min-height: 58px;
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .about-page-content {
    padding-top: 0;
  }

  .about-intro-copy h1 {
    font-size: 27px;
    margin-top: 4px;
  }

  .about-intro-copy p {
    font-size: 14px;
  }

  .about-intro-button {
    font-size: 12.5px;
  }

  .about-faq-wrap h2 {
    font-size: 27px;
    margin-top: 6px;
  }

  .about-faq-trigger {
    min-height: 56px;
    font-size: 16px;
    gap: 14px;
  }

  .about-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 17px;
  }

  .about-faq-answer p {
    font-size: 14px;
  }

  .about-value-item h2 {
    font-size: 31px;
    line-height: 1.18;
  }

  .about-value-item p {
    font-size: 15px;
  }

  .about-value-item a {
    font-size: 14px;
  }

  .workshop-page-content {
    padding-top: 0;
  }
}

.desktop-valuation-header {
  padding: 18px 48px;
}

.desktop-valuation-brand {
  display: inline-flex;
  line-height: 0;
}

.desktop-valuation-logo {
  height: 34px;
  width: auto;
}

.desktop-valuation-content {
  display: flex;
  justify-content: center;
  padding: clamp(96px, 14vh, 190px) clamp(20px, 2.5vw, 24px) clamp(56px, 8vh, 80px);
}

.desktop-valuation-form {
  width: min(100%, 625px);
}

.desktop-valuation-form h2 {
  margin: 0 0 42px;
  font-size: 38px;
  font-weight:600;
  line-height: 1.05;
}

.desktop-valuation-field {
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background: #fff;
  padding: 10px 16px;
  margin-bottom: 10px;
}

.desktop-valuation-field label {
  display: block;
  color: #6d7480;
  font-size: 13px;
  margin-bottom: 2px;
}

.desktop-valuation-field input,
.desktop-valuation-field select,
.desktop-valuation-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #0f1319;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  appearance: none;
}

.desktop-valuation-field textarea {
  resize: vertical;
  min-height: 78px;
  line-height: 1.35;
}

.desktop-valuation-field-select {
  position: relative;
}

.desktop-valuation-field-select::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 44%;
  width: 8px;
  height: 8px;
  transform: translateY(-30%) rotate(45deg);
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  pointer-events: none;
}

.desktop-valuation-privacy {
  margin: 14px 0 22px;
  font-size: 14px;
  color: #505a69;
}

.desktop-valuation-privacy a {
  text-decoration: underline;
}

.desktop-valuation-faq-button {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 10px;
  background: #f7f7f8;
  padding: 0 16px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.desktop-valuation-faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #101216;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.desktop-valuation-trust {
  margin-top: 30px;
  text-align: center;
}

.desktop-valuation-trust-heading {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 700;
}

.desktop-valuation-trust p {
  margin: 0;
  color: #495465;
  font-size: 12px;
  line-height: 1.45;
}

.hero {
  position: relative;
  min-height: 610px;
  background-image: url("./assets/HeroMain.jpg");
  background-size: cover;
  background-position: center 64%;
}

@media (min-width: 1920px) {
  .hero {
    min-height: 790px;
    background-position: center 58%;
  }
}

@media (min-width: 961px) and (max-width: 1600px) {
  .container {
    padding-inline: 20px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(34px, 3.1vw, 48px);
  }

  .cta-card {
    width: min(100%, 520px);
  }

  .value-card {
    padding: 34px 22px 30px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .sale-header h2 {
    font-size: 30px;
  }

  .premium-content h2 {
    font-size: 34px;
  }

  .premium-lead {
    font-size: 16px;
  }

  .premium-body {
    font-size: 15px;
  }

  .desktop-valuation-content {
    padding: clamp(84px, 11vh, 150px) 20px 64px;
  }

  .desktop-valuation-form {
    width: min(100%, 580px);
  }

  .desktop-valuation-form h2 {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .valuation-success-view h3 {
    font-size: 34px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 69px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding-bottom:1px;
  text-align: center;
}

.cta-card {
  width: min(100%, 548px);
  background: transparent;
  margin-top: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(20, 26, 39, 0.14);
}

.cta-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  background: transparent;
}

.cta-content {
  background: var(--card-bg);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  backdrop-filter: blur(1.5px);
}

.tab-btn {
  border: none;
  min-height: 56px;
  background: #f6f7fa;
  border-bottom: 1px solid #eceff4;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
}

.tab-btn.is-active {
  background: #fff;
  color: black;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 19px 24px 14px;
  display: grid;
  gap: 12px;
}

.benefits-list li {
  font-size: 15px;
  color: #0f1a2f;
  position: relative;
  padding-left: 22px;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  background: url("./assets/Check.svg") center / contain no-repeat;
}

.primary-btn {
  margin: 8px 16px 16px;
  min-height: 56px;
  border-radius: 9px;
  background: #0e4d90;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16.5px;
  font-weight: 700;
  transition: filter 0.2s ease;
}

.primary-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("./assets/ArrowW.svg") center / contain no-repeat;
  display: inline-block;
}

.primary-btn:hover {
  filter: brightness(1.14);
}

.brand-strip {
  background: #fff;
  padding: 28px 0 38px;
  border-top: 1px solid #e4e7ee;
}

.brand-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 15.5px;
}

.brand-card {
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
}

.brand-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-inline: auto;
}

.brand-card span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.brand-card.all-cars {
  cursor: pointer;
}

.arrow-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.arrow-icon.black {
  background-image: url("./assets/ArrowB.svg");
}

@media (min-width: 961px) {
  .primary-btn::after {
    width: 15px;
    height: 15px;
  }

  .arrow-icon {
    width: 13px;
    height: 13px;
  }
}

/* Mobile ticker — hidden on desktop */
.brand-ticker {
  display: none;
  overflow: hidden;
  width: 100%;
}

.brand-ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: brandScroll 57s linear infinite;
}

.brand-ticker-item {
  min-width: 140px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  flex-shrink: 0;
}

.brand-ticker-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-ticker-item span {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.brand-ticker-all {
  cursor: pointer;
}

@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.value-section {
  padding: 100px 0 20px;
}

.help-strip {
  padding: 18px 0 18px;
}

.help-strip .container {
  width: min(100%, 1285px);
}

.help-strip-card {
  background: #F7FAFC;
  border-radius: 12px;
  padding: 66px 24px;
  text-align: center;
}

.help-strip-card h3 {
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 600;
}

.help-strip-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.help-avatars {
  display: inline-flex;
  align-items: center;
}

.help-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #d6dbe3;
  margin-left: -8px;
  display: inline-block;
  object-fit: cover;
}

.help-avatar:first-child {
  margin-left: 0;
}

.help-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.help-phone-mobile {
  display: none;
}

.help-phone-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.value-section .container {
  width: min(100%, 1285px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  background: #f4f4f6;
  border-radius: 16px;
  padding: 45px 28px 42px;
  text-align: center;
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  margin: 0 auto 14px;
  display: block;
  position: relative;
  background: radial-gradient(circle at 30% 30%, #8e96ff 0%, #4d52ea 72%);
}

.value-icon-image {
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  display: block;
  object-fit: contain;
  margin: 0 auto 14px;
  flex: 0 0 50px;
}

.value-icon-bil {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  flex: 0 0 54px;
}

.value-icon::before,
.value-icon::after {
  content: "";
  position: absolute;
}

.icon-trust::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ffffff;
  top: 11px;
  left: 11px;
}

.icon-trust::after {
  width: 6px;
  height: 10px;
  border-radius: 8px;
  background: #4d52ea;
  top: 14px;
  left: 16px;
}

.icon-payout::before {
  width: 24px;
  height: 13px;
  border-radius: 8px;
  background: #ffffff;
  top: 13px;
  left: 8px;
}

.icon-payout::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4d52ea;
  top: 16px;
  left: 16px;
}

.icon-trade::before {
  width: 22px;
  height: 12px;
  border-radius: 8px 8px 3px 3px;
  background: #ffffff;
  top: 16px;
  left: 9px;
}

.icon-trade::after {
  width: 12px;
  height: 6px;
  border-radius: 8px 8px 0 0;
  background: #d9dcff;
  top: 11px;
  left: 14px;
}

.value-card h3 {
  margin: 0px 0px 17px;
  margin-top: 21px;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.value-card p {
  margin: 0;
  color: #1f2937;
  font-size: 14.7px;
  line-height: 1.55;
}

.value-card a {
  display: inline-block;
  margin-top: 16px;
  font-size: 15.5px;
  font-weight: 600;
}

.sale-section {
  background: #fff;
  padding: 36px 0 40px;
}

.sale-section .container {
  width: min(100%, 1285px);
}

.sale-header {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 10px;
  margin-bottom: 38px;
}

.sale-header h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: black;
}

.sale-link {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.sale-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.sale-card {
  position: relative;
  display: block;
}

.sale-image {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}

.sale-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: #e8676e;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
}

.sale-card h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  line-height: 1.3;
}

.sale-meta {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
}

.sale-price {
  margin: 10px 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.sale-month {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.premium-section {
  background: #fff;
  padding: 120px 0 40px;
}

.workshop-premium-copy {
  padding-top: 138px;
  padding-bottom: 24px;
}

.workshop-info-box {
  border: 1px solid #d8dbe1;
  background: #fff;
  padding: 34px 34px 30px;
}

.workshop-info-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 84px;
  align-items: center;
}

.workshop-info-intro h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.workshop-info-intro p {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
}

.workshop-info-image {
  width: 100%;
  border-radius: 1px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1.45;
}

.workshop-faq-box {
  margin-top: 42px;
  border-top: 1px solid #d8dbe1;
  padding-top: 58px;
}

.workshop-faq-box h3 {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.workshop-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 74px;
}

.workshop-faq-item h4 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.workshop-faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;
}

@media (min-width: 961px) {
  .workshop-info-box {
    padding: 44px 48px 40px;
  }
}

.premium-section .container {
  width: min(100%, 1285px);
}

.premium-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: center;
}

.premium-card + .premium-card {
  margin-top: 159px;
}

.premium-card-loan {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

@media (min-width: 961px) {
  .premium-card > .premium-image {
    width: 90%;
    justify-self: end;
  }

  .premium-card-loan .premium-image-wrap {
    width: 90%;
    justify-self: start;
  }
}

.premium-image {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 1.45;
}

.premium-image-wrap {
  position: relative;
}

.premium-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  pointer-events: none;
}

.premium-image-overlay-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.48);
}

.premium-image-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  display: block;
  text-align: center;
  font-size: 11px;
  color: #111827;
}

.premium-content h2 {
  margin: 0 0 14px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-size: 40px;
  font-weight: 500;
}

.premium-lead {
  margin: 27px 0 14px;
  font-size: 17px;
  font-weight: 500;
}

.premium-body {
  margin: 0;
  font-size: 16px;
  margin-top: 22px !important;
  line-height: 1.45;
  max-width: 480px;

}

.premium-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.premium-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.premium-btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.premium-btn.primary {
  background: #0e4d90;
  color: #fff;
}

.premium-btn.secondary {
  background: transparent;
  color: #111827;
  border: 1px solid #b6bcc7;
}

@media (min-width: 961px) {
  .premium-card:not(.premium-card-loan) .premium-actions .premium-btn {
    width: 210px;
  }
}

.site-footer {
  background: #efefef;
  border-top: 1px solid #d9dde3;
  margin-top: 115px;
  color: #232934;
}

.site-footer .container {
  width: min(100%, 1285px);
  padding-top: 36px;
  padding-bottom: 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr 1.35fr;
  gap: 44px;
  padding-bottom: 28px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a,
.footer-col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.38;
  color: #2f3642;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin-top: 12px;
}

.footer-support-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}

.footer-newsletter p {
  margin-bottom: 12px;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  border: 1px solid #cfd4dc;
  background: #f7f7f7;
  width: min(100%, 320px);
}

.footer-newsletter-form input {
  border: none;
  background: transparent;
  min-height: 40px;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
}

.footer-newsletter-form input:focus {
  outline: none;
}

.footer-newsletter-form button {
  border: none;
  border-left: 1px solid #cfd4dc;
  background: transparent;
  color: #232934;
  font-size: 20px;
  cursor: pointer;
}

.footer-privacy-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
}

.footer-middle {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 1fr);
  gap: 56px;
  align-items: start;
  border-top: 1px solid #d5d8dd;
  border-bottom: 1px solid #d5d8dd;
  padding: 26px 0 24px;
}

.footer-middle h4 {
  margin: 0 0 25px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.footer-middle p {
  margin: 0;
  color: #303846;
  font-size: 13px;
  line-height: 1.45;
  max-width: 640px;
}

.footer-middle p a {
  text-decoration: underline;
}

.partner-logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18.5px 22.5px;
  margin-top: 20px;
}

.partner-logo-list img {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

.partner-logo-list img.partner-logo--small {
  height: 19px;
}

.partner-logo-list img.partner-logo--xsmall {
  height: 14.8px;
}

.footer-awards {
  justify-self: end;
}

.award-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.award-badge {
  width: 62px;
  height: 62px;
  border: 2px solid #1f2734;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}

.award-badge-reco {
  border-color: #222;
  font-size: 13px;
}

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-branding img {
  height: 19px;
  width: auto;
  opacity: 0.88;
}

.footer-branding p {
  margin: 0;
  color: #404856;
  font-size: 13px;
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal-nav a {
  color: #313947;
  font-size: 13px;
}

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

@media (max-width: 960px) {
  body.is-desktop-valuation-page .site-header,
  body.is-desktop-valuation-page .announcement-bar,
  body.is-desktop-valuation-page main,
  body.is-desktop-valuation-page .site-footer {
    display: block;
  }

  body.is-desktop-valuation-page .desktop-valuation-page {
    display: none;
  }

  .workshop-hero {
    padding-inline: 0;
  }

  .workshop-hero-image {
    border-radius: 0;
    width: 100%;
    height: 380px;
    margin-inline: 0;
    object-fit: cover;
  }

  .workshop-hero-content {
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
    padding: 20px 20px;
  }

  .workshop-hero-content h1 {
    font-size: 40px;
    line-height: 1.07;
  }

  .workshop-hero-content p {
    margin-top: 28px;
    font-size: 15.1px;
    line-height: 1.35;
  }

  .workshop-valuation-section {
    margin-top: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav-back::before {
    width: 19.5px;
    height: 19.5px;
  }

  .mobile-nav .sell-reg-input-wrap input::placeholder {
    color: #5a626f;
    opacity: 1;
  }

  .mobile-actions {
    display: flex;
  }

  .brand-logo {
    height: 46px;
  }

  .top-nav {
    height: 82px;
    justify-content: space-between;
  }

  .announcement-bar {
    margin-top: 82px;
  }

  .hero {
    min-height: 760px;
    background-position: center 58%;
  }

  .hero-content {
    align-items: stretch;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 58px;
    text-align: left;
    max-width: 680px;
  }

  .cta-card {
    margin-top: 22px;
    width: min(100%, 760px);
  }

  .tab-btn {
    font-size: 42px;
    min-height: 88px;
  }

  .benefits-list li {
    font-size: 41px;
    line-height: 1.2;
    padding-left: 52px;
  }

  .benefits-list li::before {
    width: 30px;
    height: 30px;
    top: 8px;
  }

  .primary-btn {
    font-size: 49px;
    min-height: 96px;
    border-radius: 13px;
  }

  .brand-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 15.5px;
    padding-bottom: 6px;
    scroll-snap-type: none;
  }

  .brand-card {
    min-width: 230px;
    min-height: 170px;
    scroll-snap-align: none;
  }

  .brand-card span {
    font-size: 40px;
  }

  .brand-card img {
    width: 80px;
    height: 80px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-card {
    text-align: left;
    padding: 20px 22px;
  }

  .value-icon,
  .value-icon-image {
    margin: 0 0 12px;
  }

  .value-card h3 {
    font-size: 19.5px;
  }

  .value-card p {
    font-size: 13.5px;
  }

  .sale-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
  }

  .sale-header h2 {
    font-size: 35px;
  }

  .sale-link {
    font-size: 22px;
    margin-top: 0;
  }

  .sale-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
  }

  .sale-card {
    min-width: 340px;
    flex: 0 0 340px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .sale-card h3 {
    font-size: 16px;
  }

  .sale-meta {
    font-size: 14px;
  }

  .sale-price {
    font-size: 16px;
  }

  .sale-month {
    font-size: 14px;
  }

  .premium-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workshop-premium-copy {
    padding-top: 48px;
  }

  .workshop-info-box {
    padding: 24px 22px 22px;
    border: none;
  }

  .workshop-info-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workshop-info-image {
    order: -1;
  }

  .workshop-info-intro h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .workshop-info-intro p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .workshop-faq-box {
    margin-top: 28px;
    padding-top: 24px;
  }

  .workshop-faq-box h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .workshop-faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .workshop-faq-item h4 {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.24;
  }

  .workshop-faq-item p {
    font-size: 14px;
    line-height: 1.55;
  }

  .premium-card + .premium-card {
    margin-top: 18px;
  }

  .premium-image {
    aspect-ratio: 1.72;
  }

  .premium-content h2 {
    font-size: 46px;
    line-height: 1.06;
  }

  .premium-lead {
    font-size: 33px;
  }

  .premium-body {
    font-size: 33px;
    line-height: 1.32;
    max-width: none;
  }

  .premium-actions {
    gap: 14px;
    margin-top: 16px;
  }

  .premium-btn {
    min-height: 66px;
    padding: 0 28px;
    font-size: 28px;
    border-radius: 10px;
  }

  .premium-image-overlay-title {
    left: 18px;
    bottom: 18px;
    font-size: 46px;
  }

  .premium-image-note {
    bottom: -22px;
    font-size: 10px;
  }

  .premium-list {
    font-size: 26px;
    gap: 10px;
  }

  .help-strip-card h3 {
    font-size: 21px;
  }

  .help-phone {
    font-size: 24px;
  }

  .help-phone-icon {
    width: 22px;
    height: 22px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-awards {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }
}

@media (max-width: 640px) {
  .mobile-line-break {
    display: block;
  }

  .container {
    padding-inline: 20px;
  }

  .top-nav {
    height: 84px;
  }

  .announcement-bar {
    margin-top: 84px;
  }

  .brand-logo {
    height: 38px;
  }

  .mobile-actions {
    gap: 8px;
  }

  .mobile-nav-view {
    padding: 12px 16px 28px;
  }

  .mobile-nav-header {
    min-height: 44px;
    margin-bottom: 30px;
  }

  .mobile-nav-close,
  .mobile-nav-back {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .mobile-nav-back {
    font-size: 0;
  }

  .mobile-nav-close::before,
  .mobile-nav-back::before {
    width: 17px;
    height: 17px;
  }

  .mobile-nav-back::before {
    width: 18.5px;
    height: 18.5px;
  }

  .mobile-nav-links a,
  .mobile-nav-sell-trigger,
  .mobile-nav-tjanster-trigger {
    min-height: 52px;
    font-size: 24px;
  }

  .mobile-nav .sell-valuation h3,
  .mobile-nav .sell-faq h3 {
    font-size: 14px;
    margin-bottom: 17px;
    padding-top: 10px;
  }

  .mobile-nav .sell-reg-input-wrap {
    grid-template-columns: 62px 1fr;
    border-radius: 6px;
  }

  .mobile-nav .sell-reg-prefix {
    min-height: 53px;
    font-size: 19px;
  }

  .mobile-nav .sell-reg-input-wrap input {
    font-size: 16.5px;
    padding: 0 16px;
  }

  .mobile-nav .sell-valuation-btn {
    min-height: 53px;
    border-radius: 6px;
    font-size: 16.5px;
    margin-top: 14px;
  }

  .mobile-nav .sell-valuation p {
    margin-top: 14px;
    font-size: 14px;
    max-width: 380px !important;
    line-height: 1.4;
  }

  .mobile-nav .sell-reg-error {
    font-size: 14px;
    margin-top: 10px;
  }

  .mobile-nav .sell-faq {
    margin-top: 45px;
  }

  .mobile-nav .sell-faq-card {
    min-height: 80px;
    border-radius: 10px;
    width: 100%;
    padding: 18px 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .mobile-nav .sell-faq-card span {
    width: 21px;
    height: 21px;
    border-width: 2px;
  }

  .mobile-nav .sell-faq-card span::before {
    font-size: 18px;
  }

  .mobile-valuation-form h2 {
    margin-bottom: 22px;
    padding-top: 25px;
    font-size: 28px;
  }

  .mobile-valuation-field {
    border-radius: 6px;
    padding: 10px 14px 10px;
    margin-bottom: 12px;
  }

  .mobile-valuation-field label {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .mobile-valuation-field input,
  .mobile-valuation-field select {
    font-size: 17px;
    font-weight: 400;
  }

  .mobile-valuation-field-select::after {
    width: 8px;
    height: 8px;
    right: 21px;
  }

  .mobile-valuation-privacy {
    margin: 14px 0 24px;
    font-size: 14px;
  }

  .valuation-submit-btn {
    min-height: 53px;
    border-radius: 6px;
    font-size: 15.5px;
  }

  .valuation-success-view {
    margin-top: 56px;
  }

  .valuation-success-view h3 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .valuation-success-view p {
    font-size: 13px;
  }

  .mobile-valuation-faq-button {
    min-height: 48px;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .mobile-valuation-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .mobile-valuation-trust {
    margin-top: 28px;
  }

  .mobile-valuation-trust-heading {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .mobile-valuation-trust p {
    font-size: 13px;
    line-height: 1.4;
  }

  .valuation-review-company {
    font-size: 17px;
  }

  .valuation-review-stars {
    font-size: 20px;
  }

  .valuation-review-meta {
    font-size: 13px;
  }

  .valuation-review-google-logo {
    height: 20px;
  }

  .call-link {
    font-size: 15px;
  }

  .call-icon {
    width: 18.3px;
    height: 18.3px;
  }

  .menu-btn {
    width: 34px;
    height: 34px;
  }

  .menu-btn span {
    width: 22px;
  }

  .announcement-bar p {
    min-height: 44px;
    font-size: 14px;
    justify-content: center;
  }

  .hero {
    min-height: 570px;
    background-position: center 70%;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 390px;
    text-align: center;
    padding-bottom: 10px;
    line-height: 1.06;
  }

  .cta-card {
    border-radius: 14px;
    margin-top: 20px;
  }

  .tab-btn {
    font-size: 14px;
    min-height: 54px;
    color: black;
  }

  .benefits-list {
    padding: 16px 18px 12px;
  }

  .benefits-list li {
    font-size: 13.5px;
    line-height: 1.22;
    padding-left: 24px;
  }

  .benefits-list li::before {
    width: 14px;
    height: 14px;
    top: 1px;
  }

  .primary-btn {
    margin: 8px 18px 16px;
    min-height: 48px;
    font-size: 14.5px;
    border-radius: 10px;
  }

  .brand-strip {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .brand-strip .container {
    padding-inline: 0;
  }

  .brand-desktop-grid {
    display: none;
  }

  .brand-ticker {
    display: block;
    padding: 0;
  }

  .value-card {
    text-align: center;
  }

  .value-icon,
  .value-icon-image {
    margin: 0 auto 12px;
  }

  .value-icon-image {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    flex: 0 0 46px;
  }

  .value-icon-bil {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    flex: 0 0 50px;
  }

  .brand-card {
    min-width: 182px;
    min-height: 146px;
  }

  .brand-card span {
    font-size: 17px;
  }

  .brand-card img {
    width: 68px;
    height: 68px;
  }

  .sale-section {
    padding: 26px 0 30px;
  }

  .premium-section {
    padding: 78px 0 28px;
  }

  .workshop-premium-copy {
    padding: 68px 0 0px;
  }

  .workshop-info-box {
    padding: 20px 16px 18px;
  }

  .workshop-info-top {
    gap: 22px;
  }

  .workshop-info-intro h2 {
    font-size: 24.4px;
  }

  .workshop-info-image {
    aspect-ratio: 1.35;
  }

  .workshop-faq-box h3 {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .workshop-faq-item h4 {
    font-size: 24.4px;
    margin-bottom: 8px;
  }

  .premium-card {
    gap: 14px;
  }

  .premium-image {
    aspect-ratio: 1.35;
  }

  .premium-image-wrap::before {
    background: rgba(0, 0, 0, 0.17);
  }

  .premium-card:not(.premium-card-loan) > .premium-image {
    order: -1;
    margin-top: 120px;
  }

  .premium-content h2 {
    font-size: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    padding-top: 20px;
  }

  .premium-lead {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .premium-body {
    font-size: 16px;
    line-height: 1.42;
    padding-bottom: 16px;
  }

  .premium-list {
    font-size: 16px;
    gap: 10px;
    margin-top: 10px;
    font-weight: 400;
    padding-left: 16px;
  }

  .premium-actions {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .premium-actions-equal .premium-btn {
    width: 100%;
  }

  .premium-btn {
    min-height: 50px;
    padding: 0px 21px;
    font-size: 15px;
    margin-top: 11px;
    border-radius: 6px;
  }

  .premium-image-overlay-title {
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: calc(100% - 24px);
    font-size: 31px;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .premium-image-note {
    bottom: -18px;
    font-size: 8px;
  }

  .help-strip {
    padding: 8px 0 12px;
  }

  .help-strip-card {
    padding: 55px 16px;
  }

  .help-strip-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .help-title-extra {
    display: none;
  }

  .help-strip-contact {
    width: auto;
    justify-content: center;
    gap: 36px;
  }

  .help-avatar {
    width: 40px;
    height: 40px;
    margin-left: -6px;
  }

  .help-phone {
    background: #0e4d90;
    color: #fff;
    border-radius: 6px;
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    flex-shrink: 0;
  }

  .help-phone-icon {
    display: none;
  }

  .help-phone-desktop {
    display: none;
  }

  .help-phone-mobile {
    display: inline;
  }

  .sale-header h2 {
    font-size: 24px;
    padding-top: 12px;
  }

  .sale-link {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
  }

  .sale-card {
    min-width: 315px;
    flex: 0 0 315px;
  }

  .sale-grid {
    margin-inline: -20px;
    padding: 0 20px 8px 20px;
  }

  .sale-card h3 {
    font-size: 16px;
  }

  .sale-meta {
    font-size: 14px;
  }

  .sale-price {
    font-size: 16px;
  }

  .sale-month {
    font-size: 14px;
  }

  .site-footer .container {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }

  .footer-col h3 {
    font-size: 13px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 12px;
  }

  .footer-newsletter-form {
    width: 100%;
    max-width: none;
  }

  .footer-middle {
    gap: 20px;
    padding: 20px 0 14px;
  }

  .partner-logo-list {
    gap: 16.5px 18.5px;
  }

  .partner-logo-list img {
    height: 18px;
  }

  .partner-logo-list img.partner-logo--small {
    height: 15px;
  }

  .partner-logo-list img.partner-logo--xsmall {
    height: 10.8px;
  }

  .award-badge {
    width: 54px;
    height: 54px;
    font-size: 12px;
  }

  .footer-branding {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-branding p {
    font-size: 11px;
    line-height: 1.35;
  }

  .footer-legal-nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-legal-nav a {
    font-size: 12px;
  }
}

/* ============================================================
   Köp bil page (/kop-bil)
   ============================================================ */

.kop-bil-shell {
  width: min(100%, 1285px);
  padding-top: 12px;
  padding-bottom: 80px;
}

.kop-bil-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 22px;
  border-bottom: 1px solid #e5e7ec;
  margin-bottom: 24px;
}

.kop-bil-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0b1020;
}

.kop-bil-title [data-count] {
  font-size: 27px;
}

.kop-bil-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.kop-bil-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 8px 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #1a1f2c;
  cursor: pointer;
  border-radius: 6px;
}

.kop-bil-action:hover {
  background: #f3f4f7;
}

.kop-bil-action-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}

.kop-bil-sort {
  position: relative;
}

.kop-bil-sort-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 10px;
  box-shadow: 0 16px 40px -16px rgba(11, 16, 32, 0.18);
  list-style: none;
  margin: 0;
  padding: 6px;
  display: none;
  z-index: 25;
}

.kop-bil-sort.is-open .kop-bil-sort-menu {
  display: block;
}

.kop-bil-sort-menu li {
  margin: 0;
}

.kop-bil-sort-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  color: #1a1f2c;
  border-radius: 6px;
  cursor: pointer;
}

.kop-bil-sort-menu button:hover {
  background: #f3f4f7;
}

.kop-bil-sort-menu button.is-active {
  background: #eef0fe;
  color: #2a2fb6;
  font-weight: 600;
}

.kop-bil-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

body.kop-filters-hidden .kop-bil-layout {
  grid-template-columns: minmax(0, 1fr);
}

body.kop-filters-hidden .kop-bil-sidebar {
  display: none;
}

.kop-bil-sidebar {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding-right: 6px;
}

.kop-bil-sidebar::-webkit-scrollbar {
  width: 6px;
}

.kop-bil-sidebar::-webkit-scrollbar-thumb {
  background: #d8dbe1;
  border-radius: 6px;
}

.kop-bil-sidebar-mobile-header {
  display: none;
}

.kop-filter {
  border-bottom: 1px solid #e5e7ec;
}

.kop-filter:first-child {
  border-top: 1px solid #e5e7ec;
}

.kop-filter-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 16px 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #0b1020;
  cursor: pointer;
}

.kop-filter-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.kop-filter-icon::before,
.kop-filter-icon::after {
  content: "";
  position: absolute;
  background: #0b1020;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.kop-filter-icon::before {
  width: 12px;
  height: 1.6px;
}

.kop-filter-icon::after {
  width: 1.6px;
  height: 12px;
}

.kop-filter.is-open .kop-filter-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.kop-filter-body {
  display: none;
  padding: 0 4px 18px;
}

.kop-filter.is-open .kop-filter-body {
  display: block;
}

.kop-filter-hint {
  margin: 0;
  color: #6c7484;
  font-size: 13px;
}

.kop-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #d3d7df;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.kop-search-wrap:focus-within {
  border-color: #5a60e8;
  box-shadow: 0 0 0 3px rgba(90, 96, 232, 0.15);
}

.kop-search-icon {
  width: 16px;
  height: 16px;
  color: #6c7484;
  flex-shrink: 0;
}

.kop-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 8px;
  font: inherit;
  font-size: 14px;
  background: transparent;
  color: #0b1020;
  min-width: 0;
}

.kop-checkbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kop-checkbox-list:empty::after {
  content: "Inga val tillgängliga";
  display: block;
  color: #6c7484;
  font-size: 13px;
}

.kop-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 6px;
  font-size: 14px;
  color: #1a1f2c;
}

.kop-checkbox:hover {
  background: #f6f7f9;
}

.kop-checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #c2c8d1;
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}

.kop-checkbox input[type="checkbox"]:checked {
  background: #5a60e8;
  border-color: #5a60e8;
}

.kop-checkbox input[type="checkbox"]:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("./assets/Check.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.kop-checkbox-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.kop-checkbox-label > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kop-checkbox-count {
  color: #6c7484;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.kop-show-more {
  background: transparent;
  border: none;
  color: #2a2fb6;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 4px 0;
  cursor: pointer;
}

.kop-show-more:hover {
  text-decoration: underline;
}

.kop-range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.kop-range-field {
  display: block;
}

.kop-range-field > span {
  display: none;
}

.kop-range-field select {
  width: 100%;
  appearance: none;
  border: 1px solid #d3d7df;
  border-radius: 8px;
  background: #fff
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23556274' stroke-width='1.6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E")
    no-repeat right 8px center / 18px;
  padding: 10px 32px 10px 12px;
  font: inherit;
  font-size: 14px;
  color: #1a1f2c;
  cursor: pointer;
}

.kop-range-field select:focus {
  outline: none;
  border-color: #5a60e8;
  box-shadow: 0 0 0 3px rgba(90, 96, 232, 0.15);
}

.kop-clear-filters {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 1px solid #d3d7df;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #1a1f2c;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.kop-clear-filters:hover {
  background: #f6f7f9;
  border-color: #b9bfc9;
}

.kop-bil-sidebar-apply {
  display: none;
}

.kop-bil-results {
  min-height: 400px;
  position: relative;
}

.kop-bil-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kop-bil-pagination {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.kop-bil-pagination[hidden] {
  display: none !important;
}

.kop-bil-pagination-btn {
  border: 1px solid #d4d9e2;
  background: #fff;
  color: #0b1020;
  border-radius: 8px;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.kop-bil-pagination-btn:hover:not(:disabled) {
  border-color: #0e4d90;
  color: #0e4d90;
}

.kop-bil-pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.kop-bil-pagination-info {
  min-width: 110px;
  text-align: center;
  font-size: 14px;
  color: #374151;
}

.kop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.kop-card:hover {
  transform: translateY(-2px);
}

.kop-card-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f6f7f9;
  aspect-ratio: 1.45;
}

.kop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #eceef3;
}

.kop-card-image--placeholder {
  object-fit: contain;
  padding: 24px;
  background: #f6f7f9;
}

.kop-card-image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b3b8c2;
  font-size: 13px;
  font-weight: 500;
  background: #f6f7f9;
}

.kop-card-badges {
  position: absolute;
  inset: 10px 10px auto 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.kop-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0;
  white-space: nowrap;
}

.kop-card-badge--discount {
  background: #e8676e;
  color: #fff;
}

.kop-card-badge--rate {
  background: #e8676e;
  color: #fff;
  margin-left: auto;
}

.kop-card-body {
  padding: 12px 4px 24px;
}

.kop-card-title {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: #0b1020;
}

.kop-card-meta {
  margin: 0;
  color: #1f2937;
  font-size: 13px;
}

.kop-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}

.kop-card-tag {
  display: inline-flex;
  align-items: center;
  background: #f1f3f7;
  color: #1a1f2c;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
}

.kop-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 2px;
  flex-wrap: wrap;
}

.kop-card-price {
  font-size: 16px;
  font-weight: 700;
  color: #0b1020;
}

.kop-card-price-original {
  font-size: 13px;
  font-weight: 500;
  color: #6c7484;
  text-decoration: line-through;
}

.kop-card-monthly {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a1f2c;
}

.kop-card-monthly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #b3b8c2;
  color: #6c7484;
  font-size: 9px;
  margin-left: 4px;
  vertical-align: 1px;
}

.kop-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f1f3f7;
  border-radius: 8px;
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}

.kop-cta-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  pointer-events: none;
}

.kop-cta-card-content {
  position: relative;
  z-index: 1;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kop-cta-card-title {
  margin: 0 0 6px;
  font-size: 21.3px;
  font-weight: 700;
  color: #0b1020;
  line-height: 1.2;
}

.kop-cta-card-text {
  margin: 0;
  font-size: 15.3px;
  line-height: 1.45;
  color: #1f2937;
}

.kop-cta-card-button {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0e4d90;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

.kop-cta-card-button:hover {
  background: #0b4178;
}

.kop-bil-loading,
.kop-bil-empty,
.kop-bil-error {
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
}

.kop-bil-loading[hidden],
.kop-bil-empty[hidden],
.kop-bil-error[hidden] {
  display: none !important;
}

.kop-bil-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #1f2937;
  font-size: 14px;
  border: none;
  background: transparent;
  padding: 16px 0 24px;
}

.kop-bil-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid #d8dbe1;
  border-top-color: #5a60e8;
  animation: kop-spin 0.9s linear infinite;
}

@keyframes kop-spin {
  to {
    transform: rotate(360deg);
  }
}

.kop-bil-empty h2,
.kop-bil-error h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0b1020;
}

.kop-bil-empty p,
.kop-bil-error p {
  margin: 0 0 18px;
  font-size: 14px;
  color: #1f2937;
}

.kop-bil-empty button,
.kop-bil-error button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e4d90;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.kop-bil-empty button:hover,
.kop-bil-error button:hover {
  background: #0b4178;
}

.kop-bil-sidebar-backdrop {
  display: none;
}

@media (max-width: 1100px) {
  .kop-bil-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .kop-bil-page-content {
    padding-top: 20px;
  }

  .kop-bil-shell {
    padding-top: 10px;
    padding-bottom: 60px;
  }

  .kop-bil-toolbar {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px 0 24px;
    margin-bottom: 14px;
  }

  .kop-bil-title {
    font-size: 22px;
    flex: 1 1 100%;
  }

  .kop-bil-title [data-count] {
    font-size: 22px;
  }

  .kop-bil-actions {
    width: 100%;
    justify-content: space-between;
  }

  .kop-bil-action {
    flex: 1;
    justify-content: center;
    border: 1px solid #e5e7ec;
    border-radius: 8px;
    padding: 10px;
  }

  .kop-bil-filter-toggle .kop-bil-filter-toggle-text::before {
    content: "Visa filter";
  }

  .kop-bil-filter-toggle .kop-bil-filter-toggle-text {
    font-size: 0;
  }

  .kop-bil-filter-toggle .kop-bil-filter-toggle-text::before {
    font-size: 14px;
  }

  .kop-bil-sort-trigger .kop-bil-sort-label::before {
    content: "Sortera";
    font-size: 14px;
  }

  .kop-bil-sort-trigger .kop-bil-sort-label {
    font-size: 0;
  }

  .kop-bil-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .kop-bil-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(92vw, 380px);
    background: #fff;
    z-index: 95;
    transform: translateX(-100%);
    transition: transform 0.32s ease;
    padding: 0 18px 100px;
    max-height: none;
    overflow-y: auto;
    box-shadow: 0 16px 40px -16px rgba(11, 16, 32, 0.18);
  }

  body.kop-bil-filters-open .kop-bil-sidebar {
    transform: translateX(0);
  }

  body.kop-filters-hidden .kop-bil-sidebar {
    display: block;
  }

  .kop-bil-sidebar-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 6px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    border-bottom: 1px solid #e5e7ec;
    font-size: 16px;
    font-weight: 700;
    color: #0b1020;
  }

  .kop-bil-sidebar-close {
    width: 32px;
    height: 32px;
    border: none;
    background: url("./assets/Close.svg") center / 16px no-repeat;
    cursor: pointer;
  }

  .kop-bil-sidebar-apply {
    display: block;
    position: sticky;
    bottom: 0;
    width: 100%;
    margin-top: 18px;
    background: #0e4d90;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }

  .kop-bil-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 16, 32, 0.45);
    z-index: 90;
    display: none;
  }

  body.kop-bil-filters-open .kop-bil-sidebar-backdrop {
    display: block;
  }

  body.kop-bil-filters-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .kop-bil-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .kop-bil-pagination {
    justify-content: space-between;
    gap: 8px;
  }

  .kop-bil-pagination-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .kop-bil-pagination-info {
    font-size: 13px;
    min-width: 96px;
  }

  .kop-card-image-wrap {
    aspect-ratio: 1.26;
  }

  .kop-card-image {
    object-position: center center;
  }
}

@media (max-width: 960px) {
  .kop-card-image-wrap {
    overflow: visible;
    background: transparent;
  }

  .kop-card-image {
    border-radius: 8px;
    -webkit-transform: none;
    transform: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .kop-card {
    transition: none;
  }

  .kop-card:hover {
    transform: none;
  }
}

/* ============================================================
   Bil details page (/bil/{id})
   ============================================================ */

.bil-detail-shell {
  width: min(100%, 1285px);
  padding-top: 14px;
  padding-bottom: 64px;
}

.bil-detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 12px;
  color: #6c7484;
}

.bil-detail-breadcrumbs a {
  color: #1f2937;
  text-decoration: underline;
}

.bil-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: start;
}

.bil-detail-main {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.bil-detail-sidebar {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.bil-detail-layout > .bil-detail-specs-section,
.bil-detail-layout > .bil-detail-description-section,
.bil-detail-layout > .bil-detail-equipment-section {
  grid-column: 1;
  margin-top: 0;
}

.bil-detail-layout > .bil-detail-specs-section {
  grid-row: 2;
}

.bil-detail-description-section {
  border: 1px solid #e5e7ec;
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}

.bil-detail-description-section[hidden] {
  display: none !important;
}

.bil-detail-description-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.bil-detail-description-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;
  white-space: pre-line;
}

.bil-detail-equipment-section {
  border: 1px solid #e5e7ec;
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}

.bil-detail-equipment-section[hidden] {
  display: none !important;
}

.bil-detail-equipment-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.bil-detail-equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bil-detail-equipment-tag {
  display: inline-flex;
  align-items: center;
  background: #f1f3f7;
  color: #1a1f2c;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e5e7ec;
}

.bil-detail-gallery {
  position: relative;
  background: #f3f4f7;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.67;
}

.bil-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #eceef3;
}

.bil-detail-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  touch-action: manipulation;
}

.bil-detail-gallery-prev {
  left: 14px;
}

.bil-detail-gallery-next {
  right: 14px;
}

.bil-detail-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.bil-detail-title {
  margin: 0 0 4px;
  font-size: 35px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.bil-detail-meta {
  margin: 0;
  font-size: 14px;
  color: #374151;
}

.bil-detail-watch-btn {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  white-space: nowrap;
}

.bil-detail-badges {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bil-detail-badge {
  display: inline-flex;
  align-items: center;
  background: #e8676e;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.bil-detail-specs-section {
  margin-top: 20px;
  border: 1px solid #e5e7ec;
  border-radius: 12px;
  padding: 20px;
}

.bil-detail-specs-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.bil-detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bil-detail-spec-item {
  background: #f8f9fb;
  border: 1px solid #eceff4;
  border-radius: 10px;
  padding: 12px;
}

.bil-detail-spec-label {
  display: block;
  font-size: 12px;
  color: #6c7484;
  margin-bottom: 6px;
}

.bil-detail-spec-value {
  font-size: 14px;
  color: #111827;
  font-weight: 600;
  line-height: 1.25;
  word-break: break-word;
}

.bil-detail-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bil-detail-card {
  border: 1px solid #e5e7ec;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.bil-detail-price {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #111827;
}

.bil-detail-monthly {
  margin: 8px 0 14px;
  font-size: 14px;
  color: #1f2937;
}

.bil-detail-primary-btn,
.bil-detail-secondary-btn {
  width: 100%;
  border-radius: 8px;
  border: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  display: block;
  text-align: center;
  cursor: pointer;
}

.bil-detail-primary-btn {
  background: #0e4d90;
  color: #fff;
  margin-top: 8px;
}

.bil-detail-primary-btn:hover {
  background: #0b4178;
}

.bil-detail-secondary-btn {
  background: #fff;
  color: #111827;
  border: 1px solid #d4d9e2;
  margin-top: 10px;
}

.bil-detail-secondary-btn:hover {
  background: #f6f7f9;
}

.bil-detail-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
}

.bil-detail-options-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bil-detail-options-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}

.bil-detail-options-item span:first-child {
  color: #6c7484;
}

.bil-detail-options-item span:last-child {
  color: #111827;
  font-weight: 600;
  text-align: right;
}

.bil-detail-options-item--reg {
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7ec;
  margin-bottom: 2px;
}

.bil-detail-options-item--reg span:last-child {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.bil-detail-info-card h3 {
  display: none;
}

.bil-detail-tradein p {
  margin: 0;
  font-size: 13px;
  color: #1f2937;
  margin-top: 10px;
  line-height: 1.45;
}

.bil-detail-tradein-input {
  width: 100% !important;
  margin-bottom: 6px;
}

.bil-detail-tradein .sell-reg-error {
  font-size: 13px;
  margin-bottom: 8px;
}

.bil-detail-tradein-btn {
  width: 100% !important;
  text-align: center;
  margin-bottom: 12px;
}

.bil-detail-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1f2937;
  padding: 14px 0;
}

.bil-detail-error {
  border: 1px solid #e5e7ec;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.bil-detail-error h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.bil-detail-error p {
  margin: 0 0 14px;
  color: #1f2937;
}

.bil-detail-error button {
  border: none;
  border-radius: 8px;
  background: #0e4d90;
  color: #fff;
  padding: 10px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.bil-detail-error[hidden],
.bil-detail-loading[hidden],
.bil-detail-layout[hidden] {
  display: none !important;
}

.bil-detail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(10, 12, 18, 0.9);
  display: grid;
  place-items: center;
  padding: 20px;
}

.bil-detail-lightbox[hidden] {
  display: none !important;
}

.bil-detail-lightbox-image {
  width: min(95vw, 1600px);
  height: min(90vh, 980px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 10px;
  background: #0f1117;
}

.bil-detail-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  touch-action: manipulation;
}

.bil-detail-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  touch-action: manipulation;
}

.bil-detail-lightbox-prev {
  left: calc(50% - min(47.5vw, 800px) + 17px);
}

.bil-detail-lightbox-next {
  right: calc(50% - min(47.5vw, 800px) + 17px);
}

body.bil-detail-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .bil-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .bil-detail-main {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }

  .bil-detail-sidebar {
    position: static;
    grid-column: 1;
    grid-row: auto;
    order: 2;
  }

  .bil-detail-layout > .bil-detail-specs-section {
    grid-column: 1;
    grid-row: auto;
    order: 3;
  }

  .bil-detail-layout > .bil-detail-description-section {
    grid-column: 1;
    grid-row: auto;
    order: 4;
  }

  .bil-detail-layout > .bil-detail-equipment-section {
    grid-column: 1;
    grid-row: auto;
    order: 5;
  }
}

@media (max-width: 960px) {
  .bil-detail-page-content {
    padding-top: 12px;
  }

  .bil-detail-shell {
    padding-top: 88px;
    padding-bottom: 44px;
  }

  .bil-detail-title {
    font-size: 22px;
    line-height: 1.24 !important;
  }

  .bil-detail-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bil-detail-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .bil-detail-price {
    font-size: 27px;
  }

  .bil-detail-gallery {
    aspect-ratio: 1.45;
    border-radius: 10px;
  }

  .bil-detail-image {
    object-position: center center;
  }

  .bil-detail-gallery-nav {
    width: 36px;
    height: 36px;
  }

  .bil-detail-specs-section {
    padding: 14px;
  }

  .bil-detail-specs-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bil-detail-lightbox {
    padding: max(10px, env(safe-area-inset-top)) 10px max(18px, env(safe-area-inset-bottom));
  }

  .bil-detail-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 78vh;
  }

  .bil-detail-lightbox-close {
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
    background: #fff;
    color: #111827;
  }

  .bil-detail-lightbox-nav {
    top: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    transform: none;
    width: 44px;
    height: 44px;
  }

  .bil-detail-lightbox-prev {
    left: 12px;
  }

  .bil-detail-lightbox-next {
    right: 12px;
  }
}

/* ============================================================
   Finansiering page (/finansiering)
   ============================================================ */

.finansiering-hero {
  position: relative;
  min-height: 420px;
  background: #141b28 url("./assets/VolvoBanner.jpg") center / cover no-repeat;
}

.finansiering-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58));
}

.finansiering-hero-content {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.finansiering-hero-content h1 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 44px);
  line-height: 1.05;
  font-weight: 600;
}

.finansiering-hero-content p {
  margin: 10px 0 0;
  max-width: 820px;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.45;
}

.finansiering-intro-section {
  padding: 42px 0 30px;
}

.finansiering-intro-section .container,
.finansiering-faq-section .container,
.finansiering-warning-section .container {
  width: min(100%, 1285px);
}

.finansiering-intro-section h2 {
  margin: 0;
  text-align: center;
  font-size: 38px;
  padding-bottom: 85px;
  padding-top: 18px;
  line-height: 1.26;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.finansiering-partner-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  margin: 34px 0 24px;
  flex-wrap: wrap;
}

.finansiering-logo {
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.finansiering-logo-santander {
  color: #d71920;
}

.finansiering-logo-dnb {
  color: #008b8f;
  font-weight: 500;
}

.finansiering-logo-mymoney {
  height: 87px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.finansiering-logo-resurs {
  height: 87px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.finansiering-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.finansiering-column h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.1;
  padding-top: 14px;
  letter-spacing: -0.02em;
  color: #111827;
}

.finansiering-column p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #1f2937;
}

.finansiering-column a {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}

.finansiering-faq-section {
  padding: 46px 0 20px;
}

.finansiering-faq-box {
  background: #fff;
  border: 1px solid #dce0e7;
  padding: 32px;
}

.finansiering-faq-box h2 {
  margin: 0 0 31px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111827;
}

.finansiering-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}

.finansiering-faq-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  margin-top: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111827;
}

.finansiering-faq-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #1f2937;
}

.finansiering-warning-section {
  padding: 48px 0 21px;
}

.finansiering-warning {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 38px;
  align-items: start;
}

.finansiering-warning-icon {
  font-size: 52px;
  padding-bottom: 10px;
  line-height: 1;
  color: #d74f3f;
}

.finansiering-warning p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #111827;
}

/* ============================================================
   Köpvillkor page (/köpvillkor)
   ============================================================ */

.kopvillkor-section .container {
  width: min(100%, 1285px);
}

.kopvillkor-content {
  max-width: 960px;
}

.kopvillkor-content h1 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.kopvillkor-content h2 {
  margin: 30px 0 10px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #111827;
}

.kopvillkor-content p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
}

.kopvillkor-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
  display: grid;
  gap: 10px;
}

.kopvillkor-content li {
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
}

.kopvillkor-content a {
  text-decoration: underline;
}

/* ============================================================
   Kontakta oss page (/kontakta-oss)
   ============================================================ */

.kontakt-section .container {
  width: min(100%, 1285px);
}

.kontakt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}

.kontakt-info h1 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #111827;
}

.kontakt-intro {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  max-width: 420px;
}

.kontakt-address {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.kontakt-hours {
  margin-bottom: 24px;
}

.kontakt-hours-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.kontakt-hours p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #374151;
}

.kontakt-phone {
  display: block;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 800;
  color: #0e4d90;
  letter-spacing: -0.01em;
}

.kontakt-phone:hover {
  opacity: 0.82;
}

.kontakt-email-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.kontakt-email-icon {
  width: 18px;
  height: 18px;
  color: #374151;
  flex-shrink: 0;
}

.kontakt-email-wrap a {
  font-size: 14.5px;
  color: #374151;
  text-decoration: underline;
}

.kontakt-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.kontakt-social > span {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.kontakt-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid #d1d5db;
  color: #374151;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.kontakt-social-link:hover {
  border-color: #0e4d90;
  color: #0e4d90;
}

.kontakt-social-link svg {
  width: 16px;
  height: 16px;
}

.kontakt-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.kontakt-map iframe {
  display: block;
  width: 100%;
}

/* Form */
.kontakt-form-wrap {
  background: #fff;
}

.kontakt-fields-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.kontakt-field input,
.kontakt-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: #111827;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.kontakt-field input::placeholder,
.kontakt-field textarea::placeholder {
  color: #6b7280;
}

.kontakt-field input:focus,
.kontakt-field textarea:focus {
  border-color: #0e4d90;
  box-shadow: 0 0 0 3px rgba(93, 97, 238, 0.14);
}

.kontakt-field-full {
  margin-bottom: 12px;
}

.kontakt-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.kontakt-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  line-height: 1.4;
}

.kontakt-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: #0e4d90;
  cursor: pointer;
}

.kontakt-privacy a {
  color: #0e4d90;
  text-decoration: underline;
}

.kontakt-submit-btn {
  flex-shrink: 0;
  min-height: 50px;
  padding: 0 36px;
  border: none;
  border-radius: 6px;
  background: #0e4d90;
  color: #fff;
  font: inherit;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.18s ease;
}

.kontakt-submit-btn:hover {
  filter: brightness(1.1);
}

.kontakt-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.kontakt-success-msg {
  display: none;
  margin-top: 18px;
  font-size: 15px;
  color: #166534;
  background: #dcfce7;
  border-radius: 6px;
  padding: 12px 16px;
}

.kontakt-success-msg.is-visible {
  display: block;
}

@media (max-width: 960px) {
  .kontakta-oss-page-content {
    padding: 36px 0 48px;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .kontakt-info h1 {
    font-size: 34px;
  }

  .kontakt-fields-row {
    grid-template-columns: 1fr;
  }

  .kontakt-form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .kontakt-submit-btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 640px) {
  .kontakt-info h1 {
    font-size: 28px;
  }

  .kontakt-phone {
    font-size: 22px;
  }
}

/* ============================================================
   Legal subpages
   ============================================================ */

.legal-page-section .container {
  width: min(100%, 1285px);
}

.legal-page-content {
  max-width: 960px;
}

.legal-page-content h1 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.legal-page-content h2 {
  margin: 30px 0 10px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: #111827;
}

.legal-page-content p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
}

.legal-page-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
  display: grid;
  gap: 10px;
}

.legal-page-content li {
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
}

.legal-page-content a {
  text-decoration: underline;
}

/* ============================================================
   Serviceavtal page (/service-avtal)
   ============================================================ */

.service-avtal-details-section .container {
  width: min(100%, 1285px);
}

.service-avtal-hero {
  position: relative;
  width: min(100%, 1285px);
}

.service-avtal-hero.container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.service-avtal-hero-image {
  width: 100%;
  height: 440px;
  border-radius: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-avtal-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.service-avtal-hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  margin-top: 40px;
  place-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  padding: 18px 20px;
  z-index: 1;
}

.service-avtal-hero-content h1 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 44px);
  font-weight: 600;
}

.service-avtal-hero-content p {
  margin: 10px 0 0;
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.45;
}

.service-avtal-details-section {
  padding: 86px 0 0;
  background: #fff;
}

.service-avtal-rows {
  display: grid;
  gap: 84px;
}

.service-avtal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.service-avtal-copy h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.service-avtal-copy ul {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 12px;
}

.service-avtal-copy li {
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
}

.service-avtal-copy li::marker {
  color: #0e4d90;
}

.service-avtal-copy a {
  text-decoration: underline;
}

.service-avtal-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1.58;
}

/* ============================================================
   Garantier page (/garantier)
   ============================================================ */

.garantier-intro-section .container,
.garantier-faq-section .container {
  width: min(100%, 1285px);
}

.garantier-hero {
  position: relative;
  width: min(100%, 1285px);
}

.garantier-hero.container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.garantier-hero-image {
  width: 100%;
  height: 440px;
  border-radius: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.garantier-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.garantier-hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  margin-top: 40px;
  place-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  padding: 18px 20px;
  z-index: 1;
}

.garantier-hero-content h1 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 44px);
  font-weight: 600;
}

.garantier-hero-content p {
  margin: 10px 0 0;
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.45;
}

.garantier-intro-section {
  padding: 86px 0 0;
}

.garantier-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.garantier-intro-copy h2 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.24;
  
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.garantier-intro-copy p {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
}

.garantier-intro-copy h3 {
  margin: 26px 0 12px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  color: #111827;
}

.garantier-intro-copy ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.garantier-intro-copy li {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2937;
}

.garantier-intro-image {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1.26;
}

.garantier-faq-section {
  padding: 86px 0 0;
}

.garantier-faq-box {
  border: 1px solid #dce0e7;
  background: #fff;
  padding: 32px;
}

.garantier-faq-box h2 {
  margin: 0 0 31px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

.garantier-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.garantier-faq-grid h3 {
  margin: 0 0 8px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111827;
}

.garantier-faq-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #1f2937;
}

@media (max-width: 960px) {
  .finansiering-hero {
    min-height: 320px;
  }

  .finansiering-hero-content {
    min-height: 320px;
  }

  .finansiering-hero-content h1 {
    font-size: 40px;
    line-height: 1.07;
  }

  .finansiering-hero-content p {
    font-size: 15.1px;
    line-height: 1.35;
    max-width: 620px;
  }

  .finansiering-intro-section {
    padding: 28px 0 30px;
  }

  .finansiering-intro-section h2 {
    font-size: 23px;
  }

  .finansiering-logo {
    font-size: 46px;
  }

  .finansiering-logo-mymoney,
  .finansiering-logo-resurs {
    height: 60px;
    margin-top: 30px;
  }

  .finansiering-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .finansiering-column h3 {
    font-size: 21px;
    padding-top: 18px;
    font-weight: 600;
    line-height: 1.31;
  }

  .finansiering-column p {
    font-size: 16px;
  }

  .finansiering-faq-box {
    padding: 22px;
  }

  .finansiering-faq-box h2 {
    font-size: 25px;
    margin-bottom: 18px;
  }

  .finansiering-faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .finansiering-faq-grid h3 {
    font-size: 18.3px;
  }

  .finansiering-warning {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }

  .finansiering-warning-icon {
    text-align: center;
  }

  .finansiering-warning p {
    font-size: 14px;
    text-align: left;
  }

  .kopvillkor-page-content {
    padding: 24px 0 36px;
  }

  .kopvillkor-content h1 {
    margin-bottom: 14px;
    font-size: 32px;
  }

  .kopvillkor-content h2 {
    margin-top: 22px;
    font-size: 24px;
  }

  .kopvillkor-content p,
  .kopvillkor-content li {
    font-size: 15px;
  }

  .cookies-page-content,
  .integritetspolicy-page-content,
  .allmanna-villkor-page-content {
    padding: 24px 0 36px;
  }

  .legal-page-content h1 {
    margin-bottom: 14px;
    font-size: 32px;
  }

  .legal-page-content h2 {
    margin-top: 22px;
    font-size: 24px;
  }

  .legal-page-content p,
  .legal-page-content li {
    font-size: 15px;
  }

  .service-avtal-page-content {
    padding: 0 0 34px;
  }

  .service-avtal-hero {
    padding-inline: 0;
  }

  .service-avtal-hero-image {
    border-radius: 0;
    width: 100%;
    height: 380px;
    margin-inline: 0;
    object-fit: cover;
  }

  .service-avtal-hero-content {
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
    padding: 20px 20px;
  }

  .service-avtal-hero-content h1 {
    font-size: 40px;
    line-height: 1.07;
  }

  .service-avtal-hero-content p {
    margin-top: 28px;
    font-size: 15.1px;
    line-height: 1.35;
  }

  .service-avtal-details-section {
    padding-top: 50px;
  }

  .service-avtal-rows {
    gap: 92px;
  }

  .service-avtal-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-avtal-row:first-child .service-avtal-image {
    order: -1;
  }

  .service-avtal-copy h2 {
    margin-bottom: 12px;
    font-size: 25px;
  }

  .service-avtal-copy li {
    font-size: 15px;
  }

  .garantier-page-content {
    padding: 0 0 34px;
  }

  .garantier-hero {
    padding-inline: 0;
  }

  .garantier-hero-image {
    border-radius: 0;
    width: 100%;
    height: 380px;
    margin-inline: 0;
    object-fit: cover;
  }

  .garantier-hero-content {
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
    padding: 20px 20px;
  }

  .garantier-hero-content h1 {
    font-size: 40px;
    line-height: 1.07;
  }

  .garantier-hero-content p {
    margin-top: 28px;
    font-size: 15.1px;
    line-height: 1.35;
  }

  .garantier-intro-section {
    padding-top: 40px;
  }

  .garantier-intro-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .garantier-intro-image {
    order: -1;
  }

  .garantier-intro-copy h2 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .garantier-intro-copy p,
  .garantier-intro-copy li {
    font-size: 15px;
  }

  .garantier-intro-copy h3 {
    margin-top: 22px;
    font-size: 22px;
  }

  .garantier-faq-section {
    padding-top: 64px;
  }

  .garantier-faq-box {
    padding: 22px;
  }

  .garantier-faq-box h2 {
    font-size: 25px;
    margin-bottom: 18px;
  }

  .garantier-faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .garantier-faq-grid h3 {
    font-size: 18.3px;
  }

  .garantier-faq-grid p {
    font-size: 16px;
  }
}

