/* Murer casen — selvstaendigt design i Cavalis groenne stil */

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

:root {
  --bg: #f5f3ee;
  --white: #ffffff;
  --card: #faf9f6;
  --border: #e4e0d7;
  --muted: #999690;
  --sub: #5a5750;
  --text: #171614;
  --green: #1a4d35;
  --green2: #22633f;
  --warm: #4a9d6f;
  --mint: #a8d5b5;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --maxw: 1360px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: normal; color: var(--warm); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── Nav ── */
.mc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 5vw;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.mc-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.mc-nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.mc-nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sub);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.mc-nav-links a:hover { color: var(--green); }
@media (max-width: 1100px) {
  .mc-nav-links { display: none; }
}

.mc-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.mc-nav-tel {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sub);
  text-decoration: none;
}
.mc-nav-tel:hover { color: var(--text); }
.mc-nav-cta {
  background: var(--green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.mc-nav-cta:hover { background: var(--green2); }
@media (max-width: 640px) {
  .mc-nav-tel { display: none; }
}

/* ── Knapper ── */
.mc-btn-primary,
.mc-btn-secondary,
.mc-btn-white {
  display: inline-block;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 12px;
  padding: 0.9rem 1.9rem;
  transition: background .2s, border-color .2s, opacity .2s;
}
.mc-btn-primary { background: var(--green); color: #fff; font-weight: 700; }
.mc-btn-primary:hover { background: var(--green2); }
.mc-btn-secondary {
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  border: 1px solid var(--border);
}
.mc-btn-secondary:hover { border-color: var(--muted); }
.mc-btn-white { background: #fff; color: var(--green); font-weight: 800; }
.mc-btn-white:hover { opacity: .9; }

/* ── Sektioner ── */
.mc-sec { padding: 6.5rem 5vw; }
.mc-sec > * {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
}
.mc-sec--white {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.mc-kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.mc-h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 30ch;
}
.mc-lead {
  color: var(--sub);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 70ch;
  margin-bottom: 3rem;
}

.mc-lead--tight {
  margin-bottom: 1.3rem;
}

.mc-lead--mid {
  margin-bottom: 2rem;
}

/* Ny overskrift midt i en sektion: skillelinje og luft */
.mc-block {
  margin-top: 4.5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) {
  .mc-block {
    margin-top: 3rem;
    padding-top: 2.8rem;
  }
}

/* ── Hero ── */
.mc-hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 8.5rem 5vw 5rem;
  max-width: calc(var(--maxw) + 10vw);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .mc-hero {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 10rem 5vw 6.5rem;
  }
}
.mc-hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 1.4rem;
}
.mc-hero h1 em { color: var(--warm); }
.mc-hero-desc {
  color: var(--sub);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 1.6rem;
}
.mc-checks {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.mc-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sub);
}
.mc-check::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}
.mc-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Google Ads-afsender */
.mc-galogo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.mc-galogo svg { width: 20px; height: 20px; }
.mc-galogo span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5f6368;
  letter-spacing: -0.01em;
}

/* Bilen — samme format som paa forsiden */
.mc-hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #ddd9cf;
}
.mc-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mc-media-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: var(--green);
  border-radius: 16px;
  color: #fff;
}
.mc-badge-col { display: flex; flex-direction: column; line-height: 1.1; }
.mc-badge-col strong {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.mc-badge-col span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 0.2rem;
}
.mc-badge-arrow { color: var(--mint); font-size: 1.05rem; }

/* ── Kontoudtog ── */
.mc-account {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.9rem 2.2rem 2.1rem;
  margin-bottom: 2.5rem;
}
.mc-account-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.mc-account-head .mc-galogo svg { width: 24px; height: 24px; }
.mc-account-head .mc-galogo span { font-size: 1.02rem; }
.mc-account-period {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mc-account-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1rem;
  padding-top: 1.9rem;
}
@media (min-width: 760px) {
  .mc-account-row { grid-template-columns: repeat(5, 1fr); }
}
.mc-account-row > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.mc-account-row strong {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}
.mc-account-row span {
  font-size: 0.82rem;
  color: var(--muted);
}
.mc-account-row .is-key strong { color: var(--green); }
.mc-account-row .is-key span { color: var(--green); font-weight: 600; }
.mc-account-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.9rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border);
}

