/* ═══════════════════════════════════════════════════════════
   mp-dark.css — MeshPro dark design system
   Handoff: MeshPro landing page (dark redesign) 2026-08-12
═══════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  /* surfaces */
  --bg:               #15171F;
  --bg-footer-end:    #10121A;
  --card:             rgba(255,255,255,.03);
  --card-glass:       rgba(17,18,26,.60);
  --card-glass-quote: rgba(17,18,26,.62);
  --input-bg:         rgba(0,0,0,.25);
  --header-bg:        rgba(21,23,31,.82);

  /* purple */
  --primary:          #7367F0;
  --primary-light:    #A59CFF;
  --primary-lighter:  #C4BDFF;

  /* accents */
  --success:          #28C76F;

  /* borders */
  --border:           rgba(255,255,255,.09);
  --border-strong:    rgba(255,255,255,.14);
  --border-hover:     rgba(165,156,255,.50);

  /* text */
  --text:             rgba(255,255,255,.72);
  --text-strong:      #ffffff;
  --text-85:          rgba(255,255,255,.85);
  --text-70:          rgba(255,255,255,.70);
  --text-62:          rgba(255,255,255,.62);
  --text-58:          rgba(255,255,255,.58);
  --text-55:          rgba(255,255,255,.55);
  --text-50:          rgba(255,255,255,.50);
  --text-45:          rgba(255,255,255,.45);
  --text-40:          rgba(255,255,255,.40);

  /* radii */
  --r-btn:    8px;
  --r-btn-lg: 10px;
  --r-input:  10px;
  --r-tile:   12px;
  --r-card:   14px;
  --r-glass:  16px;
  --r-pill:   100px;

  /* layout */
  --container: 1240px;
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-strong);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--primary-light);
  text-decoration: none;
}

a:hover {
  color: var(--primary-lighter);
}

img {
  max-width: 100%;
  display: block;
}

/* ── Shared layout helpers ─────────────────────────────────── */
.mp-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Glow base ─────────────────────────────────────────────── */
.mp-glow {
  position: absolute;
  pointer-events: none;
}

/* ── Eyebrow ───────────────────────────────────────────────── */
.mp-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.mp-eyebrow--bright {
  color: var(--primary-lighter);
}

/* ── Section lede ──────────────────────────────────────────── */
.mp-lede {
  font-size: 17px;
  line-height: 1.6;
}

/* ── Buttons ───────────────────────────────────────────────── */
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s, border-color .18s, box-shadow .18s, color .18s;
  white-space: nowrap;
}

.mp-btn--primary {
  background: var(--primary);
  color: #fff;
}
.mp-btn--primary:hover {
  background: #8578f2;
  color: #fff;
}

.mp-btn--secondary {
  background: rgba(255,255,255,.05);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.mp-btn--secondary:hover {
  border-color: rgba(165,156,255,.55);
  background: rgba(115,103,240,.14);
  color: #fff;
}

/* sizes */
.mp-btn--sm  { padding: 10px 20px; border-radius: var(--r-btn);    font-size: 14px; }
.mp-btn--md  { padding: 13px 24px; border-radius: var(--r-btn);    font-size: 14px; }
.mp-btn--lg  { padding: 16px 30px; border-radius: var(--r-btn-lg); font-size: 16px; }


/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.mp-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mp-header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}

/* logo lockup */
.mp-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mp-header__logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  display: block;
}

.mp-header__wordmark {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

/* nav links */
.mp-header__nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.mp-header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s;
}
.mp-header__nav a:hover { color: #fff; }

/* right cluster */
.mp-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.mp-header__actions .mp-btn--primary {
  box-shadow: 0 4px 16px rgba(115,103,240,.35);
}


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.mp-hero {
  position: relative;
  padding: 96px 32px 104px;
  text-align: center;
  overflow: hidden;
}

/* glows */
.mp-hero__glow-main {
  width: 1100px;
  height: 900px;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(115,103,240,.32), transparent 62%);
  border-radius: 50%;
}

