:root {
  --blue: #1d4ed8;
  --blue-dark: #1740b0;
  --blue-soft: #2563eb;
  --navy: #16224e;
  --ink: #38415e;
  --muted: #64708c;
  --red: #e01e2b;
  --line: #e3e9f4;
  --soft: #f4f7fb;
  --tint: #e9f0fc;
  --tint-deep: #d8e5fa;
  --dark: #232529;
  --navy-1: #0b2444;
  --navy-2: #071a33;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 33, 78, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 33, 78, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 80px);
  overflow-x: clip;
}

body {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(22px, 2.7vw, 30px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 18px;
}

p {
  overflow-wrap: break-word;
}

img, video, iframe, svg {
  max-width: 100%;
}

a {
  color: var(--blue);
}

.wrap {
  width: min(1216px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.nowrap {
  white-space: nowrap;
}

.script {
  font-family: 'Kaushan Script', cursive;
  font-weight: 400;
  color: var(--blue-soft);
  line-height: 1.2;
  letter-spacing: 0.01em;
  display: block;
  padding-right: 6px;
}

.swoosh {
  display: block;
  width: 190px;
  height: 12px;
  margin-top: 2px;
}

.swoosh path {
  fill: none;
  stroke: var(--red);
  stroke-width: 4;
  stroke-linecap: round;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

svg.ic {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.125em;
}

svg.ic--fill {
  fill: currentColor;
  stroke: none;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  box-shadow: 0 0 0 3px rgba(13, 64, 196, 0.35);
}

.btn--blue:hover {
  box-shadow: 0 10px 22px rgba(13, 64, 196, 0.28);
}

.kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 14px;
}

.kicker--red {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn--blue:hover {
  background: var(--blue-dark);
  color: #fff;
}

.btn--outline {
  background: #fff;
  border-color: #c9d5ec;
  color: var(--navy);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

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

.logo {
  display: block;
  width: auto;
  height: 54px;
}

.logo--sm {
  height: 38px;
}

.logo--footer {
  height: 50px;
}

.logo--card {
  height: 30px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
}

.brandbar {
  background: #fff;
  padding: 12px 0;
}

.brandbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brandbar__info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.info-block__icon {
  width: 26px;
  height: 26px;
  color: var(--blue-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.info-block__text {
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

#nav {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 90;
}

#nav.scrolled {
  box-shadow: 0 6px 24px rgba(15, 33, 78, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.brand--mobile {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.nav-links > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links > a.is-active {
  color: var(--blue);
}

.nav-links > a.is-active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 8px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}

.nav-links > a.nav-links__tel {
  display: none;
}

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

.nav-links__meta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: stretch;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.2s;
}

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

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

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

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 18, 40, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 95;
}

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

.section {
  padding: 56px 0;
}

.section--soft {
  background: var(--soft);
  border-top: 1px solid #eef2f8;
  border-bottom: 1px solid #eef2f8;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

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

.section-head p {
  margin-top: 12px;
  color: var(--muted);
}

.section-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero {
  background: var(--dark);
  padding: 0;
}

.hero > .wrap {
  width: 100%;
}

.hero__card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--dark);
}

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

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(97deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 30%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.12) 62%, rgba(16, 20, 28, 0.22) 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  width: min(1216px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding: 44px 0 50px;
}

.hero__content h1 {
  margin-bottom: 2px;
}

.hero__content h1 {
  font-size: clamp(26px, 3vw, 36px);
}

.hero__content .script {
  font-size: clamp(26px, 3.2vw, 36px);
}

.hero__sub {
  margin-top: 18px;
  max-width: 44ch;
  font-size: 15.5px;
  color: var(--ink);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.affar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px 20px;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}

.affar__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.affar__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 6px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.affar__tab .ic {
  font-size: 17px;
  color: var(--blue-soft);
}

.affar__tab:hover {
  border-color: var(--blue);
}

.affar__tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.affar__tab.is-active .ic {
  color: #fff;
}

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

.affar__tabs--two .affar__tab {
  flex-direction: row;
  justify-content: center;
  padding: 13px 10px;
  font-size: 14px;
}

.affar__pane {
  display: none;
}

.affar__pane.is-active {
  display: block;
}

.affar__est {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tint);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 14px;
}

.affar__est-icon {
  color: var(--blue-soft);
  font-size: 15px;
}

.field {
  margin-bottom: 14px;
}

.field label,
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dbe3f1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.field textarea {
  resize: vertical;
}

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

.plate {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #dbe3f1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
}

.plate:focus-within {
  border-color: var(--blue);
}

.plate__eu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.plate input {
  border: none;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  width: 100%;
}

.plate input:focus {
  outline: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 14px;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
}

.trustband {
  background: linear-gradient(180deg, #26282d 0%, #1e2024 100%);
  color: #fff;
  padding: 30px 0;
  margin-top: 0;
}

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

.trustband__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 6px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.trustband__item:first-child {
  border-left: none;
}

.trustband__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
}

.trustband__icon--mono {
  color: #1e2024;
  font-size: 19px;
}

.trustband__text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.trustband__text strong {
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
}

.trustband__text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.trustband__stars {
  color: #fbbc05;
  font-size: 11px;
  letter-spacing: 2px;
}

.gbadge {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}

.gbadge:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.gbadge__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(9, 16, 36, 0.22);
}

.gbadge__body {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.gbadge__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gbadge__score {
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
}

.gbadge__stars {
  display: inline-flex;
  gap: 1.5px;
  font-size: 12px;
  color: #fbbc05;
}

.gbadge__meta {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.68);
}

.gbadge__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gbadge:hover .gbadge__go {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.trustband--light .gbadge:hover {
  background-color: #fff;
}

.trustband--light .gbadge__logo {
  box-shadow: 0 2px 8px rgba(15, 33, 78, 0.14);
}

.trustband--light .gbadge__score {
  color: var(--navy);
}

.trustband--light .gbadge__meta {
  color: var(--muted);
}

.trustband--light .gbadge__go {
  background-color: var(--tint);
  color: var(--blue);
}

.trustband--light .gbadge:hover .gbadge__go {
  background-color: var(--tint-deep);
}

.trustband--light {
  background: var(--soft);
  color: var(--navy);
  margin-top: 0;
  border-bottom: 1px solid var(--line);
}

.trustband--light .trustband__grid {
  grid-template-columns: repeat(4, 1fr);
}

.trustband--light .trustband__item {
  border-left: 1px solid var(--line);
}

.trustband--light .trustband__item:first-child {
  border-left: none;
}

.trustband--light .trustband__icon {
  background: var(--tint);
  color: var(--blue);
  font-size: 17px;
}

.trustband--light .trustband__text strong {
  color: var(--navy);
  font-size: 15px;
}

.trustband--light .trustband__text span {
  color: var(--muted);
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.car-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dfe6f1;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 18px rgba(15, 33, 78, 0.045);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.car-card:hover {
  box-shadow: 0 16px 34px rgba(15, 33, 78, 0.13);
  transform: translateY(-3px);
  border-color: #d3ddf0;
}

.car-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
}

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

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

.car-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px 18px 17px;
}

.car-card__body h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 13px;
}

.chips span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
}

.car-card__deal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.car-card__deal-col {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.car-card__deal-col > span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.car-card__deal-col strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.car-card__deal-col--price {
  text-align: right;
}

.car-card__deal-col--price strong {
  color: var(--navy);
  font-size: 16.5px;
}

.lager-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 26px;
}

.lager-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lager-meta p,
.lager-meta__title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0;
}

