

    :root{
      --bg: #0F1115;         /* grafit svart */
      --panel: #141824;
      --panel2: #10131b;
      --text: #F5F7FA;       /* mjuk vit */
      --muted: rgba(245,247,250,.72);
      --line: rgba(245,247,250,.12);
      --teal: #4FB6B8;       /* tech teal */
      --teal2: rgba(79,182,184,.22);
      --shadow: 0 18px 40px rgba(0,0,0,.35);
      --radius: 18px;
      --max: 1120px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: radial-gradient(1200px 600px at 80% 10%, rgba(79,182,184,.12), transparent 55%),
                  radial-gradient(900px 500px at 10% 30%, rgba(79,182,184,.08), transparent 55%),
                  var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

    a{ color:inherit; text-decoration:none; }
    .wrap{ width:min(var(--max), calc(100% - 44px)); margin:0 auto; }

    /* Topbar */
    .logo-img{ height:40px; width:auto; display:block; }

    header{
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(12px);
      background: rgba(15,17,21,.62);
      border-bottom: 1px solid var(--line);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 0;
      gap: 16px;
    }
    nav ul{
      list-style:none; margin:0; padding:0;
      display:flex; align-items:center; gap: 20px;
      color: var(--muted);
      font-weight: 500;
      font-size: 14px;
    }
    nav a:hover{ color: var(--text); }
    nav a.active{ color: var(--text); }
    nav a.active:after{
      content:"";
      display:block;
      height:2px;
      margin-top:6px;
      background: rgba(79,182,184,.65);
      border-radius: 999px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid rgba(79,182,184,.35);
      background: linear-gradient(180deg, rgba(79,182,184,.22), rgba(79,182,184,.10));
      color: var(--text);
      font-weight: 600;
      box-shadow: 0 10px 30px rgba(79,182,184,.12);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(79,182,184,.55);
      box-shadow: 0 16px 40px rgba(79,182,184,.16);
    }
    .btn.ghost{
      background: transparent;
      border-color: var(--line);
      box-shadow: none;
      color: var(--text);
    }

    /* Page header */
    .pageHero{
      padding: 46px 0 14px;
    }
    .pageHeroCard{
      border-radius: 22px;
      background:
        radial-gradient(600px 260px at 75% 30%, rgba(79,182,184,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        rgba(20,24,36,.55);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 34px;
    }
    .pageHero h1{
      margin:0 0 10px;
      font-size: clamp(28px, 3.8vw, 40px);
      line-height:1.12;
      letter-spacing:-0.02em;
    }
    .pageHero p{
      margin:0;
      color: var(--muted);
      max-width: 70ch;
      font-size: 15px;
    }

    /* Contact layout */
    .grid{
      padding: 22px 0 54px;
    }
    .contactGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }

    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px;
    }
    .card h2{
      margin:0 0 10px;
      font-size: 18px;
      letter-spacing:-0.01em;
    }
    .card p{
      margin:0 0 14px;
      color: var(--muted);
      font-size: 13px;
    }

    /* Form */
    form{ margin-top: 8px; }
    .formRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap: 6px;
    }
    label{
      font-size: 12px;
      color: rgba(245,247,250,.85);
      font-weight: 600;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 12px;
      border: 1px solid rgba(245,247,250,.14);
      background: rgba(16,19,27,.65);
      color: var(--text);
      outline: none;
      font-family: inherit;
      font-size: 14px;
    }
    input::placeholder, textarea::placeholder{ color: rgba(245,247,250,.45); }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(79,182,184,.55);
      box-shadow: 0 0 0 4px rgba(79,182,184,.12);
    }
    textarea{ min-height: 130px; resize: vertical; }

    .helpChoices{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin: 8px 0 14px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(245,247,250,.14);
      background: rgba(16,19,27,.45);
      color: rgba(245,247,250,.9);
      font-size: 13px;
      cursor:pointer;
      user-select:none;
    }
    .chip input{ width:auto; accent-color: var(--teal); }

    .actions{
      display:flex;
      gap: 12px;
      align-items:center;
      flex-wrap:wrap;
      margin-top: 10px;
    }
    .note{
      font-size: 12px;
      color: rgba(245,247,250,.55);
    }

    /* Sidebar */
    .list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap: 10px;
    }
    .list li{
      border: 1px solid rgba(245,247,250,.12);
      border-radius: 14px;
      padding: 12px;
      background: rgba(16,19,27,.35);
    }
    .list strong{ display:block; margin-bottom: 4px; }
    .list span{ color: var(--muted); font-size: 13px; }
    .miniCta{
      margin-top: 12px;
      border-radius: 16px;
      padding: 14px;
      border: 1px solid rgba(79,182,184,.22);
      background:
        radial-gradient(320px 140px at 30% 10%, rgba(79,182,184,.18), transparent 60%),
        rgba(16,19,27,.35);
    }
    .miniCta p{ margin: 0 0 12px; color: var(--muted); font-size: 13px; }

    /* Footer */
    footer{
      border-top: 1px solid var(--line);
      padding: 26px 0 40px;
      color: var(--muted);
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 16px;
    }
    .footerGrid h4{ margin:0 0 10px; color: var(--text); font-size: 14px; }
    .footerGrid a{ color: var(--muted); display:block; margin: 6px 0; font-size: 13px; }
    .footerGrid a:hover{ color: var(--text); }

    /* Responsive */
    @media (max-width: 920px){
      .contactGrid{ grid-template-columns: 1fr; }
      .formRow{ grid-template-columns: 1fr; }
      .footerGrid{ grid-template-columns: 1fr 1fr; }
      nav ul{ display:none; } /* enkel mobil */
    }
 /* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Mobilmeny */
@media (max-width: 920px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(15,17,21,.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
  }

  nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