.mp-hero__glow-green {
  width: 620px;
  height: 620px;
  top: 120px;
  right: -180px;
  background: radial-gradient(circle, rgba(40,199,111,.12), transparent 66%);
  border-radius: 50%;
}

/* content */
.mp-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

/* status pill */
.mp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 7px 16px;
  margin-bottom: 32px;
}

.mp-hero__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.mp-hero__pill-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}

/* h1 */
.mp-hero__h1 {
  font-size: 66px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
  max-width: 20em;
  margin: 0 auto 20px;
  text-wrap: balance;
}

.mp-hero__accent { color: var(--primary-light); }

/* lede */
.mp-hero__lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-62);
  max-width: 34em;
  margin: 0 auto 40px;
  text-wrap: pretty;
}

/* CTA buttons */
.mp-hero__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.mp-hero__buttons .mp-btn--primary {
  box-shadow: 0 10px 30px rgba(115,103,240,.45);
}


/* ════════════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════════════ */
.mp-stats {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
  padding: 40px 32px;
  overflow: hidden;
}

.mp-stats__glow {
  width: 1000px;
  height: 420px;
  top: -260px;
  left: 50%;
  margin-left: -500px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.16), transparent 60%);
  border-radius: 50%;
}

.mp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.mp-stat__value {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.mp-stat__label {
  font-size: 14px;
  color: var(--text-50);
}


/* ════════════════════════════════════════════════════════════
   FEATURES — "Af hverju MeshPro?"
════════════════════════════════════════════════════════════ */
.mp-features {
  position: relative;
  padding: 104px 32px;
  overflow: hidden;
}

.mp-features__glow {
  width: 720px;
  height: 720px;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(115,103,240,.15), transparent 60%);
  border-radius: 50%;
}

.mp-features__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.mp-features__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  max-width: 24em;
  margin: 0 auto;
}

.mp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-feature-card {
  padding: 32px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .2s, background .2s;
}

.mp-feature-card:hover {
  border-color: rgba(165,156,255,.5);
  background: rgba(115,103,240,.07);
}

.mp-feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-input);
  background: rgba(115,103,240,.18);
  border: 1px solid rgba(165,156,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mp-feature-card__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1) opacity(.92);
}

.mp-feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mp-feature-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-58);
}


/* ════════════════════════════════════════════════════════════
   LAUSNIRNAR OKKAR — bright section
════════════════════════════════════════════════════════════ */
.mp-products {
  position: relative;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(115,103,240,.09) 18%,
    rgba(115,103,240,.15) 48%,
    rgba(115,103,240,.06) 82%,
    transparent
  );
  overflow: hidden;
  padding: 128px 32px;
}

/* glow 1: top ellipse — self-masked to prevent hard edge */
.mp-products__glow-top {
  width: 1280px;
  height: 800px;
  top: -220px;
  left: 50%;
  margin-left: -640px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.4), transparent 62%);
  border-radius: 50%;
  mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
}

/* glow 2: bottom-right */
.mp-products__glow-br {
  width: 700px;
  height: 700px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(165,156,255,.2), transparent 60%);
  border-radius: 50%;
}

/* glow 3: bottom-left */
.mp-products__glow-bl {
  width: 520px;
  height: 520px;
  bottom: -160px;
  left: 4%;
  background: radial-gradient(circle, rgba(40,199,111,.1), transparent 60%);
  border-radius: 50%;
}

.mp-products__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.mp-products__header h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.mp-products__header .mp-lede {
  color: var(--text-70);
  max-width: 32em;
  margin: 16px auto 0;
}

.mp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px;
  border-radius: var(--r-glass);
  border: 1px solid rgba(255,255,255,.14);
  background: var(--card-glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}

.mp-product-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.mp-product-card__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-85);
  margin-bottom: 20px;
}

.mp-product-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-58);
}


