    /* =============================================
       OM OS — ANIMERET PRINTER & VÆRDIER
       ============================================= */
    .om-printer {
      margin: 2.5rem 0;
      text-align: center;
    }

    .om-printer-svg {
      width: 100%;
      max-width: 360px;
      height: auto;
    }

    .om-printer-caption {
      font-size: 0.82rem;
      color: var(--muted);
      font-style: italic;
      margin-top: 0.5rem;
    }

    /* Gantry op/ned */
    .om-gantry {
      animation: om-gantry-move 4s ease-in-out infinite;
    }
    @keyframes om-gantry-move {
      0%   { transform: translateY(120px); }
      15%  { transform: translateY(120px); }
      45%  { transform: translateY(95px); }
      70%  { transform: translateY(60px); }
      85%  { transform: translateY(20px); }
      100% { transform: translateY(20px); }
    }

    /* Printhoved frem/tilbage */
    .om-head {
      animation: om-head-move 1.1s ease-in-out infinite;
      transform: translateX(160px);
    }
    @keyframes om-head-move {
      0%   { transform: translateX(120px); }
      50%  { transform: translateX(200px); }
      100% { transform: translateX(120px); }
    }

    /* Lag toner ind ét ad gangen */
    .om-layer {
      fill: var(--accent);
      opacity: 0;
      animation: om-layer-in 4s ease-in-out infinite;
    }
    .om-layer:nth-child(1) { animation-delay: 0.4s; }
    .om-layer:nth-child(2) { animation-delay: 1.0s; }
    .om-layer:nth-child(3) { animation-delay: 1.6s; }
    .om-layer:nth-child(4) { animation-delay: 2.2s; }
    .om-layer:nth-child(5) { animation-delay: 2.8s; }
    @keyframes om-layer-in {
      0%, 100% { opacity: 0; }
      20%, 95% { opacity: 1; }
    }

    @media (prefers-reduced-motion: reduce) {
      .om-gantry, .om-head, .om-layer { animation: none; }
      .om-layer { opacity: 1; }
      .om-gantry { transform: translateY(20px); }
    }

    .om-values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .om-value {
      background: #fff;
      border: 1px solid var(--border);
      padding: 1.5rem;
      text-align: center;
    }

    .om-value-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

    .om-value-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .om-value p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* =============================================
       GUIDE — SÅDAN BESTILLER DU
       ============================================= */
    .guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .guide-step {
      background: #fff;
      border: 1px solid var(--border);
      padding: 1.75rem 1.5rem;
      position: relative;
    }

    .guide-num {
      width: 38px;
      height: 38px;
      background: var(--accent);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .guide-step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .guide-step p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .guide-cta {
      margin-top: 2.5rem;
      padding: 2rem;
      background: var(--text);
      color: #fff;
      text-align: center;
    }

    .guide-cta p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
    }

    /* =============================================
       FAQ
       ============================================= */
    .faq-list { margin-top: 2rem; }

    .faq-item {
      border: 1px solid var(--border);
      background: #fff;
      margin-bottom: 0.6rem;
      cursor: pointer;
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.1rem 1.5rem;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--text);
    }

    .faq-icon {
      color: var(--accent);
      font-size: 1.3rem;
      flex-shrink: 0;
      transition: transform 0.2s;
      line-height: 1;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 1.5rem;
    }

    .faq-item.open .faq-a { max-height: 400px; padding: 0 1.5rem 1.1rem; }

    .faq-a p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* =============================================
       MATERIALEGUIDE
       ============================================= */
    .mat-guide {
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 2px solid var(--border);
    }

    .mat-guide-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
    }

    .mat-guide-intro {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .mat-table-wrap { overflow-x: auto; }

    .mat-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
      background: #fff;
      min-width: 520px;
    }

    .mat-table th, .mat-table td {
      padding: 0.85rem 1rem;
      text-align: left;
      border: 1px solid var(--border);
    }

    .mat-table thead th {
      background: var(--text);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .mat-table tbody td:first-child {
      font-weight: 600;
      color: var(--text);
      background: var(--body-bg);
    }

    .mat-table tbody td { color: var(--muted); }

    .mat-table td.mat-best {
      color: var(--accent);
      font-weight: 600;
      background: rgba(232,99,10,0.05);
    }

    .mat-verdict {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .mat-verdict-item {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
      padding-left: 1rem;
      border-left: 3px solid var(--accent);
    }

    .mat-verdict-item strong { color: var(--text); }

    /* =============================================
       HANDELSBETINGELSER
       ============================================= */
    .terms-tabs {
      display: flex;
      gap: 0;
      border-bottom: 2px solid var(--border);
      margin-top: 2rem;
    }

    .terms-tab {
      padding: 0.7rem 1.5rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: color 0.15s, border-color 0.15s;
    }

    .terms-tab:hover { color: var(--text); }
    .terms-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

    .terms-panel { display: none; margin-top: 2rem; }
    .terms-panel.active { display: block; }

    .terms-block { margin-bottom: 1.75rem; }

    .terms-block h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .terms-block p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 0.6rem;
    }

    .terms-important {
      background: #fff8e1;
      border-left: 3px solid #ffb300;
      padding: 0.85rem 1rem;
      color: #6d5200 !important;
    }

    .terms-disclaimer {
      margin-top: 2rem;
      padding: 1rem;
      background: var(--body-bg);
      border: 1px dashed var(--border);
      font-size: 0.8rem;
      color: var(--muted);
      font-style: italic;
    }

    /* =============================================
       COOKIEPOLITIK
       ============================================= */
    .cookie-policy-box {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      background: #fff;
      margin-top: 2rem;
    }

    .cookie-policy-block {
      padding: 1.75rem 2rem;
      border-bottom: 1px solid var(--border);
    }

    .cookie-policy-block:last-child { border-bottom: none; }

    .cookie-policy-block h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--text);
    }

    .cookie-policy-block p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 0.75rem;
    }

    .cookie-policy-block p:last-child { margin-bottom: 0; }

    .cookie-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }

    .cookie-table th {
      text-align: left;
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      padding: 0 0.75rem 0.6rem 0;
      border-bottom: 2px solid var(--border);
    }

    .cookie-table td {
      padding: 0.75rem 0.75rem 0.75rem 0;
      border-bottom: 1px solid var(--border);
      color: #555;
      vertical-align: top;
    }

    .cookie-table code {
      font-family: monospace;
      background: var(--body-bg);
      padding: 0.15rem 0.4rem;
      font-size: 0.82rem;
      color: var(--accent);
    }

