:root {
  --vd-kohde-ink: #0c2931;
  --vd-kohde-muted: rgba(12, 41, 49, 0.65);
  --vd-kohde-light: #ededed;
  --vd-kohde-dark: #0c2931;
  --vd-kohde-dark-alt: #4a5f6a;
  --vd-kohde-accent: #ff810a;
  --vd-kohde-white: #ffffff;
}

.vd-kohde-services {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--vd-kohde-light);
  background: var(--vd-kohde-dark);
}

.vd-kohde-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vd-kohde-hero {
  padding: 72px 0;
  background: var(--vd-kohde-light);
  color: var(--vd-kohde-ink);
}

.vd-kohde-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.vd-kohde-hero-text {
  display: grid;
  gap: 20px;
  padding-block: 80px;
}

.vd-kohde-hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vd-kohde-ink);
}

.vd-kohde-hero-text p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--vd-kohde-muted);
  margin: 0;
}

.vd-kohde-intro {
  background: var(--vd-kohde-dark-alt);
  padding: 72px 0;
  color: var(--vd-kohde-light);
}

.vd-kohde-info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: rgba(12, 41, 49, 0.55);
  border-radius: 20px;
}

.vd-kohde-dot {
  width: 18px;
  height: 18px;
  background: var(--vd-kohde-accent);
  border-radius: 50%;
  transform: translateY(6px) scale(1.05);
  box-shadow: 0 0 0 6px rgba(255, 129, 10, 0.25);
}

.vd-kohde-info-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--vd-kohde-light);
}

.vd-kohde-info-card p {
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Libre Baskerville', serif;
}

.vd-kohde-tabs {
  padding: 88px 0 110px;
  background: var(--vd-kohde-dark);
  color: var(--vd-kohde-light);
}

.vd-kohde-tabs-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.vd-kohde-tabs-header h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vd-kohde-light);
}

.vd-kohde-tabs-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  font-family: 'Libre Baskerville', serif;
}

.vd-kohde-tabs-header .vd-kohde-district-word {
  color: rgba(255, 255, 255, 0.7);
}

.vd-kohde-tab-sentinel {
  display: block;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.vd-kohde-tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  position: sticky;
  top: var(--vd-kohde-sticky-top, 0px);
  z-index: 40;
  background: transparent;
  padding: 14px clamp(24px, 6vw, 64px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  will-change: transform, background-color, box-shadow;
}

.vd-kohde-tab-controls.is-sticky {
  background: var(--vd-kohde-dark-alt);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.vd-kohde-tab-controls.is-overlaying-header {
  z-index: 9999;
}

.vd-kohde-tab {
  background: transparent;
  background-color: transparent;
  color: rgba(237, 237, 237, 0.75);
  padding: 6px 0;
  border: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.vd-kohde-tab:hover,
.vd-kohde-tab:focus,
.vd-kohde-tab:focus-visible,
.vd-kohde-tab:active {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  appearance: none;
}

.vd-kohde-tab:active,
.vd-kohde-district-tab:active {
  background: transparent;
}

.vd-kohde-tab::selection,
.vd-kohde-district-tab::selection {
  background: transparent;
  color: inherit;
}

.vd-kohde-tab::-moz-selection,
.vd-kohde-district-tab::-moz-selection {
  background: transparent;
  color: inherit;
}

.vd-kohde-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--vd-kohde-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.vd-kohde-tab.is-active::after,
.vd-kohde-tab:hover::after,
.vd-kohde-tab:focus-visible::after {
  transform: scaleX(1);
}

.vd-kohde-tab-panels {
  position: relative;
}

.vd-kohde-panel {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vd-kohde-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.vd-kohde-panel-content {
  background: rgba(12, 41, 49, 0.75);
  padding: 36px;
  border-radius: 24px;
  display: grid;
  gap: 18px;
}

.vd-kohde-panel-content h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vd-kohde-light);
}

.vd-kohde-panel-content p {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Libre Baskerville', serif;
}

.vd-kohde-panel-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vd-kohde-panel-content li {
  position: relative;
  padding-left: 24px;
}

.vd-kohde-panel-content li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vd-kohde-accent);
  position: absolute;
  left: 0;
  top: 7px;
}

.vd-kohde-district-tabs {
  display: grid;
  gap: 24px;
}

.vd-kohde-district-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.vd-kohde-district-tab {
  background: transparent;
  color: rgba(237, 237, 237, 0.75);
  padding: 6px 0;
  border: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.vd-kohde-district-letter {
  color: var(--vd-kohde-accent);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.vd-kohde-district-tab:hover,
.vd-kohde-district-tab:focus,
.vd-kohde-district-tab:focus-visible,
.vd-kohde-district-tab:active {
  color: var(--vd-kohde-light);
  background-color: transparent;
  border: none;
  box-shadow: none;
  appearance: none;
  outline: none;
}



.vd-kohde-district-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--vd-kohde-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.vd-kohde-district-tab.is-active::after,
.vd-kohde-district-tab:hover::after,
.vd-kohde-district-tab:focus-visible::after {
  transform: scaleX(1);
}

.vd-kohde-district-panels {
  position: relative;
  min-height: 140px;
}

.vd-kohde-district-panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vd-kohde-district-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.vd-kohde-district-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Libre Baskerville', serif;
}

.vd-kohde-contact {
  padding: 72px 0;
  background: var(--vd-kohde-dark-alt);
  color: var(--vd-kohde-light);
}

.vd-kohde-contact h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: var(--vd-kohde-light);
}

.vd-kohde-contact p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Libre Baskerville', serif;
  margin: 0 0 24px;
}

.vd-kohde-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid currentColor;
  color: var(--vd-kohde-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.vd-kohde-contact-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vd-kohde-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.vd-kohde-contact-link:hover,
.vd-kohde-contact-link:focus-visible {
  color: var(--vd-kohde-dark);
  border-color: var(--vd-kohde-accent);
}

.vd-kohde-contact-link:hover::before,
.vd-kohde-contact-link:focus-visible::before {
  transform: scaleX(1);
}

.vd-kohde-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vd-kohde-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .vd-kohde-hero {
    padding: 80px 0 64px;
  }

  .vd-kohde-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .vd-kohde-info-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vd-kohde-hero {
    padding: 56px 0;
  }

  .vd-kohde-hero-text {
    gap: 16px;
  }

  .vd-kohde-hero-text h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    letter-spacing: 0.02em;
  }

  .vd-kohde-tab-controls {
    gap: 10px 16px;
  }

  .vd-kohde-tabs {
    padding: 64px 0 80px;
  }

  .vd-kohde-tab {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .vd-kohde-panel-content {
    padding: 24px;
    gap: 14px;
  }

  .vd-kohde-panel-content p {
    font-size: 0.95rem;
  }

  .vd-kohde-district-tablist {
    gap: 10px 16px;
  }

  .vd-kohde-district-tab {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .vd-kohde-district-panels {
    min-height: 180px;
  }

  .vd-kohde-contact {
    padding: 56px 0;
  }

  .vd-kohde-contact-link {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
}