/* ════════════════════════════════════════════════════════════
   TILBÚNAR TENGINGAR — the belt
════════════════════════════════════════════════════════════ */
.mp-belt {
  position: relative;
  padding: 104px 32px;
  overflow: hidden;
}

.mp-belt__glow {
  width: 840px;
  height: 620px;
  bottom: 0;
  left: 50%;
  margin-left: -420px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.14), transparent 60%);
  border-radius: 50%;
}

/* left-aligned flex header: text left, button right */
.mp-belt__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.mp-belt__header-text { flex: 1; }

.mp-belt__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 8px;
}

.mp-belt__header-sub {
  font-size: 17px;
  color: var(--text-55);
}

/* animation */
@keyframes mpBelt {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 7px)); }
}

.mp-belt__wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* fade tiles at both horizontal edges */
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.mp-belt__row {
  display: flex;
  gap: 14px;
  width: max-content;
}

.mp-belt__row--a { animation: mpBelt 90s linear infinite; }
.mp-belt__row--b { animation: mpBelt 110s linear infinite reverse; }

/* pause on hover so users can read the tile they want */
.mp-belt__row:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .mp-belt__row { animation: none !important; }
}

.mp-belt__tile {
  flex-shrink: 0;
  width: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border-radius: var(--r-tile);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s;
}

.mp-belt__tile:hover {
  border-color: rgba(165,156,255,.5);
  background: rgba(115,103,240,.08);
  color: inherit;
}

.mp-belt__tile-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.mp-belt__tile-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}


/* ════════════════════════════════════════════════════════════
   REYNSLA VIÐSKIPTAVINA — testimonials (echo section)
════════════════════════════════════════════════════════════ */
.mp-reviews {
  position: relative;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(115,103,240,.05) 20%,
    rgba(115,103,240,.09) 50%,
    rgba(115,103,240,.04) 80%,
    transparent
  );
  overflow: hidden;
  padding: 104px 32px;
}

/* glow top — same self-mask as Lausnirnar */
.mp-reviews__glow-top {
  width: 1160px;
  height: 700px;
  top: -180px;
  left: 50%;
  margin-left: -580px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.22), transparent 60%);
  border-radius: 50%;
  mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
}

.mp-reviews__glow-bl {
  width: 620px;
  height: 620px;
  bottom: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(165,156,255,.11), transparent 60%);
  border-radius: 50%;
}

.mp-reviews__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.mp-reviews__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}

.mp-reviews__header .mp-lede {
  color: var(--text-55);
  max-width: 30em;
  margin: 0 auto;
}

.mp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-review-card {
  padding: 34px;
  border-radius: var(--r-glass);
  border: 1px solid rgba(255,255,255,.13);
  background: var(--card-glass-quote);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.3);
}

/* white chip so dark logos stay legible */
.mp-review-card__logo-chip {
  height: 44px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.mp-review-card__logo-chip img {
  width: 110px;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mp-review-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  text-wrap: pretty;
}

.mp-review-card__footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 20px;
}

.mp-review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
}

.mp-review-card__role {
  font-size: 13px;
  color: var(--text-50);
  margin-top: 2px;
}


/* ════════════════════════════════════════════════════════════
   HAFA SAMBAND — two-column contact
════════════════════════════════════════════════════════════ */
.mp-contact {
  position: relative;
  padding: 104px 32px;
  overflow: hidden;
}

.mp-contact__glow {
  width: 1000px;
  height: 700px;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(115,103,240,.28), transparent 60%);
  border-radius: 50%;
}

.mp-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* left column */
.mp-contact__left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
  margin-bottom: 16px;
}

.mp-contact__left .mp-lede {
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}

.mp-contact__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-tile);
  border: 1px solid var(--border);
  background: var(--card);
  margin-bottom: 12px;
}

.mp-contact__person:last-child { margin-bottom: 0; }

.mp-contact__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(115,103,240,.2);
  border: 1px solid rgba(165,156,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-light);
  flex-shrink: 0;
}