.page-hero {
  background: radial-gradient(720px 340px at 88% 0%, rgba(13, 64, 196, 0.06), rgba(13, 64, 196, 0) 62%), linear-gradient(180deg, var(--tint) 0%, #f8fafd 70%, #fff 100%);
  padding: 42px 0 48px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 44px;
  align-items: center;
}

.page-hero__content h1 {
  margin-bottom: 4px;
}

.page-hero__content .script {
  font-size: clamp(25px, 3vw, 36px);
}

.page-hero__sub {
  margin-top: 18px;
  color: var(--ink);
  max-width: 50ch;
}

.policy-body > h1 {
  margin-bottom: 4px;
}

.policy-body > .script {
  font-size: clamp(23px, 2.6vw, 30px);
}

.page-hero__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 33, 78, 0.12);
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.page-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.page-hero__car {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}

.page-hero__car img {
  display: block;
  width: 100%;
  height: auto;
}

.checks {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
}

.checks li .ic {
  color: var(--blue-soft);
  font-size: 19px;
  margin-top: 2px;
}

.heart-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  color: var(--ink);
}

.heart-note .ic {
  color: var(--blue-soft);
  font-size: 18px;
  margin-top: 3px;
}

.icon-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.icon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.icon-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue-soft);
  font-size: 23px;
  margin-bottom: 16px;
}

.icon-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.icon-card p {
  font-size: 13.5px;
  color: var(--muted);
}