.mc-subhead {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ── Regnestykket: klik → udfald ── */
.mc-results {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .mc-results { grid-template-columns: repeat(3, 1fr); }
}
.mc-result {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.3rem 2.1rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mc-result:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.07);
  border-color: var(--green);
}
.mc-result-n {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.mc-result-cost {
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
}
.mc-result-mid {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.9rem 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mc-result-mid::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.mc-result-out {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}
.mc-result p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.mc-result--open {
  background: transparent;
  border-style: dashed;
}
.mc-result--open .mc-result-cost { color: var(--muted); }
.mc-result--open:hover { border-color: var(--muted); }

/* ── Dokumentation ── */
.mc-doc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 1.8rem 2.1rem;
}
.mc-doc strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.mc-doc p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 72ch;
}

/* ── Pris ── */
.mc-price {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 760px) {
  .mc-price { grid-template-columns: repeat(2, 1fr); }
}
.mc-price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem 2.1rem;
}
.mc-price-card.is-mine {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 18px 40px -24px rgba(26, 77, 53, 0.55);
}
.mc-price-tag {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.mc-price-lbl {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.mc-price-card.is-mine .mc-price-lbl {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.mc-price-val {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--green);
}
.mc-price-card.is-mine .mc-price-val { color: #fff; }
.mc-price-card.is-other .mc-price-val { color: var(--muted); }
.mc-price-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sub);
  margin-top: 0.55rem;
}
.mc-price-card.is-mine .mc-price-unit { color: rgba(255, 255, 255, 0.8); }
.mc-price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.mc-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--sub);
}
.mc-price-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px; height: 17px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}
.mc-price-card.is-mine .mc-price-list li { color: rgba(255, 255, 255, 0.88); }
.mc-price-card.is-mine .mc-price-list li::before {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
}
.mc-price-card.is-other .mc-price-list li::before {
  content: '−';
  background: rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

/* Sparestriben under prisboksene */
.mc-save {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.2rem;
  background: rgba(26, 77, 53, 0.055);
  border: 1px solid rgba(26, 77, 53, 0.16);
  border-radius: 18px;
  padding: 1.8rem 2.1rem;
}
.mc-save-num {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--green);
  flex-shrink: 0;
}
.mc-save-txt strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.mc-save-txt p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 62ch;
}

/* ── Citat: hvorfor tallene må vises ── */
.mc-quote {
  margin-top: 3.5rem;
  padding: 0 0 0 2.4rem;
  border-left: 4px solid var(--green);
}
.mc-quote p {
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 58ch;
}
.mc-quote p + p {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--sub);
}
.mc-quote strong { font-weight: 800; }
.mc-quote-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 77, 53, 0.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.mc-quote-link:hover { border-color: var(--green); }
.mc-sec > .mc-quote:first-child {
  margin-top: 0;
  margin-bottom: 4.5rem;
}
@media (max-width: 640px) {
  .mc-quote { margin-top: 2.5rem; padding-left: 1.4rem; }
}

/* ── Det store SEO-tal ── */
.mc-bignum {
  background: rgba(26, 77, 53, 0.055);
  border: 1px solid rgba(26, 77, 53, 0.16);
  border-radius: 20px;
  padding: 2.6rem 2.6rem 2.4rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) {
  .mc-bignum { padding: 1.9rem 1.6rem; }
}
.mc-bignum-val {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--green);
}
.mc-bignum-lbl {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-top: 0.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 77, 53, 0.16);
  max-width: 46ch;
}
.mc-bignum p {
  color: var(--sub);
  font-size: 0.94rem;
  line-height: 1.8;
  max-width: 72ch;
  margin-top: 1.5rem;
}
.mc-bignum p + p { margin-top: 0.8rem; }