.mp-contact__person-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  display: block;
}

.mp-contact__person-email {
  font-size: 13px;
  color: var(--text-50);
  display: block;
}

/* right column — form card */
.mp-form-card {
  padding: 36px;
  border-radius: var(--r-glass);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}

.mp-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.mp-form__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mp-form__field { display: flex; flex-direction: column; }

.mp-form__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}

.mp-form__control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-input);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.mp-form__control::placeholder { color: rgba(255,255,255,.3); }

.mp-form__control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(115,103,240,.2);
}

/* explicit option colours so select lists stay readable on dark */
.mp-form__control option {
  background: #1e2030;
  color: #fff;
}

textarea.mp-form__control {
  resize: vertical;
  min-height: 96px;
}

.mp-form__submit {
  width: 100%;
  padding: 15px;
  border-radius: var(--r-input);
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 26px rgba(115,103,240,.4);
  transition: background .18s, box-shadow .18s;
}

.mp-form__submit:hover {
  background: #8578f2;
  box-shadow: 0 12px 30px rgba(115,103,240,.5);
}


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.mp-footer {
  background: linear-gradient(180deg, var(--bg), var(--bg-footer-end) 22%);
}

.mp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 32px 40px;
}

.mp-footer__logo {
  display: block;
  margin-bottom: 16px;
}

.mp-footer__logo img {
  height: 68px;
  display: block;
}

.mp-footer__blurb {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-45);
  max-width: 26em;
}

.mp-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-40);
  margin-bottom: 18px;
}

.mp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
.mp-footer__links a:hover { color: #fff; }

.mp-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: rgba(255,255,255,.35);
}


/* ════════════════════════════════════════════════════════════
   VERÐSKRÁ — Plan cards (hero + cards in one section)
════════════════════════════════════════════════════════════ */
.mp-pricing {
  position: relative;
  overflow: hidden;
  padding: 88px 32px 112px;
  background: linear-gradient(
    180deg,
    rgba(115,103,240,.12),
    rgba(115,103,240,.15) 42%,
    rgba(115,103,240,.05) 82%,
    transparent
  );
}

.mp-pricing__glow-top {
  width: 1280px;
  height: 900px;
  top: -300px;
  left: 50%;
  margin-left: -640px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.4), transparent 60%);
  border-radius: 50%;
  mask-image: linear-gradient(180deg, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
}

.mp-pricing__glow-br {
  width: 700px;
  height: 700px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(165,156,255,.2), transparent 60%);
  border-radius: 50%;
}

.mp-pricing__glow-bl {
  width: 520px;
  height: 520px;
  bottom: -160px;
  left: 4%;
  background: radial-gradient(circle, rgba(40,199,111,.1), transparent 60%);
  border-radius: 50%;
}

.mp-pricing__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.mp-pricing__header h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  max-width: 20em;
  margin: 0 auto 20px;
}

.mp-pricing__header .mp-lede {
  max-width: 34em;
  margin: 0 auto;
  color: rgba(255,255,255,.7);
}

.mp-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px;
  border-radius: var(--r-glass);
  border: 1px solid var(--border-strong);
  background: rgba(17,18,26,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}

.mp-pricing__card--featured {
  border-color: rgba(196,189,255,.55);
  background: rgba(26,24,48,.78);
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
}

.mp-pricing__badge {
  position: absolute;
  top: -13px;
  left: 34px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(115,103,240,.45);
}

.mp-pricing__name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.mp-pricing__tagline {
  font-size: 14px;
  color: var(--text-50);
  margin-bottom: 22px;
}

.mp-pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}

.mp-pricing__price-figure {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-strong);
}

.mp-pricing__price-unit {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-50);
}

.mp-pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.mp-pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

.mp-pricing__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(115,103,240,.22);
  border: 1px solid rgba(165,156,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.mp-pricing__check::before {
  content: '✓';
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-lighter);
  line-height: 1;
}