.wide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow);
}

.wide-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f2f7ff 0%, var(--tint) 55%, var(--tint-deep) 100%);
  color: var(--blue);
  font-size: 56px;
}

.wide-card h2 {
  font-size: clamp(21px, 2.6vw, 27px);
  margin-bottom: 10px;
}

.wide-card > div > p {
  color: var(--ink);
  max-width: 62ch;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mini-point {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.mini-point .ic {
  color: var(--blue-soft);
  font-size: 19px;
  margin-top: 3px;
}

.mini-point strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 2px;
}

.mini-point span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.band-cta {
  background: #eaf1fd;
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.band-cta__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-soft);
  font-size: 23px;
}

.band-cta__text {
  flex-grow: 1;
}

.band-cta__text h2 {
  font-size: clamp(19px, 2.3vw, 23px);
  margin-bottom: 4px;
}

.band-cta__text p {
  font-size: 14px;
  color: var(--ink);
  max-width: 60ch;
}

.band-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.band-cta .script {
  font-size: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.vsteps {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.vstep {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.vstep__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.vstep__text strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 3px;
}

.vstep__text span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.kalkyl {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}

.kalkyl__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.kalkyl__head h3 {
  font-size: 21px;
}

.kalkyl__head p {
  font-size: 13.5px;
  color: var(--muted);
}

.kalkyl__icon {
  color: var(--red);
  font-size: 26px;
}

.kalkyl__toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eef1f7;
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
}

.kalkyl__toggle button {
  padding: 9px 10px;
  border: none;
  border-radius: 8px;
  background: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.kalkyl__toggle button.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(15, 33, 78, 0.1);
}

.kalkyl .field input,
.kalkyl .field select {
  background: #fff;
}

.input-suffix {
  position: relative;
}

.input-suffix input {
  padding-right: 44px;
}

.input-suffix > span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.kalkyl__result {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-top: 6px;
}

.kalkyl__result-main span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.kalkyl__result-main strong {
  font-size: 27px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.kalkyl__result-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.kalkyl__result-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink);
}

.kalkyl__result-meta strong {
  color: var(--navy);
  font-size: 13px;
  white-space: nowrap;
}

.kalkyl__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 10px;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 18px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: none;
}

.stat .ic {
  font-size: 26px;
  color: var(--blue-soft);
}

.stat__text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.stat__text strong {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
}

.stat__text span {
  font-size: 12.5px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-card__body {
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card__body h3 {
  font-size: 15px;
}

.team-card__role {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  margin: 2px 0 6px;
}

.team-card__bio {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.48;
}

.team-card__contact {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 11px;
}

.team-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--blue);
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.team-card__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.faq-groups {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(15, 33, 78, 0.05);
  overflow: hidden;
}

.faq-cat > summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  cursor: pointer;
  list-style: none;
}

.faq-cat > summary::-webkit-details-marker {
  display: none;
}

.faq-cat__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue-soft);
  font-size: 18px;
}

.faq-cat__title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.faq-chev {
  color: var(--navy);
  font-size: 14px;
  transition: transform 0.25s;
}

.faq-cat[open] > summary .faq-chev {
  transform: rotate(180deg);
}

.faq-cat__list {
  padding: 0 26px 20px 88px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 2px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover {
  color: var(--blue);
}

.faq-item[open] > summary {
  color: var(--blue);
}

.faq-item .faq-chev {
  font-size: 12px;
  color: var(--blue);
}

.faq-item[open] .faq-chev {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 2px 16px;
  font-size: 14px;
  color: var(--ink);
}

.kontakt-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.kontakt-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px 22px;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.kontakt-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: #cdd9ef;
}

.kontakt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue-soft);
  font-size: 20px;
  margin-bottom: 14px;
}

.kontakt-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.kontakt-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.kontakt-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue);
}

.kontakt-card__link .ic {
  font-size: 13px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.map-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  background: var(--soft);
}

.map-panel iframe {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  border: none;
}

.map-panel__card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  max-width: 240px;
}

.map-panel__card strong {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
}

.map-panel__card span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.map-panel__card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 24px;
  align-items: stretch;
}

.hours-card__photo {
  border-radius: 12px;
  overflow: hidden;
}

.hours-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hours-card h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}

.hours-row span:first-child {
  color: var(--ink);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--navy);
}

.hours-card .checks {
  margin-top: 22px;
  gap: 14px;
}

.hours-card .checks li {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

.kontakt-form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 32px;
}

