:root{
  --paper:      oklch(0.99 0.002 250);
  --bg:         oklch(0.975 0.004 248);
  --bg-soft:    oklch(0.955 0.006 250);
  --bg-deep:    oklch(0.925 0.010 250);
  --blue-bg:    oklch(0.955 0.020 255);

  --ink:        oklch(0.180 0.022 252);
  --ink-2:      oklch(0.300 0.018 252);
  --ink-3:      oklch(0.420 0.014 252);
  --gray:       oklch(0.560 0.012 252);
  --gray-soft:  oklch(0.700 0.010 252);
  --line:       oklch(0.880 0.010 254);
  --line-soft:  oklch(0.925 0.006 254);

  --navy:       oklch(0.255 0.115 268);
  --navy-deep:  oklch(0.195 0.105 268);
  --navy-mid:   oklch(0.330 0.125 268);
  --navy-soft:  oklch(0.460 0.130 264);
  --blue:       oklch(0.540 0.165 252);
  --blue-soft:  oklch(0.680 0.140 248);

  --on-dark:    oklch(0.96 0.008 250);
  --on-dark-2:  oklch(0.80 0.014 252);
  --on-dark-3:  oklch(0.62 0.014 252);

  --f-display:  "Sora", system-ui, sans-serif;
  --f-body:     "Inter Tight", system-ui, sans-serif;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:  cubic-bezier(0.30, 0.86, 0.36, 1);

  --pad-x:      clamp(20px, 4.5vw, 56px);
  --max-w:      1320px;
  --radius:     14px;
  --radius-sm:  8px;
}

*, *::before, *::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; scroll-padding-top: 108px; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea, button{ font-family: inherit; }
::selection{ background: var(--navy); color: var(--paper); }

.eyebrow{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 10px 0 0;
  max-width: 22ch;
}

.section-lead{
  margin: 16px 0 0;
  max-width: 56ch;
  color: var(--ink-3);
  font-size: 0.98rem;
  line-height: 1.6;
}

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section{
  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
}

.section-head{ margin-bottom: clamp(32px, 4vw, 56px); max-width: 64rem; }
.section-head-center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-head-center .eyebrow{ display: inline-block; }
.section-head-center .section-title{ margin-left: auto; margin-right: auto; }
.section-head-center .section-lead{ margin-left: auto; margin-right: auto; }

.btn-primary, .btn-ghost, .btn-submit, .btn-light, .btn-outline, .btn-outline-light{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.003em;
  border-radius: 6px;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  min-height: 44px;
  cursor: pointer;
}

.btn-primary{
  background: var(--navy);
  color: var(--paper);
  border: 1px solid var(--navy);
  box-shadow: 0 1px 0 oklch(0.18 0.10 268 / 0.6) inset, 0 12px 24px -10px oklch(0.255 0.115 268 / 0.40);
}
.btn-primary:hover{
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 oklch(0.15 0.10 268 / 0.6) inset, 0 16px 28px -10px oklch(0.255 0.115 268 / 0.50);
}
.btn-primary svg{ transition: transform 0.45s var(--ease); }
.btn-primary:hover svg{ transform: translateX(3px); }

.btn-ghost{
  color: var(--on-dark);
  border: 1px solid oklch(0.96 0.008 250 / 0.30);
  background: transparent;
}
.btn-ghost:hover{
  background: oklch(0.96 0.008 250 / 0.10);
  border-color: oklch(0.96 0.008 250 / 0.50);
  transform: translateY(-1px);
}

.btn-light{
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--paper);
}
.btn-light:hover{
  background: var(--blue-bg);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.btn-outline{
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
}
.btn-outline:hover{
  background: var(--navy);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-outline svg{ transition: transform 0.45s var(--ease); }
.btn-outline:hover svg{ transform: translateX(3px); }

.btn-outline-light{
  color: var(--on-dark);
  background: transparent;
  border: 1px solid oklch(0.96 0.008 250 / 0.50);
}
.btn-outline-light:hover{
  background: oklch(0.96 0.008 250 / 0.10);
  border-color: var(--on-dark);
  transform: translateY(-1px);
}
.btn-outline-light svg{ transition: transform 0.45s var(--ease); }
.btn-outline-light:hover svg{ transform: translateX(3px); }

.btn-submit{
  background: var(--navy);
  color: var(--paper);
  border: 1px solid var(--navy);
  padding: 14px 24px;
  font-size: 0.95rem;
  align-self: flex-start;
}
.btn-submit:hover{
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
}
.btn-submit svg{ transition: transform 0.45s var(--ease); }
.btn-submit:hover svg{ transform: translateX(3px); }

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  transition: color 0.3s var(--ease);
}
.link-arrow:hover{ color: var(--blue); }
.link-arrow svg{ transition: transform 0.45s var(--ease); flex-shrink: 0; }
.link-arrow:hover svg{ transform: translateX(4px); }

.topbar{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--navy-deep);
  color: var(--on-dark-2);
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  transition: transform 0.55s var(--ease);
  border-bottom: 1px solid oklch(0.96 0.008 250 / 0.08);
}
.topbar.is-hidden{ transform: translateY(-100%); }