.mp-pricing__cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--r-btn-lg);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, border-color .18s;
}

.mp-pricing__cta--outline {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.mp-pricing__cta--outline:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.09);
  color: #fff;
}

.mp-pricing__cta--filled {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 10px 26px rgba(115,103,240,.4);
}
.mp-pricing__cta--filled:hover {
  background: #8578f2;
  box-shadow: 0 14px 32px rgba(115,103,240,.5);
  color: #fff;
}


/* ════════════════════════════════════════════════════════════
   SAMANBURÐUR — Comparison matrix
════════════════════════════════════════════════════════════ */
.mp-matrix {
  position: relative;
  padding: 104px 32px;
  overflow: hidden;
}

.mp-matrix__glow {
  width: 700px;
  height: 700px;
  top: 40px;
  right: -180px;
  background: radial-gradient(circle, rgba(115,103,240,.15), transparent 60%);
  border-radius: 50%;
}

.mp-matrix__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-matrix__header {
  margin-bottom: 40px;
}

.mp-matrix__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin-bottom: 12px;
}

.mp-matrix__header .mp-lede {
  color: var(--text-55);
  max-width: 40em;
}

.mp-matrix__table {
  border-radius: var(--r-glass);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

.mp-matrix__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.mp-matrix__head {
  align-items: end;
  padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mp-matrix__head-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  align-self: end;
}

.mp-matrix__head-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mp-matrix__plan-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
}

.mp-matrix__plan-price {
  font-size: 13px;
  color: var(--text-50);
}

.mp-matrix__body-row {
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.mp-matrix__body-row:last-of-type { border-bottom: none; }

.mp-matrix__body-row--odd {
  background: rgba(255,255,255,.02);
}

.mp-matrix__row-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-85);
}

.mp-matrix__cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-matrix__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(115,103,240,.22);
  border: 1px solid rgba(165,156,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-matrix__check::before {
  content: '✓';
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-lighter);
  line-height: 1;
}

.mp-matrix__addon {
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: rgba(255,159,67,.14);
  border: 1px solid rgba(255,159,67,.3);
  font-size: 11px;
  font-weight: 700;
  color: #FFB976;
  white-space: nowrap;
}

.mp-matrix__foot {
  padding: 24px 28px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.07);
}

.mp-matrix__foot-btn {
  display: block;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}

.mp-matrix__foot-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.mp-matrix__legend {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-45);
}


/* ════════════════════════════════════════════════════════════
   DATASYNC — Quote request (echo bright section)
════════════════════════════════════════════════════════════ */
.mp-datasync {
  position: relative;
  overflow: hidden;
  padding: 104px 32px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(115,103,240,.05) 20%,
    rgba(115,103,240,.09) 50%,
    rgba(115,103,240,.04) 80%,
    transparent
  );
}

.mp-datasync__glow {
  width: 1160px;
  height: 700px;
  top: -180px;
  left: 50%;
  margin-left: -580px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.22), transparent 60%);
  border-radius: 50%;
  mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
}

.mp-datasync__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-datasync__left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
  margin-bottom: 16px;
}

.mp-datasync__left .mp-lede {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.mp-datasync__btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: var(--r-btn-lg);
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(115,103,240,.45);
  transition: background .18s, box-shadow .18s;
}

.mp-datasync__btn:hover {
  background: #8578f2;
  box-shadow: 0 14px 36px rgba(115,103,240,.55);
  color: #fff;
}

.mp-datasync__factors {
  padding: 30px;
  border-radius: var(--r-glass);
  border: 1px solid var(--border-strong);
  background: rgba(17,18,26,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-datasync__factors-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-40);
}

.mp-datasync__factor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-tile);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}

.mp-datasync__factor-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(115,103,240,.22);
  border: 1px solid rgba(165,156,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-lighter);
  line-height: 1;
}

.mp-datasync__factor-text {
  font-size: 15px;
  color: rgba(255,255,255,.78);
}