/* ── Historien: tidslinje ── */
.mc-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .mc-timeline { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
.mc-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.9rem;
}
.mc-step-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26, 77, 53, 0.08);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}
.mc-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.mc-step p {
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.8;
}
.mc-step p + p { margin-top: 0.7rem; }
.mc-step strong { color: var(--text); font-weight: 700; }
.mc-step--turn {
  background: var(--green);
  border-color: var(--green);
}
.mc-step--turn .mc-step-year {
  color: #fff;
  background: rgba(255,255,255,.14);
}
.mc-step--turn h3 { color: #fff; }
.mc-step--turn p { color: rgba(255,255,255,.72); }
.mc-step--turn strong { color: #fff; }

.mc-pull {
  margin: 3rem 0 0;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.25;
  max-width: 34ch;
}
.mc-pull em { color: var(--warm); }

/* ── Ydelser ── */
.mc-svc {
  display: grid;
  gap: 1rem;
}
@media (min-width: 820px) {
  .mc-svc { grid-template-columns: repeat(2, 1fr); }
}
.mc-svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.3rem 2.1rem;
  transition: transform .2s, box-shadow .2s;
}
.mc-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.07);
}
.mc-svc-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.mc-svc-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sub);
  margin-bottom: 0.75rem;
}
.mc-svc-card p {
  color: var(--sub);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.mc-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.mc-pill {
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--sub);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}

/* ── Om mig ── */
.mc-about {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 900px) {
  .mc-about { grid-template-columns: 0.8fr 1fr; gap: 3.5rem; }
}
.mc-about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd9cf;
}
.mc-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.mc-about-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
}
.mc-about-badge strong { display: block; font-size: 0.95rem; font-weight: 800; }
.mc-about-badge span { display: block; font-size: 0.72rem; color: rgba(255,255,255,.65); }
.mc-about-copy p {
  color: var(--sub);
  font-size: 0.97rem;
  line-height: 1.85;
}
.mc-about-copy p + p { margin-top: 0.9rem; }
.mc-about-copy strong { color: var(--text); font-weight: 700; }
.mc-about-copy .mc-btn-primary { margin-top: 1.5rem; }
.mc-cred {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.5rem 0 1.6rem;
}
@media (max-width: 520px) {
  .mc-cred { grid-template-columns: 1fr; }
}
.mc-cred-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}
.mc-cred-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--green);
}
.mc-cred-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* ── Kontakt ── */
.mc-contact {
  padding: 6.5rem 5vw;
  background: var(--bg);
}
.mc-cta-box {
  background: var(--green);
  border-radius: 28px;
  padding: 3.5rem 5vw;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .mc-cta-box { grid-template-columns: 1fr 1fr; gap: 3.5rem; padding: 4rem 4rem; }
}
.mc-cta-box .mc-kicker { color: rgba(255,255,255,.55); }
.mc-cta-box .mc-kicker::before { background: var(--mint); }
.mc-cta-box h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.mc-cta-box h2 em { color: var(--mint); }
.mc-cta-box > div > p {
  color: rgba(255,255,255,.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.mc-cta-info {
  display: grid;
  gap: 1.1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.mc-ci-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 0.2rem;
}
.mc-cta-info a, .mc-cta-info div > span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.mc-cta-info a:hover { color: var(--mint); }

.mc-form { display: flex; flex-direction: column; gap: 0.7rem; }
.mc-input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
}
.mc-input::placeholder { color: rgba(255,255,255,.55); }
.mc-input:focus {
  outline: none;
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
}
textarea.mc-input { min-height: 110px; resize: vertical; }
.mc-submit {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .2s;
}
.mc-submit:hover { opacity: .9; }
.mc-submit:disabled { opacity: .6; cursor: wait; }
.botcheck { display: none !important; }

/* ── Footer ── */
.mc-footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 3rem 5vw 2rem;
}
.mc-footer-row {
  display: grid;
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto 2rem;
}
@media (min-width: 780px) {
  .mc-footer-row { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.mc-footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mc-footer p { font-size: 0.85rem; line-height: 1.7; margin-top: 0.6rem; max-width: 34rem; }
.mc-footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 0.8rem;
}
.mc-footer ul { list-style: none; display: grid; gap: 0.45rem; }
.mc-footer ul a { font-size: 0.85rem; text-decoration: none; }
.mc-footer ul a:hover { color: #fff; }
.mc-footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.75rem;
}

/* ── Mobil-CTA ── */
.mobile-cta { display: none; }
@media (max-width: 899px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    background: var(--green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 1rem;
    text-decoration: none;
    transform: translateY(110%);
    transition: transform .3s;
  }
  .mobile-cta.is-shown { transform: none; }
}

/* Skjult menu — main.js forventer disse elementer */
.mobile-menu { display: none; }
.burger { display: none; }
