  @font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Regular-Web.woff2') format('woff2'),
         url('../fonts/Graphik-Regular-Web.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Medium-Web.woff2') format('woff2'),
         url('../fonts/Graphik-Medium-Web.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

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

  :root {
    --bg: #264f4c;
    --bg-dark: #1a3836;
    --bg-mid: #2e5c59;
    --teal: #5ec4bb;
    --teal-light: #a8dfda;
    --teal-dark: #3a9e96;
    --white: #ffffff;
    --off-white: #f7f9f9;
    --text-dark: #1c2e2d;
    --text-mid: #4a6562;
    --text-muted: #7a9896;
    --border: #e2edec;
    --success: #2da676;
    --font-display: 'Graphik', sans-serif;
    --font-body: 'Graphik', sans-serif;
    --r: 12px;
    --r-sm: 8px;
    --r-full: 999px;
    --pkg-header-bg: #2E4F4E;
    --pkg-mint: #75D1C6;
    --topbar-h: 38px;
    --navbar-h: 80px;
    --header-total: calc(var(--topbar-h) + var(--navbar-h));
    --card-sticky-top: calc(var(--header-total) + 16px);
  }

  html, body { min-height: 100vh; font-family: var(--font-body); background: var(--bg); color: var(--white); }

  /* ── Topbar ── */
  .topbar {
    background: var(#2E4F4E);
    padding: 8px 0px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    font-size: 14px;
    color: white;
    border-bottom: 1px none rgba(255,255,255,0.75);
  }
  .topbar a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
  .topbar a:hover { color: #fff; }

  /* ── Navbar ── */
  .navbar {
    background: var(#2E4F4E);
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    border-bottom: 1px none rgba(255,255,255,0.08);
    position: relative;
    z-index: 100;
    overflow: visible;
  }
  .logo { display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; justify-self: start; align-self: center; }
  .logo img { height: 88px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 4px; justify-self: center; align-self: center; }
  .nav-item { position: relative; }
  .nav-link {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--r-sm);
    transition: all .15s;
    background: none;
    border: none;
    font-family: var(--font-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  .nav-link:hover,
  .nav-item.open > .nav-link { background: rgba(255,255,255,0.08); color: white; }
  .nav-arrow {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transform-origin: center;
    transition: transform .2s ease;
  }
  .nav-arrow svg { display: block; width: 20px; height: 20px; }
  .nav-item.open .nav-arrow { transform: scaleY(-1); }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: var(--r);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 200;
  }
  .nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.35;
    transition: background .15s;
  }
  .nav-dropdown-item:hover { background: var(--off-white); }
  .nav-dropdown-item:hover .nav-dropdown-label { text-decoration: underline; }
  .nav-dropdown-icon {
    width: 22px;
    flex-shrink: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1;
  }
  .nav-right { justify-self: end; align-self: center; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .btn-nav { font-size: 13px; padding: 7px 16px; border-radius: var(--r-full); cursor: pointer; border: 1px solid rgba(255,255,255,0.25); color: white; background: transparent; font-family: var(--font-body); transition: all .15s; }
  .btn-nav:hover { background: rgba(255,255,255,0.1); }
  .btn-nav-cta {
    display: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: var(--r-full);
    cursor: pointer;
    border: none;
    color: var(--text-dark);
    background: var(--white);
    font-family: var(--font-body);
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
  }
  .btn-nav-cta:hover { background: var(--off-white); }

  /* Mobile nav shell — hidden on desktop */
  .mobile-nav-toggle,
  .mobile-nav-overlay,
  .mobile-nav-panel { display: none; }
  body.mobile-nav-open { overflow: hidden; }

  /* ── Hero layout ── */
  .hero {
    min-height: calc(86vh - 50px);
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
    padding: 72px 48px 60px;
    max-width: 1536px;
    margin: 0 auto;
  }

  /* ── Left: value prop ── */
  .left { padding-top: 12px; }
  .eyebrow { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-light); font-weight: 500; margin-bottom: 18px; }
  .headline { font-family: var(--font-display); font-size: 42px; line-height: 1.1; color: white; margin-bottom: 0; }
  .headline em { font-style: italic; color: var(--teal); }
  .sub { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.65); margin: 0; }

  .hero-stack {
    display: inline-grid;
    grid-template-columns: minmax(0, max-content);
    max-width: 100%;
    row-gap: 28px;
  }
  .hero-stack > * {
    grid-column: 1;
    min-width: 0;
    margin: 0;
  }
  .hero-stack-width {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: max-content;
    max-width: 100%;
  }
  .hero-stack-width .sub {
    width: 100%;
    box-sizing: border-box;
  }
  .hero-stack > .no-hidden {
    width: 100%;
    box-sizing: border-box;
  }
  .hero-stack .includes-title {
    margin-top: 0;
    margin-bottom: 12px;
  }
  .hero-stack .includes {
    margin-bottom: 0;
  }
  .hero-stack .trust-row {
    margin: 0;
  }
  .storkunde-link {
    margin: 0;
    font-size: 18px;
    color: rgba(255,255,255,0.55);
  }

  .includes { margin-bottom: 36px; }
  .includes-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--teal-light); margin-top: 28px; margin-bottom: 14px; font-weight: 500; }
  .include-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
  .inc-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(94,196,187,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
  .inc-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .inc-text { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.45; }
  .inc-text strong { color: white; font-weight: 500; }

  .no-hidden { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 14px 18px; display: flex; align-items: center; gap: 12px; margin: 0; font-size: 13.5px; color: rgba(255,255,255,0.7); }
  .no-hidden-icon { font-size: 20px; }

  .trust-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin: 0; }
  .trust-item { display: flex; align-items: center; gap: 8px; }
  .trust-num { font-size: 22px; font-weight: 600; color: white; }
  .trust-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.3; }
  .trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
  .approved-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid rgba(94,196,187,0.3); border-radius: var(--r-full); font-size: 14px; color: var(--teal-light); width: fit-content; margin-bottom: 24px; }

  /* ── Right: form card ── */
  .card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.06);
    color: var(--text-dark);
    position: sticky;
    top: var(--card-sticky-top);
    align-self: start;
    display: flex;
    flex-direction: column;
    z-index: 10;
  }
  .partner-card-ribbon {
    background: var(--teal-dark);
    color: var(--white);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px 20px 0 0;
  }
  .form-package-header {
    background: var(--pkg-header-bg);
    padding: 18px 20px;
  }
  .pkg-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }
  .pkg-left { display: flex; flex-direction: column; gap: 4px; }
  .pkg-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
  }
  .pkg-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
  }
  .pkg-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    line-height: 1.25;
  }
  .pkg-from {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }
  .pkg-price {
    font-size: 24px;
    font-weight: 500;
    color: var(--pkg-mint);
  }
  .pkg-period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
  }
  .pkg-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .pkg-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--r-full);
    border: 1px solid rgba(117, 209, 198, 0.45);
    font-size: 12px;
    font-weight: 500;
    color: var(--pkg-mint);
  }
  .pkg-pill svg { flex-shrink: 0; }
  .pkg-timing {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
  }
  .pkg-timing svg { flex-shrink: 0; opacity: 0.85; }

  .form-stepper {
    background: #fff;
    padding: 14px 20px;
    border-bottom: 0.5px solid #eee;
  }
  .stepper-inner {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  .stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 0;
  }
  .stepper-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    background: #fff;
    transition: all 0.2s ease;
  }
  .stepper-num-text { line-height: 1; }
  .stepper-check {
    display: none;
    width: 14px;
    height: 14px;
  }
  .stepper-label {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, font-weight 0.2s ease;
  }
  .stepper-line {
    flex: 1;
    height: 1px;
    background: #eee;
    min-width: 8px;
    margin: 13px 4px 0;
    align-self: flex-start;
  }
  .stepper-step.active .stepper-num {
    background: var(--pkg-header-bg);
    border-color: var(--pkg-header-bg);
    color: #fff;
  }
  .stepper-step.active .stepper-label {
    color: var(--text-dark);
    font-weight: 600;
  }
  .stepper-step.done .stepper-num {
    background: var(--pkg-header-bg);
    border-color: var(--pkg-header-bg);
    color: #fff;
  }
  .stepper-step.done .stepper-num-text { display: none; }
  .stepper-step.done .stepper-check { display: block; }
  .stepper-step.done .stepper-label {
    color: #6b7a79;
    font-weight: 500;
  }
  .stepper-step.done.active .stepper-num-text { display: block; }
  .stepper-step.done.active .stepper-check { display: none; }

  .card-body {
    padding: 32px;
    flex: 1;
    overflow: visible;
  }

  /* Form elements */
  .f-label { display: block; font-size: 12.5px; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.2px; }
  .req { color: #e06060; }
  .f-input {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: var(--r-sm); font-size: 14px; font-family: var(--font-body);
    color: var(--text-dark); background: white; transition: border-color .15s, box-shadow .15s;
    outline: none;
  }
  .f-input:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(94,196,187,0.15); }
  .f-input::placeholder { color: #b0c4c2; }
  .f-group { margin-bottom: 16px; }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .search-wrap { position: relative; }
  .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); opacity: 0.35; }
  .search-wrap .f-input { padding-left: 38px; }
  .search-spin { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: none; }

  .lookup-dropdown {
    position: absolute; left: 0; right: 0; top: calc(100% + 4px);
    margin: 0; padding: 4px 0; list-style: none;
    background: white; border: 1.5px solid var(--border); border-radius: var(--r-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); max-height: 240px; overflow-y: auto;
    z-index: 20;
  }
  .lookup-item {
    padding: 10px 14px; cursor: pointer; transition: background .1s;
  }
  .lookup-item:hover, .lookup-item.active { background: rgba(94,196,187,0.12); }
  .lookup-item-name { font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
  .lookup-item-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
  .lookup-empty, .lookup-error {
    padding: 12px 14px; font-size: 13px; color: var(--text-muted); cursor: default;
  }
  .lookup-error { color: #b04040; }

  .company-result {
    background: var(--off-white); border: 1.5px solid var(--border);
    border-radius: var(--r-sm); padding: 14px 16px; margin-top: 10px; display: none;
  }
  .co-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
  .co-addr { font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; }
  .co-emp-row { display: flex; align-items: center; justify-content: space-between; }
  .co-emp-label { font-size: 12.5px; color: var(--text-mid); }
  .co-emp-val { font-size: 13px; font-weight: 500; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
  .edit-emp { font-size: 12px; color: var(--teal-dark); cursor: pointer; text-decoration: underline; background: none; border: none; font-family: var(--font-body); }
  .emp-edit-input { width: 64px; padding: 4px 8px; border: 1.5px solid var(--teal-dark); border-radius: 6px; font-size: 13px; font-family: var(--font-body); text-align: center; display: none; outline: none; }

  .price-reveal {
    background: linear-gradient(135deg, #1a3836 0%, #264f4c 100%);
    border-radius: var(--r-sm); padding: 18px 20px; margin-top: 16px; display: none;
    position: relative; overflow: hidden;
  }
  .price-reveal::before { content: ''; position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; border-radius: 50%; background: rgba(94,196,187,0.1); }
  .pr-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--teal-light); font-weight: 500; margin-bottom: 6px; }
  .pr-main { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
  .pr-amount { font-family: var(--font-display); font-size: 34px; color: white; }
  .pr-unit { font-size: 13px; color: rgba(255,255,255,0.55); }
  .pr-total { font-size: 12.5px; color: rgba(255,255,255,0.5); }
  .pr-total strong { color: rgba(255,255,255,0.8); }
  .pr-amu { display: inline-block; margin-top: 8px; font-size: 11px; background: rgba(94,196,187,0.2); color: var(--teal-light); padding: 3px 10px; border-radius: var(--r-full); }

  .cutoff-card {
    background: #fffbf0; border: 1.5px solid #f0d070;
    border-radius: var(--r-sm); padding: 14px 16px; margin-top: 12px; display: none;
    font-size: 13.5px; color: #7a6010; line-height: 1.5;
  }
  .cutoff-card strong { color: #5a4a0a; }

  /* Buttons */
  .btn-primary {
    width: 100%; padding: 14px; background: var(--bg-dark); color: white;
    border: none; border-radius: var(--r-full); font-size: 15px; font-weight: 500;
    font-family: var(--font-body); cursor: pointer; transition: all .15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 20px;
  }
  .btn-primary:hover { background: #152e2c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
  .btn-primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }
  .btn-secondary {
    background: none; border: none; color: var(--text-muted); font-size: 13px;
    cursor: pointer; font-family: var(--font-body); padding: 8px 0; margin-top: 8px;
    display: block; text-align: center; width: 100%;
  }
  .btn-secondary:hover { color: var(--text-dark); }

  .arrow-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .bli-ringt-divider { text-align: center; font-size: 12px; color: var(--text-muted); margin: 14px 0 10px; position: relative; }
  .bli-ringt-divider::before, .bli-ringt-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border); }
  .bli-ringt-divider::before { left: 0; }
  .bli-ringt-divider::after { right: 0; }
  .btn-bli-ringt { width: 100%; padding: 11px 16px; background: transparent; border: 1.5px solid var(--border); border-radius: var(--r-full); font-size: 13.5px; font-weight: 500; color: var(--text-mid); font-family: var(--font-body); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .15s; }
  .btn-bli-ringt:hover { border-color: var(--teal-dark); color: var(--teal-dark); background: rgba(58,158,150,0.04); }
  .bli-ringt-expand { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 16px; margin-top: 10px; }
  .bli-ringt-confirm { display: flex; align-items: center; gap: 8px; background: #f0faf7; border: 1px solid #c0e8dd; border-radius: var(--r-sm); padding: 12px 16px; font-size: 13.5px; color: #1a6a4a; font-weight: 500; margin-top: 10px; }

  .existing-block { margin-top: 14px; display: none; }
  .existing-q { font-size: 13px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; }
  .yn-row { display: flex; gap: 8px; }
  .yn-btn { flex: 1; padding: 9px; border: 1.5px solid var(--border); border-radius: var(--r-full); font-size: 13px; font-weight: 500; color: var(--text-mid); background: white; cursor: pointer; font-family: var(--font-body); transition: all .15s; }
  .yn-btn:hover { border-color: var(--teal-dark); color: var(--teal-dark); }
  .yn-btn.sel-yes { border-color: var(--teal-dark); background: rgba(58,158,150,0.07); color: var(--teal-dark); }
  .yn-btn.sel-no  { border-color: var(--text-muted); background: var(--off-white); color: var(--text-mid); }
  .provider-select-wrap { margin-top: 12px; display: none; }
  .switch-notice { background: #f0faf7; border: 1px solid #b8e4d4; border-radius: var(--r-sm); padding: 13px 16px; margin-top: 12px; font-size: 13px; color: #1a5c42; line-height: 1.55; display: none; }
  .switch-notice strong { color: #134a34; }
  .sign-box {
    background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--r);
    padding: 28px 24px; text-align: center; margin-bottom: 16px;
  }
  .bankid-logo { font-size: 13px; font-weight: 600; color: var(--text-dark); letter-spacing: -0.5px; display: inline-block; background: #003087; color: white; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
  .sign-title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
  .sign-sub { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
  .contract-summary { border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 16px; }
  .cs-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; font-size: 13px; border-bottom: 1px solid var(--border); }
  .cs-row:last-child { border-bottom: none; }
  .cs-key { color: var(--text-muted); }
  .cs-val { font-weight: 500; color: var(--text-dark); }

  /* Done step */
  .done-wrap { text-align: center; padding: 16px 0; }
  .done-check { width: 64px; height: 64px; border-radius: 50%; background: #e8f9f2; border: 2px solid #b0e8cf; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .done-title { font-family: var(--font-display); font-size: 26px; color: var(--text-dark); margin-bottom: 8px; }
  .done-sub { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
  .done-portal { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-dark); color: white; padding: 12px 28px; border-radius: var(--r-full); font-size: 14px; font-weight: 500; text-decoration: none; transition: all .15s; cursor: pointer; border: none; font-family: var(--font-body); }
  .done-portal:hover { background: #152e2c; }

  /* Panel visibility */
  .panel { display: none; }
  .panel.on { display: block; }

  /* Spinner animation */
  @keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
  .spinning { animation: spin .7s linear infinite; }

  /* ── FAQ ── */
  .faq-section { background: var(--white); padding: 60px 48px; }
  .faq-inner { max-width: 760px; margin: 0 auto; }
  .faq-eyebrow { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-dark); font-weight: 500; margin-bottom: 12px; }
  .faq-title { font-family: var(--font-display); font-size: 36px; color: var(--text-dark); margin-bottom: 10px; }
  .faq-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 48px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { width: 100%; background: none; border: none; color: var(--text-dark); font-family: var(--font-body); font-size: 15px; font-weight: 500; text-align: left; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .15s; }
  .faq-q:hover { color: var(--teal-dark); }
  .faq-icon { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; }
  .faq-icon svg { width: 10px; height: 10px; stroke: var(--text-muted); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform .2s; }
  .faq-item.open .faq-icon { border-color: var(--teal); background: rgba(94,196,187,0.12); }
  .faq-item.open .faq-icon svg { stroke: var(--teal-dark); transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; }
  .faq-a-inner { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; padding-bottom: 20px; }
  .faq-a-inner strong { color: var(--text-dark); font-weight: 500; }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
  .faq-cat { padding: 6px 14px; border-radius: var(--r-full); font-size: 12.5px; cursor: pointer; border: 1px solid var(--border); color: var(--text-muted); background: var(--off-white); font-family: var(--font-body); transition: all .15s; }
  .faq-cat:hover { border-color: var(--teal); color: var(--teal-dark); }
  .faq-cat.active { background: rgba(94,196,187,0.15); border-color: var(--teal); color: var(--teal-dark); font-weight: 500; }

  footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 60px 48px 32px;
    margin-top: 80px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1536px;
    margin: 0 auto 48px;
  }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); font-weight: 500; margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 10px; transition: color .15s; }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    max-width: 1536px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }
  .footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.65); }

  /* ── Mobile ── */
  @media (max-width: 768px) {
    .topbar {
      gap: 12px;
      padding: 8px 12px;
      flex-wrap: wrap;
      font-size: 12px;
    }

    .navbar {
      grid-template-columns: auto 1fr auto;
      padding: 0 16px;
      height: 64px;
    }
    .nav-links { display: none; }
    .logo { grid-column: 1; }
    .nav-right { grid-column: 2; }
    .logo img { height: 72px; }
    .btn-nav-cta { display: none; }
    .pkg-price-block { display: none; }

    .mobile-nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      color: #fff;
      cursor: pointer;
      flex-shrink: 0;
      grid-column: 3;
      justify-self: end;
    }
    .mobile-nav-overlay {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 1100;
      background: rgba(0, 0, 0, 0.45);
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s ease, visibility .2s;
    }
    .mobile-nav-overlay.open {
      opacity: 1;
      visibility: visible;
    }
    .mobile-nav-panel {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      z-index: 1101;
      background: var(--white);
      transform: translateX(100%);
      transition: transform .3s ease;
      overflow-y: auto;
    }
    .mobile-nav-panel.open {
      transform: translateX(0);
    }
    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-dark);
    }
    .mobile-nav-header .logo img { height: 48px; width: auto; }
    .mobile-nav-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: transparent;
      color: #fff;
      cursor: pointer;
    }
    .mobile-nav-list {
      display: flex;
      flex-direction: column;
    }
    .mobile-nav-item {
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--text-dark);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      padding: 18px 16px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .mobile-nav-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }
    .mobile-nav-icon svg {
      width: 10px;
      height: 10px;
      stroke: var(--text-muted);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      transition: transform .2s;
    }
    .mobile-nav-item.open .mobile-nav-icon {
      border-color: var(--teal);
      background: rgba(94,196,187,0.12);
    }
    .mobile-nav-item.open .mobile-nav-icon svg {
      stroke: var(--teal-dark);
      transform: rotate(45deg);
    }
    .mobile-nav-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .mobile-nav-item.open .mobile-nav-a {
      max-height: 600px;
    }
    .mobile-nav-a-inner {
      padding: 0 8px 12px;
    }
    .mobile-nav-a-inner .nav-dropdown-item {
      padding: 12px 14px;
    }
    .mobile-nav-link {
      display: block;
      padding: 18px 16px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
    }

    .hero {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 24px 16px;
      min-height: 0;
    }
    .headline { font-size: 30px; }
    .left { padding-top: 0; }
    .approved-badge { display: none; }

    .card {
      position: static;
      width: 100%;
      max-width: 100%;
    }
    .card-body { padding: 20px 16px; }
    .form-package-header { padding: 16px; }
    .pkg-title { font-size: 20px; }
    .pkg-price { font-size: 20px; }
    .stepper-label { font-size: 10px; }

    .f-row { grid-template-columns: 1fr; }

    .faq-section { padding: 40px 16px; }
    .faq-title { font-size: 28px; }

    footer {
      padding: 40px 16px 24px;
      margin-top: 48px;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    /* Keep brand + legal (.footer-bottom); hide Tjenester / Selskap / Kontakt link columns */
    .footer-col { display: none; }
    .footer-brand p { max-width: none; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  }
