/* Forside — cinematisk variant.
   Hero med fullbleed bg, 6-kort tjeneste-showcase, Google-omtaler i karusell,
   Hallingbod-feature, hvorfor-oss, CTA. Bruker Playfair Display + Outfit.
   Avhenger av tokens.css (nh-* paletter). Egne --x-* tokens definert nedenfor. */

.nhx {
  box-sizing: border-box;
  font-family: 'Outfit', system-ui, sans-serif;
  color: #1A2540;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.nhx *,
.nhx *::before,
.nhx *::after { margin: 0; padding: 0; box-sizing: border-box; }
.nhx a { text-decoration: none; color: inherit; }
.nhx img { display: block; width: 100%; height: 100%; object-fit: cover; }

:root {
  --x-dark: #0F1729;
  --x-mid: #1A2540;
  --x-blue: #24355E;
  --x-light: #2E4272;
  --x-accent: #EC8A5E;
  --x-glow: #F4A57A;
  --x-soft: rgba(236,138,94,0.1);
  --x-snow: #F4F6F9;
  --x-frost: #E4E8EE;
  --x-stone: #8694A8;
  --x-granite: #4F5D73;
  --x-white: #FAFBFD;
  --x-head: 'Playfair Display', Georgia, serif;
  --x-body: 'Outfit', system-ui, sans-serif;
  --x-ease: cubic-bezier(.22,.61,.36,1);
}

/* ════════ HERO ════════ */
.nhx .x-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--x-dark);
}
.nhx .x-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.nhx .x-hero:hover .x-hero-bg { transform: scale(1); }
.nhx .x-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,41,0.6) 0%, rgba(15,23,41,0.2) 40%, rgba(15,23,41,0.7) 80%, rgba(15,23,41,0.95) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(236,138,94,0.08) 0%, transparent 60%);
}
.nhx .x-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
.nhx .x-hero-content > * {
  opacity: 0;
  transform: translateY(40px);
  animation: xUp 1s var(--x-ease) forwards;
}
.nhx .x-hero-content > *:nth-child(1) { animation-delay: .3s; }
.nhx .x-hero-content > *:nth-child(2) { animation-delay: .6s; }
.nhx .x-hero-content > *:nth-child(3) { animation-delay: .9s; }
.nhx .x-hero-content > *:nth-child(4) { animation-delay: 1.1s; }

@keyframes xUp { to { opacity: 1; transform: translateY(0); } }

.nhx .x-hero-label {
  display: inline-block;
  border: 1px solid rgba(236,138,94,0.4);
  border-radius: 50px;
  padding: .45rem 1.4rem;
  color: var(--x-accent);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.nhx .x-hero h1 {
  font-family: var(--x-head);
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  line-height: 1.0;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.nhx .x-hero h1 em { font-style: italic; color: var(--x-accent); }
.nhx .x-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 200;
  max-width: 550px;
  margin: 0 auto 3rem;
}
.nhx .x-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--x-accent);
  color: var(--x-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .4s var(--x-ease);
  border: none;
  cursor: pointer;
}
.nhx .x-hero-cta:hover {
  background: var(--x-glow);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(236,138,94,0.35);
}
.nhx .x-hero-cta svg { width: 18px; height: 18px; transition: transform .3s; }
.nhx .x-hero-cta:hover svg { transform: translateX(4px); }

.nhx .x-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: xUp 1s var(--x-ease) 1.8s forwards;
}
.nhx .x-scroll span { font-size: .65rem; color: rgba(255,255,255,0.3); letter-spacing: .2em; text-transform: uppercase; }
.nhx .x-scroll-dot {
  width: 1px;
  height: 45px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}