.form-card h2,
.form-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.form-card__sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.duo__copy h2 {
  margin-bottom: 16px;
}

.duo__copy p {
  margin-bottom: 14px;
  color: var(--ink);
}

.duo__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.duo__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo__cta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gata {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 22px;
}

.gata__stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  flex: 1;
}

.gata__stop .ic {
  color: var(--blue-soft);
  font-size: 19px;
  margin-bottom: 3px;
}

.gata__stop strong {
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.3;
}

.gata__stop span {
  font-size: 12px;
  color: var(--muted);
}

.gata__line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--tint-deep);
}

.prefooter {
  background: linear-gradient(90deg, var(--navy-1) 0 50%, #fff 50% 100%);
  color: #fff;
  padding: 0;
}

.prefooter__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1.32fr);
  gap: 0;
  align-items: stretch;
}

.prefooter__info {
  background: var(--navy-1);
  padding: 36px 36px 34px;
}

.prefooter__info h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}

.prefooter__info > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.krow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.krow__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #9db8ff;
  font-size: 14px;
}

.krow__text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.krow__text strong {
  font-size: 14.5px;
  color: #fff;
  font-weight: 600;
}

.krow__text span,
.krow__text a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.krow__text a {
  text-decoration: none;
}

.krow__text a:hover {
  color: #fff;
}

.prefooter__map {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 350px;
  background: #10305c;
}

.prefooter__map iframe {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  border: none;
}

.mapcard {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  max-width: 230px;
}

.mapcard .logo {
  margin-bottom: 8px;
}

.mapcard__addr {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}

.mapcard__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink);
}

.mapcard__rating strong {
  color: var(--navy);
}

.mapcard__stars {
  color: #fbbc05;
  font-size: 11px;
  letter-spacing: 1px;
}

.mapcard > a {
  display: inline-block;
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

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

.footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 36px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.9fr 1.1fr;
  gap: 34px;
  padding-bottom: 28px;
}

.footer__col h3 {
  color: #fff;
  font-size: 15.5px;
  margin-bottom: 11px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__col ul a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__col ul a:hover {
  color: #fff;
}

.footer__col--brand p {
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 34ch;
}

.footer__org {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer__policy {
  display: inline-block;
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__policy:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer__sverige p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 30ch;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a:hover {
  color: #fff;
}

.policy-body {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.policy-body h2 {
  font-size: 21px;
  margin: 34px 0 10px;
}

.policy-body > h2:first-child {
  margin-top: 0;
}

.page-hero--text {
  padding-bottom: 16px;
}

.section--tight {
  padding-top: 26px;
}

.policy-body p,
.policy-body li {
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 10px;
}

.policy-body ul {
  padding-left: 22px;
}

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

.js-anim .fade-in {
  transform: translateY(22px);
}

.js-anim .fade-in-left {
  transform: translateX(-26px);
}

.js-anim .fade-in-right {
  transform: translateX(26px);
}

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

.page-about main,
.page-contact main,
.page-faq main {
  background: #f6f8fc;
}

.page-about .section--soft,
.page-contact .section--soft,
.page-faq .section--soft {
  background: transparent;
}

@media (min-width: 641px) {
  .page-home main > .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .page-stock .page-hero + .section {
    padding-top: 42px;
  }
}

.page-about .page-hero + .section,
.page-contact .page-hero + .section,
.page-workshop .page-hero + .section {
  padding-top: 36px;
  padding-bottom: 24px;
}

.page-about #fakta,
.page-contact #hitta-hit,
.page-workshop #kontroll {
  padding-top: 24px;
}

.page-about #fakta {
  padding-bottom: 36px;
}

.page-about #team {
  padding-top: 42px;
  padding-bottom: 44px;
}

.page-about #team .section-head {
  margin-bottom: 26px;
}

.page-about main > .section:last-child {
  padding-top: 40px;
  padding-bottom: 44px;
}

.page-contact .kontakt-cards {
  gap: 14px;
}

.page-contact .kontakt-card {
  padding: 23px 21px 20px;
}

.page-faq .page-hero + .section {
  padding-top: 36px;
}

.page-faq .faq-cat > summary {
  padding: 16px 22px;
}

.page-faq .faq-cat__icon {
  width: 42px;
  height: 42px;
}

.page-faq .faq-cat__list {
  padding: 0 22px 16px 78px;
}

.page-faq .faq-item > summary {
  padding: 12px 2px;
}

.page-sell .page-hero {
  background: #f3f4f6;
}