/* ════════════════════════════════════════════════════════════
   FAQ — Accordion
════════════════════════════════════════════════════════════ */
.mp-faq {
  position: relative;
  overflow: hidden;
  padding: 104px 32px;
}

.mp-faq__glow {
  width: 1000px;
  height: 700px;
  bottom: -240px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(115,103,240,.2), transparent 60%);
  border-radius: 50%;
}

.mp-faq__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mp-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.mp-faq__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.mp-faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-faq__item {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  transition: border-color .18s, background .18s;
}

.mp-faq__item--open {
  border-color: rgba(165,156,255,.4);
  background: rgba(115,103,240,.08);
}

.mp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mp-faq__question-text {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
}

.mp-faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(115,103,240,.18);
  border: 1px solid rgba(165,156,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--primary-lighter);
  line-height: 1;
  transition: transform .18s ease;
}

.mp-faq__item--open .mp-faq__icon {
  transform: rotate(45deg);
}

.mp-faq__answer {
  display: none;
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
}

.mp-faq__item--open .mp-faq__answer {
  display: block;
}


/* ════════════════════════════════════════════════════════════
   CTA BAND — inset card at page bottom
════════════════════════════════════════════════════════════ */
.mp-cta-band {
  padding: 24px 32px 104px;
}

.mp-cta-card {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 48px 52px;
  border-radius: 20px;
  border: 1px solid rgba(196,189,255,.35);
  background: linear-gradient(135deg, rgba(115,103,240,.22), rgba(115,103,240,.08));
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.mp-cta-card__text h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.mp-cta-card__sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
}


/* ════════════════════════════════════════════════════════════
   LAUSNIR PAGE — Solutions overview
════════════════════════════════════════════════════════════ */

.mp-lausnir {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(115,103,240,.12),
    rgba(115,103,240,.15) 42%,
    rgba(115,103,240,.05) 82%,
    transparent);
  padding: 88px 32px 112px;
}

.mp-lausnir__glow-top {
  width: 1280px; height: 900px;
  top: -300px; left: 50%; margin-left: -640px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.4), transparent 62%);
  mask-image: linear-gradient(180deg, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
}

.mp-lausnir__glow-br {
  width: 700px; height: 700px;
  border-radius: 50%;
  bottom: -200px; right: -140px;
  background: radial-gradient(ellipse at center, rgba(165,156,255,.2), transparent 62%);
}

.mp-lausnir__glow-bl {
  width: 520px; height: 520px;
  border-radius: 50%;
  bottom: -160px; left: 4%;
  background: radial-gradient(ellipse at center, rgba(40,199,111,.1), transparent 62%);
}

.mp-lausnir__header {
  position: relative;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto 56px;
}

.mp-lausnir__header h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  max-width: 22em;
  text-wrap: balance;
  margin: 12px auto 16px;
}

.mp-lausnir__lede {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 36em;
  text-wrap: pretty;
  margin: 0 auto;
}

.mp-lausnir__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.mp-lausnir__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(17,18,26,.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease;
}

.mp-lausnir__card:hover {
  border-color: rgba(196,189,255,.5);
}

.mp-lausnir__card-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text-strong);
  margin: 0 0 10px;
}

.mp-lausnir__card-question {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
}

.mp-lausnir__card-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
  text-wrap: pretty;
  margin: 0;
  flex: 1;
}

.mp-lausnir__card-link {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-lighter);
}

/* ════════════════════════════════════════════════════════════
   DATA FLOW section
════════════════════════════════════════════════════════════ */

.mp-dataflow {
  position: relative;
  padding: 104px 32px;
}

.mp-dataflow__glow {
  width: 720px; height: 720px;
  border-radius: 50%;
  top: 40px; left: -180px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.15), transparent 62%);
}

.mp-dataflow__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.mp-dataflow__header {
  margin-bottom: 48px;
}

.mp-dataflow__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin: 12px 0 16px;
}