.nhx .x-scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--x-accent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* ════════ TJENESTER SHOWCASE ════════ */
.nhx .x-showcase { padding: 8rem 3rem; background: var(--x-white); }
.nhx .x-showcase-inner { max-width: 1200px; margin: 0 auto; }
.nhx .x-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.nhx .x-label-line { width: 28px; height: 1px; background: var(--x-accent); }
.nhx .x-label-text {
  color: var(--x-accent);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nhx .x-title {
  font-family: var(--x-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--x-dark);
  margin-bottom: .8rem;
}
.nhx .x-subtitle {
  font-size: 1.1rem;
  color: var(--x-granite);
  line-height: 1.7;
  font-weight: 300;
  max-width: 550px;
  margin-bottom: 4rem;
}
.nhx .x-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.nhx .x-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--x-mid);
}
.nhx .x-card-img {
  position: absolute;
  inset: 0;
  background: var(--x-blue);
  transition: transform .7s var(--x-ease), opacity .5s;
}
.nhx .x-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .5s; }
.nhx .x-card:hover .x-card-img { transform: scale(1.08); }
.nhx .x-card:hover .x-card-img img { opacity: .4; }
.nhx .x-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,23,41,0.95) 0%, rgba(15,23,41,0.3) 40%, transparent 70%);
  z-index: 1;
}
.nhx .x-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(20px);
  transition: transform .5s var(--x-ease);
}
.nhx .x-card:hover .x-card-text { transform: translateY(0); }
.nhx .x-card-num {
  font-family: var(--x-head);
  font-size: 3rem;
  color: var(--x-accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: .3rem;
}
.nhx .x-card h3 {
  font-family: var(--x-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: .5rem;
}
.nhx .x-card p {
  font-size: .88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--x-ease), opacity .4s;
  opacity: 0;
}
.nhx .x-card:hover p { max-height: 80px; opacity: 1; }
.nhx .x-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--x-accent);
  font-size: .82rem;
  font-weight: 500;
  margin-top: .8rem;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--x-ease) .1s;
}
.nhx .x-card:hover .x-card-arrow { opacity: 1; transform: translateY(0); }
.nhx .x-card-arrow svg { width: 14px; height: 14px; transition: transform .3s; }
.nhx .x-card:hover .x-card-arrow svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .nhx .x-showcase { padding: 5rem 1.5rem; }
  .nhx .x-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .nhx .x-cards { grid-template-columns: 1fr; }
  .nhx .x-card { aspect-ratio: 4/3; }
}

/* ════════ TESTIMONIALS CAROUSEL ════════ */
.nhx .x-reviews { padding: 7rem 5rem; background: var(--x-snow); overflow: hidden; }
.nhx .x-reviews-inner { max-width: 1200px; margin: 0 auto; }
.nhx .x-reviews-header { text-align: center; margin-bottom: 3rem; }
.nhx .x-reviews-header .x-title { max-width: 500px; margin: 0 auto .6rem; }
.nhx .x-reviews-score {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
}
.nhx .x-reviews-stars { display: flex; gap: 2px; }
.nhx .x-reviews-stars svg { width: 20px; height: 20px; fill: var(--x-accent); }
.nhx .x-reviews-rating {
  font-family: var(--x-head);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--x-dark);
  line-height: 1;
}
.nhx .x-reviews-count { font-size: .85rem; color: var(--x-stone); font-weight: 300; }
.nhx .x-reviews-g {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .8rem;
  justify-content: center;
}
.nhx .x-reviews-g svg { width: 16px; height: 16px; }
.nhx .x-reviews-g span { font-size: .8rem; color: var(--x-stone); font-weight: 400; letter-spacing: .02em; }

.nhx .x-rev-track-wrap { position: relative; padding: 0 .5rem; }
.nhx .x-rev-overflow { overflow: hidden; }
.nhx .x-rev-track {
  display: flex;
  gap: 1.2rem;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.nhx .x-rev {
  flex: 0 0 calc(25% - .9rem);
  background: var(--x-white);
  border: 1px solid var(--x-frost);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: box-shadow .3s, border-color .3s;
}
.nhx .x-rev:hover {
  box-shadow: 0 12px 40px rgba(26,37,64,0.06);
  border-color: transparent;
}
.nhx .x-rev-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.nhx .x-rev-stars svg { width: 15px; height: 15px; fill: var(--x-accent); }
.nhx .x-rev-text {
  font-size: .92rem;
  color: var(--x-granite);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.2rem;
}
.nhx .x-rev-author {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--x-frost);
}
.nhx .x-rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .82rem;
  font-weight: 500;
  flex-shrink: 0;
}
.nhx .x-rev-name { font-size: .88rem; font-weight: 500; color: var(--x-dark); line-height: 1.3; }
.nhx .x-rev-meta { font-size: .72rem; color: var(--x-stone); font-weight: 300; }

