/* ------- Design tokens ------- */
    :root {
      --bg: #ffffff;
      --ink: #1d1f24;
      --muted: #6b7280;
      --brand: #0ea5e9;         /* lys blå */
      --brand-ink: #0b6ea6;     /* mørkere blå til hover */
      --accent: #22c55e;        /* grøn til badges/ikoner */
      --card: #f8fafc;
      --shadow: 0 8px 30px rgba(0,0,0,.08);
      --radius: 18px;
      --radius-lg: 26px;
      --container: 1200px;
      --gap: 12px;
    }

    /* ------- Base ------- */
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color: var(--ink);
      background: var(--bg);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; }

    a { color: var(--brand); text-decoration: none; }
    a:hover { color: var(--brand-ink); }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ------- Header / Nav ------- */
    header {
      position: sticky; top: 0; z-index: 60;
      background: rgba(255,255,255,.8);
      backdrop-filter: saturate(180%) blur(10px);
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
    }
    .logo {
      display: inline-flex; align-items: center; gap: 12px;
    }
    .logo img { height: 32px; width: auto; display: block; }

    /* ÉN hovedmenu (desktop) */
    .nav-links {
      display: flex; gap: 22px; align-items: center;
    }
    .nav-links a {
      color: var(--ink); font-weight: 600; opacity: .85;
    }
    .nav-links a:hover { opacity: 1; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px; padding: 12px 18px; font-weight: 700;
      border-radius: 999px;
      transition: transform .06s ease, box-shadow .2s ease, background .2s;
      box-shadow: 0 6px 20px rgba(14,165,233,.18);
      background: var(--brand); color: #fff;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); background: #fff; }
    .btn-outline {
      background: #fff; color: var(--ink);
      box-shadow: none; border: 1px solid rgba(0,0,0,.12);
    }
    .btn-outline:hover { background: #f3f4f6; }

    /* Burger + mobilmenu (kun én mobilmenu, ingen duplication) */
    .hamburger { display: none; background: transparent; border: 0; font-size: 28px; line-height: 1; }
    .mobile-menu {
      position: fixed; inset: 70px 0 0 0; background: rgba(255,255,255,.98);
      padding: 22px; display: none; flex-direction: column; gap: 16px;
      border-top: 1px solid rgba(0,0,0,.06);
    }
    .mobile-menu a { font-weight: 700; color: var(--ink); font-size: 18px; }
    .mobile-menu.open { display: flex; }

    @media (max-width: 840px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
    }

    /* ------- Hero ------- */
    .hero {
      position: relative;
      min-height: clamp(68vh, 74vh, 86vh);
      display: grid; place-items: center;
      overflow: clip;
      border-bottom-left-radius: var(--radius-lg);
      border-bottom-right-radius: var(--radius-lg);
      background: #e6f4ff;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background: center/cover no-repeat;
      /* HERO BAGGRUND */
      background-image: url('https://xn--smminder-b0a.dk/media/EH_060.jpg');
      transform: scale(1.02);
      z-index: -2;
      filter: saturate(105%) contrast(102%);
    }
    .hero::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.24) 30%, rgba(0,0,0,.10) 60%, rgba(255,255,255,0) 100%);
      z-index: -1;
    }
    .hero-inner {
      color: #fff; text-align: center; padding: 90px 0 60px;
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; letter-spacing: .3px; font-weight: 700;
      padding: 6px 10px; border-radius: 999px; background: rgba(14,165,233,.9);
      box-shadow: 0 8px 24px rgba(14,165,233,.35);
    }
    h1.hero-title {
      margin: 14px auto 14px; max-width: 900px;
      font-size: clamp(34px, 5vw, 56px); line-height: 1.06; font-weight: 900;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }
    .hero-sub {
      max-width: 760px; margin: 0 auto 24px; font-size: clamp(16px, 2.2vw, 20px);
      opacity: .95;
    }
    .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
    .hero-badges {
      margin-top: 22px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.86);
      color: #0b1220; font-weight: 700; font-size: 14px; box-shadow: var(--shadow);
    }

    /* ------- Feature blocks ------- */
    .section { padding: clamp(48px, 6vw, 84px) 0; }
    .section-title {
      font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; margin: 0 0 14px;
      letter-spacing: -0.02em; text-wrap: balance;
    }
    .section-sub { color: var(--muted); max-width: 820px; }

    .features {
      margin-top: 28px;
      display: grid; gap: 18px;
      grid-template-columns: repeat(12, 1fr);
    }
    .feature {
      grid-column: span 4;
      background: var(--card); border-radius: var(--radius);
      padding: 22px; box-shadow: var(--shadow);
    }
    .feature h3 { margin: 6px 0 8px; font-size: 20px; }
    .feature p { color: var(--muted); margin: 0; }
    .icon {
      width: 42px; height: 42px; border-radius: 12px; background: #e8fff0;
      display: grid; place-items: center; font-weight: 900; color: var(--accent);
      box-shadow: inset 0 0 0 2px rgba(34,197,94,.2);
    }
    @media (max-width: 980px) { .feature { grid-column: span 6; } }
    @media (max-width: 640px) { .feature { grid-column: span 12; } }

    /* ------- Løsninger (2 kort) ------- */
    .solutions {
      display: grid; gap: 18px;
      grid-template-columns: repeat(12, 1fr);
      margin-top: 24px;
    }
    .solution {
      grid-column: span 6; position: relative; overflow: hidden;
      border-radius: var(--radius-lg); box-shadow: var(--shadow);
      background: #000; color: #fff;
      min-height: 360px;
    }
    .solution .bg {
      position: absolute; inset: 0; background: center/cover no-repeat;
      filter: brightness(.82) saturate(1.05);
      transform: scale(1.03);
    }
    .bg.playground { background-image: url('https://xn--smminder-b0a.dk/media/1N9A1338.jpg'); }
    .bg.studio     { background-image: url('https://xn--smminder-b0a.dk/media/classic.jpg'); }
    .solution .overlay {
      position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
    }
    .solution .content {
      position: relative; padding: 28px; display: flex; flex-direction: column; gap: 8px; height: 100%;
      justify-content: flex-end;
    }
    .solution h3 { margin: 0; font-size: 26px; letter-spacing: -.02em; }
    .solution p { margin: 0 0 6px; opacity: .95; }
    .solution .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

    @media (max-width: 980px) {
      .solution { grid-column: span 12; }
    }

    /* ------- Proces (trin) ------- */
    .steps {
      display: grid; gap: 16px;
      grid-template-columns: repeat(12, 1fr); margin-top: 18px;
    }
    .step {
      grid-column: span 4; background: var(--card); border-radius: var(--radius);
      padding: 22px; box-shadow: var(--shadow);
    }
    .step .num {
      display: inline-grid; place-items: center;
      width: 34px; height: 34px; border-radius: 999px;
      background: #111827; color: #fff; font-weight: 800; font-size: 14px;
      margin-bottom: 10px;
    }
    .step h4 { margin: 4px 0 6px; }
    .step p { margin: 0; color: var(--muted); }
    @media (max-width: 980px) { .step { grid-column: span 6; } }
    @media (max-width: 640px) { .step { grid-column: span 12; } }

    /* ------- Galleri-teaser (masonry, vertikal/horisontal) ------- */
    .mosaic-wrap { margin-top: 22px; }
    .mosaic {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr; /* bred venstre kolonne giver flot rytme */
      gap: var(--gap);
      grid-auto-rows: 8px;              /* "baseline" til beregning af rækker */
    }
    @media (max-width: 980px) {
      .mosaic { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .mosaic { grid-template-columns: 1fr; }
    }

    .tile {
      border-radius: 16px;
      background: #e5e7eb;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .tile figure { margin: 0; }
    .tile img {
      width: 100%;
      height: auto;            /* bevar aspektforhold */
      display: block;
    }

    /* ------- Udtalelse ------- */
    .quote {
      background: #0b1220; color: #fff; border-radius: var(--radius-lg);
      padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow);
      display: grid; gap: 10px;
    }
    .quote p { margin: 0; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5; }
    .quote .by { opacity: .75; font-weight: 600; }

    /* ------- Slut-CTA ------- */
    .final-cta {
      position: relative; overflow: clip; color: #fff; border-radius: var(--radius-lg);
      min-height: 340px; display: grid; place-items: center; text-align: center;
    }
    .final-cta::before {
      content: ""; position: absolute; inset: 0; background: center/cover no-repeat;
      background-image: url('https://xn--smminder-b0a.dk/media/kindergarten.jpg');
      filter: brightness(.78);
      transform: scale(1.04);
    }
    .final-cta::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
    }
    .final-cta .inner {
      position: relative; padding: 30px; display: grid; gap: 12px;
    }
    .final-cta h2 { margin: 0; font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -.02em; }
    .final-cta p { margin: 0; opacity: .95; }
    .final-cta .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.price-card {
  grid-column: span 4;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  transition: transform .18s ease, box-shadow .2s ease;
  position: relative;
  overflow: clip;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.price-card.highlight {
  background: linear-gradient(180deg, rgba(14,165,233,.08), rgba(255,255,255,1));
  border: 1px solid rgba(14,165,233,.25);
}

.pc-head { margin-bottom: 8px; }
.pc-badge {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .3px;
  padding: 5px 9px; border-radius: 999px;
  background: rgba(14,165,233,.12); color: var(--brand);
  margin-bottom: 8px;
}
.pc-title { margin: 0; font-size: 20px; letter-spacing: -.01em; }
.pc-sub { margin: 2px 0 0; color: var(--muted); font-size: 14px; }

.pc-price {
  display: flex; align-items: flex-end; gap: 6px;
  margin: 6px 0 10px;
}
.pc-currency { font-size: 16px; opacity: .7; transform: translateY(-2px); }
.pc-amount { font-size: 44px; font-weight: 900; letter-spacing: -.02em; line-height: 1; }
.pc-decimal { font-size: 16px; opacity: .7; transform: translateY(-2px); }

.pc-list { margin: 0; padding: 0; list-style: none; color: var(--muted); }
.pc-list li { padding-left: 18px; position: relative; margin: 8px 0; }
.pc-list li::before {
  content: "•";
  position: absolute; left: 0; top: 0; line-height: 1;
  color: var(--accent); font-weight: 900;
}

.pc-cta { margin-top: 14px; }

.pricing-notes {
  display: grid; gap: 10px; margin-top: 18px;
  grid-template-columns: repeat(12, 1fr);
}
.pricing-notes .note {
  grid-column: span 4;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,.06);
  color: #0b1220;
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Responsivitet */
@media (max-width: 980px) {
  .price-card { grid-column: span 6; }
  .pricing-notes .note { grid-column: span 6; }
}
@media (max-width: 640px) {
  .price-card { grid-column: span 12; }
  .pricing-notes .note { grid-column: span 12; }
}

    /* ------- Footer ------- */
    footer { padding: 30px 0 40px; color: var(--muted); }
    .footer-grid {
      display: grid; gap: 18px; grid-template-columns: repeat(12, 1fr);
    }
    .f-col { grid-column: span 4; }
    .f-col h5 { margin: 6px 0 8px; color: var(--ink); }
    .f-col a { display: block; color: var(--muted); padding: 6px 0; }
    .f-col a:hover { color: var(--ink); }
    @media (max-width: 980px) { .f-col { grid-column: span 6; } }
    @media (max-width: 640px) { .f-col { grid-column: span 12; } }
    .legal { margin-top: 16px; font-size: 14px; }

    /* ------- Utilities ------- */
    .mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
    .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
    .mb-24 { margin-bottom: 24px; }
    .center { text-align: center; }
    .ghost { opacity: .75; }

    /* ------- Subtle fade-in ------- */
    .reveal { opacity: 0; transform: translateY(14px); transition: all .5s ease; }
    .reveal.in { opacity: 1; transform: none; }
    
    /* ------- Sticky mobile CTA ------- */
    .sticky-cta {
      position: fixed; left: 0; right: 0; bottom: 16px; z-index: 70; display: none;
      padding: 0 16px;
    }
    .sticky-cta .btn { width: 100%; padding: 16px 20px; box-shadow: 0 10px 28px rgba(14,165,233,.3); }
    @media (max-width: 720px) { .sticky-cta { display: block; } }