/* Tjenestesider: komponenter i tillegg til legal.css (delt base: nav, hero, seksjon, footer). */

.tjeneste-pris-topp {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red-light);
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* Sjekkliste: hva dere får */
.sjekk-liste {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sjekk-liste li {
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
}
.sjekk-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(192,57,43,0.5);
  border-radius: 3px;
  background:
    linear-gradient(45deg, transparent 45%, var(--red-light) 45%, var(--red-light) 55%, transparent 55%) center/10px 2px no-repeat;
}
.sjekk-liste li strong { color: var(--white); font-weight: 600; }

/* Underpakke-tittel i en seksjon */
.pakke-tittel {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 24px 0 8px;
}

/* Ikke inkludert */
.ikke-liste {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ikke-liste li {
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}
.ikke-liste li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--gray);
}

/* Pris og leveringstid: fremhevet boks */
.pris-boks {
  display: grid;
  gap: 14px;
  background: var(--dark3);
  border: 1px solid rgba(192,57,43,0.28);
  border-radius: 3px;
  padding: 24px 26px;
  margin: 8px 0 12px;
}
.pris-rad {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pris-boks .pris-rad:last-child { border-bottom: none; padding-bottom: 0; }
.pris-rad-navn { color: var(--light); font-size: 0.95rem; }
.pris-rad-navn span { display: block; color: var(--gray); font-size: 0.82rem; margin-top: 2px; }
.pris-rad-pris {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red-light);
  white-space: nowrap;
}
.pris-note { font-size: 0.86rem; color: var(--gray); }

/* Steg for steg / dag for dag */
.steg-liste {
  list-style: none;
  counter-reset: steg;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.steg-liste li {
  counter-increment: steg;
  position: relative;
  padding-left: 46px;
  min-height: 32px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.55;
}
.steg-liste li::before {
  content: counter(steg);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--red-light);
}

/* CTA og bloggenke nederst */
.tjeneste-cta {
  background: var(--dark2);
  border: 1px solid rgba(192,57,43,0.28);
  border-radius: 3px;
  padding: 32px 30px;
  margin-top: 48px;
  text-align: center;
}
.tjeneste-cta h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0 0 10px;
  display: block;
}
.tjeneste-cta p { color: var(--gray); font-size: 0.92rem; margin-bottom: 22px; }
.tjeneste-cta .btn {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--red);
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s, transform .25s;
}
.tjeneste-cta .btn:hover { background: var(--red-light); transform: translateY(-2px); }

.blogg-lenke {
  text-align: center;
  margin-top: 22px;
  font-size: 0.9rem;
}
.blogg-lenke a { color: var(--red-light); text-decoration: none; }
.blogg-lenke a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .pris-boks { padding: 20px 20px; }
  .tjeneste-cta { padding: 26px 22px; }
  .tjeneste-cta h2 { font-size: 1.2rem; }
}