.nhx .x-rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--x-white);
  border: 1px solid var(--x-frost);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(26,37,64,0.08);
}
.nhx .x-rev-nav:hover { border-color: var(--x-accent); background: var(--x-accent); }
.nhx .x-rev-nav:hover svg { stroke: white; }
.nhx .x-rev-nav svg { width: 16px; height: 16px; stroke: var(--x-granite); stroke-width: 2; fill: none; }
.nhx .x-rev-prev { left: 0; }
.nhx .x-rev-next { right: 0; }

.nhx .x-rev-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.nhx .x-rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--x-frost);
  cursor: pointer;
  transition: all .3s;
}
.nhx .x-rev-dot.active { background: var(--x-accent); transform: scale(1.3); }

@media (max-width: 1100px) { .nhx .x-rev { flex: 0 0 calc(33.333% - .8rem); } }
@media (max-width: 800px) {
  .nhx .x-reviews { padding: 5rem 2.5rem; }
  .nhx .x-rev { flex: 0 0 calc(50% - .6rem); }
}
@media (max-width: 550px) {
  .nhx .x-rev { flex: 0 0 100%; }
  .nhx .x-rev-nav { width: 34px; height: 34px; }
}

/* ════════ HALLINGBOD FEATURE ════════ */
.nhx .x-feature { padding: 0; background: var(--x-dark); position: relative; overflow: hidden; }
.nhx .x-feature-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.nhx .x-feature-img { position: relative; overflow: hidden; }
.nhx .x-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.nhx .x-feature:hover .x-feature-img img { transform: scale(1.05); }
.nhx .x-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  position: relative;
}
.nhx .x-feature-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(236,138,94,0.05) 0%, transparent 60%);
}
.nhx .x-feature-text > * { position: relative; z-index: 2; }
.nhx .x-feature .x-title { color: var(--x-snow); margin-bottom: 1rem; }
.nhx .x-feature-desc {
  font-size: 1.1rem;
  color: var(--x-stone);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 450px;
}
.nhx .x-feature-items { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 2.5rem; }
.nhx .x-fi {
  background: rgba(244,246,249,0.04);
  border: 1px solid rgba(244,246,249,0.07);
  border-radius: 6px;
  padding: 1rem;
  transition: all .3s;
}
.nhx .x-fi:hover { border-color: rgba(236,138,94,0.25); background: rgba(236,138,94,0.04); }
.nhx .x-fi h4 {
  font-family: var(--x-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--x-snow);
  margin-bottom: .2rem;
}
.nhx .x-fi p { font-size: .78rem; color: var(--x-stone); font-weight: 300; line-height: 1.4; }
.nhx .x-feature-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(236,138,94,0.5);
  border-radius: 50px;
  padding: .8rem 2rem;
  color: var(--x-accent);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .35s var(--x-ease);
}
.nhx .x-feature-btn:hover {
  background: var(--x-accent);
  color: var(--x-dark);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .nhx .x-feature-grid { grid-template-columns: 1fr; }
  .nhx .x-feature-img { height: 50vh; }
  .nhx .x-feature-text { padding: 3rem 1.5rem; }
}

/* ════════ HVORFOR OSS ════════ */
.nhx .x-why {
  padding: 8rem 3rem;
  background: var(--x-white);
  border-top: 1px solid var(--x-frost);
}
.nhx .x-why-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.nhx .x-why .x-title { max-width: 500px; margin: 0 auto .8rem; }
.nhx .x-why .x-subtitle { max-width: 450px; margin: 0 auto 4rem; }
.nhx .x-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}
.nhx .x-why-card {
  padding: 2rem;
  background: var(--x-snow);
  border-radius: 10px;
  border: 1px solid var(--x-frost);
  transition: all .4s var(--x-ease);
}
.nhx .x-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,37,64,0.06);
  border-color: transparent;
}
.nhx .x-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--x-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--x-accent);
  margin-bottom: 1.2rem;
}
.nhx .x-why-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--x-dark); margin-bottom: .5rem; }
.nhx .x-why-card p { font-size: .88rem; color: var(--x-stone); line-height: 1.55; font-weight: 300; }

@media (max-width: 900px) {
  .nhx .x-why { padding: 5rem 1.5rem; }
  .nhx .x-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .nhx .x-why-grid { grid-template-columns: 1fr; }
}

