/* ═══════════════════════════════════════
   GB Solutions – Premium Style
   Dark theme · Gradient accents · Wow-factor
   ═══════════════════════════════════════ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --surface: #16161f;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #e4e4e7;
  --text-dim: #9d9db4;
  --text-bright: #ffffff;
  --accent-1: #6366f1;
  --accent-2: #a855f7;
  --accent-3: #ec4899;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  --glow: 0 0 40px rgba(99,102,241,0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text--gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CURSOR --- */
.cursor, .cursor-follower {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  mix-blend-mode: difference; transition: transform 0.15s ease;
  display: none;
}
.cursor { width: 8px; height: 8px; background: #fff; }
.cursor-follower { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.5); transition: transform 0.3s ease, width 0.3s, height 0.3s; }
@media (hover: hover) { .cursor, .cursor-follower { display: block; } body { cursor: none; } a, button, input, textarea, select { cursor: none; } }

/* --- LOADER --- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo { display: flex; align-items: center; gap: 12px; }
.loader__gb {
  font-family: var(--font-display); font-weight: 800; font-size: 2.5rem;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.loader__line {
  width: 60px; height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; position: relative;
}
.loader__line::after {
  content: ''; position: absolute; left: -60px; top: 0; width: 60px; height: 100%;
  background: var(--gradient); border-radius: 3px;
  animation: loaderSlide 1s ease infinite;
}
@keyframes loaderSlide { to { left: 60px; } }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,15,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
}
.nav.nav--hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.nav__gb { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav__sol { color: var(--text-bright); }
.nav__links { display: flex; gap: 32px; }
.nav__links a { color: var(--text-dim); font-size: 0.9rem; font-weight: 500; transition: var(--transition); position: relative; }
.nav__links a:hover { color: var(--text-bright); }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient); transition: var(--transition); border-radius: 2px; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--text-bright); }
.nav__cta { font-size: 0.85rem !important; padding: 10px 24px !important; }
.nav__burger { display: none; background: none; border: none; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,0.95); backdrop-filter: blur(20px); padding: 24px;
    border-bottom: 1px solid var(--border); gap: 16px;
  }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  border-radius: 50px; font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  border: none; transition: var(--transition); white-space: nowrap;
}
.btn--glow {
  background: var(--gradient); color: #fff; box-shadow: var(--glow);
  position: relative; overflow: hidden;
}
.btn--glow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 50%, rgba(255,255,255,0.1));
  opacity: 0; transition: var(--transition);
}
.btn--glow:hover::before { opacity: 1; }
.btn--glow:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(99,102,241,0.4); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.03); }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border); width: 100%; justify-content: center; }
.btn--outline:hover { border-color: var(--accent-1); color: var(--text-bright); }
.btn--large { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* --- HERO --- */
.hero {
  min-height: 100vh; position: relative; display: flex; flex-direction: column;
  justify-content: center; padding-top: 80px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.35; will-change: transform; }