.topbar-inner{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 36px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.topbar-msg{
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--on-dark-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.topbar-links{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.topbar-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--on-dark);
  font-weight: 600;
  font-size: 0.78rem;
  transition: color 0.3s var(--ease);
}
.topbar-link svg{ color: var(--blue-soft); }
.topbar-link:hover{ color: var(--blue-soft); }

.navbar{
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 55;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: top 0.55s var(--ease), box-shadow 0.45s var(--ease);
}
.navbar.is-solo{ top: 0; }
.navbar.is-scrolled{
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 28px -22px oklch(0.18 0.022 252 / 0.18);
}

.navbar-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 24px;
}

.brand{
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  padding: 6px 0;
  flex-shrink: 0;
  transition: opacity 0.3s var(--ease);
}
.brand:hover{ opacity: 0.85; }
.brand-logo{
  height: 52px;
  width: auto;
  display: block;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  margin: 0 8px;
}
.nav-links::-webkit-scrollbar{ display: none; }
.nav-link{
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 0.35s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover{
  color: var(--navy);
  background: var(--blue-bg);
}

.nav-cta{
  margin-left: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.4s var(--ease), transform 0.45s var(--ease);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover{ background: var(--navy-deep); transform: translateY(-1px); }

.menu-toggle{
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--navy);
  background: var(--navy);
  transition: background-color 0.3s var(--ease);
}
.menu-bar{
  width: 18px; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.is-open{ background: var(--blue); border-color: var(--blue); }
.menu-toggle.is-open .menu-bar:nth-child(1){ transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open .menu-bar:nth-child(2){ transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 0;
  z-index: 54;
  background: var(--paper);
  padding: 116px var(--pad-x) 32px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open{ opacity: 1; pointer-events: auto; }
.mobile-link{
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.022em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s var(--ease);
}
.mobile-link::after{
  content: "";
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink-3);
  border-top: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}
.mobile-link:hover{ color: var(--navy); }
.mobile-link-cta{
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 28px;
  padding: 18px 28px;
  background: var(--navy);
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  min-height: 56px;
  width: 100%;
  box-shadow: 0 12px 28px -10px oklch(0.255 0.115 268 / 0.40);
}
.mobile-foot{
  margin-top: 40px;
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line-soft);
}
.mobile-foot a{
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  display: block;
}
.mobile-foot a + a{ border-top: 1px solid var(--line-soft); }

.hero{
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: clip;
  padding: 180px 0 80px;
}
.hero-bg{
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.06);
}
.hero-veil{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.18 0.10 268 / 0.45) 0%, oklch(0.18 0.10 268 / 0.70) 70%, oklch(0.14 0.08 268 / 0.85) 100%),
    linear-gradient(90deg, oklch(0.18 0.10 268 / 0.20) 0%, oklch(0.18 0.10 268 / 0) 60%);
}

.hero-inner{
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  color: var(--on-dark);
}
.hero-place{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 18px;
}
.hero-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.8vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--on-dark);
  margin: 0;
  max-width: 18ch;
}
.hero-lead{
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 56ch;
}
.hero-credits{
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: 0.82rem;
  color: var(--on-dark-2);
  font-weight: 500;
  padding-top: 18px;
  border-top: 1px solid oklch(0.96 0.008 250 / 0.20);
  max-width: 780px;
}
.hero-credit{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-credit svg{ color: var(--blue-soft); flex-shrink: 0; }
.hero-credits-sep{
  display: inline-block;
  width: 1px; height: 14px;
  background: oklch(0.96 0.008 250 / 0.30);
}

.section-tracks{ background: var(--bg); }

.tracks-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.track-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.track-card::after{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--navy);
  transform-origin: left;
  transform: scaleX(0.18);
  transition: transform 0.6s var(--ease);
}
.track-card:hover{
  transform: translateY(-3px);
  border-color: var(--blue-soft);
  box-shadow: 0 18px 44px -22px oklch(0.18 0.022 252 / 0.20);
}
.track-card:hover::after{ transform: scaleX(1); }
.track-card-workshop::after{ background: var(--blue); }