/* ════════ AVTALER ════════ */
.nhx .x-plans { padding: 8rem 3rem; background: var(--x-snow); }
.nhx .x-plans-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.nhx .x-plans .x-title { max-width: 520px; margin: 0 auto .8rem; }
.nhx .x-plans .x-subtitle { max-width: 480px; margin: 0 auto 4rem; }
.nhx .x-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.nhx .x-plan {
  position: relative;
  background: var(--x-white);
  border: 1px solid var(--x-frost);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--x-ease), box-shadow .4s var(--x-ease), border-color .4s var(--x-ease);
}
.nhx .x-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,37,64,0.06);
  border-color: transparent;
}
.nhx .x-plan--featured {
  background: var(--x-dark);
  color: var(--x-snow);
  border-color: var(--x-dark);
}
.nhx .x-plan--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(ellipse at top right, rgba(236,138,94,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.nhx .x-plan > * { position: relative; z-index: 1; }

.nhx .x-plan-tag {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
  background: var(--x-soft);
  color: var(--x-accent);
  margin-bottom: 1.5rem;
}
.nhx .x-plan--featured .x-plan-tag {
  background: var(--x-accent);
  color: var(--x-dark);
}
.nhx .x-plan-name {
  font-family: var(--x-head);
  font-size: 2rem;
  font-weight: 500;
  color: var(--x-dark);
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.nhx .x-plan--featured .x-plan-name { color: var(--x-snow); }

.nhx .x-plan-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--x-frost);
}
.nhx .x-plan--featured .x-plan-price { border-bottom-color: rgba(244,246,249,0.15); }
.nhx .x-plan-price .amount {
  font-family: var(--x-head);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--x-dark);
}
.nhx .x-plan--featured .x-plan-price .amount { color: var(--x-accent); }
.nhx .x-plan-price .unit {
  font-size: .82rem;
  color: var(--x-stone);
  font-weight: 300;
}

.nhx .x-plan-desc {
  font-size: .92rem;
  color: var(--x-granite);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex: 1;
}
.nhx .x-plan--featured .x-plan-desc { color: var(--x-stone); }

.nhx .x-plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.nhx .x-plan ul li {
  display: flex;
  gap: .65rem;
  font-size: .9rem;
  color: var(--x-granite);
  font-weight: 300;
  line-height: 1.5;
}
.nhx .x-plan ul li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--x-accent);
}
.nhx .x-plan--featured ul li { color: rgba(244,246,249,0.85); }

.nhx .x-plans-note {
  font-size: .85rem;
  color: var(--x-stone);
  margin-top: 2.5rem;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .nhx .x-plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 900px) {
  .nhx .x-plans { padding: 5rem 1.5rem; }
}

/* ════════ CTA ════════ */
.nhx .x-cta {
  padding: 8rem 3rem;
  background: var(--x-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nhx .x-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(236,138,94,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(46,66,114,0.15) 0%, transparent 50%);
}
.nhx .x-cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.nhx .x-cta .x-title { color: white; margin-bottom: 1rem; }
.nhx .x-cta-sub {
  font-size: 1.1rem;
  color: var(--x-stone);
  line-height: 1.7;
  font-weight: 200;
  margin-bottom: 3rem;
}
.nhx .x-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--x-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  font-weight: 400;
  margin-bottom: 1rem;
  transition: color .3s;
}
.nhx .x-cta-phone:hover { color: var(--x-accent); }
.nhx .x-cta-phone svg { width: 28px; height: 28px; color: var(--x-accent); }
.nhx .x-cta-email {
  display: block;
  color: var(--x-stone);
  font-size: .95rem;
  font-weight: 300;
  margin-bottom: 3rem;
  transition: color .3s;
}
.nhx .x-cta-email:hover { color: var(--x-accent); }
.nhx .x-cta-address {
  font-size: .8rem;
  color: rgba(134,148,168,0.5);
  letter-spacing: .08em;
  font-weight: 300;
}

@media (max-width: 768px) {
  .nhx .x-cta { padding: 5rem 1.5rem; }
}

/* Reduced motion: drep alle animasjoner */
@media (prefers-reduced-motion: reduce) {
  .nhx .x-hero-content > *,
  .nhx .x-scroll,
  .nhx .x-hero-bg,
  .nhx .x-feature-img img,
  .nhx .x-card-img,
  .nhx .x-card:hover .x-card-img,
  .nhx .x-rev-track {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