.hero__orb--1 { width: 600px; height: 600px; background: var(--accent-1); top: -200px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.hero__orb--2 { width: 400px; height: 400px; background: var(--accent-2); bottom: -100px; left: -100px; animation: orbFloat 10s ease-in-out infinite reverse; }
.hero__orb--3 { width: 300px; height: 300px; background: var(--accent-3); top: 50%; left: 50%; animation: orbFloat 12s ease-in-out infinite; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 40px 0;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.85rem; color: var(--text-dim); margin-bottom: 24px;
}
.badge__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1; color: var(--text-bright); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__sub { font-size: 1.15rem; color: var(--text-dim); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero canvas */
.hero__canvas-wrap { position: relative; width: 100%; height: 100%; min-height: 400px; }
#heroCanvas { width: 100%; height: 100%; border-radius: var(--radius); }

/* Floating badges */
.hero__float {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: rgba(18,18,26,0.9); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.8rem; color: var(--text); backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); z-index: 2;
}
.hero__float svg { color: var(--accent-1); width: 18px; height: 18px; }
.hero__float--1 { top: 10%; right: -20px; animation: floatBadge 4s ease-in-out infinite; }
.hero__float--2 { bottom: 30%; left: -30px; animation: floatBadge 5s ease-in-out infinite 1s; }
.hero__float--3 { bottom: 10%; right: 10%; animation: floatBadge 4.5s ease-in-out infinite 0.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats bar */
.hero__stats { position: relative; z-index: 1; margin-top: 40px; padding: 32px 0; border-top: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--text-bright); }
.stat__suffix { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--accent-1); }
.stat__label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__canvas-wrap { min-height: 250px; }
  .hero__float { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- TRUST BAR --- */
.trust-bar { padding: 48px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-bar__label {
  text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 24px; font-weight: 600;
}
.trust-bar__track {
  display: flex; gap: 60px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-dim); opacity: 0.5;
  transition: var(--transition);
}
.trust-bar__item:hover { opacity: 1; color: var(--text); }
.trust-bar__item svg { width: 24px; height: 24px; }

/* --- SECTIONS COMMON --- */
.section__header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section__tag {
  display: inline-block; padding: 6px 16px; background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2); border-radius: 50px; font-size: 0.8rem;
  color: var(--accent-1); font-weight: 600; margin-bottom: 16px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; color: var(--text-bright); letter-spacing: -0.02em;
}
.section__sub { color: var(--text-dim); font-size: 1.05rem; margin-top: 16px; line-height: 1.7; }
.section__cta { text-align: center; margin-top: 48px; }

/* --- TJENESTER --- */
.tjenester { padding: 120px 0; }
.tjenester__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tjeneste-kort {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; transition: var(--transition); position: relative; overflow: hidden;
  contain: layout;
}
.tjeneste-kort::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99,102,241,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s; z-index: 0;
}
.tjeneste-kort:hover::before { opacity: 1; }
.tjeneste-kort:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.tjeneste-kort__img {
  border-radius: 0; overflow: hidden; height: 200px; position: relative;
}
.tjeneste-kort__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tjeneste-kort:hover .tjeneste-kort__img img { transform: scale(1.05); }
.tjeneste-kort__body { padding: 28px; position: relative; z-index: 1; }
.tjeneste-kort h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.tjeneste-kort p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.tjeneste-kort__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tjeneste-kort__tags li {
  padding: 4px 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.75rem; color: var(--text-dim);
}
@media (max-width: 768px) { .tjenester__grid { grid-template-columns: 1fr; } }

/* --- COMPARISON (Hvorfor oss) --- */
.comparison { padding: 120px 0; background: var(--surface); }
.comparison__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto;
}
.comparison__col {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px;
}
.comparison__col--them { opacity: 0.7; }
.comparison__col--us {
  border-color: var(--accent-1); opacity: 1;
  background: linear-gradient(180deg, rgba(99,102,241,0.08), var(--bg-card));
  box-shadow: 0 0 40px rgba(99,102,241,0.1);
}
.comparison__col h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--text-bright); margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.comparison__col--them h3 { color: var(--text-dim); }
.comparison__list { display: flex; flex-direction: column; gap: 16px; }
.comparison__item {
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; line-height: 1.5;
  color: var(--text);
}
.comparison__col--them .comparison__item { color: var(--text-dim); }
.comparison__icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; }
.comparison__icon--no { background: rgba(239,68,68,0.15); color: #ef4444; }
.comparison__icon--yes { background: rgba(34,197,94,0.15); color: #22c55e; }
@media (max-width: 768px) { .comparison__grid { grid-template-columns: 1fr; } }

/* --- SHOWCASE PREVIEW --- */
.showcase { padding: 120px 0; }
.showcase__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.showcase__item { transition: var(--transition); }
.showcase__item:hover { transform: translateY(-8px); }
.showcase__img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px;
  height: 240px;
}
.showcase__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.showcase__item:hover .showcase__img-wrap img { transform: scale(1.05); }
.showcase__overlay { position: absolute; top: 12px; left: 12px; }
.showcase__type {
  display: inline-block; padding: 4px 12px; background: rgba(99,102,241,0.9);
  border-radius: 50px; font-size: 0.75rem; color: #fff; font-weight: 600;
}
.showcase__info h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-bright); margin-bottom: 6px; }
.showcase__info p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
/* --- SHOWCASE METRICS --- */
.showcase__metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.metric-badge {
  padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
  background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}