.track-card-mark{
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-bg);
  color: var(--navy);
}
.track-card-workshop .track-card-mark{ color: var(--blue); }
.track-card-mark svg{ width: 32px; height: 32px; }

.track-card-eyebrow{
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.track-card-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.track-card-text{
  margin: 0;
  color: var(--ink-3);
  font-size: 0.98rem;
  line-height: 1.6;
}
.track-card-points{
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.track-card-points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}
.track-card-points li::before{
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-top: 3px;
  background: var(--navy);
  mask-image: linear-gradient(135deg, transparent 45%, var(--paper) 45%);
  border-radius: 4px;
  flex-shrink: 0;
}
.track-card-points li{
  position: relative;
  padding-left: 22px;
}
.track-card-points li::before{
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  width: 16px; height: 16px;
  background: var(--blue-bg);
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}

.track-card-actions{
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.track-card-meta{
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.88rem;
}
.track-card-meta a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.track-card-meta a:hover{ color: var(--navy); }
.track-card-meta svg{ color: var(--blue); flex-shrink: 0; }

.section-om{ background: var(--paper); }
.om-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.om-content{ max-width: 60ch; }
.om-body{ margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.om-body p{ margin: 0; color: var(--ink-2); font-size: 0.98rem; line-height: 1.65; max-width: 56ch; }

.om-stats{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.om-stat{
  background: var(--paper);
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.om-stat-num{
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1;
}
.om-stat-label{
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.4;
}

.om-cta{
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}

.om-figure{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.om-img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.om-figure:hover .om-img{ transform: scale(1.04); }
.om-figure-cap{
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--on-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px oklch(0.18 0.10 268 / 0.7);
  z-index: 2;
}
.om-figure::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(0.18 0.10 268 / 0.6), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.om-figure-partners{
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: oklch(0.99 0.002 250 / 0.95);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.om-partner-logo{
  height: 24px;
  width: auto;
}
.om-partner-label{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.section-services{ background: var(--bg); }

.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover{
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 14px 32px -20px oklch(0.18 0.022 252 / 0.15);
}
.service-card-mark{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--blue-bg);
  color: var(--navy);
}
.service-card-mark svg{ width: 24px; height: 24px; }

.service-card h3{
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
}
.service-card p{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-3);
  flex: 1;
}
.service-card-note{
  align-self: flex-start;
  margin-top: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 10px;
  background: var(--blue-bg);
  border-radius: 4px;
}

.section-blocket{ background: var(--paper); }
.blocket-banner{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  color: var(--on-dark);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 60px);
  min-height: 360px;
}
.blocket-banner-bg{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: -2;
}
.blocket-banner-veil{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, oklch(0.18 0.10 268 / 0.92) 0%, oklch(0.18 0.10 268 / 0.65) 60%, oklch(0.16 0.09 268 / 0.50) 100%);
  z-index: -1;
}
.blocket-banner-inner{
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 640px;
}
.blocket-banner-eyebrow{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 8px;
}
.blocket-banner-title{
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--on-dark);
}
.blocket-banner-lead{
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 56ch;
}
.blocket-banner-stats{
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  padding-top: 24px;
  border-top: 1px solid oklch(0.96 0.008 250 / 0.18);
}
.blocket-stat{
  display: flex; flex-direction: column;
  gap: 2px;
}
.blocket-stat-num{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--on-dark);
  letter-spacing: -0.025em;
}
.blocket-stat-key{
  font-size: 0.78rem;
  color: var(--on-dark-3);
  letter-spacing: 0.005em;
}
.blocket-banner-actions{
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}
.blocket-banner .btn-primary{
  background: var(--blue);
  border-color: var(--blue);
  color: var(--paper);
}
.blocket-banner .btn-primary:hover{
  background: oklch(0.45 0.16 252);
  border-color: oklch(0.45 0.16 252);
}
.blocket-banner-phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-dark);
  padding: 6px 4px;
  border-bottom: 1px solid oklch(0.96 0.008 250 / 0.4);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.blocket-banner-phone:hover{ color: var(--blue-soft); border-bottom-color: var(--blue-soft); }
.blocket-banner-phone svg{ color: var(--blue-soft); }

.section-verkstad-tjanster{ background: var(--bg-soft); }

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

.verkstad-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.verkstad-card:hover{
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 14px 32px -20px oklch(0.18 0.022 252 / 0.15);
}

.verkstad-card-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--blue-bg);
  color: var(--navy);
}
.verkstad-card-icon svg{ width: 24px; height: 24px; }

