/* ==============================
   ROOT / VARIABLES
================================ */
:root {
    --bg: #ffffff;
    --surface: #f6f8fa;      /* NY SURFACE */
    --card: #ffffff;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --border: rgba(0,0,0,.08);
  
    --humac-green: #4639E1;
  
    --warning-bg: #fff5f5;
    --warning-border: #f1c7c7;
  
    --radius-lg: 20px;
    --radius-md: 14px;
  }
  
  /* ==============================
     BASE
  ================================ */
  .hero,
  .service-content {
    background: var(--bg);
    color: var(--text);
  }
  
  .container {
    width: min(1120px, 92%);
    margin: 0 auto;
  }
  
  h1, h2, h3 {
    letter-spacing: -0.02em;
  }
  
  h1 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin: 12px 0;
  }
  
  h2 {
    font-size: 22px;
    margin: 0 0 12px;
  }
  
  p {
    margin: 0;
  }
  
  /* ==============================
     TOPBAR
  ================================ */
  .topbar {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
  }
  
  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  
  .brand {
    font-weight: 600;
  }
  
  .nav {
    display: flex;
    gap: 8px;
  }
  
  .pill {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
  }
  
  /* ==============================
     HERO
  ================================ */
  .hero {
    padding: 60px 0 24px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }
  
  .kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
  }
  
  .kicker-warning {
    background: var(--warning-bg);
    color: #9f3a38;
  }
  
  .lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 16px;
  }
  
  /* ==============================
     CTA
  ================================ */
  .cta-row {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
  }
  
  .btn-primary {
    background: var(--humac-green);
    color: #fff;
    border: none;
  }
  
  .btn-secondary {
    background: var(--surface);
  }
  
  .fineprint {
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
  }
  
  /* ==============================
     NOTICE BOXES
  ================================ */
  .notice {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0;
  }
  
  .notice-critical {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
  }
  
  .notice-safe {
    background: var(--surface);
    border: 1px solid var(--border);
  }
  
  /* ==============================
     VISUAL CARD
  ================================ */
  .visual-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 20px;
  }
  
  .visual-topbar {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
  }
  
  /* ==============================
     DEVICES (SURFACE-OPTIMIZED)
  ================================ */
  .device-wrap {
    padding-top: 8px;
  }
  
  .devices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .device {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      var(--surface) 100%
    );
    border-radius: 18px;
    padding: 16px 12px 14px;
    text-align: center;
    border: 1px solid var(--border);
  }
  
  /* JPG FIX – matcher Surface */
  .device img {
    display: block;
    max-width: 120px;
    width: 100%;
    height: auto;
    margin: 0 auto 10px;
    border-radius: 16px;
    padding: 12px;
  
    /* blød sammensmeltning */
    mix-blend-mode: multiply;
  }
  
  .device .label {
    font-size: 13px;
    color: var(--muted);
  }
  
  /* ==============================
     CONTENT
  ================================ */
  .service-content {
    padding: 32px 0 64px;
  }
  
  .panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
  }
  
  .panel-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 75ch;
  }
  
  /* ==============================
     GRID
  ================================ */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
  }
  
  .card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border);
  }
  
  .card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  
  /* ==============================
     CONTACT
  ================================ */
  .contact {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
  }
  
  .contact a {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
  }
  
  /* ==============================
     RESPONSIVE
  ================================ */
  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }
  
    .grid-3 {
      grid-template-columns: 1fr;
    }
  
    .devices {
      grid-template-columns: 1fr 1fr;
    }
  }