/* WEBPARTNEREN — MINIMAL BLACK & WHITE LAYOUT */
/* Pure structure, no design fluff */

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

:root {
  --bg: #ffffff;
  --ink: #000000;
  --border: #cccccc;
  --muted: #666666;
  --radius: 4px;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 5%;
  z-index: 999;
}

nav .logo {
  font-weight: 700;
  font-size: 1.2rem;
}

nav .nav-spacer {
  flex: 1;
}

nav .nav-phone {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}

/* MAIN CONTENT */
main {
  margin-top: 68px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}

/* SECTIONS */
section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-child {
  border-bottom: none;
}

/* SECTION HEADER */
.s-head {
  margin-bottom: 3rem;
}

.s-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.s-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.s-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* HERO */
.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero .hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

/* GRID LAYOUTS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

/* PRICING CARDS */
.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.p-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.p-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.p-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.p-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.p-feats {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.p-feats li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.5rem;
  position: relative;
}

.p-feats li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.p-feats li.no:before {
  content: "—";
}

.p-cta {
  margin-top: 1.5rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

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

.faq-item summary {
  padding: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary:hover {
  background: #f5f5f5;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-item p {
  padding: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* FOOTER */
footer {
  background: #f9f9f9;
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
}

footer a:hover {
  color: var(--ink);
}

/* FORM */
form {
  max-width: 500px;
  margin: 2rem auto;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
}

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

/* TYPOGRAPHY */
h1 { font-size: 2.2rem; font-weight: 800; margin: 1.5rem 0 0.5rem; }
h2 { font-size: 1.8rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
h3 { font-size: 1.3rem; font-weight: 700; margin: 1rem 0 0.5rem; }
h4 { font-size: 1.1rem; font-weight: 700; margin: 0.8rem 0 0.5rem; }
h5 { font-size: 1rem; font-weight: 700; margin: 0.8rem 0 0.5rem; }
h6 { font-size: 0.9rem; font-weight: 700; margin: 0.8rem 0 0.5rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--ink);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

/* UTILITY */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .s-title { font-size: 1.8rem; }
  .hero h1 { font-size: 2rem; }
  nav { padding: 0 4%; }
  main { padding: 0 4%; }
  footer { padding: 2rem 4%; }
  .grid { gap: 1.5rem; }
  .p-grid { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .s-title { font-size: 1.5rem; }
  .hero h1 { font-size: 1.5rem; }
  .p-price { font-size: 1.4rem; }
  nav { padding: 0 3%; }
  main { padding: 0 3%; }
  footer { padding: 1.5rem 3%; }
  .grid { grid-template-columns: 1fr; }
  .p-grid { grid-template-columns: 1fr; }
}

/* REMOVE ALL DECORATIVE ELEMENTS */
[data-reveal], [data-reveal-child] { animation: none !important; }
.revealed, .visible { opacity: 1 !important; }
.hero-pill { display: none; }
.orb { display: none; }
.browser { display: none; }
.brand-divider { display: none; }
.trust-strip { display: none; }
.mock-trust-item { display: none; }
.particle { display: none; }
svg[aria-hidden="true"] { display: none; }

/* DARK THEME FALLBACK */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #ffffff;
    --ink: #000000;
    --border: #cccccc;
    --muted: #666666;
  }
}

/* OVERRIDE ALL DESIGN ELEMENTS */
#wp-liquid-bg { display: none !important; }
body { background: #ffffff !important; }
html { background: #ffffff !important; }

/* Force white background */
:root {
  --bg: #ffffff !important;
  --ink: #000000 !important;
}

/* Remove all dark theme colors */
.dark-theme,
.dark-theme * {
  background: inherit !important;
  color: inherit !important;
}

/* ============================================================
   COOKIE-SAMTYKKE (selvbygget, 2026-07-22) — se assets/js/cookie-consent.js
   ============================================================ */
#wp-cc {
  position: fixed; left: 20px; bottom: 20px; z-index: 9999;
  width: min(400px, calc(100vw - 40px));
  opacity: 0; transform: translateY(16px) scale(0.98);
  pointer-events: none; visibility: hidden;
  transition: opacity 320ms cubic-bezier(0.16,1,0.3,1), transform 320ms cubic-bezier(0.16,1,0.3,1), visibility 320ms;
}
#wp-cc.is-open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.wp-cc-card {
  background: #fffdfb; border: 1px solid #f3e4d2; border-radius: 18px;
  box-shadow: 0 24px 60px rgba(26,15,8,0.18), 0 6px 16px rgba(26,15,8,0.08);
  padding: 1.5rem 1.5rem 1.35rem;
}
.wp-cc-title { font-family: var(--font-display, 'Plus Jakarta Sans', system-ui, sans-serif); font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; color: #1a0f08; margin: 0 0 0.5rem; }
.wp-cc-body { font-size: 0.88rem; line-height: 1.6; color: #4d3a2c; margin: 0 0 1.1rem; }
.wp-cc-link { color: #ea580c; font-weight: 600; text-decoration: none; white-space: nowrap; }
.wp-cc-link:hover { text-decoration: underline; }
.wp-cc-rows { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.15rem; }
.wp-cc-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: #fbf5ee; border: 1px solid #f3e4d2; border-radius: 11px; padding: 0.7rem 0.9rem; }
.wp-cc-row-name { font-size: 0.85rem; font-weight: 700; color: #1a0f08; }
.wp-cc-row-sub { font-size: 0.72rem; color: #968274; margin-top: 1px; }
.wp-cc-always { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #15803d; background: #dcfce7; border-radius: 99px; padding: 0.28rem 0.65rem; white-space: nowrap; }
/* switch */
.wp-cc-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; cursor: pointer; }
.wp-cc-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.wp-cc-slider { position: absolute; inset: 0; background: #e4d5c3; border-radius: 99px; transition: background 200ms; }
.wp-cc-slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.2); transition: transform 200ms cubic-bezier(0.16,1,0.3,1); }
.wp-cc-switch input:checked + .wp-cc-slider { background: #ea580c; }
.wp-cc-switch input:checked + .wp-cc-slider::before { transform: translateX(18px); }
.wp-cc-switch input:focus-visible + .wp-cc-slider { outline: 3px solid rgba(234,88,12,0.4); outline-offset: 2px; }
.wp-cc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.wp-cc-btn { font-family: inherit; font-size: 0.85rem; font-weight: 700; padding: 0.7rem 1rem; border-radius: 10px; cursor: pointer; border: 1px solid transparent; transition: background 180ms, transform 180ms, border-color 180ms; }
.wp-cc-btn-primary { background: #ea580c; color: #fff; box-shadow: 0 4px 14px rgba(234,88,12,0.3); }
.wp-cc-btn-primary:hover { background: #c2410c; transform: translateY(-1px); }
.wp-cc-btn-ghost { background: #fff; color: #4d3a2c; border-color: #f3e4d2; }
.wp-cc-btn-ghost:hover { border-color: #ea580c; color: #ea580c; transform: translateY(-1px); }
.wp-cc-btn:focus-visible { outline: 3px solid rgba(234,88,12,0.4); outline-offset: 2px; }
/* genåbnings-fane */
#wp-cc-reopen {
  position: fixed; left: 20px; bottom: 20px; z-index: 9998;
  display: none; align-items: center; gap: 0.4rem;
  background: #fffdfb; color: #4d3a2c; border: 1px solid #f3e4d2;
  border-radius: 99px; padding: 0.6rem 0.95rem; font-family: inherit; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 8px 24px rgba(26,15,8,0.14);
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1), border-color 200ms, color 200ms;
}
#wp-cc-reopen.is-visible { display: inline-flex; }
#wp-cc-reopen:hover { transform: translateY(-2px); border-color: #ea580c; color: #ea580c; }
#wp-cc-reopen:focus-visible { outline: 3px solid rgba(234,88,12,0.4); outline-offset: 2px; }
#wp-cc-reopen svg { color: #ea580c; }
@media (max-width: 520px) {
  #wp-cc { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .wp-cc-actions { grid-template-columns: 1fr; }
  #wp-cc-reopen { left: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  #wp-cc, .wp-cc-slider::before, .wp-cc-btn, #wp-cc-reopen { transition: none; }
}