.verkstad-card h3{
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
}
.verkstad-card p{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-3);
  flex: 1;
}

.verkstad-card-feature{
  background: var(--navy);
  border-color: var(--navy);
  color: var(--on-dark);
}
.verkstad-card-feature h3{ color: var(--on-dark); }
.verkstad-card-feature p{ color: var(--on-dark-2); }
.verkstad-card-feature .verkstad-card-icon{
  background: oklch(0.36 0.13 268);
  color: var(--blue-soft);
}
.verkstad-card-flag{
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 4px 8px;
  background: var(--blue-soft);
  border-radius: 4px;
}

.verkstad-foot{
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.section-fordon{ background: var(--bg-soft); }

.fordon-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fordon-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.6vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.fordon-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--navy);
  transform-origin: top;
  transform: scaleY(0.20);
  transition: transform 0.6s var(--ease);
}
.fordon-card:hover{
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 18px 44px -22px oklch(0.18 0.022 252 / 0.18);
}
.fordon-card:hover::before{ transform: scaleY(1); }
.fordon-card-buying::before{ background: var(--blue); }

.fordon-card-mark{
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-bg);
  color: var(--navy);
}
.fordon-card-buying .fordon-card-mark{ color: var(--blue); }
.fordon-card-mark svg{ width: 28px; height: 28px; }