.page-sell .page-hero__grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.page-sell .page-hero__car {
  height: 300px;
  margin-top: 20px;
  border: none;
  border-radius: 12px;
  box-shadow: none;
  max-width: none;
  background: transparent;
}

.page-sell .page-hero__car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-sell .affar {
  padding: 19px 21px 18px;
}

.page-sell .field {
  margin-bottom: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-anim .fade-in,
  .js-anim .fade-in-left,
  .js-anim .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 992px) {
  #nav {
    position: sticky;
    top: 0;
  }
  .page-faq .page-hero__grid {
    grid-template-columns: 1fr 0.96fr;
  }
  .page-about .page-hero__media,
  .page-contact .page-hero__media,
  .page-workshop .page-hero__media,
  .page-faq .page-hero__media {
    height: 400px;
  }
  .page-about .page-hero__media img,
  .page-contact .page-hero__media img,
  .page-workshop .page-hero__media img,
  .page-faq .page-hero__media img {
    min-height: 0;
  }
  .page-about .values-grid {
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .page-about .values-grid .icon-card {
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    padding: 24px 19px;
    box-shadow: none;
  }
  .page-about .values-grid .icon-card:first-child {
    border-left: 0;
  }
  .page-about .values-grid .icon-card:hover {
    transform: none;
  }
}