@media (max-width: 768px) { .showcase__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* --- TESTIMONIALS --- */
.testimonials { padding: 120px 0; background: var(--surface); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; transition: var(--transition); perspective: 800px;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.testimonial__stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial__stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.testimonial__quote {
  font-size: 1rem; line-height: 1.7; color: var(--text); font-style: italic;
  margin-bottom: 24px; position: relative;
}
.testimonial__quote::before {
  content: '"'; font-family: Georgia, serif; font-size: 4rem; color: var(--accent-1);
  opacity: 0.2; position: absolute; top: -20px; left: -8px; line-height: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
}
.testimonial__name { font-weight: 600; color: var(--text-bright); font-size: 0.9rem; }
.testimonial__role { font-size: 0.8rem; color: var(--text-dim); }
@media (max-width: 768px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* --- PROSESS --- */
.prosess { padding: 120px 0; }
.prosess__steg { max-width: 700px; margin: 0 auto; position: relative; }
.steg { display: flex; gap: 32px; margin-bottom: 48px; position: relative; padding-left: 40px; }
.steg::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.steg:last-child::before { display: none; }
.steg__nummer {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
.steg__dag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--accent-1);
  font-weight: 600;
  margin-bottom: 8px;
}
.steg__innhold { padding-top: 0; }
.steg__innhold h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-bright); margin-bottom: 6px; }
.steg__innhold p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }

/* --- PRISER PREVIEW --- */
.priser-preview { padding: 120px 0; background: var(--surface); }
.priser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pris-kort {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; transition: var(--transition); position: relative;
}
.pris-kort:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.pris-kort--featured {
  border-color: var(--accent-1);
  background: linear-gradient(180deg, rgba(99,102,241,0.08), var(--bg-card));
  transform: scale(1.04);
}
.pris-kort--featured:hover { transform: scale(1.04) translateY(-4px); }
.pris-kort__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; background: var(--gradient); border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; color: #fff; white-space: nowrap;
}
.pris-kort__header { margin-bottom: 24px; }
.pris-kort__header h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-bright); margin-bottom: 6px; }
.pris-kort__header p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }
.pris-kort__pris { margin-bottom: 28px; display: flex; align-items: baseline; gap: 4px; }
.pris__belop { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text-bright); }
.pris__valuta { font-size: 1.2rem; color: var(--text-dim); font-weight: 600; }
.pris-kort__liste { margin-bottom: 32px; }
.pris-kort__liste li {
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text);
  padding-left: 28px; position: relative;
}
.pris-kort__liste li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  color: var(--accent-1); font-weight: 700; font-size: 0.85rem;
}
.pris-kort__liste li:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .priser__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pris-kort--featured { transform: none; }
  .pris-kort--featured:hover { transform: translateY(-4px); }
}

/* --- FAQ --- */
.faq { padding: 100px 0; }
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; color: var(--text-bright);
  font-family: var(--font); font-size: 1rem; font-weight: 600; text-align: left;
  transition: var(--transition);
}
.faq__question:hover { color: var(--accent-1); }
.faq__question svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-dim); }
.faq__item.open .faq__question svg { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq__item.open .faq__answer { max-height: 200px; padding-bottom: 20px; }
.faq__answer p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }

