/* Skiltegiganten design-system — fælles regler for alle sider.
   Brandfarver: gul #FFC800 · sort #17191D · kridhvid #FBFAF5 · blå #2456D6 · neonpink #E0187F (kun neon) */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FBFAF5;
  color: #17191D;
  font-family: Figtree, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #2456D6; text-decoration: none; }
main a:hover { color: #17191D; }
img { max-width: 100%; height: auto; display: block; }
summary::-webkit-details-marker { display: none; }
details[open] .plus { transform: rotate(45deg); }

/* Logo-bolte */
.bolt {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #17191D;
  opacity: .85;
}

/* Primær CTA-knap (gul, sort kant, hård skygge) */
.sg-btn {
  display: inline-block;
  background: #FFC800;
  color: #17191D;
  border: 3px solid #17191D;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .01em;
  box-shadow: 4px 4px 0 #17191D;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.sg-btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #17191D; color: #17191D; }

/* Sekundær knap (outline) */
.sg-btn-outline {
  display: inline-block;
  color: #17191D;
  border: 2px solid #17191D;
  border-radius: 8px;
  padding: 15px 22px;
  font-weight: 700;
  font-size: 16px;
  transition: border-color .15s, color .15s;
}
.sg-btn-outline:hover { border-color: #2456D6; color: #2456D6; }

/* Kort med hård skygge */
.sg-card {
  background: #fff;
  border: 3px solid #17191D;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #17191D;
}
a.sg-card { color: #17191D; transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column; overflow: hidden; }
a.sg-card:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 #17191D; color: #17191D; }

/* Sektionel typografi */
.sg-h1 {
  overflow-wrap: break-word;
  font-family: Archivo, sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 5vw, 58px); line-height: .96; letter-spacing: -.025em;
  margin: 0 0 18px; text-wrap: balance;
}
.sg-h2 {
  font-family: Archivo, sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1; letter-spacing: -.02em; margin: 0 0 26px;
}
.sg-h3 {
  font-family: Archivo, sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 18px; margin: 0 0 6px;
}
.sg-container { max-width: 1240px; margin: 0 auto; padding: clamp(52px, 6vw, 86px) 20px; }
.sg-container-narrow { max-width: 820px; margin: 0 auto; padding: clamp(52px, 6vw, 86px) 20px; }

/* Gult badge/plade-tag */
.sg-badge {
  display: inline-block; background: #FFC800; color: #17191D;
  font-family: Archivo, sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 10px;
  border-radius: 4px; margin-bottom: 18px;
}

/* Estimat-pille (bruges overalt hvor estimeret pris nævnes) */
.sg-estimat {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(36, 86, 214, .08); border: 1px solid rgba(36, 86, 214, .35);
  color: #17191D; font-size: 13px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}

/* FAQ */
.sg-faq { border-bottom: 2px solid rgba(23,25,29,.18); padding: 4px 0; }
.sg-faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 18px 0; font-family: Archivo, sans-serif; font-weight: 800;
  font-size: 18px; text-transform: uppercase;
}
.sg-faq .plus { font-size: 24px; color: #FFC800; -webkit-text-stroke: 1.5px #17191D; transition: transform .2s; line-height: 1; }
.sg-faq p, .sg-faq div { margin: 0 0 20px; font-size: 16px; line-height: 1.6; color: #4d5259; }

/* Formularfelter */
.sg-field { display: grid; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.sg-field input, .sg-field select, .sg-field textarea {
  font-family: Figtree, sans-serif; font-size: 16px; padding: 13px 14px;
  border: 2px solid #17191D; border-radius: 8px; background: #fff; width: 100%;
}
.sg-field input[type="file"] { border-style: dashed; font-size: 14px; padding: 11px 14px; }
.sg-field input:focus, .sg-field select:focus, .sg-field textarea:focus { outline: 3px solid #FFC800; outline-offset: 0; }

/* Hover via style-hover-attribut (aktiveres af site.js) */
[style-hover] { transition: all .18s ease; }

/* Responsivt */
@media (max-width: 1180px) {
  .desktop-nav { display: none !important; }
  .mobilebar { display: flex !important; }
  .split { grid-template-columns: 1fr !important; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