@media (min-width: 1200px) {
  .page-about .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .affar__panes {
    display: grid;
  }
  .affar__pane {
    display: block;
    grid-area: 1 / 1;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .affar__pane.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1180px) {
  .brandbar__info {
    gap: 20px;
  }
  .info-block--hours {
    display: none;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 63px;
  }
  .brandbar {
    display: none;
  }
  .brand--mobile {
    display: inline-flex;
    padding: 10px 0;
  }
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  body.menu-open #nav {
    z-index: 100;
  }
  .nav-inner {
    min-height: 62px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 26px 30px;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    z-index: 100;
    box-shadow: -12px 0 40px rgba(10, 18, 40, 0.18);
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
  }
  .mobile-menu-close {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--soft);
    border-radius: 50%;
    cursor: pointer;
  }
  .mobile-menu-close span {
    position: absolute;
    left: 11px;
    top: 19px;
    width: 18px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--navy);
  }
  .mobile-menu-close span:first-child {
    transform: rotate(45deg);
  }
  .mobile-menu-close span:last-child {
    transform: rotate(-45deg);
  }
  .nav-links > a {
    padding: 14px 2px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > a.is-active::after {
    display: none;
  }
  .nav-links > a.nav-links__tel {
    display: inline-flex;
    margin-top: 18px;
    background: var(--blue);
    color: #fff;
    border-radius: var(--radius-sm);
    justify-content: center;
    padding: 14px;
    font-size: 15.5px;
    border-bottom: none;
  }
  .nav-links__tel:hover {
    color: #fff;
  }
  .nav-links__meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .nav-links__meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
  }
  .nav-links__meta .ic {
    width: 18px;
    text-align: center;
    color: var(--blue);
    font-size: 14px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 20px 0 28px;
    gap: 22px;
  }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 55%, rgba(255, 255, 255, 0.78) 100%);
  }
  .affar {
    justify-self: stretch;
    max-width: none;
    padding: 18px 18px 16px;
  }
  .trustband--light .trustband__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .trustband--light .trustband__item {
    border-left: none;
    justify-content: flex-start;
    padding: 0;
  }
  .car-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .page-hero {
    padding: 32px 0 28px;
  }
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .page-hero__media img {
    min-height: 0;
  }
  .page-about .page-hero__media {
    aspect-ratio: 16 / 10;
  }
  .page-about .page-hero + .section,
  .page-contact .page-hero + .section,
  .page-workshop .page-hero + .section,
  .page-faq .page-hero + .section {
    padding-top: 28px;
  }
  .page-stock .page-hero + .section {
    padding-top: 30px;
  }
  .page-sell .page-hero__grid {
    grid-template-columns: 1fr;
  }
  .page-sell .page-hero__car {
    height: auto;
    aspect-ratio: 21 / 9;
  }
  .icon-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .wide-card {
    grid-template-columns: 1fr;
    padding: 30px 26px;
    gap: 24px;
  }
  .wide-card__badge {
    width: 104px;
    height: 104px;
    font-size: 40px;
  }
  .mini-points {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 24px 20px;
  }
  .stat {
    border-left: none;
    justify-content: flex-start;
    padding: 0;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }
  .kontakt-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .kontakt-form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hours-card {
    grid-template-columns: 1fr;
  }
  .hours-card__photo {
    order: -1;
  }
  .hours-card__photo img {
    height: 150px;
  }
  .duo {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .duo__media img {
    max-height: 430px;
  }
  .prefooter__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .prefooter__info {
    padding: 34px 24px 32px;
  }
  .prefooter__map {
    min-height: 320px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .band-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 24px;
  }
  .faq-cat__list {
    padding: 0 20px 18px 20px;
  }
  .faq-cat > summary {
    padding: 17px 20px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }
  .wrap {
    width: min(1180px, 100% - 32px);
  }
  .prefooter__grid {
    width: 100%;
  }
  .hero__actions .btn {
    flex-grow: 1;
  }
  .affar__tabs {
    grid-template-columns: 1fr 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .car-grid {
    grid-template-columns: 1fr;
  }
  .icon-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .icon-card {
    padding: 18px 13px;
    border-radius: 12px;
  }
  .icon-card__icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    margin-bottom: 11px;
  }
  .icon-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .icon-card p {
    font-size: 12px;
    line-height: 1.55;
  }
  .mini-points {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
    padding: 20px 16px;
  }
  .stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .stat__text strong {
    font-size: 16px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .team-card:last-child:nth-child(odd) {
    width: calc(50% - 5px);
  }
  .team-card__body {
    padding: 11px 12px 13px;
  }
  .team-card__body h3 {
    font-size: 13.5px;
  }
  .team-card__role {
    font-size: 11.5px;
    margin: 1px 0 5px;
  }
  .team-card__bio {
    font-size: 11.5px;
  }
  .team-card__btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .kontakt-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .kontakt-card {
    padding: 18px 15px 15px;
  }
  .kontakt-card__icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
    margin-bottom: 11px;
  }
  .kontakt-card h3 {
    font-size: 14.5px;
  }
  .kontakt-card p {
    font-size: 12px;
    margin-bottom: 13px;
  }
  .kontakt-card__link {
    font-size: 12.5px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .trustband__grid {
    grid-template-columns: auto;
    gap: 16px;
    justify-content: center;
    justify-items: start;
  }
  .trustband__item {
    border-left: none;
    justify-content: flex-start;
    padding: 0;
  }
  .gata {
    align-items: flex-start;
  }
  .gata__line {
    margin-top: 24px;
  }
  .gata__stop strong {
    font-size: 12.5px;
  }
  .kalkyl {
    padding: 22px 18px;
  }
  .kalkyl__result {
    grid-template-columns: 1fr;
  }
  .kalkyl__result-meta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(13, 64, 196, 0.18);
    padding-top: 12px;
  }
  .contact-grid > div,
  .grid > div {
    min-width: 0;
    max-width: 100%;
  }
  #kontakt-form {
    max-width: 100%;
    min-width: 0;
  }
  .band-cta__actions {
    width: 100%;
  }
  .band-cta__actions .btn {
    flex-grow: 1;
  }
  .mapcard {
    top: 14px;
    left: 14px;
    max-width: 178px;
    padding: 13px 16px;
    border-radius: 12px;
  }
  .mapcard .logo {
    height: 26px;
  }
  .mapcard__addr {
    font-size: 12px;
  }
  .mapcard__rating {
    font-size: 12px;
    margin-top: 7px;
  }
  .mapcard__stars {
    font-size: 9.5px;
  }
  .mapcard > a {
    font-size: 12px;
    margin-top: 8px;
  }
  .map-panel__card {
    left: 12px;
    bottom: 12px;
    max-width: 200px;
    padding: 13px 16px;
  }
  .page-hero__content .script {
    font-size: 30px;
  }
  .hero__content .script {
    font-size: 30px;
  }
  .swoosh {
    width: 150px;
  }
  .prefooter__map {
    min-height: 280px;
  }
  .footer__sverige svg {
    top: 4px;
    width: 44px;
  }
}

.footer__contact > p {
  font-size: 13px;
  margin-bottom: 16px;
}

.kontakt-details {
  min-width: 0;
  color: var(--navy);
}

.kontakt-details > p {
  color: var(--muted);
  margin: 10px 0 24px;
}

.kontakt-details .krow__text strong {
  color: var(--navy);
}

.kontakt-details .krow__text span,
.kontakt-details .krow__text a {
  color: var(--navy);
}

.kontakt-details .krow__icon {
  background: #e8eefb;
  color: var(--blue);
}

.kontakt-details .krow__text a,
.footer__contact .krow__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kontakt-details .krow__text a:hover {
  color: var(--blue);
}