/* --- CTA BANNER --- */
.cta-banner { padding: 100px 0; }
.cta-banner__inner {
  text-align: center; padding: 80px 40px; border-radius: 24px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(99,102,241,0.08), rgba(168,85,247,0.04));
  border: 1px solid rgba(99,102,241,0.2);
}
.cta-banner__inner::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(99,102,241,0.08); filter: blur(80px); top: -100px; right: -100px;
}
.cta-banner__inner::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(168,85,247,0.06); filter: blur(60px); bottom: -80px; left: -80px;
}
.cta-banner__inner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--text-bright); line-height: 1.2; letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.cta-banner__inner p { color: var(--text-dim); font-size: 1.05rem; margin: 16px auto 32px; max-width: 500px; position: relative; z-index: 1; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* --- FOOTER --- */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand p { color: var(--text-dim); font-size: 0.9rem; margin-top: 12px; max-width: 280px; }
.footer__lenker { display: flex; flex-direction: column; gap: 10px; }
.footer__lenker h4 { font-family: var(--font-display); font-weight: 700; color: var(--text-bright); font-size: 0.9rem; margin-bottom: 4px; }
.footer__lenker a, .footer__lenker span { font-size: 0.85rem; color: var(--text-dim); transition: var(--transition); }
.footer__lenker a:hover { color: var(--text-bright); }
.footer__bunn { padding: 20px 0; border-top: 1px solid var(--border); }
.footer__bunn-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bunn p { font-size: 0.8rem; color: var(--text-dim); }
.footer__bunn a { font-size: 0.8rem; color: var(--text-dim); }
.footer__bunn a:hover { color: var(--text-bright); }
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bunn-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* --- CHATBOT WIDGET --- */
.chatbot-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 4px 24px rgba(99,102,241,0.4);
  transition: var(--transition); cursor: pointer;
  animation: chatPulse 3s ease-in-out infinite;
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(99,102,241,0.5); }
.chatbot-toggle svg { width: 26px; height: 26px; }
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(99,102,241,0.4); }
  50% { box-shadow: 0 4px 40px rgba(99,102,241,0.6); }
}

.chatbot-window {
  position: fixed; bottom: 96px; right: 24px; z-index: 9001;
  width: 370px; height: 520px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chatbot-window.open {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.chatbot__header {
  padding: 16px 20px; background: var(--gradient); border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; justify-content: space-between;
}
.chatbot__header-info { display: flex; align-items: center; gap: 10px; }
.chatbot__header-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: grid; place-items: center; font-weight: 700; font-size: 0.8rem;
}
.chatbot__header-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.chatbot__header-status { font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.chatbot__close {
  background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer;
  transition: var(--transition);
}
.chatbot__close:hover { color: #fff; }

.chatbot__messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px;
}
.chatbot__messages::-webkit-scrollbar { width: 4px; }
.chatbot__messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.chat-msg { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.88rem; line-height: 1.55; }
.chat-msg a { color: var(--accent-1); text-decoration: underline; }
.chat-msg--bot {
  align-self: flex-start; background: var(--surface); color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg--user {
  align-self: flex-end; background: var(--gradient); color: #fff;
  border-bottom-right-radius: 4px;
}

.chatbot__typing {
  align-self: flex-start; padding: 12px 20px; background: var(--surface);
  border-radius: 16px; border-bottom-left-radius: 4px;
  display: flex; gap: 4px; align-items: center;
}
.chatbot__typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim);
  animation: typingDot 1.4s infinite;
}
.chatbot__typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chatbot__input-area {
  padding: 12px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
}
.chatbot__input {
  flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font); font-size: 0.88rem;
  outline: none; transition: var(--transition);
}
.chatbot__input:focus { border-color: var(--accent-1); }
.chatbot__input::placeholder { color: var(--text-dim); }
.chatbot__send {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.chatbot__send:hover { transform: scale(1.1); }

.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; margin-top: 4px;
}
.chat-quick-btn {
  padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border-hover);
  background: rgba(255,255,255,0.04); color: var(--text); font-family: var(--font);
  font-size: 0.82rem; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.chat-quick-btn:hover {
  background: var(--accent-1); color: #fff; border-color: var(--accent-1);
}

@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 32px); right: 16px; bottom: 88px; height: 70vh; }
  .chatbot-toggle { bottom: 16px; right: 16px; }
}

/* --- PAGE HERO (sub-pages) --- */
.page-hero { position: relative; padding: 180px 0 80px; overflow: hidden; text-align: center; }
.page-hero__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.15; color: var(--text-bright); letter-spacing: -0.02em; margin-top: 12px;
}
.page-hero__sub { color: var(--text-dim); font-size: 1.1rem; margin-top: 16px; line-height: 1.7; }