.mp-dataflow__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 40em;
  text-wrap: pretty;
}

/* ── Flow diagram ─────────────────────────────────────── */

.mp-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 8px 0 40px;
  margin-bottom: 56px;
}

.mp-diagram__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mp-diagram__tiles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.mp-diagram__tile {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-diagram__tile--lg {
  width: 56px; height: 56px;
}

.mp-diagram__col-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
}

.mp-diagram__col-sub {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* MeshPro node */
.mp-diagram__node {
  padding: 28px 20px;
  border-radius: 14px;
  background: rgba(115,103,240,.16);
  border: 1px solid rgba(165,156,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mp-diagram__node-tile {
  width: 62px; height: 62px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-diagram__node-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
}

.mp-diagram__node-sub {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* Arrows */
.mp-diagram__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mp-diagram__arrow-shaft {
  display: flex;
  align-items: center;
}

.mp-diagram__arrow-line {
  width: 44px;
  height: 2px;
}

.mp-diagram__arrow-head {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.mp-diagram__arrow--forward .mp-diagram__arrow-line {
  background: linear-gradient(90deg, rgba(255,255,255,.2), #A59CFF);
}
.mp-diagram__arrow--forward .mp-diagram__arrow-head {
  border-left: 9px solid #A59CFF;
}

.mp-diagram__arrow--return .mp-diagram__arrow-line {
  background: linear-gradient(90deg, #A59CFF, rgba(255,255,255,.35));
}
.mp-diagram__arrow--return .mp-diagram__arrow-head {
  border-left: 9px solid rgba(255,255,255,.7);
}

.mp-diagram__arrow-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
}

/* ── Vinsælustu kerfin ─────────────────────────────────── */

.mp-dataflow__systems-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mp-dataflow__systems-head h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
}

.mp-dataflow__all-btn {
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color .18s, background .18s;
}

.mp-dataflow__all-btn:hover {
  border-color: rgba(165,156,255,.5);
  background: rgba(115,103,240,.08);
}

.mp-dataflow__systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mp-dataflow__system-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s, background .18s;
}

.mp-dataflow__system-card:hover {
  border-color: rgba(165,156,255,.5);
  background: rgba(115,103,240,.07);
}

.mp-dataflow__system-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mp-dataflow__system-tile {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-dataflow__system-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
}

.mp-dataflow__system-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.58);
  text-wrap: pretty;
  flex: 1;
}

.mp-dataflow__system-chip {
  margin-top: auto;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(115,103,240,.16);
  border: 1px solid rgba(165,156,255,.3);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary-lighter);
}

/* ── Lendingarstaðir ───────────────────────────────────── */

.mp-dataflow__landing-header {
  margin: 88px 0 28px;
}

.mp-dataflow__landing-header h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 12px 0 10px;
}

.mp-dataflow__landing-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 40em;
  text-wrap: pretty;
}

.mp-dataflow__landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mp-dataflow__landing-card {
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
}

.mp-dataflow__landing-tile {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mp-dataflow__landing-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 10px;
}

.mp-dataflow__landing-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.58);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   DATA SYNC — Lausnir page connection cards
   (distinct from .mp-datasync on the pricing page)
════════════════════════════════════════════════════════════ */

.mp-lausnir-sync {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    transparent,
    rgba(115,103,240,.05) 20%,
    rgba(115,103,240,.09) 50%,
    rgba(115,103,240,.04) 80%,
    transparent);
  padding: 112px 32px;
}

.mp-lausnir-sync__glow-top {
  width: 1160px; height: 700px;
  top: -180px; left: 50%; margin-left: -580px;
  background: radial-gradient(ellipse at center, rgba(115,103,240,.22), transparent 62%);
  mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 34%, #000 68%, transparent);
}

.mp-lausnir-sync__glow-br {
  width: 620px; height: 620px;
  border-radius: 50%;
  bottom: -180px; right: -160px;
  background: radial-gradient(ellipse at center, rgba(165,156,255,.11), transparent 62%);
}