.fordon-card-eyebrow{
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.fordon-card-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.fordon-card-text{
  margin: 0;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.6;
}
.fordon-card-points{
  list-style: none;
  margin: 6px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.fordon-card-points li{
  position: relative;
  padding-left: 22px;
}
.fordon-card-points li::before{
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 16px; height: 16px;
  background: var(--blue-bg);
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.fordon-card-actions{
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section-hours{ background: var(--bg); }

.hours-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.hours-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-card-key{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.hours-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hours-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.96rem;
}
.hours-list li:last-child{ border-bottom: 0; }
.hours-list li span:first-child{ color: var(--ink-2); font-weight: 500; }
.hours-list li span:last-child{
  color: var(--ink);
  font-weight: 600;
  font-family: var(--f-display);
  letter-spacing: -0.01em;
}
.hours-note{
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--ink-3);
  font-style: italic;
}

.section-kontakt{ background: var(--paper); }

.kontakt-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.kontakt-info{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontakt-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.kontakt-card-key{
  align-self: flex-start;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--navy);
  padding: 4px 9px;
  border-radius: 4px;
}
.kontakt-card:nth-of-type(2) .kontakt-card-key{ background: var(--blue); }
.kontakt-card-title{
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
}
.kontakt-card-list{
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 2px;
}
.kontakt-card-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}
.kontakt-card-icon{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy);
  display: grid; place-items: center;
}
.kontakt-card-icon svg{ width: 13px; height: 13px; }
.kontakt-card-list li a{
  color: var(--ink);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.3s var(--ease);
}
.kontakt-card-list li a:hover{ color: var(--navy); }

.kontakt-address{
  background: var(--blue-bg);
  border: 1px solid oklch(0.86 0.04 252);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kontakt-address-key{
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.kontakt-address p{
  margin: 4px 0 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.3;
}
.kontakt-address span:last-child{
  font-size: 0.84rem;
  color: var(--ink-3);
}

.kontakt-form{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
  overflow: hidden;
}

.kontakt-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  overflow: hidden;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-field{ display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.form-field label{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-field input,
.form-field select,
.form-field textarea{
  appearance: none;
  -webkit-appearance: none;
  padding: 14px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
  min-width: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color: var(--gray-soft); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 4px oklch(0.54 0.165 252 / 0.14);
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-field select{
  padding-right: 42px;
  background-color: var(--paper);
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-note{
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--gray);
}

#contact-form{
  max-width: 100%;
  overflow: hidden;
}
#contact-form .g-recaptcha{
  transform-origin: left center;
  max-width: 100%;
}

.footer{
  background: var(--navy-deep);
  color: var(--on-dark-2);
  padding: clamp(56px, 6vw, 88px) 0 24px;
}
.footer-top{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid oklch(0.96 0.008 250 / 0.14);
}

.footer-col{ display: flex; flex-direction: column; gap: 2px; }
.footer-col h4{
  margin: 0 0 12px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.footer-col a, .footer-col span{
  color: var(--on-dark-2);
  font-size: 0.94rem;
  transition: color 0.3s var(--ease);
}
.footer-col a{ padding: 6px 0; display: block; }
.footer-col span{ padding: 6px 0; display: block; }
.footer-col a:hover{ color: var(--blue-soft); }

.footer-brand-col{ gap: 18px; max-width: 380px; }
.brand-footer{
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.footer-logo{
  height: 68px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-blurb{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 42ch;
}

.footer-bottom{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.78rem;
  color: var(--on-dark-3);
}
.footer-org{ font-family: var(--f-body); }
.footer-back{
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--on-dark-3);
  transition: color 0.3s var(--ease);
  padding: 6px 0;
}
.footer-back:hover{ color: var(--blue-soft); }
.footer-back svg{ transition: transform 0.45s var(--ease); }
.footer-back:hover svg{ transform: translateY(-2px); }

.img-lazy{
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.img-lazy.is-loaded{ opacity: 1; }

.nav-link.active{ color: var(--blue); }
.nav-link.active::after{
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: -6px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.mobile-link.active{ color: var(--blue); }

.page-hero{
  position: relative;
  padding: clamp(150px, 14vw, 210px) 0 clamp(72px, 9vw, 108px);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.page-hero-veil{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, oklch(0.18 0.10 268 / 0.93) 0%, oklch(0.20 0.11 268 / 0.78) 55%, oklch(0.24 0.12 268 / 0.55) 100%),
    radial-gradient(circle at 90% 110%, oklch(0.54 0.16 252 / 0.30), transparent 55%);
}
.page-hero-inner{
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  z-index: 1;
}
.page-hero-eyebrow{
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.page-hero-title{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--on-dark);
  max-width: 22ch;
}
.page-hero-lead{
  margin: 0 0 28px;
  max-width: 62ch;
  color: var(--on-dark-2);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.65;
}
.page-hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.page-hero-credits{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid oklch(0.96 0.008 250 / 0.16);
  font-size: 0.9rem;
  color: var(--on-dark-3);
}
.page-hero-credit{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-hero-credit svg{ color: var(--blue-soft); }
.page-hero-credits-sep{
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--on-dark-3);
  opacity: 0.45;
}

.section-buy-types{ background: var(--paper); }

.buy-types-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.buy-type-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.buy-type-card:hover{
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 14px 32px -20px oklch(0.18 0.022 252 / 0.18);
}
.buy-type-card-feature{
  background: linear-gradient(150deg, var(--blue-bg) 0%, var(--paper) 80%);
  border-color: var(--blue-soft);
}
.buy-type-mark{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-bg);
  color: var(--navy);
}
.buy-type-card-feature .buy-type-mark{ background: var(--paper); color: var(--blue); }
.buy-type-mark svg{ width: 26px; height: 26px; }
.buy-type-card h3{
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
}
.buy-type-card p{
  margin: 0;
  color: var(--ink-3);
  font-size: 0.94rem;
  line-height: 1.55;
}
.buy-type-flag{
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 10px;
  background: var(--paper);
  border-radius: 4px;
  border: 1px solid var(--blue-soft);
}

.section-buy-steps{ background: var(--bg-soft); }

.steps-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.step-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-card:hover{
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 14px 32px -20px oklch(0.18 0.022 252 / 0.16);
}
.step-num{
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-dark);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.step-card h3{
  margin: 4px 0 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.step-card p{
  margin: 0;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.6;
}

.section-vardering{ background: var(--paper); }

.vardering-form{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 920px;
  margin: 0 auto;
}
.form-fieldset{
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-fieldset legend{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  padding: 0;
  margin: 0 0 4px;
}
.fieldset-hint{
  margin: -8px 0 4px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 56ch;
}
.form-field-full{ width: 100%; }
.form-radios{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.radio-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.radio-item:hover{ border-color: var(--blue-soft); }
.radio-item:has(input:checked){
  border-color: var(--navy);
  background: var(--blue-bg);
}
.radio-item input{
  margin-top: 3px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.radio-label{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.radio-label strong{
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
}
.radio-label em{
  font-style: normal;
  color: var(--ink-3);
  font-size: 0.84rem;
  line-height: 1.4;
}
.form-checks{
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 16px;
}
.check-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  cursor: pointer;
}
.check-item input{
  accent-color: var(--navy);
  width: 16px; height: 16px;
}

.section-why-sell{ background: var(--bg); }

.why-sell-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-sell-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.why-sell-card:hover{
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 12px 28px -20px oklch(0.18 0.022 252 / 0.14);
}
.why-sell-mark{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--blue-bg);
  color: var(--navy);
}
.why-sell-mark svg{ width: 24px; height: 24px; }
.why-sell-card h3{
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.why-sell-card p{
  margin: 0;
  color: var(--ink-3);
  font-size: 0.93rem;
  line-height: 1.55;
}

.reveal-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-up.is-visible{ opacity: 1; transform: translateY(0); }
.delay-1{ transition-delay: 0.08s; }
.delay-2{ transition-delay: 0.16s; }
.delay-3{ transition-delay: 0.24s; }
.delay-4{ transition-delay: 0.32s; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 8px;
}

@media (min-width: 720px){
  .footer-top{ grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .verkstad-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hours-grid{ grid-template-columns: 1fr 1fr; gap: 20px; }
  .tracks-grid{ grid-template-columns: 1fr 1fr; gap: 22px; }
  .fordon-grid{ grid-template-columns: 1fr 1fr; gap: 22px; }
  .blocket-banner-stats{ grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .buy-types-grid{ grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .steps-grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .why-sell-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .form-radios{ grid-template-columns: repeat(2, 1fr); }
  .form-checks{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px){
  .kontakt-grid{ grid-template-columns: 30% 1fr; gap: 24px; align-items: start; }
}

@media (min-width: 920px){
  .om-grid{ grid-template-columns: 1.05fr 1fr; gap: 60px; }
}

@media (min-width: 1100px){
  .services-grid{ grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .verkstad-grid{ grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .buy-types-grid{ grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .why-sell-grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .form-radios{ grid-template-columns: repeat(4, 1fr); }
  .om-grid{ gap: 80px; }
}

@media (max-width: 920px){
  .nav-links{ display: none; }
  .menu-toggle{ display: flex; }
  .hero{ padding: 170px 0 80px; }
  .navbar-inner{ height: 70px; }
  .brand-logo{ height: 44px; }
}

@media (max-width: 640px){
  section, section > div, section > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .kontakt-grid > div, .form-grid > div {
    min-width: 0;
    max-width: 100%;
  }
  .hero{ padding: 150px 0 70px; min-height: 88svh; }
  .hero-credits{ flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-credits-sep{ display: none; }
  .om-stats{ grid-template-columns: 1fr; }
  .topbar-msg{ display: none; }
  .topbar-inner{ justify-content: center; }
  .topbar-links{ gap: 18px; }
  .topbar-link span{ display: none; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 8px; }
  .form-grid{ grid-template-columns: 1fr; }
  .om-figure-partners{ position: static; margin: 12px; }
  .blocket-banner-stats{ grid-template-columns: 1fr 1fr; gap: 16px 22px; }

  .om-cta,
  .track-card-actions,
  .fordon-card-actions,
  .page-hero-actions,
  .verkstad-foot,
  .blocket-banner-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .om-cta .btn-primary, .om-cta .btn-outline,
  .track-card-actions .btn-primary, .track-card-actions .btn-outline,
  .fordon-card-actions .btn-primary, .fordon-card-actions .btn-outline,
  .page-hero-actions .btn-primary, .page-hero-actions .btn-outline-light,
  .verkstad-foot .btn-primary, .verkstad-foot .btn-outline,
  .blocket-banner-actions .btn-primary, .blocket-banner-actions .btn-outline-light{
    width: 100%;
    justify-content: center;
  }
  .page-hero-credits{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .page-hero-credits-sep{ display: none; }
}

@media (max-width: 540px){
  .topbar-links .topbar-link svg + *,
  .topbar-link{ font-size: 0.74rem; }
}

@media (max-width: 400px){
  #contact-form .g-recaptcha{ transform: scale(0.85); }
}

@media (max-width: 340px){
  #contact-form .g-recaptcha{ transform: scale(0.75); }
}

@media (min-width: 600px){
  .form-grid{ grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
    scroll-behavior: auto;
  }
}