/* --- TJENESTE DETAIL (tjenester.html) --- */
.tjeneste-detail { padding: 100px 0; }
.tjeneste-detail:nth-child(even) { background: var(--surface); }
.tjeneste-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tjeneste-detail--reverse .tjeneste-detail__grid { direction: rtl; }
.tjeneste-detail--reverse .tjeneste-detail__grid > * { direction: ltr; }
.tjeneste-detail__img { border-radius: var(--radius); overflow: hidden; }
.tjeneste-detail__img img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.tjeneste-detail__content h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--text-bright); margin: 12px 0 16px; letter-spacing: -0.02em;
}
.tjeneste-detail__content > p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.tjeneste-detail__features { margin-bottom: 32px; }
.tjeneste-detail__features li {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
  color: var(--text); font-size: 0.95rem; line-height: 1.5;
}
.tjeneste-detail__features svg { color: var(--accent-1); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) {
  .tjeneste-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .tjeneste-detail--reverse .tjeneste-detail__grid { direction: ltr; }
}

/* --- SHOWCASE FULL (showcase.html) --- */
.showcase-full { padding: 80px 0 120px; }
.showcase-full__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.showcase-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.showcase-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.showcase-card__img { height: 280px; overflow: hidden; }
.showcase-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.showcase-card:hover .showcase-card__img img { transform: scale(1.05); }
.showcase-card__body { padding: 28px; }
.showcase-card__body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-bright); margin: 8px 0; }
.showcase-card__body p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.showcase-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.showcase-card__tags li {
  padding: 4px 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.75rem; color: var(--text-dim);
}
@media (max-width: 768px) { .showcase-full__grid { grid-template-columns: 1fr; } }

/* --- OM STORY --- */
.om-story { padding: 100px 0; }
.om-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.om-story__img { border-radius: var(--radius); overflow: hidden; }
.om-story__img img { width: 100%; height: auto; border-radius: var(--radius); }
.om-story__content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text-bright); margin-bottom: 20px; }
.om-story__intro { font-size: 1.15rem; line-height: 1.7; color: var(--text); margin-bottom: 16px; }
.om-story__content p { color: var(--text-dim); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
@media (max-width: 768px) { .om-story__grid { grid-template-columns: 1fr; } }

/* --- VERDIER --- */
.verdier { padding: 100px 0; background: var(--surface); }
.verdier__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.verdi-kort {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: var(--transition);
}
.verdi-kort:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.verdi-kort__icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,0.1); border-radius: 14px; margin-bottom: 16px; color: var(--accent-1);
}
.verdi-kort h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.verdi-kort p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 768px) { .verdier__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .verdier__grid { grid-template-columns: 1fr; } }

/* --- TEAM SECTION --- */
.team-section { padding: 100px 0; }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 800px; margin: 0 auto; }
.team-profil {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; transition: var(--transition);
}
.team-profil:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.team-profil__avatar {
  width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; font-weight: 800; font-size: 1.4rem; color: #fff;
}
.team-profil h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-bright); margin-bottom: 4px; }
.team-profil__rolle { font-size: 0.85rem; color: var(--accent-1); font-weight: 600; display: block; margin-bottom: 14px; }
.team-profil p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.team-profil__kontakt { display: flex; justify-content: center; gap: 12px; }
.team-profil__kontakt a { color: var(--text-dim); transition: var(--transition); }
.team-profil__kontakt a:hover { color: var(--accent-1); }
@media (max-width: 768px) { .team__grid { grid-template-columns: 1fr; } }

/* --- TILLEGG --- */
.tillegg { padding: 80px 0; background: var(--surface); }
.tillegg__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tillegg-kort {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: var(--transition);
}
.tillegg-kort:hover { border-color: var(--border-hover); }
.tillegg-kort h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.tillegg__pris { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent-1); display: block; margin-bottom: 12px; }
.tillegg-kort p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 768px) { .tillegg__grid { grid-template-columns: 1fr; } }