.mp-lausnir-sync__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.mp-lausnir-sync__header {
  text-align: center;
  margin-bottom: 48px;
}

.mp-lausnir-sync__header h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 12px auto 16px;
}

.mp-lausnir-sync__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 34em;
  text-wrap: pretty;
  margin: 0 auto;
}

.mp-lausnir-sync__connections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mp-lausnir-sync__card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(17,18,26,.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}

.mp-lausnir-sync__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: center;
  padding: 32px 40px;
}

.mp-lausnir-sync__side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mp-lausnir-sync__side--left {
  justify-content: flex-end;
}

.mp-lausnir-sync__tile {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-lausnir-sync__side-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-lausnir-sync__side-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
}

.mp-lausnir-sync__side-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
}

.mp-lausnir-sync__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mp-lausnir-sync__arrow-shaft {
  display: flex;
  align-items: center;
}

.mp-lausnir-sync__arrow-line {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.2), #A59CFF);
}

.mp-lausnir-sync__arrow-head {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #A59CFF;
}

.mp-lausnir-sync__arrow-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
}

.mp-lausnir-sync__desc {
  padding: 20px 36px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
  text-align: center;
  text-wrap: pretty;
}

.mp-lausnir-sync__note {
  margin-top: 24px;
  padding: 20px 26px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,.55);
}

/* ════════════════════════════════════════════════════════════
   DATA ACCESS
════════════════════════════════════════════════════════════ */

.mp-dataaccess-page {
  padding: 104px 32px;
}

.mp-dataaccess-page__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mp-dataaccess-page__left h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0 0 14px;
}

.mp-dataaccess-page__question {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 0 0 18px;
}

.mp-dataaccess-page__body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  text-wrap: pretty;
  margin: 0 0 26px;
}

.mp-dataaccess-page__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-dataaccess-page__check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.72);
}

.mp-dataaccess-page__check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(115,103,240,.2);
  border: 1px solid rgba(165,156,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: #A59CFF;
}

.mp-dataaccess-page__right {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-dataaccess-page__layer {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}

.mp-dataaccess-page__layer--accent {
  border-color: rgba(165,156,255,.45);
  background: rgba(115,103,240,.16);
}

.mp-dataaccess-page__layer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 4px;
}

.mp-dataaccess-page__layer-sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   LAUSNIR FAQ — distinct from .mp-faq on pricing page
   max-width 900px, rotating + icon, state-dependent borders
════════════════════════════════════════════════════════════ */

.mp-lausnir-faq {
  position: relative;
  overflow: hidden;
  padding: 104px 32px;
}

.mp-lausnir-faq__glow {
  width: 1000px; height: 700px;
  bottom: -240px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(115,103,240,.2), transparent 62%);
}

.mp-lausnir-faq__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.mp-lausnir-faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.mp-lausnir-faq__header h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0 0;
}

.mp-lausnir-faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-lausnir-faq__item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  transition: border-color .18s, background .18s;
}

.mp-lausnir-faq__item--open {
  border-color: rgba(165,156,255,.4);
  background: rgba(115,103,240,.08);
}

.mp-lausnir-faq__question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mp-lausnir-faq__question-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
  flex: 1;
}

.mp-lausnir-faq__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(115,103,240,.18);
  border: 1px solid rgba(165,156,255,.3);
  color: var(--primary-lighter);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .18s ease;
}

.mp-lausnir-faq__item--open .mp-lausnir-faq__icon {
  transform: rotate(45deg);
}

.mp-lausnir-faq__answer {
  display: none;
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  text-wrap: pretty;
}

.mp-lausnir-faq__item--open .mp-lausnir-faq__answer {
  display: block;
}

/* ── Active nav link ────────────────────────────────────── */
.mp-header__nav-active {
  color: var(--primary-light) !important;
  font-weight: 600 !important;
}