/* --- BOOKING --- */
.booking { padding: 80px 0 0; }
.booking__inner {
  text-align: center; max-width: 680px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 60px 48px; position: relative; overflow: hidden;
}
.booking__inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.booking__icon { margin-bottom: 24px; }
.booking__title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--text-bright); margin-bottom: 12px;
}
.booking__sub {
  color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.booking__embed { margin-bottom: 28px; }
.booking__placeholder {
  background: rgba(255,255,255,0.02); border: 1px dashed var(--border);
  border-radius: var(--radius-sm); padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.booking__placeholder p { color: var(--text-dim); font-size: 0.9rem; }
.booking__fallback {
  margin-bottom: 24px; padding: 16px 24px;
  background: rgba(99,102,241,0.06); border-radius: var(--radius-sm);
}
.booking__fallback p { color: var(--text-dim); font-size: 0.95rem; }
.booking__fallback a { color: var(--accent-1); font-weight: 600; transition: var(--transition); }
.booking__fallback a:hover { color: var(--accent-2); }
@media (max-width: 768px) {
  .booking__inner { padding: 40px 24px; }
}

/* --- KONTAKT --- */
.kontakt { padding: 120px 0; background: var(--surface); }
.kontakt__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.kontakt__info h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-bright); }
.kontakt__info p { color: var(--text-dim); font-size: 1rem; margin-top: 16px; line-height: 1.7; }
.kontakt__detaljer { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.kontakt__rad { display: flex; align-items: center; gap: 14px; color: var(--text); }
.kontakt__rad svg { color: var(--accent-1); flex-shrink: 0; }
.kontakt__rad a:hover { color: var(--accent-1); }
.kontakt__kart { margin-top: 32px; border-radius: var(--radius); overflow: hidden; }

.kontakt__skjema {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px;
}
.skjema__rad { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.skjema__felt { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.skjema__felt label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.skjema__felt input, .skjema__felt textarea, .skjema__felt select {
  padding: 14px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.skjema__felt input:focus, .skjema__felt textarea:focus, .skjema__felt select:focus {
  border-color: var(--accent-1); box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.skjema__felt select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238b8b9e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.skjema__felt textarea { resize: vertical; min-height: 100px; }
.skjema__privacy { font-size: 0.8rem; color: var(--text-dim); margin-top: 16px; text-align: center; }
.skjema__privacy a { color: var(--accent-1); }
@media (max-width: 768px) {
  .kontakt__inner { grid-template-columns: 1fr; }
  .skjema__rad { grid-template-columns: 1fr; }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* --- ACCESSIBILITY --- */
/* Focus-visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(99,102,241,0.25);
}

/* Screen reader only utility class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--accent-1);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  z-index: 100000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* --- TESTIMONIALS --- */
.omtaler { padding: 100px 0; }
.omtaler__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.omtale-kort {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: var(--transition);
}
.omtale-kort:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.omtale-kort__stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.omtale-kort__tekst { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.omtale-kort__forfatter { display: flex; align-items: center; gap: 12px; }
.omtale-kort__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.omtale-kort__forfatter strong { color: var(--text-bright); font-size: 0.9rem; display: block; }
.omtale-kort__forfatter span { color: var(--text-dim); font-size: 0.8rem; }

@media (max-width: 768px) {
  .omtaler__grid { grid-template-columns: 1fr; }
}

/* --- GUARANTEE BADGE --- */
.garanti { margin-top: 48px; }
.garanti__inner {
  display: flex; align-items: center; gap: 20px;
  background: rgba(34, 197, 94, 0.06); border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius); padding: 24px 32px; max-width: 600px; margin: 0 auto;
}
.garanti__inner svg { color: #22c55e; flex-shrink: 0; }
.garanti__inner strong { color: var(--text-bright); font-size: 1rem; display: block; margin-bottom: 4px; }
.garanti__inner p { color: var(--text-dim); font-size: 0.88rem; margin: 0; }

/* --- HERO GUARANTEE TEXT --- */
.hero__guarantee {
  color: var(--text-dim); font-size: 0.85rem; margin-top: 16px;
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
